File Coverage

blib/lib/Finance/GeniusTrader/DateTime/10Min.pm
Criterion Covered Total %
statement 12 34 35.2
branch 0 20 0.0
condition n/a
subroutine 4 6 66.6
pod 0 2 0.0
total 16 62 25.8


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