forked from spotware/ctrader-algo-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
809 lines (741 loc) · 20.4 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
.vscode
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
Generated\ Files/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# StyleCop
StyleCopReport.xml
# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# Visual Studio Trace Files
*.e2e
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- Backup*.rdl
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# VS Code files
.vscode/
# BeatPulse healthcheck temp database
healthchecksdb
/Indicators/ATRMTF_time_History
/Indicators/Bar Color Change Alert
/Indicators/ATR_Stops_time_MarketData_History
/Indicators/Bar Ratio
/Indicators/Belkhayate Timing
/Indicators/Blank
/Indicators/Custom
/Indicators/Custom Data
/Indicators/Flow Indicator/Flow Indicator/Properties/AssemblyInfo.cs
/Indicators/Flow Indicator
/Indicators/Global Hook
/Indicators/HasCrossed Sample
/Indicators/Heiken Ashi
/Indicators/Heikin Ashi Smooth
/Indicators/Ichimoku Cloud
/Indicators/Keltner Channels
/Indicators/Least Squares Regression
/Indicators/Licensing Sample
/Indicators/MA Cross Alert
/Indicators/MACD Histogram Alert
/Indicators/Sample Standard Deviation
/Indicators/Sample SMA
/Indicators/Sample Reference SMA
/Indicators/Sample Price Channels
/Indicators/Sample Envelopes Cloud
/Indicators/Sample EMA
/Indicators/Sample DeMarker
/Indicators/Sample Bulls Power
/Indicators/Sample Bears Power
/Indicators/Sample Alligator
/Indicators/RSI Alert Sample
/Indicators/ROC
/Indicators/psar
/Indicators/Position_Stats_1.0
/Indicators/Optimal Moving Average
/Indicators/Moving Average Type Sample
/Indicators/Time zone Sample
/Indicators/Zero Lag MA
/Indicators/VWAP with Source
/Indicators/Volatility Scalper
/Indicators/Triangularma Centered Bands
/Indicators/Auto Trend Channel
/Indicators/ADX Interpreter
/Indicators/Advanced Volume
/Indicators/ADR Pro
/Indicators/Auto Trend Channel.algo
/Indicators/ATR_Stops_time_MarketData_History.algo
/Indicators/ATRMTF_time_History.algo
/Indicators/ADX Interpreter.algo
/Indicators/Advanced Volume.algo
/Indicators/ADR Pro.algo
/Indicators/Sample Standard Deviation.algo
/Indicators/Sample SMA.algo
/Indicators/Sample Reference SMA.algo
/Indicators/Sample Price Channels.algo
/Indicators/Sample Envelopes Cloud.algo
/Indicators/Sample EMA.algo
/Indicators/Sample DeMarker.algo
/Indicators/Sample Bulls Power.algo
/Indicators/Sample Bears Power.algo
/Indicators/Sample Alligator.algo
/Indicators/Time zone Sample.algo
/Indicators/RSI Alert Sample.algo
/Indicators/Moving Average Type Sample.algo
/Indicators/Licensing Sample.algo
/Indicators/HasCrossed Sample.algo
/Indicators/Daily Separator Line Sample.algo
/Indicators/Daily Separator Line Sample
/Robots/Bar Breakout Trading Sample
/Robots/Licensing Sample
/Robots/Sample Advanced Take Profit
/Robots/Sample Break Even
/Robots/Sample Breakout cBot
/Robots/Sample cBot Reference SMA
/Robots/Sample Close Profitable Positions cBot
/Robots/Sample Hotkey Trading
/Robots/Sample Lines Trader
/Robots/Sample Martingale cBot
/Robots/Sample RSI cBot
/Robots/Sample SAR Trailing Stop
/Robots/Sample Trading Panel
/Robots/Sample Trend cBot
/Robots/Bar Breakout Trading Sample.algo
/Robots/Licensing Sample.algo
/Robots/Sample Trend cBot.algo
/Robots/Sample Trading Panel.algo
/Robots/Sample SAR Trailing Stop.algo
/Robots/Sample RSI cBot.algo
/Robots/Sample Martingale cBot.algo
/Robots/Sample Lines Trader.algo
/Robots/Sample Hotkey Trading.algo
/Robots/Sample Close Profitable Positions cBot.algo
/Robots/Sample cBot Reference SMA.algo
/Robots/Sample Breakout cBot.algo
/Robots/Sample Break Even.algo
/Robots/Sample Advanced Take Profit.algo
/Robots/Trading Hotkeys.algo
/Robots/Trading Hotkeys
/Robots/Tooltip.algo
/Robots/Tooltip/Tooltip.sln
/Robots/Tooltip/Tooltip/Tooltip.csproj
/Robots/Tooltip/Tooltip/Tooltip.cs
/Robots/Tooltip/Tooltip/Properties/AssemblyInfo.cs
/Robots/Tooltip/Tooltip/Properties
/Robots/Tooltip/Tooltip
/Robots/Tooltip
/Robots/ROC Bot.algo
/Robots/ROC Bot/ROC Bot.sln
/Robots/ROC Bot/ROC Bot/ROC Bot.csproj
/Robots/ROC Bot/ROC Bot/ROC Bot.cs
/Robots/ROC Bot/ROC Bot/Properties/AssemblyInfo.cs
/Robots/ROC Bot/ROC Bot/Properties
/Robots/ROC Bot/ROC Bot
/Robots/ROC Bot
/Robots/News Fixed Time Trader.algo
/Robots/News Fixed Time Trader
/Robots/My cBot.algo
/Robots/My cBot/My cBot.sln
/Robots/My cBot/My cBot/Properties/AssemblyInfo.cs
/Robots/My cBot/My cBot/Properties
/Robots/My cBot/My cBot/My cBot.csproj
/Robots/My cBot/My cBot/My cBot.cs
/Robots/My cBot/My cBot
/Robots/My cBot
/Robots/ML Data Generator.algo
/Robots/ML Data Generator
/Robots/Mean Reversion Trader.algo
/Robots/Mean Reversion Trader
/Robots/Manual Strategy Tester.algo
/Robots/Manual Strategy Tester
/Robots/Keltner EMA.algo
/Robots/Keltner EMA 2.0.algo
/Robots/Keltner EMA 2.0
/Robots/Keltner EMA
/Robots/Keltner Channels Trader.algo
/Robots/Keltner Channels Trader v2.algo
/Robots/Keltner Channels Trader v2
/Robots/Keltner Channels Trader
/Robots/Hull Trader Live.algo
/Robots/Hull Trader Live
/Robots/Hull Trader Backtest.algo
/Robots/Hull Trader Backtest
/Robots/High and Low Trader.algo
/Robots/High and Low Trader
/Robots/Hidden Protection.algo
/Robots/Hidden Protection
/Robots/First Hope.algo
/Robots/First Hope
/Robots/Day Trader.algo
/Robots/Day Trader/Day Trader.sln
/Robots/Day Trader/Day Trader/Properties/AssemblyInfo.cs
/Robots/Day Trader/Day Trader/Properties
/Robots/Day Trader/Day Trader/Models/LeftSpaceModel.cs
/Robots/Day Trader/Day Trader/Models
/Robots/Day Trader/Day Trader/Day Trader.csproj
/Robots/Day Trader/Day Trader/Day Trader.cs
/Robots/Day Trader/Day Trader
/Robots/Day Trader
/Robots/CustomTooltip.algo
/Robots/CustomTooltip/CustomTooltip.sln
/Robots/CustomTooltip/CustomTooltip/Properties/AssemblyInfo.cs
/Robots/CustomTooltip/CustomTooltip/Properties
/Robots/CustomTooltip/CustomTooltip/CustomTooltip.csproj
/Robots/CustomTooltip/CustomTooltip/CustomTooltip.cs
/Robots/CustomTooltip/CustomTooltip
/Robots/CustomTooltip
/Robots/Consecutive Bars Trader.algo
/Robots/Consecutive Bars Trader Backtest.algo
/Robots/Consecutive Bars Trader Backtest
/Robots/Consecutive Bars Trader
/Robots/Consecutive Bars HA Trader.algo
/Robots/Consecutive Bars HA Trader
/Robots/cMulti Tester.algo
/Robots/cMulti Tester/cMulti Tester.sln
/Robots/cMulti Tester/cMulti Tester/Properties/AssemblyInfo.cs
/Robots/cMulti Tester/cMulti Tester/Properties
/Robots/cMulti Tester/cMulti Tester/cMulti Tester.csproj
/Robots/cMulti Tester/cMulti Tester/cMulti Tester.cs
/Robots/cMulti Tester/cMulti Tester
/Robots/cMulti Tester
/Robots/Bug.algo
/Robots/Bug/Bug.sln
/Robots/Bug/Bug/Properties/AssemblyInfo.cs
/Robots/Bug/Bug/Properties
/Robots/Bug/Bug/Bug.csproj
/Robots/Bug/Bug/Bug.cs
/Robots/Bug/Bug
/Robots/Bug
/Robots/Bar Color Change Trader.algo
/Robots/Bar Color Change Trader/Bar Color Change Trader.sln
/Robots/Bar Color Change Trader/Bar Color Change Trader/Properties/AssemblyInfo.cs
/Robots/Bar Color Change Trader/Bar Color Change Trader/Properties
/Robots/Bar Color Change Trader/Bar Color Change Trader/Bar Color Change Trader.csproj
/Robots/Bar Color Change Trader/Bar Color Change Trader/Bar Color Change Trader.cs
/Robots/Bar Color Change Trader/Bar Color Change Trader
/Robots/Bar Color Change Trader
/Robots/Alert Tester.algo
/Robots/Alert Tester/Alert Tester.sln
/Robots/Alert Tester/Alert Tester/Properties/AssemblyInfo.cs
/Robots/Alert Tester/Alert Tester/Properties
/Robots/Alert Tester/Alert Tester/Alert Tester.csproj
/Robots/Alert Tester/Alert Tester/Alert Tester.cs
/Robots/Alert Tester/Alert Tester
/Robots/Alert Tester
/Robots/ABC.algo
/Robots/ABC
/Indicators/Zero Lag MA.algo
/Indicators/VWAP.algo
/Indicators/VWAP with Source.algo
/Indicators/VWAP
/Indicators/VSD.algo
/Indicators/VSD
/Indicators/Vortex.algo
/Indicators/Vortex
/Indicators/Volume Profile Timeframe.algo
/Indicators/Volume Profile Timeframe
/Indicators/Volume Profile Rectangles.algo
/Indicators/Volume Profile Rectangles
/Indicators/Volume Profile Fixed.algo
/Indicators/Volume Profile Fixed
/Indicators/Volume Profile Classic.algo
/Indicators/Volume Profile Classic
/Indicators/Volume Profile Between Two Line.algo
/Indicators/Volume Profile Between Two Line
/Indicators/Volume POC.algo
/Indicators/Volume POC
/Indicators/Volume Gap.algo
/Indicators/Volume Gap
/Indicators/Volatility Scalper.algo
/Indicators/Triangularma Centered Bands.algo
/Indicators/Trend Dash.algo
/Indicators/Trend Dash
/Indicators/Trend Catcher.algo
/Indicators/Trend Catcher
/Indicators/Trend Angle.algo
/Indicators/Trend Angle
/Indicators/Trading Time Periods.algo
/Indicators/Trading Time Periods
/Indicators/Tops and Bottoms.algo
/Indicators/Tops and Bottoms
/Indicators/Time Frame Dash.algo
/Indicators/Time Frame Dash
/Indicators/TD Trend Rider.algo
/Indicators/TD Trend Rider
/Indicators/TD Sequential.algo
/Indicators/TD Sequential
/Indicators/TD Breakout.algo
/Indicators/TD Breakout
/Indicators/Symbol Info.algo
/Indicators/Symbol Info
/Indicators/Supply And Demand Zones.algo
/Indicators/Supply And Demand Zones
/Indicators/Strong And Weak.algo
/Indicators/Strong And Weak Ranking.algo
/Indicators/Strong And Weak Ranking
/Indicators/Strong And Weak
/Indicators/Stochastic Divergence.algo
/Indicators/Stochastic Divergence
/Indicators/Session Box.algo
/Indicators/Session Box
/Indicators/RSI Divergence.algo
/Indicators/RSI Divergence
/Indicators/Round Numbers.algo
/Indicators/Round Numbers
/Indicators/ROC.algo
/Indicators/Reversal Magic.algo
/Indicators/Reversal Magic
/Indicators/ReFlex and TrendFlex.algo
/Indicators/ReFlex and TrendFlex
/Indicators/Quandl Time Series.algo
/Indicators/Quandl Time Series
/Indicators/psar.algo
/Indicators/Position_Stats_1.0.algo
/Indicators/Pivot Points Pro.algo
/Indicators/Pivot Points Pro Daily.algo
/Indicators/Pivot Points Pro Daily
/Indicators/Pivot Points Pro
/Indicators/Percentage Price Oscillator.algo
/Indicators/Percentage Price Oscillator
/Indicators/Pattern_Drawing_1.0.0.zip
/Indicators/Pattern Drawing.algo
/Indicators/Pattern Drawing
/Indicators/Outliers.algo
/Indicators/Outliers
/Indicators/Optimal Moving Average.algo
/Indicators/OHLC Lines.algo
/Indicators/OHLC Lines
/Indicators/MMI.algo
/Indicators/MMI
/Indicators/Market Status.algo
/Indicators/Market Status
/Indicators/Market Profile TimeFrame.algo
/Indicators/Market Profile TimeFrame
/Indicators/Market Profile Rectangles.algo
/Indicators/Market Profile Rectangles
/Indicators/Market Profile Fixed.algo
/Indicators/Market Profile Fixed
/Indicators/Market Profile Classic.algo
/Indicators/Market Profile Classic
/Indicators/Market Profile Between Two Line.algo
/Indicators/Market Profile Between Two Line
/Indicators/MACD Histogram Alert.algo
/Indicators/MACD Divergence.algo
/Indicators/MACD Divergence
/Indicators/MA Slope Trend.algo
/Indicators/MA Slope Trend
/Indicators/MA Ribbon.algo
/Indicators/MA Ribbon
/Indicators/MA Cross Alert.algo
/Indicators/Line Alert.algo
/Indicators/Line Alert
/Indicators/Least Squares Regression.algo
/Indicators/King-Lee.algo
/Indicators/King-Lee
/Indicators/Keltner Channels.algo
/Indicators/Keltner Blast.algo
/Indicators/Keltner Blast
/Indicators/Intraday Momentum Trading Assistant.algo
/Indicators/Intraday Momentum Trading Assistant
/Indicators/Institutional Unfilled Orders.algo
/Indicators/Institutional Unfilled Orders
/Indicators/Ichimoku Cloud.algo
/Indicators/Hull Moving Average.algo
/Indicators/Hull Moving Average
/Indicators/Hull Forecast.algo
/Indicators/Hull Forecast
/Indicators/High and Low Volume.algo
/Indicators/High and Low Volume
/Indicators/Heikin Ashi Smooth.algo
/Indicators/Heiken Ashi.algo
/Indicators/Heiken Ashi MTF.algo
/Indicators/Heiken Ashi MTF
/Indicators/Global Hook.algo
/Indicators/Flow Indicator.algo
/Indicators/Explosive Bars.algo
/Indicators/Explosive Bars
/Indicators/DMA.algo
/Indicators/DMA
/Indicators/Divergence.algo
/Indicators/Divergence
/Indicators/DEA and DIF.algo
/Indicators/DEA and DIF
/Indicators/Daily High Low Mean.algo
/Indicators/Daily High Low Mean
/Indicators/Custom.algo
/Indicators/Custom Period Chart.algo
/Indicators/Custom Period Chart Separate.algo
/Indicators/Custom Period Chart Separate
/Indicators/Custom Period Chart
/Indicators/Custom Data.algo
/Indicators/Cumulative Delta.algo
/Indicators/Cumulative Delta
/Indicators/COT.algo
/Indicators/COT
/Indicators/Correlation.algo
/Indicators/Correlation
/Indicators/Consecutive Bars.algo
/Indicators/Consecutive Bars
/Indicators/Compare Per Bar.algo
/Indicators/Compare Per Bar
/Indicators/Compare Fixed Time.algo
/Indicators/Compare Fixed Time
/Indicators/Compare Average.algo
/Indicators/Compare Average
/Indicators/Chart Switch.algo
/Indicators/Chart Switch Separate Panel.algo
/Indicators/Chart Switch Separate Panel
/Indicators/Chart Switch
/Indicators/Chart Navigator.algo
/Indicators/Chart Navigator
/Indicators/Chart Hotkeys.algo
/Indicators/Chart Hotkeys
/Indicators/Chart Calendar.algo
/Indicators/Chart Calendar
/Indicators/cFormula.algo
/Indicators/cFormula Overlay.algo
/Indicators/cFormula Overlay
/Indicators/cFormula
/Indicators/Breakout Candle.algo
/Indicators/Breakout Candle
/Indicators/Blank.algo
/Indicators/Belkhayate Timing.algo
/Indicators/BBands Volatility.algo
/Indicators/BBands Volatility
/Indicators/Bars Statistics.algo
/Indicators/Bars Statistics
/Indicators/Bar Ratio.algo
/Indicators/Bar Color Change Alert.algo
/Indicators/Bar Analyzer.algo
/Indicators/Bar Analyzer on Chart.algo
/Indicators/Bar Analyzer on Chart
/Indicators/Bar Analyzer
/Indicators/Average Bar Range.algo
/Indicators/Average Bar Range
/Robots/Trade Time.algo
/Robots/Trade Time
/Robots/PendingOrders Filled Event Issue/PendingOrders Filled Event Issue
/Robots/PendingOrders Filled Event Issue
/Robots/PendingOrders Filled Event Issue.algo
/Indicators/Event Test
/Indicators/Load History Sample
/Robots/Event Test Bot
/Indicators/Load History Sample.algo
/Indicators/Event Test.algo
/Robots/Event Test Bot.algo
/Indicators/Save File Dialog Sample
/Indicators/Save File Dialog Sample.algo
/Indicators/Alert Test
/Indicators/Alert Test.algo
/Indicators/Gann Drawing
/Indicators/Gann Drawing.algo
/Indicators/Custom Fractals
/Indicators/RSI Alert
*.algo
/Indicators/Squeeze Momentum
/Indicators/SMI Ergodic
/Indicators/Rob Booker Ziv Ghost Pivots
/Indicators/Rob Booker Reversal
/Indicators/Rob Booker Missed Pivot Points
/Indicators/Rob Booker Knoxville Divergence
/Indicators/Rob Booker Intraday Pivot Points
/Indicators/Rob Booker ADX Breakout
/Indicators/Relative Volatility Index
/Indicators/Moon Phases
/Indicators/Measure Tool
/Indicators/Ehlers Stochastic CG Oscillator
/Indicators/Ehlers Smoothed Adaptive Momentum
/Indicators/Ehlers Simple Cycle
/Indicators/Ehlers MESA Adaptive Moving Average
/Indicators/Ehlers Instantaneous Trend
/Indicators/Ehlers Adaptive Cyber Cycle
/Indicators/Ehlers Adaptive CG
/Indicators/Economic Events On Chart
/Indicators/Cumulative Volume Index
/Indicators/ConnorsRSI
/Indicators/Chop Zone
/Indicators/Chart Analysis Saver
/Indicators/Chande Kroll Stop
/Indicators/Chaikin Oscillator
/Indicators/Balance of Power
/Robots/Alert Test Bot
/Robots/Renko Backtest
/Robots/Hotkeys Tool
/Robots/Renko Test
/Robots/SMA Sample/SMA Sample
/Robots/SMA Sample/SMA Sample.sln
*.backup
/Indicators/SELL_LIQ
/Indicators/Custom Renko Chart
/Indicators/Custom Renko Chart Non-Overlay
/Indicators/Custom Tick Chart
/Indicators/Custom Tick Chart Non-Overlay
/Indicators/Go To Date
/Indicators/Synchronized Scrolling
/Indicators/Synchronized Crosshair
/Robots/WinForms Test
/Robots/DebugExample
/Robots/Data Tester
/Robots/Bar Buy Sell
/Indicators/WinForms Test
/Indicators/Ticks test
/Indicators/MACD Zero lag
/Indicators/Custom Moving Average
/Indicators/CrossHairSync
/Indicators/Bar Arrow