A short term trend and a long term trend. Only only one of the plots is visible. Could you please look at the attached code and advise what the problem is. Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Help with multi plots
Collapse
X
-
Help with multi plots
Hi, I have coded an indicator that is to plot 2 trend indicators under the price panel.
A short term trend and a long term trend. Only only one of the plots is visible. Could you please look at the attached code and advise what the problem is. Thanks.Tags: None
-
Hello KennyK,
Thanks for your post.
For each plot added you need an output which you have created however the 2nd plot references the incorrect data. In the region properties, the first plot "shortTrend" correctly references Values[0]. The 2nd plot "longTrend" also refers to Values[0], you would need to change Value[0] to Values[1]. The index[0] is not a bars ago index but is a plot series index. If you had 3 plots the next one would need to reference Values[2] and so on for each plot added.
In addition, where you are setting the PlotBrushes, for the TrendLong, you would need to change from PlotBrushes[0][0] to PlotBrushes[1][0] Where [1] is the plots series index and[0] would be the current bar.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment