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);
         }
     }
}