Developed by Robert Krausz, the Gann HiLo Activator is a trend-following technical indicator used to help determine the trend’s direction and to generate with-trend entry signals.
The Gann HiLo Activator is a simple moving average of the previous three periods’ highs or lows. Based on the moving averages logic, it is a trend-following indicator used to reflect the market’s direction of movement. Within the trading system we mentioned earlier, the Gann HiLo activator is responsible for generating entry signals, but also helps determine stop-loss levels.
- Bullish Signal- When price is above the Gann Activator it shows that the trend is bullish and only Buy trades should be executed. In a bullish trend the Gann Activator uses the previous periods’ price lows for calculations.
- Bearish Signal- When price is below the Gann Activator it shows that the trend is bearish and only Sell trades should be executed. In a bearish trend the Gann Activator uses the previous periods’ price highs for calculations.
Coded by request on forum.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
//PRC_Gann HighLow Activator | indicator //31.12.2016 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge //Converted from Metastock version // --- parameters // period = 3 // --- avgH = average[period](high)[1] avgL = average[period](low)[1] if close>avgH then hilo = 1 elsif close<avgL then hilo = 0 endif if hilo then gannHiLo = avgL color = 1 else gannHiLo = avgH color = -1 endif return gannHiLo coloured by color as "gannHiLo activator" |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
salve,
vorrei sapere perchè nel suo grafico compare sul prezzo mentre a me compare a parte …
grazie
Sul grafico principale accanto alla voce Prezzo (vedi in alto a sinistra proprio sotto l’area di lavoro) c’è una chiave inglese, se ci clicca sopra e poi preme “Aggiungi indicatore” l’indicatore prescelto verrà inserito all’interno del grafico. Cliccando invece sul menù contestuale indicatori gli stessi verranno inseriti al di sotto del grafico “Prezzo”
perfetto non lo sapevo ….
ciao grazie..