+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Gann Hilo Activator

The Gann Hilo Activator is an indicator designed to identify trends and generate entry/exit signals based on the crossover of price and a moving average. Using Amibroker AFL, traders can create Gann Hilo Activator indicators to capture trend movements effectively. Integration with Amibroker data feed ensures timely analysis for optimal utilization of this indicator in trading strategies.

/x = Ref(MA(L,3),-1); 
y = Ref(MA(H,3),-1);

Plot(x, "", colorRed);
Plot(y, "", colorLime);

_SECTION_BEGIN( "Price" );
SetChartOptions( 0, chartShowDates | chartShowArrows | chartLogarithmic | chartWrapTitle );
_N( Title = StrFormat( "{{NAME}} - " + SectorID( 1 ) + " - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " + WriteVal( V, 1.0 ) + " {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );
Plot( C, "Close", colorRose, styleCandle | styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() );

if ( ParamToggle( "Tooltip shows", "All Values|Only Prices" ) )
{
    ToolTip = StrFormat( "Open: %g\nHigh:  %g\nLow:   %g\nClose:  %g (%.1f%%)\nVolume: " + NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 ) ) );
}
Plot(MA(C,50), "MA(50)", colorGreen, styleThick);
Plot(MA(C,200), "MA(200)", colorRed, styleThick);
_SECTION_END();

Open chat
1
Hi, how can I help you?