JOAR is short for 'Just Open Above Rising' which is in itself shorthand for detecting that a bar has just opened above a rising moving average. It's opposite is JOBF. So it is a generic concept which we can apply on any time scale and also on any moving average. Sometimes these JOARs and JOBFs are more significant. We can develop entry methods by using these patterns in combination with other logic.
Some of the EAs in this forum probably make use of the idea. I have been using the concept to both corroborate and inhibit entries and below is the latest code for picking up one variant of this entry method:
Code-sample-for-M15H1H4D1-JOBFH4-May2017.png
In this example we are trying to detect price reverting to a MA before continuing to move with the longer time frame. One could actually loosen the strings on the entry method if you wanted to run with bigger stop losses and longer periods, but this is a picky version which tries find an entry at a better chance of good stop to profit ratio.
The entry method could be used manually or auto-traded. There is an example of this pattern for EURUSD at 21:00 on 2017.12.14, here is the corresponding M15 chart:
EURUSD-M15-entry-by-M15H1H4D1-JOBFH4-2100-14Dec2016.png
In this chart we do not get any indication that the long term direction is down, but we do see the familiar triangle formed by the slower moving averages (green, brown). The decision to only sell has already been determined by other calculations and the M15 analysis helps us to line up our ducks before pulling the trigger.
Why do you suppose there is a big price jump down at 21:00?
Can it be that someone with a lot of clout has decided to make their move?
What if my entry is not calculated until 21:15?
So for us small players there is no point making a move after the movers and shakers: we need to know when their triggers go off and pull ours first if we don't want to miss the big move.
However, unlike Captain Jack who is sitting with his finger over the sell button, I don't have the patience to watch the chart for the right moment to enter the trade, I'm sure CJ gets it to the minute and makes a huge return and takes the rest of the week off.
However, the donkey work comes from D1 and H4 with some help from H1. So really we should start from the top and work down. Here is the D1 chart which tells us that buying is a lot hard than selling:
EURUSD-D1-M15H1H4D1-JOBFH4-2100-14Dec2016.png
From this we get a clear sense of going with main down direction and at 'A' we have a small bodied doji under a fast and falling moving average, so we read this as an indication that price is likely to start falling again.
The long term traders might see this as enough to go short, but using a significant stop loss, so in a ranging market profits can be quite limited. However, you don't need all that secondary analysis just to go short. It is only needed if you want to pick the time of entry to improve your profit to loss ratio. In a non-ranging market an entry here could easily bag you a weeks worth of pips, but these days those straight runs are less frequent.
At 'C' we see that price rises before it falls and our smart entry point occurs after 'C' but the auto-trade only bags a cautious amount of pips. Can you trade the alert manually and bag more pips?
Many traders like H4 and it is good place to hunt the Snark:
EURUSD-H4-M15H1H4D1-JOBFH4-2100-14Dec2016.png
Again there is no prior sense of an imminent sell without D1, by itself this chart could be about to breakout to the upside, but thankfully we have that D1 doji, but still my EA hates entering trades just before an important moving average as that is often a mistake and it is not easy to get it to accept an entry until price has passed the yellow MA. The entry price is at the green dashed line which is after SMA60 but before LWMA60 and before SMA100. It was necessary to bend the logic to make this entry work.
Finally, if we take a look at H1, we can see the threat to the close proximity stop loss:
EURUSD-H1-M15H1H4D1-JOBFH4-2100-14Dec2016.png
H1 is key to timing for this particular case, we are particularly interested in A,B & C. A and B are the signature spikes in price before the real price move. Some traders think they are market movers and stop hunts but they are quite common before the real breakout, so I have added code to detect them as another tool in the tool box.
From the log file:
Code: Select all
21:00 EURUSD: : bH1DualDojiStopHuntPassed && bY1BarDown
[/size]
This can give us another duck in our line of ducks
At C we see the bar has opened just under the brown MA (slow) and the red MA (fast).
We can say that these two MAs have merged and price is below (after a Doji and Hammer) and since we are waiting to sell there is no better time than the opening of this H1 bar at C. We don't really need the M15 confirmation.
The stop loss could even have been half what it is, we could have had P/L=10 instead of 5. However, the wider SL results in fewer stop hits. The trade goes on to take 96 pips with room to spare.
So its back to EA to detect more entry patterns with better entry points.
You do not have the required permissions to view the files attached to this post.