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.
Holy Graily Bob 'n Grid
- droland
- Trader
- Posts: 52
- Joined: Tue Nov 15, 2011 9:40 pm
- Location: Vancouver, BC, Canada
- cyberevil
- Trader
- Posts: 95
- Joined: Mon Oct 26, 2015 5:55 pm
- Location: Vancouver, BC
Holy Graily Bob 'n Grid
Thanks droland... did some googling and you're right. Doesn't seem like you can import set files.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.
- 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
Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error.
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++)

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++)
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.
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.
- oliverjp
- Trader
- Posts: 36
- Joined: Mon May 06, 2013 8:39 am
Holy Graily Bob 'n Grid
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
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:Thanks droland... did some googling and you're right. Doesn't seem like you can import set files.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.
- 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
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.
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)

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)
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.
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
This correction is missing in the version w.SteveHopwood » Tue Apr 19, 2016 1:23 pm wrote:Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error.![]()
![]()
![]()
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++)
Thanks for all your hard work.
-
piter44
- Trader
- Posts: 37
- Joined: Wed Oct 08, 2014 1:09 pm
Holy Graily Bob 'n Grid
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
This is corrected in version 1w.piter44 » 11 minutes ago wrote:I'm running version 1v and strategy placed both stop and limit orders regardless of settings
- 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
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.desi » Wed Apr 20, 2016 12:18 pm wrote:This correction is missing in the version w.SteveHopwood » Tue Apr 19, 2016 1:23 pm wrote:Westco28 has just pm'd me with a teensy bloop that causes an OutOfArray error.![]()
![]()
![]()
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++)
Thanks for all your hard work.
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.
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.
- oliverjp
- Trader
- Posts: 36
- Joined: Mon May 06, 2013 8:39 am
Programmagically loading multiple sets of Settings
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
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...