summaryrefslogtreecommitdiff
path: root/contrib/getquote.pl
blob: bed561d68ebb94db61c0f5333376b519ab280f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

$timeout = 60;

use Finance::Quote;

$q = Finance::Quote->new;
$q->timeout($timeout);
$q->require_labels(qw/price/);

%quotes = $q->fetch("nasdaq", $ARGV[0]);
if ($quotes{$ARGV[0], "price"}) {
    print "\$", $quotes{$ARGV[0], "price"}, "\n";
} else {
    exit 1;
}