Simple currency forecasting for IEX data
$ pip3 install forexcast
$ git clone [email protected]:IntrospectData/forexcast.git
$ python3 -m venv env
$ source env/bin/activate
(env) $ pip3 install forexcast
On your first use the app will ask for your IEX api key and your desired quote-currency.
These values are stored unencrypted in $HOME/.config/forexcast.json
$ forexcast --help
Usage: forexcast [OPTIONS] CURRENCY
Simple currency forecasting for IEX data
* CURRENCY = 3 char ISO code for target currency
* Dates should be in YYYY-MM-DD format
Options:
--from_date TEXT Data after this date will be included.
--to_date TEXT Data after this date will be excluded.
--periods INTEGER Periods to predict.
--out TEXT If specified will save forecast in specified dir.
--help Show this message and exit.