This function get price of the last Historical element.


SYNTAX


public double GetPrice (PriceType priceType)


PARAMETERS


priceType — PriceType

Type of price.


RETURN


double Returns a value representing the price of the last 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));
         }     
     }
}