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.
Skrypt open-source

Zgodnie z prawdziwym duchem TradingView, autor tego skryptu opublikował go jako open-source, aby traderzy mogli go zrozumieć i zweryfikować. Brawo dla autora! Możesz używać go za darmo, ale ponowne wykorzystanie tego kodu w publikacji jest regulowane przez Dobre Praktyki. Możesz go oznaczyć jako ulubione, aby użyć go na wykresie.

Wyłączenie odpowiedzialności

Informacje i publikacje przygotowane przez TradingView lub jego użytkowników, prezentowane na tej stronie, nie stanowią rekomendacji ani porad handlowych, inwestycyjnych i finansowych i nie powinny być w ten sposób traktowane ani wykorzystywane. Więcej informacji na ten temat znajdziesz w naszym Regulaminie.

Chcesz użyć tego skryptu na wykresie?
// 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)