GetKagiRequest (Instrument instrument, int period, DataType dataType, int reversal)
method
Create request to Kagi history type.
Syntax
public static HistoricalDataRequest GetKagiRequest (Instrument instrument,int period,DataType dataType,int reversal)
Parameters
instrument — Instrument
Instrument for request.
period — int
Period of one base historical element.
dataType — DataType
Type of data source.
reversal — int
The Kagi line will continue to move up (or down) until prices does not reverse on specified amount.
Return
HistoricalDataRequest
Returns a HistoricalDataRequest value representing the Kagi history with selected parameters.
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace GetKagiRequestExamples
{
public class GetKagiRequestExamples : NETStrategy
{
public override void OnQuote()
{
Instrument inst = Instruments.Current;
HistoricalData Hist = GetHistoricalData(HistoricalDataRequest.GetKagiRequest(inst, 5, DataType.Ask, 0));
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.