Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
7 registered members (clonman, TipmyPip, Niels, dBc, Ed_Love, 3run, 1 invisible), 18,869 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 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,806
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

Joined: Feb 2017
Posts: 1,806
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