-
Notifications
You must be signed in to change notification settings - Fork 5
/
NinjaTrader.Custom.xml
12058 lines (12044 loc) · 591 KB
/
NinjaTrader.Custom.xml
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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>NinjaTrader.Custom</name>
</assembly>
<members>
<member name="T:NinjaTrader.Indicator.ADL">
<summary>
The Accumulation/Distribution (AD) study attempts to quantify the amount of volume flowing into or out of an instrument by identifying the position of the close of the period in relation to that period�s high/low range.
</summary>
</member>
<member name="T:NinjaTrader.Indicator.Indicator">
<summary>
</summary>
<summary>
This file holds all user defined indicator methods.
</summary>
<summary>
This file holds all user defined indicator methods.
</summary>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADL">
<summary>
The Accumulation/Distribution (AD) study attempts to quantify the amount of volume flowing into or out of an instrument by identifying the position of the close of the period in relation to that period�s high/low range.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADL(NinjaTrader.Data.IDataSeries)">
<summary>
The Accumulation/Distribution (AD) study attempts to quantify the amount of volume flowing into or out of an instrument by identifying the position of the close of the period in relation to that period�s high/low range.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADX(System.Int32)">
<summary>
The Average Directional Index measures the strength of a prevailing trend as well as whether movement exists in the market. The ADX is measured on a scale of 0 100. A low ADX value (generally less than 20) can indicate a non-trending market with low volumes whereas a cross above 20 may indicate the start of a trend (either up or down). If the ADX is over 40 and begins to fall, it can indicate the slowdown of a current trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADX(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Average Directional Index measures the strength of a prevailing trend as well as whether movement exists in the market. The ADX is measured on a scale of 0 100. A low ADX value (generally less than 20) can indicate a non-trending market with low volumes whereas a cross above 20 may indicate the start of a trend (either up or down). If the ADX is over 40 and begins to fall, it can indicate the slowdown of a current trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADXR(System.Int32,System.Int32)">
<summary>
Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ADXR(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.APZ(System.Double,System.Int32)">
<summary>
The APZ (Adaptive Prize Zone) forms a steady channel based on double smoothed exponential moving averages around the average price.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.APZ(NinjaTrader.Data.IDataSeries,System.Double,System.Int32)">
<summary>
The APZ (Adaptive Prize Zone) forms a steady channel based on double smoothed exponential moving averages around the average price.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Aroon(System.Int32)">
<summary>
The Aroon Indicator was developed by Tushar Chande. Its comprised of two plots one measuring the number of periods since the most recent x-period high (Aroon Up) and the other measuring the number of periods since the most recent x-period low (Aroon Down).
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Aroon(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Aroon Indicator was developed by Tushar Chande. Its comprised of two plots one measuring the number of periods since the most recent x-period high (Aroon Up) and the other measuring the number of periods since the most recent x-period low (Aroon Down).
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.AroonOscillator(System.Int32)">
<summary>
The Aroon Oscillator is based upon his Aroon Indicator. Much like the Aroon Indicator, the Aroon Oscillator measures the strength of a trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.AroonOscillator(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Aroon Oscillator is based upon his Aroon Indicator. Much like the Aroon Indicator, the Aroon Oscillator measures the strength of a trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ATR(System.Int32)">
<summary>
The Average True Range (ATR) is a measure of volatility. It was introduced by Welles Wilder in his book 'New Concepts in Technical Trading Systems' and has since been used as a component of many indicators and trading systems.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ATR(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Average True Range (ATR) is a measure of volatility. It was introduced by Welles Wilder in his book 'New Concepts in Technical Trading Systems' and has since been used as a component of many indicators and trading systems.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BarTimer">
<summary>
Displays remaining time of minute based bar
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BarTimer(NinjaTrader.Data.IDataSeries)">
<summary>
Displays remaining time of minute based bar
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Bollinger(System.Double,System.Int32)">
<summary>
Bollinger Bands are plotted at standard deviation levels above and below a moving average. Since standard deviation is a measure of volatility, the bands are self-adjusting: widening during volatile markets and contracting during calmer periods.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Bollinger(NinjaTrader.Data.IDataSeries,System.Double,System.Int32)">
<summary>
Bollinger Bands are plotted at standard deviation levels above and below a moving average. Since standard deviation is a measure of volatility, the bands are self-adjusting: widening during volatile markets and contracting during calmer periods.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BOP(System.Int32)">
<summary>
The balance of power indicator measures the strength of the bulls vs. bears by assessing the ability of each to push price to an extreme level.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BOP(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The balance of power indicator measures the strength of the bulls vs. bears by assessing the ability of each to push price to an extreme level.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BuySellPressure">
<summary>
Indicates the current buying or selling pressure as a perecentage. This is a tick by tick indicator. If 'Calculate on bar close' is true, the indicator values will always be 100.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BuySellPressure(NinjaTrader.Data.IDataSeries)">
<summary>
Indicates the current buying or selling pressure as a perecentage. This is a tick by tick indicator. If 'Calculate on bar close' is true, the indicator values will always be 100.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BuySellVolume">
<summary>
This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.BuySellVolume(NinjaTrader.Data.IDataSeries)">
<summary>
This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CandleStickPattern(ChartPattern,System.Int32)">
<summary>
Detects common candlestick patterns and marks them on the chart.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CandleStickPattern(NinjaTrader.Data.IDataSeries,ChartPattern,System.Int32)">
<summary>
Detects common candlestick patterns and marks them on the chart.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CCI(System.Int32)">
<summary>
The Commodity Channel Index (CCI) measures the variation of a security's price from its statistical mean. High values show that prices are unusually high compared to average prices whereas low values indicate that prices are unusually low.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CCI(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Commodity Channel Index (CCI) measures the variation of a security's price from its statistical mean. High values show that prices are unusually high compared to average prices whereas low values indicate that prices are unusually low.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinMoneyFlow(System.Int32)">
<summary>
Chaikin Money Flow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinMoneyFlow(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Chaikin Money Flow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinOscillator(System.Int32,System.Int32)">
<summary>
Chaikin Oscillator.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinOscillator(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
Chaikin Oscillator.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinVolatility(System.Int32)">
<summary>
Chaikin Volatility
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ChaikinVolatility(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Chaikin Volatility
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CMO(System.Int32)">
<summary>
The CMO differs from other momentum oscillators such as Relative Strength Index (RSI) and Stochastics. It uses both up and down days data in the numerator of the calculation to measure momentum directly. Primarily used to look for extreme overbought and oversold conditions, CMO can also be used to look for trends.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CMO(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The CMO differs from other momentum oscillators such as Relative Strength Index (RSI) and Stochastics. It uses both up and down days data in the numerator of the calculation to measure momentum directly. Primarily used to look for extreme overbought and oversold conditions, CMO can also be used to look for trends.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ConstantLines(System.Double,System.Double,System.Double,System.Double)">
<summary>
Plots lines at user defined values. Lines with values of zero will not plot.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ConstantLines(NinjaTrader.Data.IDataSeries,System.Double,System.Double,System.Double,System.Double)">
<summary>
Plots lines at user defined values. Lines with values of zero will not plot.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CurrentDayOHL">
<summary>
Plots the open, high, and low values from the session starting on the current day.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CurrentDayOHL(NinjaTrader.Data.IDataSeries)">
<summary>
Plots the open, high, and low values from the session starting on the current day.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CustomPlotSample">
<summary>
This is a sample for an indicator using custom plotting.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.CustomPlotSample(NinjaTrader.Data.IDataSeries)">
<summary>
This is a sample for an indicator using custom plotting.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Darvas">
<summary>
The Darvas Boxes were taken from the pages of Nicolas Darvas book, How I Made $2,000,000 in the Stock Market. The boxes are used to normalize a trend. A 'buy' signal would be indicated when the price of the stock exceeds the top of the box. A 'sell' signal would be indicated when the price of the stock falls below the bottom of the box.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Darvas(NinjaTrader.Data.IDataSeries)">
<summary>
The Darvas Boxes were taken from the pages of Nicolas Darvas book, How I Made $2,000,000 in the Stock Market. The boxes are used to normalize a trend. A 'buy' signal would be indicated when the price of the stock exceeds the top of the box. A 'sell' signal would be indicated when the price of the stock falls below the bottom of the box.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DEMA(System.Int32)">
<summary>
Double Exponential Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DEMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Double Exponential Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DM(System.Int32)">
<summary>
This is the same indicator as the ADX, with the addition of the two directional movement indicators +DI and -DI. +DI and -DI measure upward and downward momentum. A buy signal is generated when +DI crosses -DI to the upside. A sell signal is generated when -DI crosses +DI to the downside.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DM(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
This is the same indicator as the ADX, with the addition of the two directional movement indicators +DI and -DI. +DI and -DI measure upward and downward momentum. A buy signal is generated when +DI crosses -DI to the upside. A sell signal is generated when -DI crosses +DI to the downside.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DMI(System.Int32)">
<summary>
The Directional Movement Index is quite similiar to Welles Wilder's Relative Strength Index. The difference is the DMI uses variable time periods (from 3 to 30) vs. the RSI's fixed periods.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DMI(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Directional Movement Index is quite similiar to Welles Wilder's Relative Strength Index. The difference is the DMI uses variable time periods (from 3 to 30) vs. the RSI's fixed periods.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DMIndex(System.Int32)">
<summary>
The Dynamic Momentum Index (DMI) as developed by Tushar Chande and Stanley Kroll and outlined in detail in their book The New Technical Trader.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DMIndex(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Dynamic Momentum Index (DMI) as developed by Tushar Chande and Stanley Kroll and outlined in detail in their book The New Technical Trader.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DonchianChannel(System.Int32)">
<summary>
The Donchian Channel indicator was created by Richard Donchian. It uses the highest high and the lowest low of a period of time to plot the channel.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DonchianChannel(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Donchian Channel indicator was created by Richard Donchian. It uses the highest high and the lowest low of a period of time to plot the channel.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DoubleStochastics(System.Int32)">
<summary>
Double stochastics
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.DoubleStochastics(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Double stochastics
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.EaseOfMovement(System.Int32,System.Int32)">
<summary>
The Ease of Movement (EMV) indicator emphasizes days in which the stock is moving easily and minimizes the days in which the stock is finding it difficult to move. A buy signal is generated when the EMV crosses above zero, a sell signal when it crosses below zero. When the EMV hovers around zero, then there are small price movements and/or high volume, which is to say, the price is not moving easily.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.EaseOfMovement(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The Ease of Movement (EMV) indicator emphasizes days in which the stock is moving easily and minimizes the days in which the stock is finding it difficult to move. A buy signal is generated when the EMV crosses above zero, a sell signal when it crosses below zero. When the EMV hovers around zero, then there are small price movements and/or high volume, which is to say, the price is not moving easily.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.EMA(System.Int32)">
<summary>
The Exponential Moving Average is an indicator that shows the average value of a security's price over a period of time. When calculating a moving average. The EMA applies more weight to recent prices than the SMA.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.EMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Exponential Moving Average is an indicator that shows the average value of a security's price over a period of time. When calculating a moving average. The EMA applies more weight to recent prices than the SMA.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.FisherTransform(System.Int32)">
<summary>
The Fisher Transform has sharp and distinct turning points that occur in a timely fashion. The resulting peak swings are used to identify price reversals.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.FisherTransform(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Fisher Transform has sharp and distinct turning points that occur in a timely fashion. The resulting peak swings are used to identify price reversals.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.FOSC(System.Int32)">
<summary>
The Forecast Oscillator (FOSC) is an extension of the linear regression based indicators made popular by Tushar Chande. The Forecast Oscillator plots the percentage difference between the forecast price (generated by an x-period linear regression line) and the actual price. The oscillator is above zero when the forecast price is greater than the actual price. Conversely, it's less than zero if its below. In the rare case when the forecast price and the actual price are the same, the oscillator would plot zero. Actual prices that are persistently below the forecast price suggest lower prices ahead. Likewise, actual prices that are persistently above the forecast price suggest higher prices ahead. Short-term traders should use shorter time periods and perhaps more relaxed standards for the required length of time above or below the forecast price. Long-term traders should use longer time periods and perhaps stricter standards for the required length of time above or below the forecast price. Chande also suggests plotting a three-day moving average trigger line of the Forecast Oscillator to generate early warnings of changes in trend. When the oscillator crosses below the trigger line, lower prices are suggested. When the oscillator crosses above the trigger line, higher prices are suggested.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.FOSC(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Forecast Oscillator (FOSC) is an extension of the linear regression based indicators made popular by Tushar Chande. The Forecast Oscillator plots the percentage difference between the forecast price (generated by an x-period linear regression line) and the actual price. The oscillator is above zero when the forecast price is greater than the actual price. Conversely, it's less than zero if its below. In the rare case when the forecast price and the actual price are the same, the oscillator would plot zero. Actual prices that are persistently below the forecast price suggest lower prices ahead. Likewise, actual prices that are persistently above the forecast price suggest higher prices ahead. Short-term traders should use shorter time periods and perhaps more relaxed standards for the required length of time above or below the forecast price. Long-term traders should use longer time periods and perhaps stricter standards for the required length of time above or below the forecast price. Chande also suggests plotting a three-day moving average trigger line of the Forecast Oscillator to generate early warnings of changes in trend. When the oscillator crosses below the trigger line, lower prices are suggested. When the oscillator crosses above the trigger line, higher prices are suggested.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.HeikenAshi">
<summary>
HeikenAshi technique discussed in the article 'Using Heiken-Ashi Technique' in February 2004 issue of TASC magazine.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.HeikenAshi(NinjaTrader.Data.IDataSeries)">
<summary>
HeikenAshi technique discussed in the article 'Using Heiken-Ashi Technique' in February 2004 issue of TASC magazine.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.HMA(System.Int32)">
<summary>
The Hull Moving Average (HMA) employs weighted MA calculations to offer superior smoothing, and much less lag, over traditional SMA indicators.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.HMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Hull Moving Average (HMA) employs weighted MA calculations to offer superior smoothing, and much less lag, over traditional SMA indicators.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KAMA(System.Int32,System.Int32,System.Int32)">
<summary>
Developed by Perry Kaufman, this indicator is an EMA using an Efficiency Ratio to modify the smoothing constant, which ranges from a minimum of Fast Length to a maximum of Slow Length. Since this moving average is adaptive it tends to follow prices more closely than other MA's.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KAMA(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
Developed by Perry Kaufman, this indicator is an EMA using an Efficiency Ratio to modify the smoothing constant, which ranges from a minimum of Fast Length to a maximum of Slow Length. Since this moving average is adaptive it tends to follow prices more closely than other MA's.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeltnerChannel(System.Double,System.Int32)">
<summary>
The Keltner Channel is a similar indicator to Bollinger Bands. Here the midline is a standard moving average with the upper and lower bands offset by the SMA of the difference between the high and low of the previous bars. The offset multiplier as well as the SMA period is configurable.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeltnerChannel(NinjaTrader.Data.IDataSeries,System.Double,System.Int32)">
<summary>
The Keltner Channel is a similar indicator to Bollinger Bands. Here the midline is a standard moving average with the upper and lower bands offset by the SMA of the difference between the high and low of the previous bars. The offset multiplier as well as the SMA period is configurable.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeyReversalDown(System.Int32)">
<summary>
Returns a value of 1 when the current close is less than the prior close after penetrating the highest high of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeyReversalDown(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Returns a value of 1 when the current close is less than the prior close after penetrating the highest high of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeyReversalUp(System.Int32)">
<summary>
Returns a value of 1 when the current close is greater than the prior close after penetrating the lowest low of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.KeyReversalUp(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Returns a value of 1 when the current close is greater than the prior close after penetrating the lowest low of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinReg(System.Int32)">
<summary>
The Linear Regression is an indicator that 'predicts' the value of a security's price.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinReg(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Linear Regression is an indicator that 'predicts' the value of a security's price.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinRegIntercept(System.Int32)">
<summary>
Linnear Regression Intercept
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinRegIntercept(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Linnear Regression Intercept
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinRegSlope(System.Int32)">
<summary>
Linear Regression Slope
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.LinRegSlope(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Linear Regression Slope
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MACD(System.Int32,System.Int32,System.Int32)">
<summary>
The MACD (Moving Average Convergence/Divergence) is a trend following momentum indicator that shows the relationship between two moving averages of prices.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MACD(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
The MACD (Moving Average Convergence/Divergence) is a trend following momentum indicator that shows the relationship between two moving averages of prices.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAEnvelopes(System.Double,System.Int32,System.Int32)">
<summary>
Plots % envelopes around a moving average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAEnvelopes(NinjaTrader.Data.IDataSeries,System.Double,System.Int32,System.Int32)">
<summary>
Plots % envelopes around a moving average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAMA(System.Double,System.Double)">
<summary>
The MAMA (MESA Adaptive Moving Average) was developed by John Ehlers. It adapts to price movement in a new and unique way. The adaptation is based on the Hilbert Transform Discriminator. The adavantage of this method features fast attack average and a slow decay average. The MAMA + the FAMA (Following Adaptive Moving Average) lines only cross at major market reversals.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAMA(NinjaTrader.Data.IDataSeries,System.Double,System.Double)">
<summary>
The MAMA (MESA Adaptive Moving Average) was developed by John Ehlers. It adapts to price movement in a new and unique way. The adaptation is based on the Hilbert Transform Discriminator. The adavantage of this method features fast attack average and a slow decay average. The MAMA + the FAMA (Following Adaptive Moving Average) lines only cross at major market reversals.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAX(System.Int32)">
<summary>
The Maximum shows the maximum of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MAX(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Maximum shows the maximum of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MFI(System.Int32)">
<summary>
The MFI (Money Flow Index) is a momentum indicator that measures the strength of money flowing in and out of a security.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MFI(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The MFI (Money Flow Index) is a momentum indicator that measures the strength of money flowing in and out of a security.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MIN(System.Int32)">
<summary>
The Minimum shows the minimum of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.MIN(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Minimum shows the minimum of the last n bars.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Momentum(System.Int32)">
<summary>
The Momentum indicator measures the amount that a security's price has changed over a given time span.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Momentum(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Momentum indicator measures the amount that a security's price has changed over a given time span.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.NBarsDown(System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
This indicator returns 1 when we have n of consecutive bars down, otherwise returns 0. A down bar is defined as a bar where the close is below the open and the bars makes a lower high and a lower low. You can adjust the specific requirements with the indicator options.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.NBarsDown(NinjaTrader.Data.IDataSeries,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
This indicator returns 1 when we have n of consecutive bars down, otherwise returns 0. A down bar is defined as a bar where the close is below the open and the bars makes a lower high and a lower low. You can adjust the specific requirements with the indicator options.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.NBarsUp(System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
This indicator returns 1 when we have n of consecutive bars up, otherwise returns 0. An up bar is defined as a bar where the close is above the open and the bars makes a higher high and a higher low. You can adjust the specific requirements with the indicator options.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.NBarsUp(NinjaTrader.Data.IDataSeries,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
<summary>
This indicator returns 1 when we have n of consecutive bars up, otherwise returns 0. An up bar is defined as a bar where the close is above the open and the bars makes a higher high and a higher low. You can adjust the specific requirements with the indicator options.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.OBV">
<summary>
OBV (On Balance Volume) is a running total of volume. It shows if volume is flowing into or out of a security. When the security closes higher than the previous close, all of the day's volume is considered up-volume. When the security closes lower than the previous close, all of the day's volume is considered down-volume.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.OBV(NinjaTrader.Data.IDataSeries)">
<summary>
OBV (On Balance Volume) is a running total of volume. It shows if volume is flowing into or out of a security. When the security closes higher than the previous close, all of the day's volume is considered up-volume. When the security closes lower than the previous close, all of the day's volume is considered down-volume.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ParabolicSAR(System.Double,System.Double,System.Double)">
<summary>
Parabolic SAR
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ParabolicSAR(NinjaTrader.Data.IDataSeries,System.Double,System.Double,System.Double)">
<summary>
Parabolic SAR
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PFE(System.Int32,System.Int32)">
<summary>
The PFE (Polarized Fractal Efficiency) is an indicator that uses fractal geometry to determine how efficiently the price is moving.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PFE(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The PFE (Polarized Fractal Efficiency) is an indicator that uses fractal geometry to determine how efficiently the price is moving.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Pivots(NinjaTrader.Data.PivotRange,NinjaTrader.Data.HLCCalculationMode,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Pivot Points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Pivots(NinjaTrader.Data.IDataSeries,NinjaTrader.Data.PivotRange,NinjaTrader.Data.HLCCalculationMode,System.Double,System.Double,System.Double,System.Int32)">
<summary>
Pivot Points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PPO(System.Int32,System.Int32,System.Int32)">
<summary>
The PPO (Percentage Price Oscillator) is based on two moving averages expressed as a percentage. The PPO is found by subtracting the longer MA from the shorter MA and then dividing the difference by the longer MA.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PPO(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
The PPO (Percentage Price Oscillator) is based on two moving averages expressed as a percentage. The PPO is found by subtracting the longer MA from the shorter MA and then dividing the difference by the longer MA.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriceAlert_New(System.Double,System.Boolean)">
<summary>
Sends an alert to the alert window when a price level has been reached.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriceAlert_New(NinjaTrader.Data.IDataSeries,System.Double,System.Boolean)">
<summary>
Sends an alert to the alert window when a price level has been reached.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriceOscillator(System.Int32,System.Int32,System.Int32)">
<summary>
The Price Oscillator indicator shows the variation among two moving averages for the price of a security.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriceOscillator(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
The Price Oscillator indicator shows the variation among two moving averages for the price of a security.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriorDayOHLC">
<summary>
Plots the open, high, low and close values from the session starting on the prior day.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.PriorDayOHLC(NinjaTrader.Data.IDataSeries)">
<summary>
Plots the open, high, low and close values from the session starting on the prior day.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Range">
<summary>
Calculates the range of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Range(NinjaTrader.Data.IDataSeries)">
<summary>
Calculates the range of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RangeCounter(System.Boolean)">
<summary>
Displays the range countdown of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RangeCounter(NinjaTrader.Data.IDataSeries,System.Boolean)">
<summary>
Displays the range countdown of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RegressionChannel(System.Int32,System.Double)">
<summary>
Linear regression is used to calculate a best fit line for the price data. In addition an upper and lower band is added by calculating the standard deviation of prices from the regression line.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RegressionChannel(NinjaTrader.Data.IDataSeries,System.Int32,System.Double)">
<summary>
Linear regression is used to calculate a best fit line for the price data. In addition an upper and lower band is added by calculating the standard deviation of prices from the regression line.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RIND(System.Int32,System.Int32)">
<summary>
RIND (Range Indicator) compares the intraday range (high - low) to the inter-day (close - previous close) range. When the intraday range is greater than the inter-day range, the Range Indicator will be a high value. This signals an end to the current trend. When the Range Indicator is at a low level, a new trend is about to start.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RIND(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
RIND (Range Indicator) compares the intraday range (high - low) to the inter-day (close - previous close) range. When the intraday range is greater than the inter-day range, the Range Indicator will be a high value. This signals an end to the current trend. When the Range Indicator is at a low level, a new trend is about to start.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ROC(System.Int32)">
<summary>
The ROC (Rate-of-Change) indicator displays the difference between the current price and the price x-time periods ago.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.ROC(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The ROC (Rate-of-Change) indicator displays the difference between the current price and the price x-time periods ago.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSI(System.Int32,System.Int32)">
<summary>
The RSI (Relative Strength Index) is a price-following oscillator that ranges between 0 and 100.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSI(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The RSI (Relative Strength Index) is a price-following oscillator that ranges between 0 and 100.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSquared(System.Int32)">
<summary>
R-squared indicator
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSquared(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
R-squared indicator
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSS(System.Int32,System.Int32,System.Int32)">
<summary>
Relative Spread Strength of the spread between two moving averages. TASC, October 2006, p. 16.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RSS(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
Relative Spread Strength of the spread between two moving averages. TASC, October 2006, p. 16.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RVI(System.Int32)">
<summary>
The RVI (Relative Volatility Index) was developed by Donald Dorsey as a compliment to and a confirmation of momentum based indicators. When used to confirm other signals, only buy when the RVI is over 50 and only sell when the RVI is under 50.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.RVI(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The RVI (Relative Volatility Index) was developed by Donald Dorsey as a compliment to and a confirmation of momentum based indicators. When used to confirm other signals, only buy when the RVI is over 50 and only sell when the RVI is under 50.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.SMA(System.Int32)">
<summary>
The SMA (Simple Moving Average) is an indicator that shows the average value of a security's price over a period of time.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.SMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The SMA (Simple Moving Average) is an indicator that shows the average value of a security's price over a period of time.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StdDev(System.Int32)">
<summary>
Standard Deviation is a statistical measure of volatility. Standard Deviation is typically used as a component of other indicators, rather than as a stand-alone indicator. For example, Bollinger Bands are calculated by adding a security's Standard Deviation to a moving average.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StdDev(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Standard Deviation is a statistical measure of volatility. Standard Deviation is typically used as a component of other indicators, rather than as a stand-alone indicator. For example, Bollinger Bands are calculated by adding a security's Standard Deviation to a moving average.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StdError(System.Int32)">
<summary>
Standard Error shows how near prices go around a linear regression line. The closer the prices are to the linear regression line, the stronger is the trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StdError(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Standard Error shows how near prices go around a linear regression line. The closer the prices are to the linear regression line, the stronger is the trend.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Stochastics(System.Int32,System.Int32,System.Int32)">
<summary>
The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Stochastics(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Int32)">
<summary>
The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StochasticsFast(System.Int32,System.Int32)">
<summary>
The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StochasticsFast(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StochRSI(System.Int32)">
<summary>
The StochRSI is an oscillator similar in computation to the stochastic measure, except instead of price values as input, the StochRSI uses RSI values. The StochRSI computes the current position of the RSI relative to the high and low RSI values over a specified number of days. The intent of this measure, designed by Tushard Chande and Stanley Kroll, is to provide further information about the overbought/oversold nature of the RSI. The StochRSI ranges between 0.0 and 1.0. Values above 0.8 are generally seen to identify overbought levels and values below 0.2 are considered to indicate oversold conditions.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.StochRSI(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The StochRSI is an oscillator similar in computation to the stochastic measure, except instead of price values as input, the StochRSI uses RSI values. The StochRSI computes the current position of the RSI relative to the high and low RSI values over a specified number of days. The intent of this measure, designed by Tushard Chande and Stanley Kroll, is to provide further information about the overbought/oversold nature of the RSI. The StochRSI ranges between 0.0 and 1.0. Values above 0.8 are generally seen to identify overbought levels and values below 0.2 are considered to indicate oversold conditions.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.SUM(System.Int32)">
<summary>
The Sum shows the summation of the last n data points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.SUM(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Sum shows the summation of the last n data points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Swing(System.Int32)">
<summary>
The Swing indicator plots lines that represents the swing high and low points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.Swing(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The Swing indicator plots lines that represents the swing high and low points.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.T3(System.Int32,System.Int32,System.Double)">
<summary>
T3 Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.T3(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32,System.Double)">
<summary>
T3 Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TEMA(System.Int32)">
<summary>
Triple Exponential Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TEMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
Triple Exponential Moving Average
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TickCounter(System.Boolean,System.Boolean)">
<summary>
Displays the tick count of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TickCounter(NinjaTrader.Data.IDataSeries,System.Boolean,System.Boolean)">
<summary>
Displays the tick count of a bar.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TMA(System.Int32)">
<summary>
The TMA (Triangular Moving Average) is a weighted moving average. Compared to the WMA which puts more weight on the latest price bar, the TMA puts more weight on the data in the middle of the specified period.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TMA(NinjaTrader.Data.IDataSeries,System.Int32)">
<summary>
The TMA (Triangular Moving Average) is a weighted moving average. Compared to the WMA which puts more weight on the latest price bar, the TMA puts more weight on the data in the middle of the specified period.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TRIX(System.Int32,System.Int32)">
<summary>
The TRIX (Triple Exponential Average) displays the percentage Rate of Change (ROC) of a triple EMA. Trix oscillates above and below the zero value. The indicator applies triple smoothing in an attempt to eliminate insignificant price movements within the trend that you're trying to isolate.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TRIX(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The TRIX (Triple Exponential Average) displays the percentage Rate of Change (ROC) of a triple EMA. Trix oscillates above and below the zero value. The indicator applies triple smoothing in an attempt to eliminate insignificant price movements within the trend that you're trying to isolate.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TSF(System.Int32,System.Int32)">
<summary>
The TSF (Time Series Forecast) calculates probable future values for the price by fitting a linear regression line over a given number of price bars and following that line forward into the future. A linear regression line is a straight line which is as close to all of the given price points as possible. Also see the Linear Regression indicator.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TSF(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">
<summary>
The TSF (Time Series Forecast) calculates probable future values for the price by fitting a linear regression line over a given number of price bars and following that line forward into the future. A linear regression line is a straight line which is as close to all of the given price points as possible. Also see the Linear Regression indicator.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TSI(System.Int32,System.Int32)">
<summary>
The TSI (True Strength Index) is a momentum-based indicator, developed by William Blau. Designed to determine both trend and overbought/oversold conditions, the TSI is applicable to intraday time frames as well as long term trading.
</summary>
<returns></returns>
</member>
<member name="M:NinjaTrader.Indicator.Indicator.TSI(NinjaTrader.Data.IDataSeries,System.Int32,System.Int32)">