GetPrice (PriceType priceType, int offset)
method
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));
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.