GetChinkouSpan (int offset)
method
Retrieves Ilchimoku ChinkouSpan line value according to given offset.
Syntax
public double GetChinkouSpan (int offset)
Parameters
offset — int
Return
double
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace iIchimokuClassExamples
{
public class iIchimokuExamples : NETStrategy
{
public override void OnQuote()
{
//If you use this method you can get indicators data
Indicator Ichimoku = Indicators.iIchimoku(CurrentData,12,15,5);
//Also you can use methods of the class
double Ichimoku_ChinkouSpan = Indicators.iIchimoku(CurrentData,12,15,5).GetChinkouSpan(1);
double Ichimoku_KijunSen = Indicators.iIchimoku(CurrentData,12,15,5).GetKijunSen(1);
double Ichimoku_SenkouSpanA = Indicators.iIchimoku(CurrentData,12,15,5).GetSenkouSpanA(1);
double Ichimoku_SenkouSpanB = Indicators.iIchimoku(CurrentData,12,15,5).GetSenkouSpanB(1);
double Ichimoku_TenkanSen = Indicators.iIchimoku(CurrentData,12,15,5).GetTenkanSen(1);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.