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
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?
//@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)