Johnman

therebel Magic System

123
Simple programming exercise of the system described by /u/therebel.
Signals MACD crossover on price above and below EMA 200 (blue for longs, red for shorts).
You should wait for the candle to close before considering the signal. And always check the fundamentals.

Risk less than 2% per trade, allow winners to run using a trailing stop.
When the market has proved you wrong exit with out any hesitation. This is key.

Might be useful for someone, but don't take it too seriously. If I might add something, I think a good trailing stop can be the previous candle wick.
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
// Simple programming exercise as described by therebel
// Signals MACD crossover on price above and below EMA 200

study("therebel Magic System", overlay=true)
movingAverage = ema(close, 200)
color1 = close > movingAverage ? blue : red
[macdLine, signalLine, histLine] = macd(close, 12, 26, 9)
signalUp = macdLine[1] < signalLine[1] and macdLine[0] > signalLine[0] and close > movingAverage
signalDown = macdLine[1] > signalLine[1] and macdLine[0] < signalLine[0] and close < movingAverage
plotshape(signalUp, style=shape.labelup, color=blue)
plotshape(signalDown, style=shape.labeldown, color=red)