forex software

Create and Test Forex Strategies

forex software

Skip to forum content

Forex Software

Create and Test Forex Strategies

You are not logged in. Please login or register.


(Page 2 of 2)

Forex Software → Technical Indicators → Gann HiLo indicator

Pages Previous 1 2

You must login or register to post a reply

RSS topic feed

Posts: 26 to 39 of 39

Re: Gann HiLo indicator

Thanks Footon and i wish you to look to other indicator requests

http://forexsb.com/forum/topic/3560/wid … s-wso-wro/

http://forexsb.com/forum/topic/4096/nda … r-request/

http://forexsb.com/forum/topic/3270/cle … nd-system/

Regards

Re: Gann HiLo indicator

Hello footon long time since i have a look at gann hilo

I find that it working fine but when the period is (1) it work only one side. it uses the mov average of high even if the trend is up !!!!!

see attached picture

Post's attachments

gann hi lo ver2.gif
gann hi lo ver2.gif 15.21 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

Re: Gann HiLo indicator

and if we scroll back the same chart with the same setting  we find the indicator use the mov average of low in both sides !!!!!!!

Post's attachments

gann hi lo - ver2.gif
gann hi lo - ver2.gif 14.42 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

Re: Gann HiLo indicator

I can't find the source files, can you upload the source and the dodgy .cs file? Then there's no chance for me to get lost smile

It might be just a typo, I remember somewhere that period needs to be at least 2 for it to work correctly.

Re: Gann HiLo indicator

The indicator attached

also regarding the point that it needs 2 bars to work '' its a moving average'' how can it modified to work starting from one bar

Re: Gann HiLo indicator

And the source? I had to have a mql one, which I ported. I believe you delivered it back then, didn't you?

Re: Gann HiLo indicator

hello footon
in your gmail inbox now

Re: Gann HiLo indicator

also the second indicator disappear problem still unsolved ( see posts 24&25) 

Thanks

Re: Gann HiLo indicator

Check the indi if it compiles on your end. The second mistake's origin comes from your request, which resulted in v2. I do not understand what you wanted to achieve, and if I don't understand it now, I most probably didn't get it back then either. The lesson - I'm not good at elaborate stuff, don't ask me for those, hehee. It's a ported indi, not developed further and without added features. It may have few traditional hickups, but those should be easily fixed and indi should be running quickly. The disappearing act is not evident on my end, check that, too!

Re: Gann HiLo indicator

And Ahmed, I demand feedback!

Re: Gann HiLo indicator

Sure smile

Re: Gann HiLo indicator

Remainder of a bug, so I'd not forget: it seems to be a bug in FSB graphic interface, depending on source file structure(?) FSB fails to plot 2 indicators with different periods. Only one appears.

Re: Gann HiLo indicator

It works after a minor fix.


http://s9.postimg.org/ngc5v47a7/screenshot_253.png


The problem was an error in the ToString() method

string.Format expects 6 params, but 3 are given.

Before:

        public override string ToString()
        {
            return string.Format("{0}{1} ({2}, {3}, {4}, {5})",
                                 IndicatorName,
                                 (IndParam.CheckParam[0].Checked ? "*" : ""),
                                 
                                 IndParam.NumParam[0].ValueToString;
        }



After:

        public override string ToString()
        {
            return string.Format("{0}{1} ({2})",
                                 IndicatorName,
                                 (IndParam.CheckParam[0].Checked ? "*" : ""),
                                 IndParam.NumParam[0].ValueToString);
        }
Post's attachments

Gann Hi-Lo Activator SSL.cs 15.71 kb, 34 downloads since 2014-04-06 

You don't have the permssions to download the attachments of this post.

Re: Gann HiLo indicator

Many Thanks Pop (Y)

Posts: 26 to 39 of 39

Pages Previous 1 2

You must login or register to post a reply

Forex Software → Technical Indicators → Gann HiLo indicator

Similar topics in this forum