看一下代码:
input ENUM_TIMEFRAMES TimePeriod = PERIOD_M1; // Set the timeframe for the stochastic.
void OnInit()
{
int stochastic_output = iStochastic(_Symbol,TimePeriod,5,3,3,MODE_SMA,STO_LOWHIGH);//initialize the value for Stochastic calculator in Handle.
if(!ChartIndicatorAdd(0,(int)ChartGetInteger(0,CHART_WINDOWS_TOTAL),stochastic_output)) //Plot initial chart
{
Comment("Stochastic Cannot be plotted");
}
}
我正在尝试运行将显示运行时中提到的特定时间范围内的随机图的专家。
1 分钟内,图表工作正常,但将时间更改为 2 分钟后,图表不显示,或者如果显示,则为 1 分钟。5分钟等情况也是如此。