찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
//@version=5 indicator("Simple Moving Average Crossover", overla
INFOSYS LTD
//@version=5 indicator("Simple Moving Average Crossover", overla
ashokaanjana706의
팔로우
팔로우
2023년 12월 29일
0
2023년 12월 29일
//
version
=5
indicator("Simple Moving Average Crossover", overlay=true)
// Input for moving average length
length = input(14, title="Moving Average Length")
// Calculate SMAs
sma_short = sma(close, length)
sma_long = sma(close, 2 * length)
// Plot SMAs on the chart
plot(sma_short, color=color.blue, title="Short MA")
plot(sma_long, color=color.red, title="Long MA")
// Buy signal when short MA crosses above long MA
strategy.entry("Buy", strategy.long, when=crossover(sma_short, sma_long))
// Sell signal when short MA crosses below long MA
strategy.entry("Sell", strategy.short, when=crossunder(sma_short, sma_long))
Technical Indicators
ashokaanjana706
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.