This function get price of the required Historical element.


SYNTAX


public double GetPrice (PriceType priceType,int offset)


PARAMETERS


priceType — PriceType

Type of price.


offset — int

Defines index of the required element


RETURN


double Returns a value representing the price of the required Historical element with specified type.


EXAMPLE


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

namespace GetPriceExamples
{
     public class GetPriceExamples : NETStrategy
     {       
         public override void OnQuote()
         {
             Instrument inst = Instruments.Current;
             HistoricalData Hist = GetHistoricalData(new HistoricalDataRequest(inst,Period.Min));
             Print(Hist.GetPrice(PriceType.Close,0));
         }     
     }
}