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));
         }
     }
}