Holy Graily Bob 'n Grid

EA's inspired by nanningbob's work here, especially those based on his 240 Moving Average trend detection filter.
Post Reply
User avatar
droland
Trader
Posts: 52
Joined: Tue Nov 15, 2011 9:40 pm
Location: Vancouver, BC, Canada

Holy Graily Bob 'n Grid

Post by droland »

Cyberevil.

Steve is always promoting people to roll up their sleeves and do some coding. This is very simple.

Right click on the EA in the Navigator panel and click Modify.
Scroll down past the entry talk and you will find the extern entries. Find the one or ones you want to change and do so.
Hit the compile button and you have your personal settings encoded into the EA.

Remember, you have to do this with every update. No shortcuts there.
User avatar
cyberevil
Trader
Posts: 95
Joined: Mon Oct 26, 2015 5:55 pm
Location: Vancouver, BC

Holy Graily Bob 'n Grid

Post by cyberevil »

droland » April 19th, 2016, 9:35 am wrote:Cyberevil.

Steve is always promoting people to roll up their sleeves and do some coding. This is very simple.

Right click on the EA in the Navigator panel and click Modify.
Scroll down past the entry talk and you will find the extern entries. Find the one or ones you want to change and do so.
Hit the compile button and you have your personal settings encoded into the EA.

Remember, you have to do this with every update. No shortcuts there.
Thanks droland... did some googling and you're right. Doesn't seem like you can import set files.
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 'n Grid

Post by SteveHopwood »

Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error. :clap: :clap: :clap:

This is no biggie so I am not uploading a fix. Offsetting is going to cause more updates so I will include the fix with the next version.

Line 4933 is
for (cc = 0; cc <= NoOfTrades; cc++)

It needs to be:
for (cc = 0; cc < NoOfTrades; cc++)

: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.
User avatar
oliverjp
Trader
Posts: 36
Joined: Mon May 06, 2013 8:39 am

Holy Graily Bob 'n Grid

Post by oliverjp »

You can import Set files by clicking on the Load button in the EA settings.

Once you have modified any Externs the way you want them in the code, you can also Save them as a Set file from the EA settings and then subsequently can Load them onto any new EA version that comes out to save you having to modify any Externs again (as long as they have the same name in the new code).

All the best

Jeff


cyberevil » Tue Apr 19, 2016 5:38 pm wrote:
droland » April 19th, 2016, 9:35 am wrote:Cyberevil.

Steve is always promoting people to roll up their sleeves and do some coding. This is very simple.

Right click on the EA in the Navigator panel and click Modify.
Scroll down past the entry talk and you will find the extern entries. Find the one or ones you want to change and do so.
Hit the compile button and you have your personal settings encoded into the EA.

Remember, you have to do this with every update. No shortcuts there.
Thanks droland... did some googling and you're right. Doesn't seem like you can import set files.
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.

Humungous bloop alert

Post by SteveHopwood »

V 1w is in post 1, with a fix for three humungous bloops. We have shychan to thank for a really good piece of detail spotting. :clap: :clap: :clap:

Lines 5035 and 6523:
if (Stop_And_Limit_Orders)

should be
if (GridType == Stop_And_Limit_Orders)

line 5044
if (Stop_Orders_Only)

should be
if (GridType == Stop_Orders_Only)

This fix is essential. It needs to be applied to any previous version. You can find the three lines by doing a search for
if (Stop_And_Limit_Orders)
and
if (Stop_Orders_Only)

: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.
desi
Trader
Posts: 35
Joined: Mon Jun 11, 2012 5:42 am
Location: Canada

Holy Graily Bob 'n Grid

Post by desi »

SteveHopwood » Tue Apr 19, 2016 1:23 pm wrote:Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error. :clap: :clap: :clap:

This is no biggie so I am not uploading a fix. Offsetting is going to cause more updates so I will include the fix with the next version.

Line 4933 is
for (cc = 0; cc <= NoOfTrades; cc++)

It needs to be:
for (cc = 0; cc < NoOfTrades; cc++)

:xm:
This correction is missing in the version w.
Thanks for all your hard work.
piter44
Trader
Posts: 37
Joined: Wed Oct 08, 2014 1:09 pm

Holy Graily Bob 'n Grid

Post by piter44 »

I'm running version 1v and strategy placed both stop and limit orders regardless of settings
You do not have the required permissions to view the files attached to this post.
DoctorGremlin
Trader
Posts: 50
Joined: Wed Oct 30, 2013 6:21 pm
Location: Frankfurt, Germany

Holy Graily Bob 'n Grid

Post by DoctorGremlin »

piter44 » 11 minutes ago wrote:I'm running version 1v and strategy placed both stop and limit orders regardless of settings
This is corrected in version 1w.
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 'n Grid

Post by SteveHopwood »

desi » Wed Apr 20, 2016 12:18 pm wrote:
SteveHopwood » Tue Apr 19, 2016 1:23 pm wrote:Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error. :clap: :clap: :clap:

This is no biggie so I am not uploading a fix. Offsetting is going to cause more updates so I will include the fix with the next version.

Line 4933 is
for (cc = 0; cc <= NoOfTrades; cc++)

It needs to be:
for (cc = 0; cc < NoOfTrades; cc++)

:xm:
This correction is missing in the version w.
Thanks for all your hard work.
Thanks. I will correct it in the next version. It doesn't matter for now as we cannot use offsetting - the code does not work.

: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.
User avatar
oliverjp
Trader
Posts: 36
Joined: Mon May 06, 2013 8:39 am

Programmagically loading multiple sets of Settings

Post by oliverjp »

PS Rather than clutter this thread up, I have done a longish post on "Programmagically loading multiple sets of Settings" in the Coders Hangout section of the site. Might be of interest to coders thinking about ways of providing easy management of banks of Settings by EndUsers. For those just starting out in coding, I would recommend giving it a miss as it will likely give you a headache which I refuse to be responsible for :?

All the best

Jeff


oliverjp » Tue Apr 19, 2016 6:39 pm wrote:You can import Set files by clicking on the Load button in the EA settings.

.... blah, blah, blah...
Post Reply

Return to “Thingy Bob EA's”