How do I Call One custom Indicator from a Strategy rather than copying code.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Calling One custom Indicator from a Strategy rather than copying code
Collapse
X
-
Hello maneesh,
To call an indicator type the indicator name followed by parenthesis with any parameters needed for the indicator followed by a bar index.
For example to call the SMA for the most recent bar:
double mySMAValue = SMA(14)[0];
Below is a public link to the help guide on the SMA.
Take a look at the SampleMACrossover strategy for an example of this.Chelsea B.NinjaTrader Customer Service
-
That allows access to the DataSeries produced by the indicator. What if your custom indicator has several objects, each of which produce discrete values ?
Comment
-
-
Same thing. Expose the object as public and access it however you want.Originally posted by spottysallrite View PostThanks, but that still is using the indicator's dataseries ("Diff.set").
ref: http://www.ninjatrader.com/support/f...ead.php?t=4991
Last edited by koganam; 05-30-2018, 08:08 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
169 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
88 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
128 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
208 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
185 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment