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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 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
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment