Custom Indicator Wizard

 
Rather pedantic of me, I know, but if you use the Custom Indicator Wizard to create the initial program code structure, the 'deinitialization function' header comment section has the word 'Custor', rather than 'Custom'.

No effect on operation, just a typo error.

G'Jim c):{-
 
Rather pedantic of me, I know, but if you use the Custom Indicator Wizard to create the initial program code structure, the 'deinitialization function' header comment section has the word 'Custor', rather than 'Custom'.

what the build do You use? please download our latest version
 
what the build do You use? please download our latest version


Here is the initial code file, generated by the latest build (173):

//+------------------------------------------------------------------+
//|                                                        Test1.mq4 |
//|                                                        Jim Arner |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "Jim Arner"
#property link      ""

#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//---- 
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int    counted_bars=IndicatorCounted();
//---- 
   
//----
   return(0);
  }
//+------------------------------------------------------------------+



Here is the typo section, repeated:

//+------------------------------------------------------------------+
//| Custor indicator deinitialization function                       |
//+------------------------------------------------------------------+




GJim c):{-

Reason: