Retrieves Ilchimoku GetSenkouSpanA cloud higher value according to given offset.
SYNTAX
public double GetSenkouSpanA (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);
}
}
}