GetTimePrice (float x, float y)
method
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);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.