이 전략은 돈치안 통로와 간단한 이동 평균의 두 가지 기술 지표를 결합한다. 가격이 돈치안 통로 하향 궤도를 돌파하고 간단한 이동 평균보다 높을 때 더 많은 포지션을 열고, 가격이 돈치안 통로 상향 궤도를 돌파하고 간단한 이동 평균보다 낮을 때 빈 포지션을 열는다. 다중 포지션은 가격이 돈치안 통로 상향 궤도에 닿을 때 평점 포지션, 빈 포지션은 가격이 돈치안 통로 하향 궤도에 닿을 때 평점 포지션이다. 이 전략은 추세가 강한 시장에 적합하다.
다이내믹 탕치안 통로와 간단한 이동 평균을 결합하는 전략은 간단하고 사용하기 쉬운 양적 거래 전략 프레임워크입니다. 그것은 트렌드 추적과 변동성 돌파의 두 가지 관점에서 평정 포지션 열 논리를 구축합니다. 강한 추세 품종에 적합합니다. 그러나 이 전략은 자주 변동하는 시장에서 잘 작동하지 않으며, 파라미터는 일반적으로 안정적입니다. 보조 포지션 열 조건, 다이내믹 스톱 및 파라미터 자율 적응 메커니즘을 도입함으로써 이 전략의 적응력과 거침을 높일 수 있습니다.
/*backtest
start: 2024-05-01 00:00:00
end: 2024-05-31 23:59:59
period: 4h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("FBK Donchian Channel Strategy", overlay=true)
// Inputs
donchian_period = input.int(20, title="Donchian Channel Period")
donchian_offset = input.int(1, title="Donchian Channel Offset")
sma_period = input.int(200, title="SMA Period")
start_date = input(timestamp("2023-01-01 00:00 +0000"), title="Start Date")
end_date = input(timestamp("2023-12-31 23:59 +0000"), title="End Date")
trade_type = input.string("Both", title="Trade Type", options=["Buy Only", "Sell Only", "Both"])
// Calculate indicators
donchian_upper = ta.highest(high, donchian_period)[donchian_offset]
donchian_lower = ta.lowest(low, donchian_period)[donchian_offset]
sma = ta.sma(close, sma_period)
// Plot indicators
plot(donchian_upper, color=color.red, title="Donchian Upper")
plot(donchian_lower, color=color.green, title="Donchian Lower")
plot(sma, color=color.blue, title="SMA")
// Helper function to check if within testing period
is_in_testing_period() => true
// Entry conditions
long_condition = low <= donchian_lower and close > sma
short_condition = high >= donchian_upper and close < sma
// Exit conditions
exit_long_condition = high >= donchian_upper
exit_short_condition = low <= donchian_lower
// Open long position
if (is_in_testing_period() and (trade_type == "Buy Only" or trade_type == "Both") and long_condition)
strategy.entry("Long", strategy.long)
// Close long position
if (is_in_testing_period() and exit_long_condition)
strategy.close("Long")
// Open short position
if (is_in_testing_period() and (trade_type == "Sell Only" or trade_type == "Both") and short_condition)
strategy.entry("Short", strategy.short)
// Close short position
if (is_in_testing_period() and exit_short_condition)
strategy.close("Short")
// Close all positions at the end of the testing period
if not is_in_testing_period()
strategy.close_all()