Price (int offset)
method
The price of the required Historical tick.
Syntax
public double Price (int offset)
Parameters
offset — int
Defines index of the required tick.
Return
double
Returns a double value representing the bid price of the required Historical tick.
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace TradeDataClassExamples
{
public class TradeDataClassExamples : NETStrategy
{
public override void OnQuote()
{
TradeData TD = GetHistoricalData(new HistoricalDataRequest(Instruments.Current,Period.Day)) as TradeData;
//Methods in TradeData Class
Print(TD.Aggressor(0));
Print(TD.Price(0));
Print(TD.Size(0));
Print(TD.Time(0));
//Properties in TradeData Class
Print(TD.Count);
Print(TD.DataType);
Print(TD.HistoryMode);
Print(TD.HistorySize);
Print(TD.HistoryType);
Print(TD.Instrument);
Print(TD.Loading);
Print(TD.Period);
Print(TD.Reversal);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.