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 NullPointStrategies, Today, 05:17 AM
|
0 responses
23 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
120 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
63 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
45 views
0 likes
|
Last Post
|

Comment