Bob's recent and brilliant CSS with HGI posts have reminded me it may be preferable to only trade the turn back into the higher trend if there is one so that we are buying the dips in an uptrend etc rather than counter trend.
Could your CSS filter be activated in the code to test this in due course Steve?
TraderJoeForex » Thu Jun 02, 2016 1:48 am wrote:Bob's recent and brilliant CSS with HGI posts have reminded me it may be preferable to only trade the turn back into the higher trend if there is one so that we are buying the dips in an uptrend etc rather than counter trend.
Could your CSS filter be activated in the code to test this in due course Steve?
Done. V1f in post 1.
Coders, retrofitting CSS to ea's you wrote using my shells is easy when you know how. Load the attached into meta editor even if you usually use a different one, and follow the bookmarks to see the code you need to add.
You do not have the required permissions to view the files attached to this post.
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.
Coders, retrofitting CSS to ea's you wrote using my shells is easy when you know how. Load the attached into meta editor even if you usually use a different one, and follow the bookmarks to see the code you need to add.
Fantastic, thank you. Will report back how I get on.
Using CSS turns HGBnS into a trend trader re-entering the trend after a deep retrace. It makes sense to be able to set a more distant take profit target and send more grid trades to take advantage of the trend resumption.
I have set up two more inputs under the TakeProfitPips input that allows us to choose our own tp sixths line. I describe how in post 1.
V 1g is in post 1.
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.
I just loaded up the latest and noticed that I had not turned the DCC time frame into one of those dinky little ENUM's that ensures we can only enter an appropriate time frame. I have replaced this in 1g without bothering to change the version.
Easy change to make yourselves. Copy this over the top of line 274:
extern ENUM_TIMEFRAMES CssTf=PERIOD_D1;
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.
V 1h is in post 1. You do not need this update if you are not using Limit orders as well as Stop orders (AddLimitOrders input).
Dan pm'd me to say he was getting 'invalid stop' errors and the limit orders not being sent. I had got my '+' and '-' the wrong way around. So:
line 1821
price = Ask + (DistanceBetweenTrades / factor);
should be
price = Ask - (DistanceBetweenTrades / factor);
line 1833
price = Bid - (DistanceBetweenTrades / factor);
should be
price = Bid + (DistanceBetweenTrades / factor);
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.