double iIchimoku( string symbol, int timeframe, int tenkan_sen, int kijun_sen, int senkou_span_b, int mode, int shift)
计算Ichimoku Kinko Hyo并且返回它的值。
参数:
symbol - 计算指标数据上的货币对名称. NULL表示当前货币对.
timeframe - 时间周期。 可以时间周期列举任意值. 0表示当前图表的时间周期.
tenkan_sen - Tenkan Sen 平均周期.
kijun_sen - Kijun Sen 平均周期.
senkou_span_b - Senkou SpanB 平均周期.
mode - 数据源代码。它可以是 Ichimoku Kinko Hyo 列举模式的任意值.
shift - 从显示缓冲采取的值的索引(转移相对当前柱特定相当数量期间前).
示例:
- double tenkan_sen=iIchimoku(NULL, 0, 9, 26, 52, MODE_TENKANSEN, 1);
复制代码
|