Coenraad just emailed with a bloop spot in the M & W pattern code. 1f fixes this.
Easy diy. Go to line 7581:
if (pattern == LONG)
should be:
if (pattern == SHORT)
- GraB candles: biobier supplied the code for this. Thanks Alex.
- Go long only when the market is above the 34 EMA applied to the high.
- Go short only when the market is below the 34 EMA applied to the low.
- Read more about this at https://www.forexfactory.com/thread/492 ... ab-candles.
I ran this successfully for a couple of days at the end of last week. Early days, so it remains to be seen whether this success continues.
- GraB candles: This is an adaptation of the code that biobier supplied for strength confirmation..
- Go long after a cross of from below, of the 34 EMA applied to the high.
- Go short after a cross from above, of the 34 EMA applied to the low.
- Read more about GraB candles here.
SteveHopwood » Sun Sep 20, 2020 1:30 pm wrote:V 1h is in post 1, with GRaB candles added as a trade trigger.
From the updated user guide:I ran this successfully for a couple of days at the end of last week. Early days, so it remains to be seen whether this success continues.
- GraB candles: This is an adaptation of the code that biobier supplied for strength confirmation..
- Go long after a cross of from below, of the 34 EMA applied to the high.
- Go short after a cross from above, of the 34 EMA applied to the low.
- Read more about GraB candles here.
Attached is a setfile and chart display template to get you going quickly and easily.
![]()
I have posted login details to two demos that I loaded up over the weekend, in post 1.trader689 » Mon Sep 21, 2020 5:51 pm wrote:Hey Steve
Thanks, is there a demo we can follow along for the GRaB setup?
trader
Code: Select all
deletePendings = true;
if (buyStopOpen)
closeAllTrades(symbol, OP_BUYSTOP);
else
closeAllTrades(symbol, OP_SELLSTOP);
deletePendings =false;Code: Select all
deletePendings = true;
if (SendLimitOrder)
{
if (buyStopOpen)
closeAllTrades(symbol, OP_BUYSTOP);
if (buyLimitOpen)
closeAllTrades(symbol, OP_BUYLIMIT);
if (sellStopOpen)
closeAllTrades(symbol, OP_SELLSTOP);
if (sellLimitOpen)
closeAllTrades(symbol, OP_SELLLIMIT);
deletePendings = false;
}//if (SendLimitOrder)
This is great to see. What do you have enabled?opita » Wed Oct 07, 2020 7:21 pm wrote:It is hard to make assumptions this early, but so far it seems EURNZD and possibly CHFJPY might not be good fit for the EA... Obviously, time will tell, way to early to make a conclusion.
Also, Thursdays do not seem to be a good day for trading for the EA.
So far I have been going off your Grab Candle demo (so the information above is based on it). I just started my own version in Bully Pepperstone demo. Removed both pairs mentioned above and changed the Global TP to 20 instead of 30 (using .01 lots), but have left everything else the same.SteveHopwood » Wed Oct 07, 2020 6:04 pm wrote:This is great to see. What do you have enabled?opita » Wed Oct 07, 2020 7:21 pm wrote:It is hard to make assumptions this early, but so far it seems EURNZD and possibly CHFJPY might not be good fit for the EA... Obviously, time will tell, way to early to make a conclusion.
Also, Thursdays do not seem to be a good day for trading for the EA.
Cheers