Michael Proffe ist a german trend follower who uses 4 indicators (macd, momentum, williams percent and rsi) to detect the bear and bull phase from a stock.
the settings are a secret from michael proffe. i thougt about the indicator and created my own one with all 4 indicator to one signal. bull or bear phase.
only use it on daily chart time frame.
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 29 30 31 32 33 34 35 36 37 38 39 |
c1 = MACDline[12,26,9](close) c2 = RSI[70](close) c3 = Momentum[60](close) c4 = Williams[70](close) if c1 >= 0 then result = 1 else result = 0 endif if c2 >= 50 then result1 = 1 else result1 = 0 endif if c3 >= 0 then result2 = 1 else result2 = 0 endif if c4 >= -50 then result3 = 1 else result3 = 0 endif c5 = (result + result1 + result2 + result3)/4 c6 = average[5](c5) if c6 > 0.49 then result4 = 1 else result4 = -1 endif return result4,0 |
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
Very interesting indicator. Thanks for contributing it. What volume node or volume profile indicator are you using in the chart?