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 (degenerate_762, Nymphodora), 1,012 guests, and 3 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
Zorro - import diff time zones csv #482554
02/23/21 15:09
02/23/21 15:09
Joined: Aug 2020
Posts: 59
London
Neb Offline OP
Junior Member
Neb  Offline OP
Junior Member

Joined: Aug 2020
Posts: 59
London

Hi all,

If I have csv price history, which is not UTC time zone, but Chicago or Australia server, does Zorro have posibility to convert it, during import ?

Thanks,

Neb

Re: Zorro - import diff time zones csv [Re: Neb] #482555
02/23/21 17:11
02/23/21 17:11
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
I had also this problem. My solution:

import CSV into Python/Pandas

convert timestamp to UTC/GMT

save with new Timezone

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DatetimeIndex.tz_convert.html
Code
df.index = df.index.tz_localize('GMT')
df.index = df.index.tz_convert('America/New_York')

Last edited by Grat; 02/23/21 17:13.
Re: Zorro - import diff time zones csv [Re: Neb] #482556
02/23/21 17:52
02/23/21 17:52
Joined: Feb 2017
Posts: 1,718
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,718
Chicago
What you do is this:

1) Import the CSV to a dataset as you normally would, knowing that the timestamps are in the given timezone.
2) Modify the dataset using dataset functions and time functions, and the Now variable. Detect daylight savings with dst().
https://manual.zorro-project.com/data.htm
https://manual.zorro-project.com/month
https://zorro-project.com/manual/en/date.htm
3) Save your dataset to a t6 file with dataSave.

Re: Zorro - import diff time zones csv [Re: Neb] #482572
02/28/21 12:23
02/28/21 12:23
Joined: Aug 2020
Posts: 59
London
Neb Offline OP
Junior Member
Neb  Offline OP
Junior Member

Joined: Aug 2020
Posts: 59
London
Hi Grat, AndrewAMD,


Thank you both !

Neb


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1