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

Comment