line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::GeniusTrader::DateTime::30Min; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# Copyright 2000-2002 Raphaël Hertzog, Fabien Fulhaber |
4
|
|
|
|
|
|
|
# Copyright 2005 João Antunes Costa |
5
|
|
|
|
|
|
|
# This file is distributed under the terms of the General Public License |
6
|
|
|
|
|
|
|
# version 2 or (at your option) any later version. |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
30
|
|
9
|
1
|
|
|
1
|
|
5
|
use vars qw(); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
16
|
|
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
5
|
use Finance::GeniusTrader::DateTime; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
170
|
|
12
|
|
|
|
|
|
|
#ALL# use Log::Log4perl qw(:easy); |
13
|
1
|
|
|
1
|
|
7
|
use Time::Local; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
300
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 Finance::GeniusTrader::DateTime::30Min |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This module treat dates describing an half-hour. They have the following format : |
18
|
|
|
|
|
|
|
YYYY-MM-DD HH:N0:00 |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
21
|
|
|
|
|
|
|
sub map_date_to_time { |
22
|
0
|
|
|
0
|
0
|
|
my ($value) = @_; |
23
|
0
|
|
|
|
|
|
my ($date, $time) = split / /, $value; |
24
|
0
|
|
|
|
|
|
my ($y, $m, $d) = split /-/, $date; |
25
|
0
|
|
|
|
|
|
my ($h, $n, ) = split /:/, $time; |
26
|
0
|
0
|
|
|
|
|
if ($n >=30) {$n=30;} else {$n=0;} |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
27
|
0
|
|
|
|
|
|
return timelocal(0, $n, $h, $d, $m - 1, $y - 1900); |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
sub map_time_to_date { |
31
|
0
|
|
|
0
|
0
|
|
my ($time) = @_; |
32
|
0
|
|
|
|
|
|
my ($sec, $min, $hour, $d, $m, $y, $wd, $yd) = localtime($time); |
33
|
0
|
0
|
|
|
|
|
if ($min>=30) {$min=30;} else {$min=0;} |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
34
|
0
|
|
|
|
|
|
return sprintf("%04d-%02d-%02d %02d:%02d:00", $y + 1900, $m + 1, $d, $hour, $min); |
35
|
|
|
|
|
|
|
} |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |