Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Help with Understanding Indicator panel Plotting
Collapse
X
-
Help with Understanding Indicator panel Plotting
I need some help understanding how indicators plot in the panel. I have an indicator that hosts two instances of another indicator. A 1 minute instance and a 5 minute instance. The goal is to Plot the graphs together. For the most part it is working but with a few defects. The top one is the attempted Merge. The defect is in the red box descending bars should be the darker green color like the 5 min chart at the bottom. NT is only modifying the first of 5 bars. There are more issues but I would like to address them one at a time.
Last edited by Itachi; 03-02-2025, 08:35 PM.Tags: None
-
I have an indicator that hosts two instances of another indicator. A 1 minute instance and a 5 minute instance. The goal is to Plot the graphs together. For the most part it is working but with a few defects. The top one is the attempted Merge. The defect is in the red box descending bars should be the darker green color like the 5 min chart at the bottom. NT is only modifying the first of 5 bars. There are more issues but I would like to address them one at a time.
Comment
-
This is the logic for the plots
Code:if (SqueezeDef[0] > 0) PlotBrushes[0][0] = SqueezeDef[0] < SqueezeDef[1] ? Brushes.ForestGreen : Brushes.LightGreen; else PlotBrushes[0][0] = SqueezeDef[0] < SqueezeDef[1] ? Brushes.Red : Brushes.Maroon; if (SqueezeDefHigh[0] > 0) PlotBrushes[1][0] = SqueezeDefHigh[0] < SqueezeDefHigh[1] ? Brushes.ForestGreen : Brushes.LightGreen; else PlotBrushes[1][0] = SqueezeDefHigh[0] < SqueezeDefHigh[1] ? Brushes.Red : Brushes.Maroon;
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
222 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
138 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
154 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
237 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
195 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment