찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
Doge
비트코인
Doge
nuttapard의
팔로우
팔로우
10월 18일
3
10월 18일
//
version
=5
indicator("Simple Moving Average Strategy", overlay=true)
// Set the length for moving averages
short_ma_length = 9
long_ma_length = 21
// Calculate moving averages
short_ma = ta.sma(close, short_ma_length)
long_ma = ta.sma(close, long_ma_length)
// Plot the moving averages
plot(short_ma, color=color.blue, title="Short MA (9)")
plot(long_ma, color=color.red, title="Long MA (21)")
// Buy and Sell signals
buy_signal = ta.crossover(short_ma, long_ma)
sell_signal = ta.crossunder(short_ma, long_ma)
// Plot buy/sell signals on the chart
plotshape(buy_signal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sell_signal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Technical Indicators
Trend Analysis
Wave Analysis
nuttapard
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.