I will keep the strategy simple from the opening and closing of positions as well as risk management guidelines. This strategy is meant to catch swings that usually will last from 1 to 3 trading days but when there is a big breakout can last for weeks.
Trends is where this strategy makes profit so I would look at the 240 minute chart and daily chart as well to give me higher probabilities for a move in their direction.
Important: This strategy is optimize for GBP/JPY
SETUP:
Heiken-Ashi smooth indicator with settings at-
MaMetod = 2;
MaPeriod = 20;
MaMetod2 = 3;
MaPeriod2 = 3;
HA indicator running on 5, 15, 30, 60, 240 and daily charts.
Primary rule for opening positions:
When the 30 minute HA turns color look to add position in the direction of the color.
i.e. Lets say price action breaks up and crosses the HA line turning the candle from RED to BLUE. I would wait for the close of the candle to increase the probability that price action is now in a bull swing. Look at the 4 hour HA chart. If it is BLUE then this is a continuation of a larger trend so the probability of a large uptrend in price action is greater then if this was a counter-trend so plan accordingly.
Look at the daily HA chart. If this is also BLUE then you know that major trend is up so that is giving impetus for strong moves.
When the 30 minute HA changes color I would typically look for moves between 100-300 pips from 1 to 4 days duration depending if it a trend trade or counter-trend trade.
I would set a TP at 100/200/300 pip levels depending on the strength of the move. For example you can use the 5 or 15 minute HA chart to have a moving S/L behind the HA line. This all depends on your trading style and risk parameters.
Adding to existing trade can be done by waiting for PRICE to retrace close to the 30 minute HA line then adding an additional position with S/L behind the 30 minute HA line.
R/R Risk/Reward ratio that I look for is at least 1:2 looking for an average of 1:3. So if I am risking 50 pips on a trade I would target at least 100 pip profit.
That is it in the most simplistic form. The idea is to catch swing trades with an average 1:3 R/R and a 70% win rate. Using this strategy you will not be making trades every day but when you do trade you will make pips, lot's of pips.
You need patient and an understanding of the volatility of the currency pair. Also it helps if you look at the probabilities of past price actions with current price actions to give you that edge.
This is a manual strategy which means traders can and will trade differently even if you follow the basic rules. I am very familiar with GBP/JPY price action and the settings with the HA indicator works with this pair in most situations.
I will post some of my live trades to give examples in the coming days.
Tommaso has coded a few EA's that can help which I have attached below. Thanks Tommaso
------------------------------------------------------------------
HA smooth indicator: version for 6xx builds: ------------------------------------------------------------------
Latest EA for helping to automate HA strategy: ------------------------------------------------------------------
This EA will open after a cross over the HA line a buy/sell, the user can set the delays for the trade as he/she wants.
It is set with:
DelayTheEntryForXBars
PriceWithinHALine
The EA has no trailing function, the SL and TP can be set, it is intended for opening the trade, the exit is best to find manually Latest EA from milanese
This setting is for selecting the higherTF
Code: Select all
extern double HigherTF=240;Here you set the entry delay and the min value the price must be in HA Line for opening a new position. The
HA_SLMovingDistance is used for give some extra pips to the SL too you have the setting SetBEminPip what is used for setting the min distance the SL must have from the actual price
Code: Select all
extern int DelayTheEntryForXBars=2;
extern double PriceWithinHALine=10;
extern double HA_SLMovingDistance=10;I have attached an excel spreadsheet that can help give a picture of trading parameters like costs, profits, pips needed, leverage etc....Please feel free to add to the spreadsheet and I will post the updated copy here.