Create an Account
username: password:
 
  MemeStreams Logo

MemeStreams Discussion

search


This page contains all of the posts and discussion on MemeStreams referencing the following web page: Hackszine.com: Simple stock quote grabbing with Perl. You can find discussions on MemeStreams as you surf the web, even if you aren't a MemeStreams member, using the Threads Bookmarklet.

Hackszine.com: Simple stock quote grabbing with Perl
by Lost at 9:07 pm EDT, Oct 26, 2008

#!/usr/bin/perl -w

use strict;
use Finance::Quote;

my $q = Finance::Quote->new();
my %data = $q->fetch('usa', 'GOOG');
print $data{'GOOG', 'price'} . "\n";


 
 
Powered By Industrial Memetics