This is my first contribution to the library.
I was inspired by the indicator of a very good trader Fabrizio (aka Forex Fabri Ferrero), but do not know his original code because it is protected, so I tried to code it myself.
I use it mainly for binary options with a 4-step scale for each entry into martingale.
The reversing signal from me to the overcoming of the value 25, then 50, then 75, then 100, and vice versa with negative values.
edit by admin: this technical indicator operates basically as a dynamic scale of the last-minute price (actual candlestick compared to the previous 60th one and weighted by the market speed within the ATR).
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 |
//Alessandro Paolini indicator //n1=0 //n2=60 rendopen = (10000*LOG(open[n1]/close[n2]))/((AverageTrueRange[n2](close))*1000) rendhigh = (10000*LOG(high[n1]/close[n2]))/((AverageTrueRange[n2](close))*1000) rendlow = (10000*LOG(low[n1]/close[n2]))/((AverageTrueRange[n2](close))*1000) rendclose = (10000*LOG(close[n1]/close[n2]))/((AverageTrueRange[n2](close))*1000) IF rendopen <= rendclose THEN // Green candlestick DRAWCANDLE(rendopen,rendhigh,rendlow,rendclose) COLOURED(0,255,0) ELSE // Red candlestick DRAWCANDLE(rendopen,rendhigh,rendlow,rendclose) COLOURED(255,0,0) ENDIF DRAWHLINE(0)coloured(0,0,0) DRAWHLINE(100)coloured(200,0,0) DRAWHLINE(50)coloured(200,0,0) DRAWHLINE(25)coloured(200,0,0) DRAWHLINE(75)coloured(200,0,0) DRAWHLINE(-100)coloured(0,200,0) DRAWHLINE(-50)coloured(0,200,0) DRAWHLINE(-25)coloured(0,200,0) DRAWHLINE(-75)coloured(0,200,0) RETURN |
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