iGator (HistoricalData data, int jaw_period, int jaw_shift, int teeth_period, int teeth_shift, int lips_period, int lips_shift, MAMode mode, PriceType priceType)
method
Returns an instance of the class iGator, which calculates the value of the indicator Gator.
Syntax
public iGator iGator (HistoricalData data,int jaw_period,int jaw_shift,int teeth_period,int teeth_shift,int lips_period,int lips_shift,MAMode mode,PriceType priceType)
Parameters
data — HistoricalData
Data for the calculation of the indicator
jaw_period — int
jaw period
jaw_shift — int
jaw shift
teeth_period — int
teeth period
teeth_shift — int
teeth shift
lips_period — int
lips period
lips_shift — int
lips shift
mode — MAMode
сalculation modes of MA indicator
priceType — PriceType
type of prices for indicator calculation
Return
iGator
Returns an instance of the class iGator
Example
The following code example shows how to use the indicator Gator.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PTLRuntime.NETScript;
using System.Drawing;
using PTLRuntime.NETScript.Indicators;
namespace Indicators
{
public class IndicatorExample : NETStrategy
{
private Indicator indicator;
public override void Init()
{
indicator = Indicators.iGator(CurrentData, 13, 8, 8, 5, 5, 3, MAMode.SMA, PriceType.Low);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.