File Coverage

blib/lib/Finance/GeniusTrader/DateTime/15Min.pm
Criterion Covered Total %
statement 12 30 40.0
branch 0 12 0.0
condition n/a
subroutine 4 6 66.6
pod 0 2 0.0
total 16 50 32.0


line stmt bran cond sub pod time code
1             package Finance::GeniusTrader::DateTime::15Min;
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   4 use strict;
  1         2  
  1         32  
9 1     1   4 use vars qw();
  1         2  
  1         16  
10              
11 1     1   5 use Finance::GeniusTrader::DateTime;
  1         1  
  1         178  
12 1     1   5 use Time::Local;
  1         2  
  1         316  
13              
14             =head1 Finance::GeniusTrader::DateTime::15Min
15              
16             This module treat dates describing a quarter-hour. They have the following format :
17             YYYY-MM-DD HH:NN: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           my ($h, $n, ) = split /:/, $time;
25 0 0         if ($n >=45) {$n=45}
  0 0          
  0 0          
26 0           elsif ($n>=30) {$n=30}
27 0           elsif ($n>=15) {$n=15}
28             else {$n=0}
29 0           return timelocal(0, $n, $h, $d, $m - 1, $y - 1900);
30             }
31              
32             sub map_time_to_date {
33 0     0 0   my ($time) = @_;
34 0           my ($sec, $min, $hour, $d, $m, $y, $wd, $yd) = localtime($time);
35 0 0         if ($min>=45) {$min=45;}
  0 0          
  0 0          
36 0           elsif ($min>=30) {$min=30;}
37 0           elsif ($min>=15) {$min=15;}
38             else {$min=0;}
39 0           return sprintf("%04d-%02d-%02d %02d:%02d:00", $y + 1900, $m + 1, $d, $hour, $min);
40             }
41              
42             1;