求高手翻译移动平均线指标编程!!

楼主  收藏   举报   帖子创建时间:  2019-05-05 10:41 回复:0 关注量:768
#property indicator_chart_window
  #property indicator_buffers 1
  #property indicator_color1 Red
  //---- indicator parameters
  extern int MA_Period=13;
  extern int MA_Shift=0;
  extern int MA_Method=0;
  //---- indicator buffers
  double ExtMapBuffer[];
  //----
  int ExtCountedBars=0;
  //+------------------------------------------------------------------+
  //| Custom indicator initialization function                         |
  //+------------------------------------------------------------------+
  int init()
    {
     int    draw_begin;
     string short_name;
  //---- drawing settings
     SetIndexStyle(0,DRAW_LINE);
     SetIndexShift(0,MA_Shift);
     IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
     if(MA_Period
打赏