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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
15 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
59 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
42 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
47 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
38 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment