本帖最后由 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); } |
EA编程初学者遇到的一个问题
回复:0 浏览:718
- 楼主admin 圈主
- 2019-05-05 15:23