Hello & Welcome on board !!! :-)
Please note:
Before you can post a message on the forum you need to REGISTER to get a unique GiG username (Totally Free!). Feel free to look around - just start browsing any of the sections from the home page of GiG. Join the community!.
25 % 75 %
  • User avatar
  • User avatar
  • User avatar
  • User avatar
  • User avatar
  • User avatar
User avatar
By Geko
#1629
Xande wrote: 30 Jul 2017, 22:53 Geko, can you please verify what CCFp calculation are you using for the MA? There seems to be a bug based on this post -> https://www.mql5.com/en/code/9088
Code: Select all
double ma(string sym, int per, int Mode, int Price, int i)
  {
   double res = 0;
   int k = 1;
   int ma_shift = 0;
   int tf = 0;
   switch(Period())
     {
       case 1:     res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 5;
       case 5:     res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 3;
       case 15:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 2;
       case 30:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 2;
       case 60:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 4;
       case 240:   res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 6;
       case 1440:  res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k += 4;
       case 10080: res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k +=4;
       case 43200: res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
     } 
   return(res);
  }       
Correct code should be

Code: Select all
double ma(string sym, int per, int Mode, int Price, int i)
  {
   double res = 0;
   int k = 1;
   int ma_shift = 0;
   int tf = 0;
   switch(Period())
     {
       case 1:     res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 5;
       case 5:     res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 3;
       case 15:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 2;
       case 30:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 2;
       case 60:    res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 4;
       case 240:   res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 6;
       case 1440:  res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *= 5;
       case 10080: res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
                   k *=4;
       case 43200: res += iMA(sym, tf, per*k, ma_shift, Mode, Price, i); 
     } 
   return(res);
  }       
I will get back to you later on this ;-) Summer break no coding for the moment ;-)
User avatar
By Geko
#1630
takrooni wrote: 03 Aug 2017, 15:19 Hi Geko
do there is any way to make backtest on gig dashboard ,, to trying diffrent setting in past << this it will be very helpfull to explore the best setting ,, and gain much time of testing baskets .

:-)
Hi takrooni,

First welcome to GiG :party:

Unfortunately you cannot make backtests with multiple pairs in MT4... nor with multiple timeframes filters... MTcrap limitations...
User avatar
By Jenbols
#1637
VPA021 wrote: 01 Aug 2017, 01:15 Can someone please explain to me as to why signals are different on two different brokers? Both are ECN, Demo. On the left is tradersway, on the right is FinPro. I don't get it.
I Have two live accounts one mini and one normal and when i trade i always have the demo and the live both, and i see those differences all the time ...
It is understandable between a live and a demo not of the same broker but with the same broker that's very strange ... When changes are little i am okay but when big changes happen i am there to chat live with the broker and show photo ... They blamed my connection and my computer .. so they always want be right ,,, ;-)
User avatar
By Jenbols
#1639
Continues the green boosting of pips from Geko Invention Machine ..
i even forget that i have it on Mt4 due to many testings to finish first
and when i look it's evidently positive
"Trading on Button" off only at night time to avoid taking trades and putting it back on in the morning ,, (if i remember)
TF FF FT / Filter On "Level 4" tested for the first time the level 4
2nd Test Test Started on Mon with Candles filter WM
I look at it and it grows by the Day
Geko, JohnSmith2nd liked this
User avatar
By firewight
#1641
Jenbols wrote: 11 Aug 2017, 13:19 Continues the green boosting of pips from Geko Invention Machine ..
i even forget that i have it on Mt4 due to many testings to finish first
and when i look it's evidently positive
"Trading on Button" off only at night time to avoid taking trades and putting it back on in the morning ,, (if i remember)
TF FF FT / Filter On "Level 4" tested for the first time the level 4
2nd Test Test Started on Mon with Candles filter WM
I look at it and it grows by the Day
Are your trades going in and out, or just remain the same trades? I notice your session timer is green, so its always on unless you stop it via the autotrade button?
User avatar
By VPA021
#1643
Jenbols wrote: 11 Aug 2017, 12:04
VPA021 wrote: 01 Aug 2017, 01:15 Can someone please explain to me as to why signals are different on two different brokers? Both are ECN, Demo. On the left is tradersway, on the right is FinPro. I don't get it.
I Have two live accounts one mini and one normal and when i trade i always have the demo and the live both, and i see those differences all the time ...
It is understandable between a live and a demo not of the same broker but with the same broker that's very strange ... When changes are little i am okay but when big changes happen i am there to chat live with the broker and show photo ... They blamed my connection and my computer .. so they always want be right ,,, ;-)

Lol.. we can never win as they always have an excuse for everything
User avatar
By Jenbols
#1644
firewight wrote: 11 Aug 2017, 14:59
Jenbols wrote: 11 Aug 2017, 13:19 Continues the green boosting of pips from Geko Invention Machine ..
i even forget that i have it on Mt4 due to many testings to finish first
and when i look it's evidently positive
"Trading on Button" off only at night time to avoid taking trades and putting it back on in the morning ,, (if i remember)
TF FF FT / Filter On "Level 4" tested for the first time the level 4
2nd Test Test Started on Mon with Candles filter WM
I look at it and it grows by the Day
Are your trades going in and out, or just remain the same trades? I notice your session timer is green, so its always on unless you stop it via the autotrade button?
Ah ? Firewight you are here ?
Lol i thought you disappeared from anywhere ....
Anyway yes as i said before in the post the light green i OFF after usa session some times or after 7pm gmt ...
Does it make sense or not so much ?
Reason for it is that free light is not to add more pairs, so when dead times comes i Off it ...
Is that what you do or something else ?
Thanks buddy appreciate your suggestion
  • 1
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
long long title how many chars? lets see 123 ok more? yes 60

We have created lots of YouTube videos just so you can achieve [...]

Another post test yes yes yes or no, maybe ni? :-/

The best flat phpBB theme around. Period. Fine craftmanship and [...]

Do you need a super MOD? Well here it is. chew on this

All you need is right here. Content tag, SEO, listing, Pizza and spaghetti [...]

Lasagna on me this time ok? I got plenty of cash

this should be fantastic. but what about links,images, bbcodes etc etc? [...]