
이 전략은 이중 시간 프레임에 기반한 동적 지지율 거래 시스템으로, 주경과 일계 시간 프레임에 SMA와 EMA 평행선과 결합된 교차 신호를 통해 거래한다. 시스템은 평행선 사이에 형성되는 지지율을 사용하여 시장 추세와 거래 기회를 식별하고, 두 개의 다른 시간 주기에서 신호를 확인함으로써 거래의 정확성을 높인다. 전략은 백분율 포지션 관리 방식을 채택하고 거래 비용과 미끄러짐 요소를 고려한다.
전략의 핵심 원칙은 두 시간 동안의 평행선의 교차와 위치 관계를 모니터링하여 거래 신호를 결정하는 것입니다.
이 전략은 서로 다른 시간 주기에서 일률적인 교차 신호를 결합하여 비교적 안정적인 거래 시스템을 구축한다. 지지대 개념으로 시장 추세를 인식하고, 여러 확인 메커니즘을 사용하여 거래의 정확성을 향상시킨다. 전략의 설계는 거래 비용, 슬라이드 및 시간 관리 등 실제 거래의 다양한 요소를 고려한다. 일부 고유한 위험이 있지만, 최적화 방향을 제공함으로써 전략의 안정성과 수익성을 더욱 향상시킬 수 있다.
/*backtest
start: 2019-12-23 08:00:00
end: 2024-12-04 00:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Demo GPT - Bull Market Support Band", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100, commission_value=0.1, slippage=3)
start_date = input(timestamp("2018-01-01 00:00 +0000"), title="Start Date")
end_date = input(timestamp("2069-12-31 00:00 +0000"), title="End Date")
lsmaLength = input.int(20, title="Long SMA Length", minval=1)
lemaLength = input.int(21, title="Long EMA Length", minval=1)
customLongTimeframe = input.timeframe("W", title="Long Timeframe") // Khung thời gian dài
ssmaLength = input.int(50, title="Short SMA Length", minval=1)
semaLength = input.int(51, title="Short EMA Length", minval=1)
customShortTimeframe = input.timeframe("D", title="Short Timeframe") // Khung thời gian ngắn
source = close
// Tính toán SMA và EMA cho khung thời gian dài
smaLong = ta.sma(source, lsmaLength)
emaLong = ta.ema(source, lemaLength)
outSmaLong = request.security(syminfo.tickerid, customLongTimeframe, smaLong)
outEmaLong = request.security(syminfo.tickerid, customLongTimeframe, emaLong)
// Tính toán SMA và EMA cho khung thời gian ngắn
smaShort = ta.sma(source, ssmaLength)
emaShort = ta.ema(source, semaLength)
outSmaShort = request.security(syminfo.tickerid, customShortTimeframe, smaShort)
outEmaShort = request.security(syminfo.tickerid, customShortTimeframe, emaShort)
// Plot các chỉ báo trên biểu đồ
smaPlotLong = plot(outSmaLong, color=color.new(color.red, 0), title='20w SMA (Long)')
emaPlotLong = plot(outEmaLong, color=color.new(color.green, 0), title='21w EMA (Long)')
smaPlotShort = plot(outSmaShort, color=color.new(color.red, 0), title='20d SMA (Short)')
emaPlotShort = plot(outEmaShort, color=color.new(color.green, 0), title='21d EMA (Short)')
// Fill vùng giữa các đường SMA và EMA
fill(smaPlotLong, emaPlotLong, color=color.new(color.orange, 75), fillgaps=true)
fill(smaPlotShort, emaPlotShort, color=color.new(color.orange, 75), fillgaps=true)
// Điều kiện long và short cho khung thời gian dài
longConditionLong = ta.crossover(outEmaLong, outSmaLong)
shortConditionLong = ta.crossunder(outEmaLong, outSmaLong)
// Điều kiện long và short cho khung thời gian ngắn
longConditionShort = ta.crossover(outEmaShort, outSmaShort) and (outEmaShort > outEmaLong)
shortConditionShort = ta.crossunder(outEmaShort, outSmaShort) and (outEmaShort > outEmaLong) // Điều kiện short khi EMA ngắn hạn cắt xuống dưới SMA ngắn hạn và EMA ngắn hạn cao hơn EMA dài hạn
// Kiểm tra điều kiện trong khoảng thời gian được chỉ định
inDateRange = true
// Nếu khung ngắn hạn xuất hiện tín hiệu short, ưu tiên đóng tất cả các lệnh Long
if shortConditionShort and inDateRange
strategy.close_all()
// Nếu khung dài có tín hiệu short, đóng tất cả các lệnh Long
if shortConditionLong and inDateRange
strategy.close_all()
// Nếu khung ngắn hạn có tín hiệu long và không có tín hiệu short từ khung dài, vào lệnh Long
if longConditionShort and not shortConditionLong and not shortConditionShort and inDateRange
strategy.entry("Long", strategy.long)
// Đóng tất cả các lệnh khi không trong khoảng thời gian được chọn
if not inDateRange
strategy.close_all()