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

Mã nguồn mở

Theo tinh thần TradingView thực sự, tác giả của tập lệnh này đã xuất bản dưới dạng nguồn mở để các nhà giao dịch có thể hiểu và xác minh. Chúc mừng tác giả! Bạn có thể sử dụng miễn phí. Tuy nhiên, bạn cần sử dụng lại mã này theo Quy tắc nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?

Thông báo miễn trừ trách nhiệm