This indicator give ADX trend signals associated with Volatility expansion at the same time.
If the histogram is red, DIminus is above DIplus and if its green, DIminus is under DIplus and the trend is bullish.
The oscillation are made by multiplying the ADX value to Bollinger Bands bandwidth, so you can have a rough idea of the trend force (volatility).
I stumble upon this MT4 indicator while browsing information on the web to help someone making an ADX screener, so here it is converted for prorealtime.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//PRC_Waddah Attar ADXxBollinger | indicator //09.10.2017 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge // --- settings //ADXPeriod = 13 //BandsPeriod=20 // --- end of settings adx0 = adx[ADXPeriod] adx1 = diplus[ADXPeriod](weightedclose) adx2 = diminus[ADXPeriod](weightedclose) explo = BollingerUp[BandsPeriod](close)-BollingerDown[BandsPeriod](close) if adx1>=adx2 then r=0 g=255 else r=255 g=0 endif return adx0*explo coloured(r,g,0) style(histogram) as "ADXxBollinger" |
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
Merci Nicolas pour cet indicateur.
Très utile dans une technique de retournement.
thank you for this very interesting indicator Nicolas!
did you define a tradable setup for yourself?
indicator is green, falling: X rising: Y
indicator is red, falling: X rising: Y