© 本贴为 wuwei 原创/首发,严禁抄袭!
HideTestIndicators( )隐藏指标
void HideTestIndicators( bool hide) 函数设置使用智能交易隐藏指标。在交易被测试以后打开相应的图表,标出的指标将不会出现在测试图表中。查看每个指标需应用当前隐藏的标记和第一个标记。
必须注明只有这些指标才可以在测试图表中画出。
参数:
hide - 如果需要隐藏指标为TRUE,否则为FALSE。
示例:
1. HideTestIndicators(true); 2. MaCurrent=iMA(NULL,0,56,0,MODE_EMA,PRICE_CLOSE,0); 3. MaPrevious=iMA(NULL,0,56,0,MODE_EMA,PRICE_CLOSE,1); 4. HideTestIndicators(false);
- // 隐藏测试指标
- //
- void HideTestIndicators()
- {
- for (int i = 0; i < IndicatorsTotal(); i++)
- {
- if (IndicatorGetInteger(i, INDICATOR_DRAWINGS) == 1)
- {
- IndicatorSetInteger(i, INDICATOR_DRAWINGS, 0);
- }
- }
- }
复制代码
|