Bid (int offset)
method
The bid price of the required Historical tick.
Syntax
public double Bid (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 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
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.