Gamestudio Links
Zorro Links
Newest Posts
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Data from CSV not parsed correctly
by EternallyCurious. 04/25/24 10:20
Trading Journey
by howardR. 04/24/24 20:04
M1 Oversampling
by Petra. 04/24/24 10:34
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Scripts not found
by juergen_wue. 04/20/24 18:51
zorro 64bit command line support
by 7th_zorro. 04/20/24 10:06
StartWeek not working as it should
by jcl. 04/20/24 08:38
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (EternallyCurious, AndrewAMD, TipmyPip, Quad), 889 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mega_Rod, EternallyCurious, howardR, 11honza11, ccorrea
19048 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 12 1 2 3 4 5 6 11 12
Re: New Zorro version 1.74 [Re: jcl] #470199
01/02/18 14:02
01/02/18 14:02
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
New version 1.743:

http://opserver.de/down/Zorro_1743.exe

Some small fixes, f.i. for the Z8/Z9 systems, max down time calculation, and rounding issues with stops and dates.

Re: New Zorro version 1.74 [Re: jcl] #470203
01/02/18 16:35
01/02/18 16:35
Joined: Dec 2017
Posts: 129
Halifax, NS
K
kujo Offline
Member
kujo  Offline
Member
K

Joined: Dec 2017
Posts: 129
Halifax, NS
Thanks for the update!

Sometimes Equity on the chart equals 0.

Re: New Zorro version 1.74 [Re: kujo] #470215
01/03/18 09:00
01/03/18 09:00
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
That's a number by the charting library and not the real equity. The real equity is in the performance report.

Re: New Zorro version 1.74 [Re: jcl] #470242
01/04/18 15:36
01/04/18 15:36
Joined: Sep 2017
Posts: 235
H
Hredot Offline
Member
Hredot  Offline
Member
H

Joined: Sep 2017
Posts: 235
Strange behavior in the newest version:

Code:
vars smth1=series(Smooth(Close,12*20));
if(smth1[1]>Close[0]){
    smth1[0]=Smooth(Close,6*20);
}



as well as

Code:
vars smth1=series(1.);
smth1[0]=Smooth(Close,12*20);
if(smth1[1]>Close[0]){
    smth1[0]=Smooth(Close,6*20);
}



gives the error 041: Inconsistent series.

While

Code:
vars smth1=series(1.);
if(smth1[1]>Close[0]){
    smth1[0]=Smooth(Close,6*20);
}else{
    smth1[0]=Smooth(Close,12*20);
}



works just fine.

In all cases above I do not see what could possibly make the series inconsistent, since it is always advanced at a fixed location within a run().

Last edited by Hredot; 01/04/18 15:37.
Re: New Zorro version 1.74 [Re: Hredot] #470246
01/04/18 22:13
01/04/18 22:13
Joined: Oct 2017
Posts: 9
D
debs Offline
Newbie
debs  Offline
Newbie
D

Joined: Oct 2017
Posts: 9
Hi,
I am trying it with dukascopy plugin, works much better than in 1.66 version. But when starting trade and initializing bars zorro throws "!Command 43 not yet supported" eg.:

Code:
BrokerHistory CAD/JPY: 231 ms 27000 min
CAD/JPY: 0..10565, 2017-12-17..1899-12-30
!Command 43 not yet supported.
BrokerHistory USD/JPY: 230 ms


Re: New Zorro version 1.74 [Re: debs] #470251
01/05/18 04:19
01/05/18 04:19
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Hi,

I'm trying the panel and I have small problem. After [TRADE] button is show correct. But after [STOP] not close.

Code:
function tick(){
	if(is(TRADEMODE) && !is(LOOKBACK)){
		panel(6,2,GREY,90);
		panelSet(0,0,"Equity",0,1,0); 
		panelSet(0,1,strf("%.2f",Equity),0,2,0);
		panelSet(1,0,"Balance",0,1,0); 
		panelSet(1,1,strf("%.2f",Balance),0,2,0);
		panelSet(2,0,"Capital",0,1,0); 
		panelSet(2,1,strf("%.2f",Capital),0,2,0);

	}	
}



in the function run I have:
Code:
set(TICKS];


Re: New Zorro version 1.74 [Re: Grat] #470253
01/05/18 07:23
01/05/18 07:23
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
For removing a panel, either call panel(0,0,0,0), or just select a different script.

Re: New Zorro version 1.74 [Re: jcl] #470263
01/05/18 17:36
01/05/18 17:36
Joined: Jun 2016
Posts: 29
panz Offline
Newbie
panz  Offline
Newbie

Joined: Jun 2016
Posts: 29
Version: 1.74.3. Oanda V20 connection is broken.

I had set up the Oanda V20 connection in version 1.66.5 and it's working fine in live trading.

With the same Accounts.csv file copied over to version 1.74.3, selecting the same Oanda Account and choosing Oanda V20 plugin, Zorro always reports:
Login Oanda V20..
Can't connect!

The symptom is the same for any strategy script as well as the Download.c script.

Re: New Zorro version 1.74 [Re: panz] #470267
01/06/18 02:57
01/06/18 02:57
Joined: Nov 2016
Posts: 69
USA
J
jrath Offline
Junior Member
jrath  Offline
Junior Member
J

Joined: Nov 2016
Posts: 69
USA
Same error as above. I thought maybe I was doing something wrong like use-ing the beta for live trading. It is the same for MT4.

Re: New Zorro version 1.74 [Re: jrath] #470270
01/06/18 08:27
01/06/18 08:27
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Broker connections are broken mostly by entering wrong login data or invalid access tokens. So double check to enter the right data. If you then still have problems, please contact Support with all details about your account, broker, and the error message that you got. They'll look into that.

Page 4 of 12 1 2 3 4 5 6 11 12

Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1