Provides DateTime object on the given main chart coordinates.


SYNTAX


public TimePrice GetTimePrice (float x,float y)


PARAMETERS


x — float


y — float


RETURN


TimePrice


EXAMPLE


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
using PTLRuntime.NETScript.Charts;

namespace GetTimePriceExamples
{
     public class GetTimePriceExamples : NETStrategy
     {
         public override void OnQuote()
         {
             //If you need to get price from point of chart you can use these methods
    
         //1)
         PointF point1 = CurrentChart.GetChartPoint(Utils.DateTimeNow,1958,0,false);
         TimePrice tp = CurrentChart.GetTimePrice(point1,0);
         Print("Price:",tp.Price);
         Print("Time:",tp.Time);
    
         //2)
         float x=10;
         float y = 20;
         TimePrice tp2 = CurrentChart.GetTimePrice(x,y,0);
             Print("Price:",tp2.Price);
         Print("Time:",tp2.Time);
         }
     }
}