请教能人!

楼主  收藏   举报   帖子创建时间:  2019-05-05 15:17 回复:0 关注量:601
为什么窗口中什么都没有?请指点!<div class="blockcode"><div id="code_vf5"><ol>
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Green

double sma[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
   {
//---- indicators
     SetIndexStyle(0,DRAW_LINE);
     SetIndexBuffer(0,sma);
//----
    return(0);
   }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
   {
    return(0);
   }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
   {
    int  i,limit,counted_bars=IndicatorCounted();
//----
   {
  
  for( i=0; i
打赏