GetChartPoint (DateTime time, double price)
method
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);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.