Mt5 version of Gann Hilo

 

Hi there. Can anybody help me with Mql5 version of Gann Hilo indicator please?

This is the Mql4 version.

 

 #property indicator_buffers 1

#property indicator_color1 Blue

extern int Lb=10;

double ssl[],Hld,Hlv;

#property indicator_chart_window

//+------------------------------------------------------------------+

//| Custom indicator initialization function                         |

//+------------------------------------------------------------------+

int init()

  {

//---- indicators

   SetIndexBuffer(0,ssl);

   SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2);

//----

   return(0);

  }

//+------------------------------------------------------------------+

//| Custom indicator deinitialization function                       |

//+------------------------------------------------------------------+

int deinit()

  {

//----

//----

   return(0);

  }

//+------------------------------------------------------------------+

//| Custom indicator iteration function                              |

//+------------------------------------------------------------------+

int start()

  {

//----

   for(int i=Bars-Lb;i>=0;i--)

     {

      if(Close[i]>iMA(Symbol(),0,Lb,0,MODE_SMA,PRICE_HIGH,i+1))

         Hld=1;

      else

        {

         if(Close[i]<iMA(Symbol(),0,Lb,0,MODE_SMA,PRICE_LOW,i+1))

            Hld=-1;

         else

            Hld=0;

        }

      if(Hld!=0)

         Hlv=Hld;

      if(Hlv==-1)

         ssl[i]=iMA(Symbol(),0,Lb,0,MODE_SMA,PRICE_HIGH,i+1);

      else

         ssl[i]=iMA(Symbol(),0,Lb,0,MODE_SMA,PRICE_LOW,i+1);

     }

//----

   return(0);

 

Thank you 

Documentation on MQL5: Language Basics / Preprocessor / Program Properties (#property)
  • www.mql5.com
Language Basics / Preprocessor / Program Properties (#property) - Documentation on MQL5
 
Please, read MQL5.community - User Memo and format your source properly.

 

Hello, SunTzu.

I though I email you the source code already.

 

Here it is. 

Files:
hilo.mq5  3 kb
 
ckingher:

Hello, SunTzu.

I though I email you the source code already.

 

Here it is. 

Thanks a lot!
 

i just downloaded and compiled.

it doesn't work, or it doesn't do anything.

The indicator is displayed in indicators list, properties can be changed, but it doesn't work. 

 
Reason: