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 cmoran13, 04-16-2026, 01:02 PM
|
0 responses
51 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
31 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
165 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
100 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
160 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment