summaryrefslogtreecommitdiff
path: root/contrib/getquote.pl
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/getquote.pl')
-rwxr-xr-xcontrib/getquote.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/getquote.pl b/contrib/getquote.pl
new file mode 100755
index 00000000..8e3bb678
--- /dev/null
+++ b/contrib/getquote.pl
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl
+
+$timeout = 60;
+
+use Finance::Quote;
+use POSIX qw(strftime localtime time);
+
+$q = Finance::Quote->new;
+$q->timeout($timeout);
+$q->require_labels(qw/price/);
+
+%quotes = $q->fetch("nasdaq", $ARGV[0]);
+if ($quotes{$ARGV[0], "price"}) {
+ print strftime('%Y/%m/%d %H:%M:%S', localtime(time()));
+ print " ", $ARGV[0], " ";
+ print "\$", $quotes{$ARGV[0], "price"}, "\n";
+} else {
+ exit 1;
+}