ค้นหา
ผลิตภัณฑ์
ชุมชน
ตลาด
ข่าว
โบรกเกอร์
เพิ่มเติม
TH
เริ่มกันเลย
ชุมชน
/
ไอเดีย
/
5mins strategy
BNBUSDT Perpetual Contract
การศึกษา
5mins strategy
โดย Ronzerep
ติดตาม
ติดตาม
1 มี.ค. 2024
0
//
version
=4
strategy("5-Minute Chart Strategy", overlay=true)
// Input parameters
rsiLength = input(14, title="RSI Length")
overbought = input(70, title="Overbought Level")
oversold = input(30, title="Oversold Level")
emaLength = input(20, title="EMA Length")
// Calculate RSI
rsi = rsi(close, rsiLength)
// Calculate EMA
ema = ema(close, emaLength)
// Define entry and exit conditions
if crossover(close, ema) and rsi < oversold
strategy.entry("Buy", strategy.long)
if crossunder(close, ema) and rsi > overbought
strategy.entry("Sell", strategy.short)
// Plot EMA
plot(ema, color=color.blue)
// Plot RSI
plot(rsi, color=color.red)
Trend Analysis
Ronzerep
ติดตาม
และใน:
คำจำกัดสิทธิ์ความรับผิดชอบ
ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่
ข้อกำหนดการใช้งาน