Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Y coordinates for values plotted ScaleJustification.Left
Collapse
X
-
Y coordinates for values plotted ScaleJustification.Left
I have an indicator with two series plotted. Primary series is plotted with ScaleJustification.Right, and second series is plotted with ScaleJustification.Left. In Ninjascript how can I get Y coordinates for the second series values plotted with ScaleJustification.Left?Tags: None
-
I should note that I do have a workaround, which is to create a second indicator running on my second series and assigned to the same panel but with output to the left scale. OnRender for this second indicator operates with ScaleJustification.Left where I can get the Y coordinates for my second series and communicate those values to the other indicator as static or common variables through an Add-On. This works. It is clumsy. It may not be the most efficient approach.
-
HI jvanelli, thanks for posting. ScaleJustification is a property of the indicator and not the Plot objects. To access data from each Plot you can use the Values[][] array. e.g. Values[0][0] for the first plot and Values[1][0] for the second plot.
Kind regards,
-ChrisLChris L.NinjaTrader Customer Service
Comment
-
Hi jvanelli, An indicator can access all Scales on the chart, see here:
One indicator can create an object of the other indicator to get its Series values, and use GetYByValue() for the chart scale in the above collection. That would be the best way to get the y coordinate without directly accessing it or sharing it through an addon.
Chris L.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by Mindset, Today, 11:57 AM
|
0 responses
2 views
0 likes
|
Last Post
by Mindset
Today, 11:57 AM
|
||
Started by marksingh87, 02-13-2024, 04:55 PM
|
10 responses
554 views
1 like
|
Last Post
by Malletto
Today, 11:05 AM
|
||
Started by agilek, 09-13-2021, 08:11 AM
|
27 responses
2,003 views
0 likes
|
Last Post
by Malletto
Today, 11:02 AM
|
||
Started by DayTradingDEMON, 09-10-2024, 08:23 AM
|
12 responses
237 views
0 likes
|
Last Post Today, 10:52 AM | ||
Started by jaybedreamin, 01-30-2023, 12:47 AM
|
2 responses
159 views
0 likes
|
Last Post Today, 10:38 AM |
Comment