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

สคริปต์โอเพนซอร์ซ

ด้วยเจตนารมณ์หลักของ TradingView ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้เทรดเดอร์สามารถเข้าใจและตรวจสอบได้ ต้องขอบคุณผู้เขียน! ที่ให้คุณใช้ได้ฟรี แต่การนำโค้ดนี้ไปใช้ในการเผยแพร่ซ้ำจะต้องอยู่ภายใต้ กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?

คำจำกัดสิทธิ์ความรับผิดชอบ