骗子 骗我2个金币!
你的指标代码如下:
int start()
{
int counted_bars=IndicatorCounted();
double MA5,MA34;
//---- TODO: add your code here
for(int i=Bars;i>=0;i--){
MA5=iMA(NULL,0,5,0,MODE_SMA,PRICE_MEDIAN,i);
MA34=iMA(NULL,0,34,0,MODE_SMA,PRICE_MEDIAN,i);
Buffer1[i]=MA5-MA34;
}
//----
return(0);
} |