이 전략은 중간선에서 가격의 오차를 계산하기 위해 가격 채널을 구성하고 신호를 필터하기 위해 이동 평균을 사용하여 트렌드를 식별하고 추적합니다. 거래 신호는 가격이 채널을 통과 할 때 생성됩니다. 전략은 트렌드 추적 및 브레이크업 특성을 모두 가지고 있습니다.
이 전략은 전반적으로 중장기 트렌드를 효과적으로 추적하면서 트렌드 브레이크오웃을 통해 거래 신호를 생성하는 데 상당히 견고합니다. 더 많은 제품과 시장 환경에 전략을 조정하기 위해 매개 변수 최적화 및 신호 필터링을 통해 추가 개선이 가능합니다.
/*backtest start: 2023-01-30 00:00:00 end: 2024-02-05 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 strategy("Noro's Bands Strategy v1.1", shorttitle = "NoroBands str 1.1", overlay=true) //Settings needlong = input(true, defval = true, title = "Long") needshort = input(true, defval = true, title = "Short") len = input(20, defval = 20, minval = 2, maxval = 200, title = "Period") color = input(true, "Color") needbb = input(true, defval = false, title = "Show Bands") needbg = input(true, defval = false, title = "Show Background") src = close //PriceChannel 1 lasthigh = highest(src, len) lastlow = lowest(src, len) center = (lasthigh + lastlow) / 2 //dist dist = abs(src - center) distsma = sma(dist, len) hd = center + distsma ld = center - distsma //Trend trend = close < ld and high < hd ? -1 : close > hd and low > ld ? 1 : trend[1] //Lines colo = needbb == false ? na : black plot(hd, color = colo, linewidth = 1, transp = 0, title = "High band") plot(center, color = colo, linewidth = 1, transp = 0, title = "center") plot(ld, color = colo, linewidth = 1, transp = 0, title = "Low band") //Background col = needbg == false ? na : trend == 1 ? lime : red bgcolor(col, transp = 90) //Signals up = trend == 1 and ((close < open or color == false) or close < hd) ? 1 : 0 dn = trend == -1 and ((close > open or color == false) or close > ld) ? 1 : 0 longCondition = up == 1 if (longCondition) strategy.entry("Long", strategy.long, needlong == false ? 0 : na) shortCondition = dn == 1 if (shortCondition) strategy.entry("Short", strategy.short, needshort == false ? 0 : na)