Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 559 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 3 1 2 3
Zorro 1.22 released! #439875
04/11/14 12:27
04/11/14 12:27
Joined: Jul 2000
Posts: 27,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
Frankfurt
Zorro version 1.22 is now available for public testing:

http://server.conitec.net/down/Zorro_setup.exe

A description of the new features can be found here:

http://manual.zorro-trader.com/new.htm

Please also read the part about updating your system. All known bugs of the previous versions have been fixed.

For trading with multiple accounts and multiple instances with the free Zorro version, the new multisession plugin can be subscribed on the Download page. This plugin is not required for Zorro S.

Re: Zorro 1.22 released! [Re: jcl] #439999
04/15/14 06:15
04/15/14 06:15
Joined: Dec 2013
Posts: 13
T
tvas Offline
Newbie
tvas  Offline
Newbie
T

Joined: Dec 2013
Posts: 13
After I installed 1.22 I can no longer get Zorro to work with MT4. I have extracted the files from ZorroMT4.zip into the corresponding directories of the MT4 installation. As I have build 625 I have put Zorro.mq4 into AppData/Roaming/MetaQuotes/Terminal/<MT4ID>/MQL4/Experts end the library files ZorroMT4.ex4 and ZorroMT4.dll into AppData/Roaming/MetaQuotes/Terminal/<MT4ID>/MQL4/Libraries. I even placed the files into the old MT4 folder structure for the case Zorro would need them updated there too. When I start MT4 and attach the Zorro EA to the chart it shows the message "Controlled by Zorro Bridge 1.3". Then I start the Zorro client and when I click on "Trade" it shows following messages:
Z1(oP group)..
Login MT4 (Demo only)..
Broker: Can't open MT4 bridge!
Check Zorro EA and account number 1405137
Can't connect!

The account number is correct and I don't have any idea why it doesn't connect to the EA.

Re: Zorro 1.22 released! [Re: tvas] #440000
04/15/14 06:55
04/15/14 06:55
Joined: Dec 2013
Posts: 82
Sydney, NSW
T
Thirstywolf Offline
Junior Member
Thirstywolf  Offline
Junior Member
T

Joined: Dec 2013
Posts: 82
Sydney, NSW
I have an issue where Everything appears correct (Controlled By Zorro Bridge etc), but the trades opened in Zorro are actually not executed in MT4. As I have only just gone live with this new version of Zorro, cannot be sure it is related to the new version. Was thinking of trying different strategies to test it more thoroughly, but not quite there yet.

Re: Zorro 1.22 released! [Re: Thirstywolf] #440007
04/15/14 16:09
04/15/14 16:09
Joined: Dec 2013
Posts: 82
Sydney, NSW
T
Thirstywolf Offline
Junior Member
Thirstywolf  Offline
Junior Member
T

Joined: Dec 2013
Posts: 82
Sydney, NSW
OK, Z3 works for me now with 1.22, Just not Z4 Z5, and have other issues with Z1, Z2 and Z12 related to assets. So 1.22 seems to be working with Mt4 from my perspective tvas.

Re: Zorro 1.22 released! [Re: Thirstywolf] #440013
04/15/14 19:09
04/15/14 19:09
Joined: Dec 2013
Posts: 13
T
tvas Offline
Newbie
tvas  Offline
Newbie
T

Joined: Dec 2013
Posts: 13
I cannot get it to work - it brings the same error frown

Re: Zorro 1.22 released! [Re: tvas] #440024
04/16/14 02:30
04/16/14 02:30
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Hi jcl. I was fooling with the ReverseAtStop script with different Assets and BarPeriods and got what looks a bit like a bug - please run this with XAU/USD and look at 2013-04-15. Is it correct? Other BarPeriods & Assets don't do this... Thanks.

Code:
// TMF that opens an opposite trade when stopped out,
// and opens a new trade when profit target is reached (Zorro 1.22 and above)
int ReverseAtStop()
{
	printf("#\nTick-price=%.8f",priceClose());
  if(TradeIsStop) { // stop loss hit?
    if(TradeIsShort)
      enterLong(ReverseAtStop); // enter opposite trade
    else 
      enterShort(ReverseAtStop);
  }
  if(TradeIsProfit) { // profit target hit?
    if(TradeIsShort)
      enterShort(ReverseAtStop); // enter same trade again
    else 
      enterLong(ReverseAtStop);
  }
// call the TMF at stop loss / profit target only  
  return 16;
}

function run()
{
	set(LOGFILE);
	set(PLOTNOW);
  set(TICKS);  // normally needed for TMF
  Weekend = 3; // don't run TMF at weekend
	BarPeriod	= 1440;
  Stop = 10000*PIP;
  TakeProfit = 10000*PIP;
  if(Bar == LookBack) // enter the first trade directly at the first bar
    enterLong(ReverseAtStop);
}


Re: Zorro 1.22 released! [Re: DdlV] #440030
04/16/14 08:16
04/16/14 08:16
Joined: Jul 2000
Posts: 27,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
Frankfurt
tvas: You can find under "Remarks" a list of possible MT4 issues that you can check step by step. For instance, maybe your MT4 thinks that your account is a real account, not a demo account. The remarks cover all known issues of the different MT4 versions.

DdlV: Thanks, I'll check your script.

Re: Zorro 1.22 released! [Re: jcl] #440055
04/17/14 06:46
04/17/14 06:46
Joined: Jul 2000
Posts: 27,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
Frankfurt
The strange XAU/USD trading in 2013-4-15 was indeed caused by a bug when opening trades directly in the TMF. We've uploaded a fixed version:

http://server.conitec.net/down/Zorro_setup.exe

Re: Zorro 1.22 released! [Re: jcl] #440064
04/17/14 13:09
04/17/14 13:09
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Thanks!

Re: Zorro 1.22 released! [Re: DdlV] #440072
04/17/14 15:53
04/17/14 15:53
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Hi jcl. Another Performance Chart issue: In Test, Long and Short opens on the same bar in the log are being shown on different bars in the chart. For example, if bar 72 opens both a Long and a Short, the Long is shown as opening on bar 73, which I understand from prior threads is correct, but the Short is shown opening on bar 72, which is incorrect, isn't it?

Thanks.

Page 1 of 3 1 2 3

Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1