이 전략은 다음 기준이 충족되면 구매 또는 판매 신호를 생성합니다.
9 EMA는 21 EMA를 넘습니다. 최근에 닫힌 촛불은 이전 5개의 촛불보다 평균적으로 15% 더 많은 부피를 가지고 있습니다. 촛불 반전 패턴 가격은 9 EMA를 넘습니다.
원하는 대로 사용하거나 수정해 주세요.
백테스트
/*backtest start: 2022-01-01 00:00:00 end: 2022-05-07 23:59:00 period: 2h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 //Author: Andrew Shubitowski strategy("Buy/Sell Strat", overlay = true) //Define EMAs & Crossovers (Feature 2) a = ta.ema(close, 9) b = ta.ema(close, 21) crossUp = ta.crossover(a, b) crossDown = ta.crossunder(a, b) //Define & calc volume averages (Feature 1) float volAvg = 0 for i = 1 to 5 volAvg := volAvg + volume[i] volAvg := volAvg / 5 //Define candlestick pattern recongition (Feature 4) bool reversalPatternUp = false bool reversalPatternDown = false if (close > close[1] and close[1] > close [2] and close[3] > close[2] and close > close[3]) reversalPatternUp := true if (close < close[1] and close[1] < close [2] and close[3] < close[2] and close < close[3]) reversalPatternDown := true //Execute trade (Feature 3 + 5) if (crossUp) strategy.entry("long", strategy.long, when = ((volume * 0.85) > volAvg and close > a and reversalPatternUp == true)) if (crossDown) strategy.entry("short", strategy.short, when = ((volume * 0.85) > volAvg and close < a and reversalPatternDown == true)) //Exit strategy (New Feature) //close_condition_long = close < a //close_condition_short = close > a //if (close_condition_long) // strategy.close("long") // //if (close_condition_short) // strategy.close("short") //plot the EMAs plot(a, title = "Fast EMA", color = color.green) plot(b, title = "Slow EMA", color = color.blue) //Some visual validation parameters //plotchar(volAvg, "Volume", "", location.top, color.aqua) //*TEST* volume calc check //plotshape(reversalPatternUp, style = shape.arrowup, color = color.aqua) //*TEST* reversal check //plotshape(reversalPatternDown, style = shape.arrowup, location = location.belowbar, color = color.red) //*TEST* reversal check