이 전략은 암호화폐 시장에 적합한 간단한 이동 평균 (SMA) 크로스오버 전략이다. 빠른, 중간 및 느린 SMA를 사용하여 잠재적 진입 및 출구 신호를 식별합니다. 빠른 SMA가 중간 SMA를 넘을 때 구매 신호가 생성됩니다. 빠른 SMA가 중간 SMA를 넘을 때 판매 신호가 생성됩니다.
이 전략은 거래자가 다음의 주요 매개 변수를 설정할 수 있도록 합니다.
빠른 SMA, 중간 SMA 및 느린 SMA는 사용자가 설정한 SMA 길이를 기반으로 계산됩니다.
빠른 SMA가 중간 SMA를 넘을 때 구매 신호가 생성됩니다. 빠른 SMA가 중간 SMA를 넘을 때 판매 신호가 생성됩니다.
이 전략은 거래당 명목 원금과 거래당 수용 가능한 위험 비율을 기준으로 거래당 명목 원금을 계산합니다. 그 다음 ATR을 사용하여 스톱 로스 범위를 계산하고 최종적으로 각 거래에 대한 포지션 크기를 결정합니다.
SMA 기간을 단축하고 다른 지표를 추가하여 최적화 할 수 있습니다.
이 전략은 암호화 시장에 적합한 강력한 트렌드 다음 시스템을 위해 SMA 크로스오버 규칙, 리스크 관리 및 포지션 사이징을 통합합니다. 거래자는 거래 스타일, 시장 조건 등과 같은 매개 변수를 조정하여 사용자 정의하고 최적화 할 수 있습니다.
/*backtest start: 2024-01-05 00:00:00 end: 2024-02-04 00:00:00 period: 3h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 strategy("Onchain Edge Trend SMA Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10) // Configuration Parameters priceSource = input(close, title="Price Source") includeIncompleteBars = input(true, title="Consider Incomplete Bars") maForecastMethod = input(defval="flat", options=["flat", "linreg"], title="Moving Average Prediction Method") linearRegressionLength = input(3, title="Linear Regression Length") fastMALength = input(7, title="Fast Moving Average Length") mediumMALength = input(30, title="Medium Moving Average Length") slowMALength = input(50, title="Slow Moving Average Length") tradingCapital = input(100000, title="Trading Capital") tradeRisk = input(1, title="Trade Risk (%)") // Calculation of Moving Averages calculateMA(source, period) => sma(source, period) predictMA(source, forecastLength, regressionLength) => maForecastMethod == "flat" ? source : linreg(source, regressionLength, forecastLength) offset = includeIncompleteBars ? 0 : 1 actualSource = priceSource[offset] fastMA = calculateMA(actualSource, fastMALength) mediumMA = calculateMA(actualSource, mediumMALength) slowMA = calculateMA(actualSource, slowMALength) // Trading Logic enterLong = crossover(fastMA, mediumMA) exitLong = crossunder(fastMA, mediumMA) // Risk and Position Sizing riskCapital = tradingCapital * tradeRisk / 100 lossThreshold = atr(14) * 2 tradeSize = riskCapital / lossThreshold if (enterLong) strategy.entry("Enter Long", strategy.long, qty=tradeSize) if (exitLong) strategy.close("Enter Long") // Display Moving Averages plot(fastMA, color=color.blue, linewidth=2, title="Fast Moving Average") plot(mediumMA, color=color.purple, linewidth=2, title="Medium Moving Average") plot(slowMA, color=color.red, linewidth=2, title="Slow Moving Average")