iIchimoku Indicator
Overview
Calculates the Ichimoku Kinko Hyo indicator and returns its value.Function Signature
double iIchimoku(
string symbol, // symbol
int timeframe, // timeframe
int tenkan_sen, // period of Tenkan-sen line
int kijun_sen, // period of Kijun-sen line
int senkou_span_b, // period of Senkou Span B line
int mode, // line index
int shift // shift
);
Parameters
NULL for current symbol.ENUM_TIMEFRAMES value. 0 for current chart timeframe.Ichimoku Kinko Hyo mode enumeration:MODE_TENKANSEN (1)
* MODE_KIJUNSEN (2)
* MODE_SENKOUSPANA (3)
* MODE_SENKOUSPANB (4)
* MODE_CHIKOUSPAN (5)
Return Value
Numerical value of the Ichimoku Kinko Hyo indicator.Example
double tenkan_sen = iIchimoku(NULL, 0, 9, 26, 52, MODE_TENKANSEN, 1);
Related Indicators
Previous
arrow_back
Igator
Next
Ibwmfi
arrow_forward