Nico.Muselle

[NM] Reversal Candles v01

Reversal candles are a very easy way to identify a turn in trend, this indicator has some specific additional conditions for the reversal candle.

BUY Signal reversal candle
  • Low of current candle exceeds low of previous candle
  • Low of current candle is lowest for last 7 candles
  • High of current candle exceeds high of previous candle
  • Close of current candle is in the upper 50% of the range of this candle

SELL Signal reversal candle
  • High of current candle exceeds high of previous candle
  • High of current candle is Highest for last 7 candles
  • Low of current candle exceeds low of previous candle
  • Close of current candle is in the lower 50% of the range of this candle

How do I trade it ? (example buy signal)
  • Wait for close of the candle and the BUY signal
  • Put a buy stop entry 5 pips above the high of the candle
  • Put a stop loss 5 pips below the low of the candle
  • Calculate difference between entry and stop loss and set your target that number of pips above the entry for a 1:1 RR trade*
  • Wait for your your target or stop loss to be triggered
    * Alternatively, you can take 50% of the profit at the 1st (1:1 RR) profit target, move your stop to break even and let the rest of the position run for a higher potential profit.

Further advice on use
Personally I always look for some additional confirmation like a support or resistance level, a bounce of the EMA or a fibonacci level, but please feel free to add additional filters to make the strategy even more effective. I would strongly advise to backtest your strategy first so you can fine tune it and have confidence in trading it. Forward testing on a demo account before going live, although it takes longer, can be a worthy alternative. Works better on higher time frames.

How do you use it ?
Please leave a note in the comment section below to let me know if you use the indicator and how. There's definitely not just one way to use the indicator so I'm curious about your feedback.

To apply the script to your chart, just add it to your favourites so you can easily find it in the Indicators list.

Kindly leave me a thumbs up if you like this indicator or support my work, and do not hesitate to visit my other indicators. Thanks for your visit

Check out my FREE indicator scripts:
www.tradingview.com/u/Nico.Muselle/

Twitter: twitter.com/NicoMuselle
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
//  Created by Nico Muselle
study(title="[NM] Reversal Candles", shorttitle="Reversal by NM", overlay=true)


// 
ReversalLong = low[0] < low[1] and high[0] > high[1] and close[0] > low[0] + (high[0] - low[0])/2 and low[0] < low[2] and low[0] < low[3] and low[0] < low[4] and low[0] < low[5] and low[0] < low[6] and low[0] < low[7]
ReversalShort = low[0] < low[1] and high[0] > high[1] and close[0] < high[0] - (high[0] - low[0])/2 and high[0] > high[2] and high[0] > high[3] and high[0] > high[4] and high[0] > high[5] and high[0] > high[6] and high[0] > high[7]


// Bar Colors and signals
plotshape(ReversalLong,  title= "ReversalLong", location=location.belowbar, color=green, style=shape.triangleup, text="BUY")
plotshape(ReversalShort,  title= "ReversalShort", location=location.abovebar, color=red, style=shape.triangledown, text="SELL")

//bgcolor(ReversalLong ==1 ? lime : ReversalShort==1 ? red : na, transp=70)