int counted

楼主  收藏   举报   帖子创建时间:  2019-05-05 15:07 回复:0 关注量:199
请求下面这个画曲线的代码里int Start后面的详解,谢谢!!!
  #property indicator_chart_window
  #property indicator_buffers 1   
  #property indicator_color1 Blue
  double ExtMapBuffer[];
  
  int init()
    {
  SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,5,Red);
  SetIndexBuffer(0,ExtMapBuffer);
     return(0);
    }
  
  int deinit()
    {
  
     return(0);
    }
  
  int start()
    {
     int    counted_bars=IndicatorCounted();
  int cnt;
  if(counted_bars>0) counted_bars--;
  int limit =Bars-counted_bars-1;
  
  for(cnt=0; cnt
打赏