The ask price of the required Historical tick.
SYNTAX
public double Ask (int offset)
PARAMETERS
offset — int
Defines index of the required tick.
RETURN
double Returns a double value representing the ask 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 TickDataClassExamples
{
public class TickDataClassExamples : NETStrategy
{
public override void OnQuote()
{
TickData td = GetHistoricalData(new HistoricalDataRequest(Instruments.Current,Period.Tick)) as TickData;
//TickData Class Method
Print(td.Ask(0));
Print(td.AskSize(0));
Print(td.Bid(0));
Print(td.BidSize(0));
Print(td.Time(0));
//TickData Class Properties: all TickData Class properties enherit from HistoryData Class
}
}
}