I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-05-08 21:33:24.409236-07 by jaiguevara
response time
This module is very much something I've been looking for, but the following three line script --
use Finance::QuoteOptions; my $q=Finance::QuoteOptions->new('DIA'); die 'Retrieve Failed' unless $q->retrieve;

takes over 10 seconds to run on my system. The README states that a Yahoo option chain takes about 1 second. What could be making my response so slow?
Direct Responses: 12685 | Write a response
Posted on 2010-05-09 07:54:09.853981-07 by kbocek in response to 12684
Re: response time
The response time is very dependent on Yahoo and your internet connection. Although I saw 1 second while writing the module, my own response time has varied widely. Unfortunately, those variables are out of my control. Kirk
Direct Responses: 12686 | Write a response
Posted on 2010-05-09 12:11:28.299076-07 by jaiguevara in response to 12685
Re: response time
Thanks. Actually DIA is probably the worst case. I'm finding others faster.

I've been "scraping" the Optionetics site for options chains. They have all expirations on one page, so it's been reasonably fast. I've been getting About 4300 stocks, 238,000 options in less than an hour. I just want closing prices so once per day is fine.

Unfortunately Optionetics data is bad and getting worse. I'm hoping this module will get me back on track.
Direct Responses: 12687 | Write a response
Posted on 2010-05-09 14:02:46.290052-07 by thelastbroker in response to 12686
Re: response time
currently i scan entire AMEX,NYSE,NASDAQ stock exchanges and grab all available option chains in 30 minutes or less on 512/256 adsl1 so i would be inclined to say that bandwidth might be a problem but i would dare to say that it is not your only problem
Direct Responses: Write a response