README update.

This commit is contained in:
Chris Berkhout 2021-07-01 13:56:39 +02:00
parent 98355efbc3
commit ba67ef310f

View file

@ -103,22 +103,25 @@ resolutions. Multiple or multivariate series require multiple invocations.
## Alternatives ## Alternatives
Beancount's [`bean-price`](https://beancount.github.io/docs/fetching_prices_in_beancount.html) Beancount's [`bean-price`](https://github.com/beancount/beanprice) tool fetches
tool fetches historical prices and addresses other workflow concerns in a prices and addresses other workflow concerns in a Beancount-specific manner,
Beancount-specific manner. generally requiring a Beancount file as input.
The [Piecash](https://piecash.readthedocs.io/) library is a pythonic interface
to GnuCash files stored in SQL. It has a
[`Commodity.update_prices`](https://piecash.readthedocs.io/en/master/api/piecash.core.commodity.html?highlight=update_prices#piecash.core.commodity.Commodity.update_prices)
method that can fetch historical prices.
The GnuCash wiki documents [wrapper scripts](https://wiki.gnucash.org/wiki/Stocks/get_prices) The GnuCash wiki documents [wrapper scripts](https://wiki.gnucash.org/wiki/Stocks/get_prices)
for the [Finance::QuoteHist](https://metacpan.org/pod/Finance::QuoteHist) Perl for the [Finance::QuoteHist](https://metacpan.org/pod/Finance::QuoteHist) Perl
module. module.
Some other projects with related goals include: Other projects with related goals include:
* [`hledger-stockquotes`](https://github.com/prikhi/hledger-stockquotes): * [`hledger-stockquotes`](https://github.com/prikhi/hledger-stockquotes):
Generate an HLedger journal containing daily stock quotes for your commodities. A CLI addon for hledger that reads a journal file and pulls the historical prices for commodities from AlphaVantage.
* [`ledger_get_prices`](https://github.com/nathankot/ledger-get-prices): * [`ledger_get_prices`](https://github.com/nathankot/ledger-get-prices):
Uses Yahoo finance to intelligently generate a ledger price database based on your current ledger commodities and time period. Uses Yahoo finance to intelligently generate a ledger price database based on your current ledger commodities and time period.
* [LedgerStockUpdate](https://github.com/adchari/LedgerStockUpdate): * [LedgerStockUpdate](https://github.com/adchari/LedgerStockUpdate):
Locates any stocks you have in your ledger-cli file, then generates a price database of those stocks. Locates any stocks you have in your ledger-cli file, then generates a price database of those stocks.
* [`market-prices`](https://github.com/barrucadu/hledger-scripts#market-prices): * [`market-prices`](https://github.com/barrucadu/hledger-scripts#market-prices):
Downloads market values of commodities from a few different sources. Downloads market values of commodities from a few different sources.
* [price-database](https://gitlab.com/alensiljak/price-database):
A Python library and a CLI for storage of prices.