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 CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
33 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
195 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
359 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
280 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment