Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (degenerate_762, Aku_Aku, 7th_zorro, Ayumi), 1,080 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 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,729
Chicago
AndrewAMD Offline
Serious User
AndrewAMD  Offline
Serious User

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