찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
pinescript //@version=5 strategy("Moving Average Crossover", ove
미국 달러 / 일본 엔
pinescript //@version=5 strategy("Moving Average Crossover", ove
RockyRintharoSitanggang의
팔로우
팔로우
2023년 7월 30일
0
2023년 7월 30일
pinescript
//
version
=5
strategy("Moving Average Crossover", overlay=true)
// Define inputs
length1 = input(20, "MA1 Length")
length2 = input(10, "MA2 Length")
stopLossOption = input("Fixed 5%", "Stop Loss Option", options=["Fixed 5%", "ATR 14 (2x SL)", "ATR 14 (2x SL) + Trail"])
// Calculate moving averages
ma1 = ta.sma(close, length1)
ma2 = ta.sma(close, length2)
// Define MACD variables
macdLine = ta.ema(close, 12) - ta.ema(close, 26)
signalLine = ta.ema(macdLine, 9)
// Define crossover and crossunder conditions
maCrossUp = ta.crossover(ma1, ma2)
maCrossDown = ta.crossunder(ma1, ma2)
macdCrossUp = ta.crossover(macdLine, signalLine)
macdCrossDown = ta.crossunder(macdLine, signalLine)
// Define stop loss and take profit levels
if stopLossOption == "Fixed 5%"
stopLoss = strategy.position_avg_price * 0.95
takeProfit = strategy.position_avg_price * 1.1
else if stopLossOption == "ATR 14 (2x SL)"
atr14 = ta.atr(14)
stopLoss = strategy.position_avg_price - (2 * atr14)
takeProfit = strategy.position_avg_price + (2 * atr14)
else if stopLossOption == "ATR 14 (2x SL) + Trail"
atr14 = ta.atr(14)
stopLoss = strategy.position_avg_price - (2 * atr14)
takeProfit = strategy.position_avg_price + (2 * atr14)
strategy.exit("Exit", "Buy", stop=stopLoss, trail_points=atr14)
// Define strategy entry and exit conditions
if (maCrossUp and macdCrossUp)
strategy.entry("Buy", strategy.long)
else if (maCrossDown and macdCrossDown)
strategy.entry("Sell", strategy.short)
// Plotting moving averages
plot(ma1, color=color.blue, title="MA1")
plot(ma2, color=color.red, title="MA2")
// Plotting MACD lines
plot(macdLine, color=color.green, title="MACD Line")
plot(signalLine, color=color.orange, title="Signal Line")
// Plotting strategy entry points
strategy.entry("Buy", strategy.long, when=maCrossUp and macdCrossUp)
strategy.entry("Sell", strategy.short, when=maCrossDown and macdCrossDown)
// Plotting stop loss and take profit levels
plot(stopLoss, color=color.red, title="Stop Loss")
plot(takeProfit, color=color.green, title="Take Profit")
Chart Patterns
Trend Analysis
RockyRintharoSitanggang
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.