Create request to Line Break history type.
SYNTAX
public static HistoricalDataRequest GetLineBreakRequest (Instrument instrument,int period,DataType dataType,int lineBreaks)
PARAMETERS
instrument — Instrument
Instrument for request.
period — int
Period of one base historical element.
dataType — DataTypeType of data source.
lineBreaks — intNumber of line in break.
RETURN
HistoricalDataRequest Returns a HistoricalDataRequest value representing the Line Break history with selected parameters.
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace GetLineBreakRequestExamples { public class GetLineBreakRequestExamples : NETStrategy { public override void OnQuote() { Instrument inst = Instruments.Current; HistoricalData Hist = GetHistoricalData(HistoricalDataRequest.GetLineBreakRequest(inst, 20, DataType.Ask, 5)); } } }