Gamestudio Links
Zorro Links
Newest Posts
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
Data from CSV not parsed correctly
by jcl. 04/20/24 08:32
Zorro FIX plugin - Experimental
by jcl. 04/20/24 08:30
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
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
3 registered members (7th_zorro, Aku_Aku, 1 invisible), 579 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 3 1 2 3
New Zorro version 2.53 #486914
11/14/22 12:01
11/14/22 12:01
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Zorro 2.53 is now available on https://zorro-project.com/download.php under "New versions".

List of new features: https://manual.zorro-project.com/new.htm

This release candidate will become the official release when no bugs are found in the next time. Please test everything and report any issues here! As usual, if you're the first one to find a new and serious bug in the release candidate, you can get a free Zorro S subscription or support extension.

Re: New Zorro version 2.53 [Re: jcl] #486916
11/15/22 21:56
11/15/22 21:56
Joined: Nov 2022
Posts: 15
Friedrichshafen
E
Eugeniu Offline
Newbie
Eugeniu  Offline
Newbie
E

Joined: Nov 2022
Posts: 15
Friedrichshafen
Please see attached image (and t6 file for verification -> remove the .csv extension, forum doesn't let me attach a .t6 file so had to append .csv).

I see 2 problems with the chart's X axis:
1. inconsistent width in ticks: sometimes 1 division is 1 day, sometimes 2
2. invalid ticks: a candle is reported on Nov 6th but that was on a Sunday (this is a recent candlestick chart for AMZN)

Attached Files Screenshot from 2022-11-15 22-48-40.png
AMZN.t6.csv (56 downloads)
Re: New Zorro version 2.53 [Re: jcl] #486918
11/16/22 09:25
11/16/22 09:25
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
The x axis on a financial chart is not determined by the Zorro version, but by the timestamps in your historical data.

Re: New Zorro version 2.53 [Re: jcl] #486921
11/16/22 12:44
11/16/22 12:44
Joined: Nov 2022
Posts: 15
Friedrichshafen
E
Eugeniu Offline
Newbie
Eugeniu  Offline
Newbie
E

Joined: Nov 2022
Posts: 15
Friedrichshafen
Please see attached timestamps (after converting the .t6 file I've attached in the previous message to .csv). There is no entry for Nov. 6th.

Attached Files Screenshot from 2022-11-16 13-42-17.png
Re: New Zorro version 2.53 [Re: jcl] #486928
11/17/22 11:05
11/17/22 11:05
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Yes, there is. You can see in your list that you got a long bar from Nov 4 to Nov 7. That's a weekend bar. And since you have probably plotted your chart with BR_WEEKEND activated, you've suppressed that bar until Sunday 23:00 UTC when the new week begins. That's likely your Nov 6 bar. It has nothing to do with version 2.53.

https://zorro-project.com/manual/en/barmode.htm

Either change the default weekend to the real AMZN weekend, or simply resf(BarMode,BR_WEEKEND). I'll put a remark in the manual because other users might once encounter the same issue.

Re: New Zorro version 2.53 [Re: jcl] #486931
11/17/22 19:55
11/17/22 19:55
Joined: Nov 2022
Posts: 15
Friedrichshafen
E
Eugeniu Offline
Newbie
Eugeniu  Offline
Newbie
E

Joined: Nov 2022
Posts: 15
Friedrichshafen
I actually didn't write any script. I simply set t6 as a file extension to be opened with Zorro. So when I double click the .t6 file Zorro launches automatically and displays the chart.

I've checked my process list and this is what gets executed on the double click:

Quote

Z:\data\zorro\Zorro.exe Z:\home\ubuntu\Desktop\AMZN.t6


From your reply I understand that the timestamps that it sees in .t6 are UTC and when displaying it converts it to my timezone which is UTC+1. That would explain the differences between chart and table. Maybe don't make any conversions by default?

Last edited by Eugeniu; 11/17/22 20:09.
Re: New Zorro version 2.53 [Re: jcl] #486936
11/20/22 09:57
11/20/22 09:57
Joined: Apr 2008
Posts: 585
Austria
Petra Offline
Support
Petra  Offline
Support

Joined: Apr 2008
Posts: 585
Austria
Timestamps are converted only when you set up a time zone in a script. Not by default.

They need be UTC when you use multiple time zones but otherwise the time zone does not matter to Zorro. Still, for not mixing up data with different time zones better have them all in UTC.

Re: New Zorro version 2.53 [Re: Petra] #486938
11/20/22 13:20
11/20/22 13:20
Joined: Nov 2022
Posts: 15
Friedrichshafen
E
Eugeniu Offline
Newbie
Eugeniu  Offline
Newbie
E

Joined: Nov 2022
Posts: 15
Friedrichshafen
From the Zorro UI looks like Chart.c is selected when the candlestick chart is displayed (I just double click the .t6 file to launch Zorro). When looking in Chart.c (one of the default scripts in Strategy/ folder, I don't see any timezone variable being set).

I've added the following line inside the if(is(INITRUN)) block and got this output:

Quote

printf("\n%d, %d, %d, %d, %d, %d", BarZone, HistoryZone, BrokerZone, LogZone, AssetMarketZone, AssetFrameZone);

...
24, 0, 0, 24, 24, -24


Re: New Zorro version 2.53 [Re: jcl] #486947
11/27/22 01:54
11/27/22 01:54
Joined: Jan 2021
Posts: 15
Chennai
M
monarch Offline
Newbie
monarch  Offline
Newbie
M

Joined: Jan 2021
Posts: 15
Chennai
The download link I received in the email is downloading version 2.50.2. Is there a different link for this specific version?

Re: New Zorro version 2.53 [Re: jcl] #486948
11/27/22 02:06
11/27/22 02:06
Joined: Jan 2021
Posts: 15
Chennai
M
monarch Offline
Newbie
monarch  Offline
Newbie
M

Joined: Jan 2021
Posts: 15
Chennai
Never mind. I downloaded it from https://opserver.de/down/Zorro_253.exe

Re: New Zorro version 2.53 [Re: jcl] #486961
12/02/22 18:59
12/02/22 18:59
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
First bug reported, by 2 users at the same time: PRELOAD didn't work properly when historical data was too recent.

This is fixed in version 2.53.3, same URL.

Re: New Zorro version 2.53 [Re: jcl] #486997
12/16/22 12:53
12/16/22 12:53
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 bug report with duplicate IDs in the recent TWS API. It happens under some circumstances when closing positions.

Zorro 2.53.6 contains a workaround. The new IB plugin can be separately downloaded from https://opserver.de/down/ib.zip.

Re: New Zorro version 2.53 [Re: jcl] #487015
12/27/22 06:09
12/27/22 06:09
Joined: Jan 2021
Posts: 17
J
jari Offline
Newbie
jari  Offline
Newbie
J

Joined: Jan 2021
Posts: 17
Running Z10 "Test" in Offline mode,
I got this one:


Z10 .x ..
Z10.16: PH H 4 B 0 V 1
Loading 12 assets..
Error 111: Crash in run
Error 047: No bars to plot


Switched accounts and brokers, same thing.


I installed 2.53.6 on top of 2.50.2

Hopefully i'm the only one.

Re: New Zorro version 2.53 [Re: jcl] #487016
12/27/22 13:02
12/27/22 13:02
Joined: Jan 2021
Posts: 17
J
jari Offline
Newbie
jari  Offline
Newbie
J

Joined: Jan 2021
Posts: 17
Tried installing 2.53.6 to a new install path.

new path | original path
------|---------------|----------------
Z10 | error 111 | error 111
Z9 | error 111 | error 111
Z12 | ok | ok

Last edited by jari; 12/27/22 13:09.
Re: New Zorro version 2.53 [Re: jcl] #487023
12/29/22 10:02
12/29/22 10: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
The Z systems are not yet ready for 2.53. They will be ready when it becomes the final release.

Re: New Zorro version 2.53 [Re: jcl] #487027
01/01/23 03:18
01/01/23 03:18
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Happy New Year to @jcl & all the Zorro crew!

Running 2.5.3.6 on Windows Server 2012 VPS:

Possible Bug:
assetHistory Remarks states "Price history is only downloaded in the INITRUN or in the main function, and only when existing price history is not already up to date". In my tests downloading EOD in a main function, if the Asset file does not exist, assetHistory incorrectly returns a file-not-found error. I believe this is a bug, since the non-existent Asset price history is clearly not up to date! (For others who run into this in the interim, a workaround is to add the OVERRIDE flag...)

Re: New Zorro version 2.53 [Re: jcl] #487028
01/01/23 03:50
01/01/23 03:50
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
And... Possible Manual Bugs and related (which is why they're in this post) Enhancement Requests:

Possible Manual Bugs:
- Help -> Search -> "history": does not give a "History" result. Top result is "assetHistory", which does contain a link(s) to "History"; although only taking to the top of the "Predefined and user-supplied strings" entry. There should be a "History" result.

- History entry states "If not set, defaults to .t6 and the HistoryFolder". From prior tests, this is not correct. In my tests the correct statement is more like "If HistoryFolder is the default value of "History", History is not initialized. If HistoryFolder has been set to a different value, History is initialized to that value. When searching for Assets files, the path defaults to HistoryFolder, the suffix to nothing, and the extension to .t6. If History is set by the user, ...".

Related Enhancement Requests:
- Always initialize History to the value of HistoryFolder. (The user can still change it if desired.) This provides a script with the value of HistoryFolder without unnecessary gyrations. This is related to the next item:

- On the Performance Report, include the value of History so the user looking at it later knows what data was input. This would also allow a given script to be easily run against different data, with that difference clear.

- On the Performance Report, the System's details should also be shown. Esp. given the noted differences between Windows & Linux/Wine (& other?).

Note that while a user's script could do these, the user cannot do these with the Z Systems.

Re: New Zorro version 2.53 [Re: jcl] #487030
01/02/23 09:22
01/02/23 09:22
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
A file not found error by assethistory normally means that the file exists, but is not readable. Please check. Otherwise, please let me know if it only happens with your script, or also with download.c.

Thank you for the other suggestions.

Re: New Zorro version 2.53 [Re: jcl] #487036
01/03/23 01:46
01/03/23 01:46
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Thanks @jcl.

The .t6 file was definitely not there. It was actually files - more than 1.

Thanks.

Re: New Zorro version 2.53 [Re: jcl] #487042
01/04/23 09:58
01/04/23 09:58
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Hmm. Do you get the same message with the dowload script? Or only with yours? If so, can you post it?

Re: New Zorro version 2.53 [Re: jcl] #487047
01/04/23 15:03
01/04/23 15:03
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
I ran 2 tests:

Test 1:
- AAPL.t6 file exists.
- Trade Download
- Change to EOD
- Enter AAPL
- Click Download
Result: Download runs and AAPL.t6 modified date is updated

Test 2:
- Delete AAPL.t6
- Trade Download
- Change to EOD
- Enter AAPL
- Click Download
Result: "!Subscribe AAPL" and "AAPL history up to date" print in the message window. No AAPL.t6 file is created.

Clarification: My script tries to open the .t6 file, so that was the source of the file-not-found error. The actual Zorro problem is not creating the .t6 file...

Thanks.

Re: New Zorro version 2.53 [Re: jcl] #487053
01/05/23 16:47
01/05/23 16:47
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
The message means that the file exists and is up to date, i.e last updated less than a day ago. And the file name has normally a year number.

Re: New Zorro version 2.53 [Re: jcl] #487055
01/06/23 01:27
01/06/23 01:27
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Thanks @jcl. Regarding each sentence:

- Yes, I know what the message means. But in this case it isn't accurate. The file was deleted before the test was run.

- This is EoD data, so no year in the file name.

Thanks.

Re: New Zorro version 2.53 [Re: jcl] #487098
01/16/23 13:46
01/16/23 13:46
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 2.53.9. Some issues with BR_LOCAL have been addressed. This is probably the final version.

Re: New Zorro version 2.53 [Re: jcl] #487116
01/22/23 19:05
01/22/23 19:05
Joined: Sep 2019
Posts: 63
Naperville
K
kzhao Offline
Junior Member
kzhao  Offline
Junior Member
K

Joined: Sep 2019
Posts: 63
Naperville
Something wrong. The https://opserver.de/down/Zorro_253.exe downloads a Zorro_235.exe and installs 2.3.5 version

Re: New Zorro version 2.53 [Re: kzhao] #487118
01/23/23 14:17
01/23/23 14:17
Joined: Oct 2022
Posts: 13
N/A
J
juanex Offline
Newbie
juanex  Offline
Newbie
J

Joined: Oct 2022
Posts: 13
N/A
The link that you used is for version 2.3.5, you can see it on the URL you posted.

If you are trying to download the latest version you can try https://opserver.de/down/Zorro_setup.exe

Page 1 of 3 1 2 3

Moderated by  Petra 

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