OPEN-SOURCE SCRIPT

lets work - RSI Band Strategy

//version=5
strategy("Demo GPT - RSI Band Strategy", overlay=true, commission_type=strategy.commission.percent, commission_value=0.1, slippage=3)

// Inputs
length = input.int(14, title="RSI Length")
overSold = input.float(30, title="Lower Band (Buy)")
overBought = input.float(70, title="Upper Band (Sell)")

// Date filters
startDate = input.time(timestamp("2018-01-01 00:00"), title="Start Date", group="Date Filters")
endDate = input.time(timestamp("2069-12-31 23:59"), title="End Date", group="Date Filters")

// RSI Calculation
price = close
vrsi = ta.rsi(price, length)

// Timeframe filter
inDateRange = (time >= startDate and time <= endDate)

// Conditions
buyCondition = ta.crossover(vrsi, overSold) and inDateRange
sellCondition = ta.crossunder(vrsi, overBought) and inDateRange

// Entry and exit logic
if buyCondition
strategy.entry("Buy", strategy.long)

if sellCondition
strategy.close("Buy")

// Plot RSI for visual reference
plot(vrsi, title="RSI", color=color.blue)
hline(overSold, "Lower Band (Buy)", color=color.green)
hline(overBought, "Upper Band (Sell)", color=color.red)
bgcolor(inDateRange ? na : color.new(color.gray, 90), title="Out of Date Range")
Bands and ChannelsChart patterns

Script de código abierto

Siguiendo fielmente el espíritu de TradingView, el autor de este script lo ha publicado en código abierto, permitiendo que otros traders puedan entenderlo y verificarlo. ¡Olé por el autor! Puede utilizarlo de forma gratuita, pero tenga en cuenta que la reutilización de este código en la publicación se rige por las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

¿Quiere utilizar este script en un gráfico?

Exención de responsabilidad