I guess this is not supported in Ninja 8
ChartControl.GetYByValue(this, price);
So I looked at using
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
// gets the pixel coordinate of the price value passed to the method
int yByValue = chartScale.GetYByValue(Close[0]);
Print("yByValue: " + yByValue); // 207
}
Is there an efficient way to get GetYByValue?
Thanks in advance

Comment