Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (Quad, 1 invisible), 877 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
Hour and minute from unixtime #477235
06/04/19 12:36
06/04/19 12:36
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline OP
Senior Member
Grat  Offline OP
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Hi,

i get from outside source data with timestamp in the unixtime.
Code:
uTime = "1559651639";
// convert to time
dTime=wdatef("t",uTime);



Q: how to get minute and hour from uTime?

I found only this:

atoi(strdate("%H",dTime));

for hour


Thanks

Last edited by Grat; 06/04/19 12:41.
Re: Hour and minute from unixtime [Re: Grat] #477241
06/05/19 05:32
06/05/19 05:32
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
C puzzle: How do you get minute and hour from dTime without string conversion? Solution in the next days.

Re: Hour and minute from unixtime [Re: jcl] #477262
06/07/19 13:49
06/07/19 13:49
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
No takers...

Hour = (int)((dTime-floor(dTime))*24);
Minute = (int)((dTime-floor(dTime))*1440) % 60;

Re: Hour and minute from unixtime [Re: jcl] #477263
06/07/19 14:33
06/07/19 14:33
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline OP
Senior Member
Grat  Offline OP
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
laugh


// define
#define Date2Hour(dt) (int)((dt-floor(dt))*24)

use:

Hour = Date2Hour( var );


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1