LD3K

RSI small trade strategy

242
Trialling a small gains strategy.
Unfortunately it caps out at 2000 trades otherwise I would be improving the maximum loss of stopping out trades once the RSI entered an overbought or oversold region
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?
//@version=2
strategy("RSI small trade strategy", overlay=true, precision=5, currency="AUD")
length = input( 7 )
overSold = input( 30 )
overBought = input( 70 )
midline = input (50)
price = close

vrsi = rsi(price, length)

//long
strategy.entry("RsiLE", strategy.long, qty=10000,comment="RsiLE", when = crossunder(vrsi, midline) )
//strategy.exit("RsiLE Exit","RsiLE",loss=200)
//short
strategy.entry("RsiSE", strategy.short, qty=10000, comment="RsiSE", when = crossover(vrsi, midline))
//strategy.exit("RsiSE Exit","RsiSE",loss=200)
//strategy.close_all(when = vrsi > overBought or vrsi < overSold)
plot(strategy.equity, title="equity", color=blue, linewidth=2, style=areabr, transp=80)