Old and defunct Holy Graily Bob

EA's inspired by nanningbob's work here, especially those based on his 240 Moving Average trend detection filter.
Locked
jiraiye
Posts: 3
Joined: Fri Mar 07, 2014 2:47 pm

Holy Graily Bob

Post by jiraiye »

I believe that Line 3292 of the latest version 2r should read as the following:

Code: Select all

      ssp= ssp1-(1*sublevels); //Next 20 down 
currently it is coded as follow:

Code: Select all

      ssp= ssp1-(0*sublevels); //Next 20 down
Saw this when my trend trades were consistently given a erroneous stop loss.
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Holy Graily Bob

Post by SteveHopwood »

jiraiye » Mon Jan 26, 2015 12:07 pm wrote:I believe that Line 3292 of the latest version 2r should read as the following:

Code: Select all

      ssp= ssp1-(1*sublevels); //Next 20 down 
currently it is coded as follow:

Code: Select all

      ssp= ssp1-(0*sublevels); //Next 20 down
Saw this when my trend trades were consistently given a erroneous stop loss.
You would think so, wouldn't you, as 0*sublevels = 0.

As I recall, ssp= ssp1-(1*sublevels) did not give the correct values for the next 20 down, but it is a while ago and my memory may be confusing this with something else.

Have you edited the code your way and found it works?

:xm:
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
jiraiye
Posts: 3
Joined: Fri Mar 07, 2014 2:47 pm

Holy Graily Bob

Post by jiraiye »

Hi Steve,

After the change, the first trend trade is taking the correct SL. The code does not affect the multitradependingorder() as the function does not call the GetNext20() function. Hope the above substantiates my guess :)
rivelrivella
Trader
Posts: 36
Joined: Mon Sep 01, 2014 8:54 pm

Holy Graily Bob

Post by rivelrivella »

The result of :

ssp= ssp1-(1*sublevels)

should be normally the same than

ssp= ssp1- sublevels

(1 is neutral element of multiplication)
nonlinear
Trader
Posts: 293
Joined: Fri Jun 01, 2012 2:56 pm
Location: Washington DC

Holy Graily Bob

Post by nonlinear »

add this feature and the robot will never fail
If it were only so simple. Prove with manual trades over a month and people will listen.
steadtler

Holy Graily Bob

Post by steadtler »

nonlinear » Tue Jan 27, 2015 3:31 am wrote:
add this feature and the robot will never fail
If it were only so simple. Prove with manual trades over a month and people will listen.

they already have..
trendinator
Trader
Posts: 156
Joined: Sat Dec 06, 2014 12:22 am

Holy Graily Bob Basics - ask your questions here.

Post by trendinator »

line 1869, should read the same as the comment on line 1873 right?

Code: Select all

//Trend Multi trades
      if (comment == TrendMultiTradeComment)
         if (!CloseEnough([b]WaveTakeProfit[/b], 0) )
         {
            take = price + (TrendMultiTakeProfit / factor);
            HiddenTakeProfit = take;
         }//if (!CloseEnough(TrendMultiTakeProfit, 0) )
sponn
Trader
Posts: 348
Joined: Fri Jul 20, 2012 9:49 am

Holy Graily Bob

Post by sponn »

nonlinear » Tue Jan 27, 2015 5:31 am wrote:
add this feature and the robot will never fail
If it were only so simple. Prove with manual trades over a month and people will listen.
There is no way to make ea trading better than human. But with HGB Steve is very close to this ;)

Manual trades - I believe that there is many traders who made more pips in last month that in last few years before HGI (except Nanningbob and maybe few others successfull manual traders even before HGI).
LivinLarge

Holy Graily Bob

Post by LivinLarge »

sponn » Wed Jan 28, 2015 10:56 am wrote:
nonlinear » Tue Jan 27, 2015 5:31 am wrote:
add this feature and the robot will never fail
If it were only so simple. Prove with manual trades over a month and people will listen.
There is no way to make ea trading better than human. But with HGB Steve is very close to this ;)

Manual trades - I believe that there is many traders who made more pips in last month that in last few years before HGI (except Nanningbob and maybe few others successfull manual traders even before HGI).
so true. all of his systems are amazing. and nothing will replace a human :D you need just a little bit of rationality
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Holy Graily Bob

Post by SteveHopwood »

trendinator » Wed Jan 28, 2015 9:50 am wrote:line 1869, should read the same as the comment on line 1873 right?

Code: Select all

//Trend Multi trades
      if (comment == TrendMultiTradeComment)
         if (!CloseEnough([b]WaveTakeProfit[/b], 0) )
         {
            take = price + (TrendMultiTakeProfit / factor);
            HiddenTakeProfit = take;
         }//if (!CloseEnough(TrendMultiTakeProfit, 0) )
Nice spot. Thanks. :clap:

Fix in 2s in post 1. To make the change yourself, go to line 1869.
Change
if (!CloseEnough(WaveTakeProfit, 0) )
to
if (!CloseEnough(TrendMultiTakeProfit, 0) )

:xm:
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
Locked

Return to “Thingy Bob EA's”