HGI Hurst Trader

EA's inspired by nanningbob's work here, especially those based on his 240 Moving Average trend detection filter.
User avatar
SpiderX
Trader
Posts: 554
Joined: Thu Aug 22, 2013 4:50 pm

HGI Hurst Trader

Post by SpiderX »

brinol » Fri Jan 16, 2015 6:45 am wrote:Hi Spider

Yet another addition to the wish list..
Could a Higher timframe HGI filter be added to trade in the direction of the last H4 or D1 (if trading H4) HGI Hurst trend arrow. I am finding that a lot of losing H1 trend arrow trades do not have a preceding H4 trend arrow in the same direction ..it would probably result in even fewer trades but would certainly help to pare down the losing ones unless of course we have a day like today where even some of the brokers blew up :)

Regards
Hi,

Think this should not be too challenging to implement.
Btw, it seems alorente suggests to take H4 trades in the D1 direction.

Cheers
"Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always hopes, always perseveres."
-Corinthians 13:4-8
User avatar
brinol
Trader
Posts: 57
Joined: Mon Apr 30, 2012 12:23 pm

HGI Hurst Trader

Post by brinol »

SpiderX » Thu Jan 15, 2015 11:43 pm wrote:
brinol » Fri Jan 16, 2015 6:45 am wrote:Hi Spider

Yet another addition to the wish list..
Could a Higher timframe HGI filter be added to trade in the direction of the last H4 or D1 (if trading H4) HGI Hurst trend arrow. I am finding that a lot of losing H1 trend arrow trades do not have a preceding H4 trend arrow in the same direction ..it would probably result in even fewer trades but would certainly help to pare down the losing ones unless of course we have a day like today where even some of the brokers blew up :)

Regards
Hi,

Think this should not be too challenging to implement.
Btw, it seems alorente suggests to take H4 trades in the D1 direction.

Cheers
Thanks spider
Yes its nice to see him spending more time here at SHF ....another one of the good guys :)
User avatar
SpiderX
Trader
Posts: 554
Joined: Thu Aug 22, 2013 4:50 pm

HGI Hurst Trader

Post by SpiderX »

Hi all,

Tested Trading hours on backtest with v1.05 last night and it seems to be working fine on visual backtest.
If you encounter any issues with it, then most likely it is due to a wrong input.
v1.05 is pending release after a few more optimizations.

Cheers
"Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always hopes, always perseveres."
-Corinthians 13:4-8
User avatar
SpiderX
Trader
Posts: 554
Joined: Thu Aug 22, 2013 4:50 pm

HGI Hurst Trader

Post by SpiderX »

Hi all,

v1.05 is in post 1.

20 Jan 15:v1.05

-Added Htf HGI/ Hurst Check option

Code: Select all

extern bool    CheckHtfTradeEntry   = false;
extern int     HtfTradingTimeFrame  = PERIOD_D1;
extern int     HtfLookBackCandles   = 8;
extern bool    HtfTradeTrend	      = true;
extern bool    HtfTradeRAD      	   = true;
extern bool    HtfTradeRange		   = true;
extern bool    HtfTradeWave		   = true;
extern bool    HtfTradeWaveAndTrend	= false;
extern bool    HtfUseHurst          = false;   
extern int     HtfFastMA_Period     = 5;
extern int     HtfFastMA_Shift      = 0;
extern int     HtfSlowMA_Period     = 11;
extern int     HtfSlowMA_Shift      = 0;
To enable set CheckHtfTradeEntry to true.
The code will check the current and previous HtfLookBackCandles for the last Signal.
Use the HtfTradeTrend/RAD/Range/Wave/WaveAndTrend options to determine which Htf signal to follow.
Set HtfUseHurst to enable Hurst check on the higher time frame

-Added Trade Balance filters

Code: Select all

extern bool     UseZeljkoBalancedCcyTrade =false; //Allow only one buy and sell of Currency at one time
extern bool     LimitTradesPerCurrency    =false; //Limit the maximum trades per currency to MaxTradesPerCurrency
extern int		 MaxTradesPerCurrency	  = 2;
UseZeljkoBalancedCcyTrade - allows only one buy and one sell of a currency at one time
LimitTradesPerCurrency - limits the maximum trades of each currency subject to MaxTradesPerCurrency



Would recommend trying out the different combinations to compare.
- Lower Timeframe HGI + Hurst, Higher Timeframe HGI
- Lower Timeframe HGI , Higher Timeframe HGI + Hurst
- Lower Timeframe HGI + Hurst, Higher Timeframe HGI + Hurst ( dont expect much trades)
- Lower Timeframe HGI , Higher Timeframe HGI

As a note, the recommended timeframes by alorente are H4 and D1 for Htf.


Cheers
"Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always hopes, always perseveres."
-Corinthians 13:4-8
User avatar
brinol
Trader
Posts: 57
Joined: Mon Apr 30, 2012 12:23 pm

HGI Hurst Trader

Post by brinol »

Thats excellent ..thank you once again Spider ...your efforts are much appreciated :)
fire580
Trader
Posts: 314
Joined: Wed May 09, 2012 4:51 pm

HGI Hurst Trader

Post by fire580 »

Has anyone thought about trading this using only the the MA cross as the trigger? and then go for the other 50% of the move. :smile:
User avatar
SpiderX
Trader
Posts: 554
Joined: Thu Aug 22, 2013 4:50 pm

HGI Hurst Trader

Post by SpiderX »

Hi all,


v1.05b is in post one.
Very minor update. Functionally no change from v1.05.

20 Jan 15:v1.05b

Corrected some small bugs which causing the HGI candle lookback shift to display wrongly and spelling errors

Cheers
"Love is patient, love is kind. It does not envy, it does not boast, it is not proud. It does not dishonor others, it is not self-seeking, it is not easily angered, it keeps no record of wrongs.Love does not delight in evil but rejoices with the truth. It always protects, always trusts, always hopes, always perseveres."
-Corinthians 13:4-8
User avatar
varso
Trader
Posts: 44
Joined: Mon Oct 22, 2012 7:19 am

HGI Hurst Trader

Post by varso »

This is amazing robot and looks very promising. I put it on demo on 20.1.2015 and here is the result for today. Version is 1.05.
I didn't look closer how EA works because I don't have time. I only put EA on demo, but now I must look closer on it. :)

Image
AGT
Trader
Posts: 889
Joined: Thu Nov 17, 2011 7:20 pm
Location: Germany

HGI Hurst Trader

Post by AGT »

Gosh !

Great man !

Is all that OOTB with the v 1.05 ? Mine doesn't the do the job really good, I use a bit older version, got very very rarely trades :oops: :?
Have to switch perhaps to the last v 1.05 too !
:hi:
User avatar
varso
Trader
Posts: 44
Joined: Mon Oct 22, 2012 7:19 am

HGI Hurst Trader

Post by varso »

AGT wrote:Gosh !

Great man !

Is all that OOTB with the v 1.05 ? Mine doesn't the do the job really good, I use a bit older version, got very very rarely trades :oops: :?
Have to switch perhaps to the last v 1.05 too !
:hi:
Hi
I think is not totally OOTB I send setting latter when I came home now im at work. I think I switch on Look back signal, but im not totally sure.
Post Reply

Return to “Thingy Bob EA's”