MT4
为什么看不到曲线?请版主解答
回复:0  浏览:904
  • 楼主admin 圈主
  • 2019-05-05 05:30
#property indicator_separate_window
  #property indicator_color1  White
  
  double     buf1[];
  double     buf2[];
  
  
  double     buf[];
  int init()
    {
     SetIndexBuffer(0,buf);
     SetIndexStyle(0,DRAW_LINE);
     return(0);
    }
  int start()
    {
     int limit=Bars-IndicatorCounted();
  
     for(int i=0; i