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

HGI Hurst Trader
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=4009
Page 10 of 18
Author:  forextraderaz [ Sat Jan 10, 2015 12:09 pm ]
Post subject:  HGI Hurst Trader

kabitto » Sat Jan 10, 2015 3:44 am wrote:Hi, yep. nothing special. Actually its OOTB, except TF 60mins, and range disabled.
+Monday start 3pm, Friday close 3pm filter.
rostaus » Sat Jan 10, 2015 6:23 am wrote:
Hi Kabitto,

could you share your settings for the EA and timeframe. Thanks.
Are you trading Hurst Trader with all pairs? If not which pairs are you trading? Thanks :)
Author:  kabitto [ Sat Jan 10, 2015 12:18 pm ]
Post subject:  HGI Hurst Trader

26 default all pairs for now , no eurgbp :)
forextraderaz » Sat Jan 10, 2015 3:09 pm wrote:
kabitto » Sat Jan 10, 2015 3:44 am wrote:Hi, yep. nothing special. Actually its OOTB, except TF 60mins, and range disabled.
+Monday start 3pm, Friday close 3pm filter.
rostaus » Sat Jan 10, 2015 6:23 am wrote:
Hi Kabitto,

could you share your settings for the EA and timeframe. Thanks.
Are you trading Hurst Trader with all pairs? If not which pairs are you trading? Thanks :)
Author:  xfactornos [ Sun Jan 11, 2015 1:54 am ]
Post subject:  HGI Hurst Trader

OOTB is set at 60mins unless im looking at it wrong.

You care to share how its doing? How many pips is it up? Thanks in advance :)
kabitto » Sat Jan 10, 2015 5:44 am wrote:Hi, yep. nothing special. Actually its OOTB, except TF 60mins, and range disabled.
+Monday start 3pm, Friday close 3pm filter.
rostaus » Sat Jan 10, 2015 6:23 am wrote:
Hi Kabitto,

could you share your settings for the EA and timeframe. Thanks.
Author:  kabitto [ Sun Jan 11, 2015 12:36 pm ]
Post subject:  HGI Hurst Trader

i would like to see it running for couple of weeks, much can change ...than of course i will share results . Yes TF is 60mins.

xfactornos » Sun Jan 11, 2015 4:54 am wrote:OOTB is set at 60mins unless im looking at it wrong.

You care to share how its doing? How many pips is it up? Thanks in advance :)
kabitto » Sat Jan 10, 2015 5:44 am wrote:Hi, yep. nothing special. Actually its OOTB, except TF 60mins, and range disabled.
+Monday start 3pm, Friday close 3pm filter.
rostaus » Sat Jan 10, 2015 6:23 am wrote:
Hi Kabitto,

could you share your settings for the EA and timeframe. Thanks.
Author:  SpiderX [ Sun Jan 11, 2015 3:22 pm ]
Post subject:  HGI Hurst Trader

Hi all,

Thanks for the support and kind comments.
v1.04 is in post 1.

11 Jan 15:v1.04
-Updated EA to use HGI Lib. Please dl the .ex and .mqh files and place in the appropriate folders

-Added option to exit on Range

Code: Select all

extern bool    ExitOnRange          = true;
e.g if in a Buy trade, if this option is enabled, the EA will exit on a sell range signal.

-Added 60 and 240 MA Check.
Enable CheckTrend to use.

Code: Select all

extern bool     CheckTrend = false;
-Added option to part close on breakeven.

Code: Select all

extern bool    PartCloseOnBreakEven    =false;
extern double  BEPartClosePercent      = 50.0; 
-Added options to lookback on past HGI signals

Code: Select all

extern bool     useHGILookBack     = false;
extern int      MaxHGILookBackCandles = 5;
extern bool     CheckPriceMoveOnLookBack = true;
extern bool     usePreviousHiLoAsRef     = false;
extern double   MaxPipsInTradeDir        = 20;
extern double   MaxPipsAgainstTradeDir   = 10;
useHGILookBack - set true to enable HGI Lookback. This option is only available when UseHurst is set as true.
It does not make sense to use this without Hurst.

MaxHGILookBackCandles - Maximum candles to look back.
Only check the latest HGI signal. Once a HGI signal is found, the EA does not look further back.
i.e If there is a RAD signal 2 candles ago, any signals before that would not be considered.

CheckPriceMoveOnLookBack
This applies when trading on a lookback signal.
The default reference is the Close of the signal candle, otherwise if usePreviousHiLoAsRef is set true, then the Low of that candle is used for sells, while the High is used for buys.
The current price must be between MaxPipsInTradeDir and MaxPipsAgainstTradeDir for the trade to be taken.
The rationale is that if a Sell Trend signal was 3 candles ago, and if the price is now 50 pips below the Close of that candle, it implies the move has happened and might not be a good idea to enter.
Or if the price is now 40 pips above the Close of that candle, then most likely the signal was not a good one and might be good to avoid.

Just to add this final feature is used to add some control over the entry for Lookback signals, ideally the price should not have moved too much on entering a previous signal.

Cheers
Author:  drunka [ Sun Jan 11, 2015 3:50 pm ]
Post subject:  HGI Hurst Trader

:yahoo: thank you for this update!
I wished I had more CPU power to test everything parallel...
By the way, for me Range signals went pretty good last week.
Author:  SpiderX [ Sun Jan 11, 2015 4:18 pm ]
Post subject:  HGI Hurst Trader

drunka » Sun Jan 11, 2015 11:50 pm wrote::yahoo: thank you for this update!
I wished I had more CPU power to test everything parallel...
By the way, for me Range signals went pretty good last week.
Hi,

My understanding is that using the HGI lib reduces computation by a bit.
Perhaps you can try and see if the latest EA cuts down your computation load.

Cheers
Author:  milanese [ Sun Jan 11, 2015 4:27 pm ]
Post subject:  HGI Hurst Trader

SpiderX » Sun Jan 11, 2015 4:18 pm wrote:
drunka » Sun Jan 11, 2015 11:50 pm wrote::yahoo: thank you for this update!
I wished I had more CPU power to test everything parallel...
By the way, for me Range signals went pretty good last week.
Hi,

My understanding is that using the HGI lib reduces computation by a bit.
Perhaps you can try and see if the latest EA cuts down your computation load.

Cheers
with the lib the CPU usage should be minimal.., even with using the EA on 28 pairs

Cheers :)

Tommaso
Author:  brinol [ Sun Jan 11, 2015 5:12 pm ]
Post subject:  HGI Hurst Trader

Thanks a lot Spider much appreciated and thank you also Tommaso for the lib file :)
Author:  bazze [ Sun Jan 11, 2015 5:25 pm ]
Post subject:  HGI Hurst Trader

Thanks for sharing :good: But,got this error...I try to attach the EA,but it dissapear from the chart after a while?
All times are UTC Page 10 of 18