Gann HiLo Activator Bars
Gann HiLo Activator Bars
Gann HiLo Activator Bars
//+------------------------------------------------------------------+
//|
Gann HiLo - bars.mq4 |
//|
mladen |
//|
|
//| Original introduced by Robert Krausz
|
//| (February 1998, Stocks & Commodities Magazine
|
//+------------------------------------------------------------------+
#property copyright "www.forex-tsd.com"
#property link
"www.forex-tsd.com"
#property
#property
#property
#property
indicator_chart_window
indicator_buffers 2
indicator_color1 Blue
indicator_color2 Red
//
//
//
//
//
extern int Lb = 10;
double hi[];
double lo[];
double Hlv[];
//+------------------------------------------------------------------+
//|
|
//+------------------------------------------------------------------+
//
//
//
//
//
int init()
{
IndicatorBuffers(3);
SetIndexBuffer(0,hi); SetIndexDrawBegin(0,Lb+1); SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexBuffer(1,lo); SetIndexDrawBegin(1,Lb+1); SetIndexStyle(1,DRAW_HISTOGRAM);
SetIndexBuffer(2,Hlv);
return(0);
}
//
//
//
Page 1
Page 2