Is there a NinjaScript method or other easy solution for converting the .NET Point type to X/Y (Bars/Price) coordinates and vice versa?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Point type to Bars/Price converter?
Collapse
X
-
-
Hello,
Thank you for the question.
There are easy methods for this hidden in the ChartControl.
For X coordinates by bar number, you can use:
or for TIme:Code:ChartControl.GetXByBarIdx(BarsArray[0], 100)
for Y:Code:ChartControl.GetXByTime(Time[0]);
Depending on where these are used, ChartControl can be null so a null check is always recommended as well:Code:ChartControl.GetYByValue(this, 2000);
I look forward to being of further assistance.Code:if(ChartControl != null) { //do stuff }
-
How do we convert back from the .NET x,y coordinates to NinjaTrader barnumber/price?
So we might have something like
double x = ChartControl.GetXByBarIdx(BarsArray[0], barnumber);
double y = ChartControl.GetYByValue(this, pricevalue);
//do some calculations using x,y and get updated values x1,y1
//we then want
int barnumber = GetBarNumber(x1);
double priceval = GetPrice(y1);
This is just dummy code but how would GetBarNumber(), GetPrice() be implemented?
Comment
-
Hello,
Thank you for the question.
For NT7 I would have no suggestion here as there are no exposed methods for this that I could relay. Going forward in NT8 the ChartControl and other chart-related coordinate methods have all been exposed so you can translate back and forth between coordinate and price/time.
If any other NT7 users have custom solutions for this question an answer would be welcome for any undocumented/unsupported solutions.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment