line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Finance::GeniusTrader::DateTime::4Hour; |
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
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
31
|
|
9
|
1
|
|
|
1
|
|
5
|
use vars qw(); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
17
|
|
10
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
5
|
use Finance::GeniusTrader::DateTime; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
171
|
|
12
|
1
|
|
|
1
|
|
6
|
use Time::Local; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
381
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 Finance::GeniusTrader::DateTime::4Hour |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This module treat dates describing the 2Hour timeframe. They have the following format : |
17
|
|
|
|
|
|
|
YYYY-MM-DD HH:00:00 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
sub map_date_to_time { |
21
|
0
|
|
|
0
|
0
|
|
my ($value) = @_; |
22
|
0
|
|
|
|
|
|
my ($date, $time) = split / /, $value; |
23
|
0
|
|
|
|
|
|
my ($y, $m, $d) = split /-/, $date; |
24
|
0
|
0
|
|
|
|
|
$time = "00:00:00" if (!defined($time)); |
25
|
0
|
|
|
|
|
|
my ($h, , ) = split /:/, $time; |
26
|
0
|
0
|
|
|
|
|
if ($h >=20) {$h=20} |
|
0
|
0
|
|
|
|
|
|
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
27
|
0
|
|
|
|
|
|
elsif ($h>=16) {$h=16} |
28
|
0
|
|
|
|
|
|
elsif ($h>=12) {$h=12} |
29
|
0
|
|
|
|
|
|
elsif ($h>=8) {$h=8} |
30
|
0
|
|
|
|
|
|
elsif ($h>=4) {$h=4} |
31
|
|
|
|
|
|
|
else {$h=0} |
32
|
0
|
|
|
|
|
|
return timelocal(0, 0, $h, $d, $m - 1, $y - 1900); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
sub map_time_to_date { |
36
|
0
|
|
|
0
|
0
|
|
my ($time) = @_; |
37
|
0
|
|
|
|
|
|
my ($sec, $min, $h, $d, $m, $y, $wd, $yd) = localtime($time); |
38
|
|
|
|
|
|
|
|
39
|
0
|
0
|
|
|
|
|
if ($h >=20) {$h=20} |
|
0
|
0
|
|
|
|
|
|
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
40
|
0
|
|
|
|
|
|
elsif ($h>=16) {$h=16} |
41
|
0
|
|
|
|
|
|
elsif ($h>=12) {$h=12} |
42
|
0
|
|
|
|
|
|
elsif ($h>=8) {$h=8} |
43
|
0
|
|
|
|
|
|
elsif ($h>=4) {$h=4} |
44
|
|
|
|
|
|
|
else {$h=0} |
45
|
|
|
|
|
|
|
|
46
|
0
|
|
|
|
|
|
return sprintf("%04d-%02d-%02d %02d:00:00", $y + 1900, $m + 1, $d, $h); |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |