stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Old and defunct Holy Graily Bob
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=3966
Page 112 of 129
Author:  jiraiye [ Mon Jan 26, 2015 12:07 pm ]
Post subject:  Holy Graily Bob

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.
Author:  SteveHopwood [ Mon Jan 26, 2015 3:56 pm ]
Post subject:  Holy Graily Bob

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:
Author:  jiraiye [ Tue Jan 27, 2015 12:48 am ]
Post subject:  Holy Graily Bob

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 :)
Author:  rivelrivella [ Tue Jan 27, 2015 1:54 am ]
Post subject:  Holy Graily Bob

The result of :

ssp= ssp1-(1*sublevels)

should be normally the same than

ssp= ssp1- sublevels

(1 is neutral element of multiplication)
Author:  nonlinear [ Tue Jan 27, 2015 3:31 am ]
Post subject:  Holy Graily Bob

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.
Author:  steadtler [ Wed Jan 28, 2015 9:33 am ]
Post subject:  Holy Graily Bob

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..
Author:  trendinator [ Wed Jan 28, 2015 9:50 am ]
Post subject:  Holy Graily Bob Basics - ask your questions here.

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) )
Author:  sponn [ Wed Jan 28, 2015 10:56 am ]
Post subject:  Holy Graily Bob

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).
Author:  LivinLarge [ Wed Jan 28, 2015 1:18 pm ]
Post subject:  Holy Graily Bob

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
Author:  SteveHopwood [ Wed Jan 28, 2015 1:59 pm ]
Post subject:  Holy Graily Bob

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:
All times are UTC Page 112 of 129