Old and defunct Holy Graily Bob

EA's inspired by nanningbob's work here, especially those based on his 240 Moving Average trend detection filter.
Locked
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

Post by SteveHopwood »

Neno0102 » Mon Dec 15, 2014 9:49 am wrote:
I experienced a really, really wild desire for a tomato sandwich a few minutes ago, so I made one and really, really enjoyed it.

I wanted another, so I have just made it and it is going down like, um, a really well going down thingy.
As long as it is giving you strength to make EA's like this one we will order more tomatoes.
And if you implement moving pending orders we might add onion also. :good: :clap:
Please don't. I loathe onions. :lol:

There is a logic bloop in 1z; I was trying to get away with using one variable when there was a need for two. This allowed trades to be sent in the wrong direction if the medium time frame filter is enabled. Fix (possibly) in V2 in post 1.

: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.
stav01
Posts: 7
Joined: Thu Nov 17, 2011 7:45 am

Holy Graily Bob

Post by stav01 »

Interesting warning message on Global Prime demo today

HG1 v15.01 GBPUSD.H1 Indicator is too sow, 14211ms, rewrite the indicator please

Anyone else have this?
User avatar
milanese
TechAdmin
Posts: 3293
Joined: Wed Jan 09, 2013 9:02 am
Location: btr rdx, r8 +

Holy Graily Bob

Post by milanese »

stav01 » Mon Dec 15, 2014 10:08 am wrote:Interesting warning message on Global Prime demo today

HG1 v15.01 GBPUSD.H1 Indicator is too sow, 14211ms, rewrite the indicator please

Anyone else have this?
this message will you see if you use the indicator from an other indicator or EA with iCustomcall and this calls are delaying, maybe try 14.05 version, or try to use less pairs for HGB

Cheers :)

Tommaso
Global Prime is the official SHF broker :yahoo:
Searching for Servers and Workstations with individual configuration?
Just PM
:smile: Click here to go to the BoardKnowledgeBase
NOTE: Cookies and JavaScript are required for the using the board, with full functionality
User avatar
macman
Trader
Posts: 118
Joined: Tue Nov 15, 2011 7:47 pm
Location: Somewhere on a European waterway, on my classic (old) Dutch barge

Holy Graily Bob

Post by macman »

stav01 wrote:Interesting warning message on Global Prime demo today

HG1 v15.01 GBPUSD.H1 Indicator is too sow, 14211ms, rewrite the indicator please

Anyone else have this?
AFAIK, this refers to the time taken by your machine to do the calculations. Try cutting out all unnecessary programs etc and see if that helps.

I do occasionally see this error on my overloaded VPS, but it seems to do little harm and only seems to appear during heavy CPU use.

If I am way off the mark here one of the tech guys will jump in.

Cheers
This account takes ALL software generated trade calls from my FXW training course and is used to develop money management routines.
http://www.mt4i.com/mt4ichart.aspx?c=ch ... udent-demo
Neno0102
Trader
Posts: 30
Joined: Wed Jan 04, 2012 4:25 pm

Holy Graily Bob

Post by Neno0102 »

Can someone explain why EA took that RAD order please ?
I have instant market order = false and pending = true, so sellstop should be below that up candle.
Thanks.
15-12-2014- 13-08-12.png
You do not have the required permissions to view the files attached to this post.
nicolkoekoek
Trader
Posts: 72
Joined: Tue Mar 11, 2014 4:27 pm
Location: De Bilt

Holy Graily Bob

Post by nicolkoekoek »

Hi,

I demo tested quite a few HGB's now, with mixed but improving results, and I am happy where it is going.
The current FXCM Demo I just started with HGB_2 and attached setfile, is giving me only "Buy" entries on all pairs. :-( Anybody else has the same problem?

Keep smiling, Nicolaas
HGB_2 4hr V1.set
You do not have the required permissions to view the files attached to this post.
Lee
Trader
Posts: 27
Joined: Mon Sep 30, 2013 8:33 am

Holy Graily Bob

Post by Lee »

nicolkoekoek » Mon Dec 15, 2014 5:23 pm wrote:Hi,

I demo tested quite a few HGB's now, with mixed but improving results, and I am happy where it is going.
The current FXCM Demo I just started with HGB_2 and attached setfile, is giving me only "Buy" entries on all pairs. :-( Anybody else has the same problem?

Keep smiling, Nicolaas
Have you checked that the 'HGI_Name' in the HGB Inputs matches the HG Indicator that you have in your indicators folder?

Lee
gringoh

Holy Graily Bob

Post by gringoh »

Hi Steve,

A quick tip that I received from Denis and that has been implemented by Rene in his matrix and that I have implemented in my dashboard. Many thanks to Denis & Rene.

Thanks to this code you won’t have any versions problems.

Cheers,
G

Code: Select all

Bool isVersion14;

//To place in OnInit
// Hack to make different iCustom call for version 14
isVersion14 = ( StringFind( HGIIndicatorName, "14.",0 ) > 0 );

//-----------------------------------------------------------------------------
// function: GetHGI()
// Description: GetHGI
//-----------------------------------------------------------------------------
double GetHGI(string symbol, int tf, int buffer, int shift)
{
         // Hack to make different iCustom call for version 14
            if ( isVersion14 ) {
                  return(iCustom(symbol, tf, HGIIndicatorName, 0, false, false, false, false, false, false, false, buffer, shift) );
            }
            else {
                  return(iCustom(symbol, tf, HGIIndicatorName, true, buffer, shift));
            }
}//double GetHGI()
User avatar
MurphyMan
Trader
Posts: 345
Joined: Tue Nov 15, 2011 2:35 pm
Location: Southern Illinois, USA

Holy Graily Bob

Post by MurphyMan »

Have you checked that the 'HGI_Name' in the HGB Inputs matches the HG Indicator that you have in your indicators folder?

Lee
Lee :clap: :clap: .

I was having the exact same problem - for days! My brain was completely scrambled, which according to my wife and Steve is a state of normalcy.

Of course, the name of the indicator is HGI_v15.01

In the settings I somehow had HGI_v.15.01 Just a simple little dot. :uff:

Thanks Lee. I hope this also helps someone else.

Sam
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

Post by SteveHopwood »

gringoh » Mon Dec 15, 2014 6:50 pm wrote:Hi Steve,

A quick tip that I received from Denis and that has been implemented by Rene in his matrix and that I have implemented in my dashboard. Many thanks to Denis & Rene.

Thanks to this code you won’t have any versions problems.

Cheers,
G

Code: Select all

Bool isVersion14;

//To place in OnInit
// Hack to make different iCustom call for version 14
isVersion14 = ( StringFind( HGIIndicatorName, "14.",0 ) > 0 );

//-----------------------------------------------------------------------------
// function: GetHGI()
// Description: GetHGI
//-----------------------------------------------------------------------------
double GetHGI(string symbol, int tf, int buffer, int shift)
{
         // Hack to make different iCustom call for version 14
            if ( isVersion14 ) {
                  return(iCustom(symbol, tf, HGIIndicatorName, 0, false, false, false, false, false, false, false, buffer, shift) );
            }
            else {
                  return(iCustom(symbol, tf, HGIIndicatorName, true, buffer, shift));
            }
}//double GetHGI()
Thanks. Nice one. Will implement this later.

: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.
Locked

Return to “Thingy Bob EA's”