Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Create a New Panel
Collapse
X
-
Create a New Panel
Is there a way to create an additional panel for an indicator to which I can add a custom plot?Tags: None
-
hmm...i guess i'm trying to ask if there is a way to plot on both the price panel as well as on a separate panel below the price panel with the same (single instance of a custom) indicator?
Comment
-
Yes, unfortunate. Please submit as enhancement request. Could likely improve performance processing only a single stream of market data.
Comment
-
Is there a way I can check on this periodically? I'd like to know if and when this feature may be implemented.
Comment
-
Hello CriticalTrader,
Thank you for your forum post.
The best way to check on these suggestions would be to review the new release notes. These will display what changes are made in new releases, and these suggestions are often included in these changes associated with the tracking ID #. You can view release notes by clicking the following link:
Release Notes
Please let me know if I can provide any further assistance.John H.NinjaTrader Customer Service
Comment
-
-
you can plot on both the inidicator panel and the price panel with the follwing technique which I found inside the d3spotter indicator, available in the forum,
in Initialize you have to setDrawOnPricePanel = true;in order to plot on the indicator panel change this property back to false.
sample code fragment from my own code:DrawOnPricePanel = false;
DrawDot("dot" + CurrentBar.ToString(), false, 0, rsi, Color.Green);
DrawOnPricePanel = true;
DrawArrowUp(CurrentBar.ToString() + "up", true, 0, Low[0]-2*TickSize, Color.Green);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
650 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 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
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment