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
3 registered members (VoroneTZ, monk12, Quad), 829 guests, and 4 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
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,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
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 (54 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,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
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,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
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

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