EA编程初学者遇到的一个问题

楼主  收藏   举报   帖子创建时间:  2019-05-05 15:23 回复:0 关注量:691
本帖最后由 guchuan 于 2014-2-25 17:37 编辑

本人想在副图中画一条横直线,程序编译都已经通过了,但是在窗口中没有显示出来,是什么原因呢?请教名师指点!谢谢!!
附上程序:(MT4平台)

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 LightSeaGreen
double ABC[];
int Init()
  {
    SetIndexStyle(1,DRAW_LINE);
    SetIndexBuffer(0,ABC);
    SetIndexDrawBegin(0,2);
    return(0);  
    }
int start()
  {
   int limit=Bars-IndicatorCounted();
   for(int i=0; i<limit; i++)
   ABC=1.78;
   return(0);
  }


1111.jpg
11.jpg
打赏