찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
Cyber Monday 세일
최대 70% 싸게
커뮤니티
/
아이디어
/
Mio test
BTCUSDT Perpetual Contract
Mio test
damianimichele99의
팔로우
팔로우
7월 5일
0
7월 5일
//
version
=5
indicator("BTC EMA Strategy", overlay=true)
// Impostazione delle medie mobili esponenziali
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
// Traccia le medie mobili esponenziali sul grafico
plot(ema50, title="EMA 50", color=color.blue, linewidth=2)
plot(ema200, title="EMA 200", color=color.red, linewidth=2)
// Segnali di acquisto/vendita
longCondition = ta.crossover(ema50, ema200)
shortCondition = ta.crossunder(ema50, ema200)
plotshape(series=longCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=shortCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Output nel pannello inferiore per i segnali di acquisto/vendita
bgcolor(longCondition ? color.new(color.green, 90) : na, title="Buy Signal Background")
bgcolor(shortCondition ? color.new(color.red, 90) : na, title="Sell Signal Background")
Trend Analysis
damianimichele99
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.