# man > Finance::Quote::HU

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

## Quick Reference

- `use Finance::Quote; $q = Finance::Quote->new;` — initialize a quote object
- `$q->fetch('hu', 'ticker_or_ISIN')` — fetch data for a Hungarian security (stock by ticker, mutual fund by ISIN)
- `$q->fetch('hu', 'ISIN123456')` — fetch mutual fund by ISIN

## Name

Finance::Quote::HU - Obtain Hungarian Securities from www.bet.hu and www.bamosz.hu

## Synopsis

perl
use Finance::Quote;
$q = Finance::Quote->new;
# Don't know anything about failover yet...
## Labels Returned

The following labels may be available in the returned hash:

- `method` — retrieval method
- `source` — data source name
- `name` — security name
- `symbol` — symbol (ticker or ISIN)
- `currency` — trading currency
- `date` — quote date
- `last` — last price
- `price` — current price
- `low` — day low
- `high` — day high
- `open` — opening price
- `close` — previous close
- `p_change` — percentage change

## See Also

- [Budapest Stock Exchange (BET)](http://www.bet.hu)
- [BAMOSZ](http://www.bamosz.hu/)
- [Finance::Quote](http://localhost/phpMan.php/perldoc/Finance%3A%3AQuote/markdown)