double val = SMA(myDataSeries,10)[0] ;
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Displaying plot of indicator used for computation.
Collapse
X
-
Displaying plot of indicator used for computation.
I have a piece of code like :
where myDataSeries is filled by the values computed by my code. For certain reason I would like to see a plot of SMA on my chart. Is it possible to do it programatically ?Code:Tags: None
-
Create a Plot and Set the values to val?Originally posted by xTrader1 View PostI have a piece of code like :
where myDataSeries is filled by the values computed by my code. For certain reason I would like to see a plot of SMA on my chart. Is it possible to do it programatically ?Code:double val = SMA(myDataSeries,10)[0] ;
-
Thanks, I know about, my example was improper, as SMA has only one plot. I'm using an indicator, which has a lot of plots, so getting their values and creating their plots in invoking indicator would be lengthy. Does somebody know a better trick ?Originally posted by koganam View PostCreate a Plot and Set the values to val?
Comment
-
Hello xTrader1,
Thank you for your post.
Koganam is correct, you would need to create a plot. There is no other method to do this in an indicator's code. However, the Add() method in the strategy code will add the plot for the indicator added through the Add() method.
For information on the Add() method in your strategy code please visit the following link: http://www.ninjatrader.com/support/h...s/nt7/add2.htm
Please let me know if I may be of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
318 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment