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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
332 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment