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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
131 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
74 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
117 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
111 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
89 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment