노로
이 전략은 먼저 가격의 가장 높은 가격 채널 (lasthigh) 과 가장 낮은 가격 채널 (lastlow) 을 계산하고, 그 다음 가격 채널의 중간선을 (중심) 계산합니다. 다음으로 가격과 중간선 사이의 거리를 (dist) 계산하고, 거리의 간단한 이동 평균 (distsma) 을 계산합니다. 이를 기반으로 중간선에서 거리의 1 번 (hd 및 ld) 및 2 번 (hd2 및 ld2) 의 변동성 대역을 계산 할 수 있습니다.
이 전략은 트렌드에서 고갈의 징후가 나타나면 역으로 포지션을 개척한다. 예를 들어, 상승 트렌드에서 두 개의 양선이 있으면 두 번째 양선이 닫힐 때 짧은 포지션을 개척한다. 하락 트렌드에서는 두 개의 닌 라인이 있다면 두 번째 닌 라인이 닫힐 때 긴 포지션을 개척한다.
일반적으로 노로
/*backtest start: 2023-11-10 00:00:00 end: 2023-12-10 00:00:00 period: 3h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 strategy("Noro's Bands Scalper Strategy v1.0", shorttitle = "Scalper str 1.0", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value=100.0, pyramiding=0) //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") needbb = input(true, defval = true, title = "Show Bands") needbg = input(true, defval = true, title = "Show Background") src = close //PriceChannel lasthigh = highest(src, len) lastlow = lowest(src, len) center = (lasthigh + lastlow) / 2 //Distance dist = abs(src - center) distsma = sma(dist, len) hd = center + distsma ld = center - distsma hd2 = center + distsma * 2 ld2 = center - distsma * 2 //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 = 80) //Signals bar = close > open ? 1 : close < open ? -1 : 0 up7 = trend == 1 and bar == -1 and bar[1] == -1 ? 1 : 0 dn7 = trend == 1 and bar == 1 and bar[1] == 1 and close > strategy.position_avg_price ? 1 : 0 up8 = trend == -1 and bar == -1 and bar[1] == -1 and close < strategy.position_avg_price ? 1 : 0 dn8 = trend == -1 and bar == 1 and bar[1] == 1 ? 1 : 0 if up7 == 1 or up8 == 1 strategy.entry("Long", strategy.long, needlong == false ? 0 : trend == -1 ? 0 : na) if dn7 == 1 or dn8 == 1 strategy.entry("Short", strategy.short, needshort == false ? 0 : trend == 1 ? 0 : na)