GetTimePrice (PointF point, int windowNumber)
method
Provides DateTime object on given main chart point or any sub window by given number.
Syntax
public TimePrice GetTimePrice (PointF point,int windowNumber)
Parameters
point — PointF
windowNumber — int
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.