# man > Finance::Quote::Fool

---
type: CommandReference
command: Finance::Quote::Fool
mode: perldoc
section: 3pm
source: perldoc
---

## Quick Reference
- `$q->fetch("fool", "SYMBOL1", "SYMBOL2")` — Fetch stock quotes from Motley Fool for given symbols.
- Labels returned: `symbol`, `day_range`, `open`, `volume`, `close`, `year_range`, `last`, `currency`, `method`.
- Module loaded by default by `Finance::Quote->new`.

## Name
Finance::Quote::Fool - Obtain quotes from the Motley Fool web site.

## Synopsis
perl
use Finance::Quote;
$q = Finance::Quote->new;
%stockinfo = $q->fetch("fool","GE", "INTC");
## Examples
perl
use Finance::Quote;
my $q = Finance::Quote->new;
my %info = $q->fetch("fool", "AAPL", "MSFT");
## See Also
- [Motley Fool](http://caps.fool.com)
- [Finance::Quote](http://localhost/phpMan.php/perldoc/Finance%3A%3AQuote/markdown)