Here I have shown a Heikin Ashi Trading Setup. I'm using forementioned candles, with smoothing, and a PMARP signal to confirm entry (Long or Short) positions. For the PMARP I give full credit to Eric Krown and is linked in this published idea. I've adjusted the settings to give a cleaner look and to use only the relevant information.
Trading strategy is anchored to the chart, but here it is again:
STRATEGY RULES - Heikin Ashi Candles
LONG Wait for BUY signal, then wait for candle to close Next smoothing bar or 2nd should be BLUE PMARP must be on OR above 85% SL on bottom of bar before BUY candle TP on SELL candle or first YELLOW candle
SHORT Wait for SELL signal, then wait for candle to close Next smoothing bar or 2nd should be YELLOW PMARP must be on OR below 15% SL on TOP of bar before SELL candle TP on BUY candle or first BLUE candle
STRATEGY RULES - PMARP
Once candle chart prints a BUY signal, wait for PMARP to be on OR above the 85% line Once candle chart prints a SELL signal, wait for PMARP to be on OR below the 15% line
This seems to work well in backtesting on lower time frames such as 5M, 15M, and 30M. I'm using this for scalping/day trading so haven't tested on longer time frames.
Good luck every *NOT FINANCIAL ADVICE*
Note
This is the script for the Heikin Ashi Smoothed Candles //version=1 //creator: Asiamtm on twitter //author: Andy
//Name of Script
study("Heikin Ashi Smoothed w/Strategy", overlay=true)
//Plots the Buy and Sell signal when signal lines cross and prints the trade strategy
plot(SIGNAL, color=red, linewidth=2) plot(SIGNAL1, color=blue, linewidth=2) plotshape(crossover(SIGNAL1,SIGNAL), style=shape.labelup, location=location.belowbar, color=green, size=size.tiny, title="buy label", text="BUY", textcolor=white) // IGNORE plotshape(crossover(SIGNAL1,SIGNAL), style=shape.labeldown, location=location.abovebar, color=green, size=size.huge, title="buy strategy", text="SL on bottom of candle\n before BUY signal\n TP at next B or S label\n The bigger the candle\nthe stronger the signal\nWait for signal candle\nto close for confirmation", textcolor=white) plotshape(crossover(SIGNAL,SIGNAL1), style=shape.labeldown, location=location.abovebar, color=red, size=size.tiny, title="sell label", text="SELL", textcolor=white) // IGNORE plotshape(crossover(SIGNAL,SIGNAL1), style=shape.labelup, location=location.belowbar, color=red, size=size.huge, title="sell strategy", text="SL on top of candle\n before SELL signal\n TP at next B or S label\n The bigger the candle\nthe stronger the signal\nWait for signal candle\nto close for confirmation", textcolor=white)
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.