ค้นหา
ผลิตภัณฑ์
ชุมชน
ตลาด
ข่าว
โบรกเกอร์
เพิ่มเติม
TH
เริ่มกันเลย
ชุมชน
/
ไอเดีย
/
Rsi
ดอลลาร์สหรัฐ / เยนญี่ปุ่น
Rsi
โดย danial37
ติดตาม
ติดตาม
27 มี.ค. 2023
0
27 มี.ค. 2023
//
version
=5
strategy("RSI Strategy", overlay=true)
// Define input variables
rsi_length = input(14, title="RSI Length")
rsi_buy = input(30, title="RSI Buy Threshold")
rsi_sell = input(70, title="RSI Sell Threshold")
// Calculate RSI
rsi_value = rsi(close, rsi_length)
// Define buy and sell signals
buy_signal = rsi_value < rsi_buy
sell_signal = rsi_value > rsi_sell
// Enter long position on buy signal
if (buy_signal)
strategy.entry("Buy", strategy.long)
// Exit long position on sell signal
if (sell_signal)
strategy.close("Buy")
// Plot RSI
plot(rsi_value, title="RSI", color=color.blue)
// Plot buy and sell signals
plotshape(buy_signal, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small)
plotshape(sell_signal, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small)
Technical Indicators
danial37
ติดตาม
คำจำกัดสิทธิ์ความรับผิดชอบ
ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่
ข้อกำหนดการใช้งาน