.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
drawing a data series on price pannel
Collapse
X
-
drawing a data series on price pannel
Hi , I have an indicator with a number of plots in the indicator pannel . I need additional plot to be done on the price pannel , but since plot can not be done there, need to do it as drawing object using the calculated series .
.Tags: None
-
Hello HighTrade,
Thank you for the post.
Currently, there is one panel instance for any indicator instance. Using drawing tools with IsOverLay = false and DrawOnPricePanel = true will allow a plot to draw in the indicator and drawing tools to draw in the price panel.
I have attached a minimal example. Please let me know if I can assist further.Attached Files
-
i am doing the following inside OnBarUpdate:
Draw.Line(this, "PriceLine", true, 1, FM[1], 0,FM[0], Brushes.Blue, DashStyleHelper.Dash, 2);
FM is a series that gets calculated, it is in the same scale as price. However, i only see a small blue line near the last bar , missing all the previous bars. ? please advise. thanks.
Comment
-
Hello HighTrade,
Thank you for the reply.
The tag you are setting for the line is not unique, you must do something like "PriceLine" + CurrentBar to generate a unique tag for every bar. Example:
Draw.Line(this, "PriceLine"+CurrentBar, true, 1, FM[1], 0,FM[0], Brushes.Blue, DashStyleHelper.Dash, 2);
Please let me know if I can assist further.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
73 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
152 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment