Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
sub GetFactor { my ($symbol) = @_; #Expects either ^Xyy where yy = 2 letter code o +r AAABBB=X #WHERE A and B are Official three letter Countr +y Codes, AAA # being the 'From' money, and BBB #being the 'To' money ex. Us dollar to British +Pound would be #USDGBP=X my $src_url = "http://finance.yahoo.com/d/quotes.csv?f=snl1d1t1c1o +hgv&e=.csv&s=".$symbol; $ua = new LWP::UserAgent; $ua->proxy(http => 'http://<PROXY INFO>'); $ua->agent('Mozilla/2.0 (compatible; MSIE 3.02; Win32)'); $ua->timeout(30); $req = new HTTP::Request GET => $src_url; $req->proxy_authorization_basic('<USERNAME>', '<PWD>'); $resp = $ua->request($req); if (!$resp->is_success || !$resp) { $errmsg = "<FONT COLOR=#FF0000>Failed to retrieve stock indice +s --". $resp->Status_line ." $!</FONT>"; print "$errmsg<br>\n"; die; } #$resp->Format = <SYMBOL>,"<SOURCE>",<FACTOR>,"<LAST TRADE DATE>", +"<LAST TRADE TIME>",N/A,N/A,N/A,N/A,N/A return split /,/,$resp->content; }

In reply to Yahoo Currency Exchange Interface by cacharbe

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-23 17:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found