커뮤니티
문의드립니다
//@version=5
indicator("Nasdaq 98% Trend System", overlay=true)
// EMA
ema200 = ta.ema(close, 200)
plot(ema200, color=color.orange, linewidth=2)
// Supertrend
atrPeriod = 10
factor = 3
[supertrend, direction] = ta.supertrend(factor, atrPeriod)
plot(supertrend, color=direction > 0 ? color.green : color.red, linewidth=2)
// RSI
rsi = ta.rsi(close, 14)
// ADX
adx = ta.adx(14)
// 조건
longCondition = close > ema200 and direction > 0 and rsi > 55 and adx > 25
shortCondition = close < ema200 and direction < 0 and rsi < 45 and adx > 25
plotshape(longCondition, location=location.belowbar, color=color.green, style=shape.triangleup, title="BUY")
plotshape(shortCondition, location=location.abovebar, color=color.red, style=shape.triangledown, title="SELL")
수고 많으십니다
위 수식 예스트레이드 시스템으로 변환 부탁드리겠습니다
감사합니다
답변 1
예스스탁 예스스탁 답변
2026-03-16 14:08:01