一、系统指标
系统指标以字母i开头,如iMACD 、iCCI等
double iCCI(
string symbol, // symbol
int timeframe, // timeframe
int period, // averaging period
int applied_price, // applied price
int shift // shift
);
直接调用即可
二、自定义指标
自定义指标使用iCustom进行调用
double iCustom(
string symbol, // symbol 货币兑
int timeframe, // timeframe 周期
string name, // path/name of the custom indicator compiled program 自定义指标名称
… // custom indicator input parameters (if necessary) 自定义指标参数
int mode, // line index 自定义指标的哪根线
int shift // shift 哪根k线上的值
);
自定义指标可能含有多根线,mode指明取哪根线的值