Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (VoroneTZ, AndrewAMD), 833 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Bug in MT4->MT5 adapter #478326
10/03/19 13:44
10/03/19 13:44
Joined: Jul 2017
Posts: 783
Z
Zheka Offline OP
User
Zheka  Offline OP
User
Z

Joined: Jul 2017
Posts: 783
There is a bug in zmq4.mqh in overloading MQL5 functions for the existing MQL4 code base to work on MT5.
Code
#define DEFINE_TIMESERIE(NAME,FUNC,T)                                                                         \
  class CLASS##NAME                                                                                           \
  {                                                                                                           \
  public:                                                                                                     \
    static T Get(const string Symb,const int TimeFrame,const int iShift)                                      \
    {                                                                                                         \
      T tValue[];                                                                                             \
                                                                                                              \
      return((Copy##FUNC((Symb == NULL) ? _Symbol : Symb, [color:#CC33CC]_Period[/color],  iShift, 1, tValue) > 0) ? tValue[0] : -1); \
    }              
....
}

_Period refers to the timeframe/period on the chart that Zorro EA is applied to.

As a result, CMD_HISTORY calls return bars of the timeframe on the chart, rather than that specified by Zorro (which is PERIOD_M1), and that screws up internal Zorro bar construction\gives erroneous data for the Lookback period in Live.

The corrected line that works:
Code
return((Copy##FUNC((Symb == NULL) ? _Symbol : Symb, [color:#CC33CC]TFMigrate(TimeFrame)[/color], iShift, 1, tValue) > 0) ? tValue[0] : -1); 

Re: Bug in MT4->MT5 adapter [Re: Zheka] #478335
10/05/19 08:00
10/05/19 08:00
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Thanks for the info! This will be fixed in the next update.


Moderated by  jcl, Nems, Spirit, Tobias 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1