Grasps a point on chart field according to y-axes presented by price and x-axes by time on main window.
SYNTAX
public PointF GetChartPoint (DateTime time,double price)
PARAMETERS
time — DateTime
price — double
RETURN
PointF
EXAMPLE
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace GetChartPointExamples
{
public class GetChartPointExamples : NETStrategy
{
public override void OnQuote()
{
PointF point = CurrentChart.GetChartPoint(Utils.DateTimeNow,1958,0,false);
Print("X:",point.X);
Print("Y:",point.Y);
}
}
}