HistoricalDataRequest (Instrument instrument, int period, DataType dataType, HistoryType historyType, int historySize, int reversal, BarsAggregations mode)
constructor
Constructor for historical data request with all input parameters.
Syntax
public HistoricalDataRequest (Instrument instrument,int period,DataType dataType,HistoryType historyType,int historySize,int reversal,BarsAggregations mode)
Parameters
instrument — Instrument
period — int
dataType — DataType
historyType — HistoryType
historySize — int
reversal — int
mode — BarsAggregations
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace HistoricalDataRequestExamples
{
public class HistoricalDataRequestExamples : NETStrategy
{
public override void OnQuote()
{
Instrument inst = Instruments.Current;
HistoricalData Hist =GetHistoricalData(new HistoricalDataRequest(inst,Period.Day,DataType.Ask,HistoryType.Simple,20,0,BarsAggregations.None));
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.