이 전략은 이치모쿠 클라우드 지표에 기반하여 설계된 비트코인 거래 전략이다. 단기선이 장기선을 넘을 때 다른 기간 동안의 평형 가격을 계산하여 거래 신호를 생성한다.
이 전략은 이치모쿠 클라우드 지표를 사용합니다. 구체적인 공식은 다음과 같습니다:
Lmax = 기간_max에서 가장 높은 가격
Smax = 기간_max에서 가장 낮은 가격
Lmed = 기간 중 가장 높은 가격
Smed = 기간 중 가장 낮은 가격
Lmin = 기간_min 중 가장 높은 가격
Smin = 기간_min 중 최저 가격
HL1 = (Lmax + Smax + Lmed + Smed) /4
HL2 = (Lmed + Smed + Lmin + Smin)/4
HL2가 HL1를 넘을 때 긴 신호가 생성됩니다. HL2가 HL1을 넘을 때 가까운 신호가 생성됩니다.
이 전략의 장점은 다음과 같습니다.
또한 몇 가지 위험이 있습니다.
이러한 위험은 매개 변수를 최적화하거나 다른 지표를 포함함으로써 줄일 수 있습니다.
이 전략은 다음과 같은 측면에서 최적화 될 수 있습니다.
이 전략은 이치모쿠 클라우드를 기반으로 한 단기 균형선이 장기선을 넘을 때 신호를 생성합니다. 단일 지표와 비교하면 잘못된 신호를 효과적으로 필터합니다. 매개 변수 및 위험 통제에 대한 추가 개선은 안정성과 수익성을 향상시킬 수 있습니다.
/*backtest start: 2023-12-31 00:00:00 end: 2024-01-30 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Alferow //@version=4 strategy("BTC_ISHIMOKU", overlay=true) period_max = input(20, minval = 1) period_med = input(10, minval = 1) period_min = input(16, minval = 1) Lmax = highest(high, period_max) Smax = lowest(low, period_max) Lmed = highest(high, period_med) Smed = lowest(low, period_med) Lmin = highest(high, period_min) Smin = lowest(low, period_min) HL1 = (Lmax + Smax + Lmed + Smed)/4 HL2 = (Lmed + Smed + Lmin + Smin)/4 p1 = plot(HL1, color = color.red, linewidth = 2) p2 = plot(HL2, color = color.green, linewidth = 2) fill(p1, p2, color = HL1 < HL2 ? color.green : color.red, transp = 90) start = timestamp(input(2020, minval=1), 01, 01, 00, 00) finish = timestamp(input(2025, minval=1),01, 01, 00, 00) trig = time > start and time < finish ? true : false strategy.entry("Long", true, when = crossover(HL2, HL1) and trig) // strategy.entry("Short", false, when = crossunder(HL2, HL1) and trig) strategy.close("Long", when = crossunder(HL2, HL1) and trig)