Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
panels
Collapse
X
-
Hello FCatan,
Thank you for your note.
You can develop a custom indicator to check the values of the Oscillator and then display text on the Chart Panel.
For information on developing an indicator please visit the following link: http://ninjatrader.com/support/helpG...indicators.htm
You can draw on the price panel using DrawText(), you can find information on this at the following link: http://ninjatrader.com/support/helpG...7/drawtext.htm
Please let me know if you have any questions.
-
Hello FCatan,
Thank you for your response.
Use DrawOnPricePanel: http://ninjatrader.com/support/helpG...pricepanel.htm
Comment
-
OK ... I may be missing this. I have a histogram that prints in panel 2 ... when the histo bar exceeds a certain threshold, I want to display text under the bar on the price panel. When I set DrawOnPricePanel to true, it draws everything on the price panel. What am I doing wrong? Thanks!
Comment
-
Originally posted by FCatan View PostOK ... I may be missing this. I have a histogram that prints in panel 2 ... when the histo bar exceeds a certain threshold, I want to display text under the bar on the price panel. When I set DrawOnPricePanel to true, it draws everything on the price panel. What am I doing wrong? Thanks!
If you set DrawOnPricePanel to "true" in the Initialize() section of the indicator, everything is drawn on the price panel. This is as expected.
What you may try is to switch the panel inside OnBarUpdate():
Avoid switching back and forth between the two panels, and it should work.Code:.... DrawOnPricePanel = true; .... // draw everything you wish to draw on the price panel .... DrawOnPricePanel = false; .... // draw everything you wish to draw on the indicator panel ....
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
612 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
355 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
561 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
564 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment