Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hilli/finance-influxdb
Daemon that will import Equity (Stocks) data from Yahoo Finance and insert it into InfluxDB
https://github.com/hilli/finance-influxdb
Last synced: 5 days ago
JSON representation
Daemon that will import Equity (Stocks) data from Yahoo Finance and insert it into InfluxDB
- Host: GitHub
- URL: https://github.com/hilli/finance-influxdb
- Owner: hilli
- License: mit
- Created: 2020-08-27T10:50:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-27T11:36:56.000Z (over 4 years ago)
- Last Synced: 2024-11-07T22:34:40.322Z (about 2 months ago)
- Language: Go
- Size: 5.86 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finance-influxdb
Collects finance statistics from Yahoo Finance and emits the data to InfluxDB.
*THIS IS WORK IN PROGRESS!!!*
# Configuring
## Setup ticker symbols in the environment
```bash
docker run --rm -e SYMBOLS=AAPL,TSLA,MSFT hilli/finance-influxdb
```
or with visual output in the log as well while collecting data at every 30s sending it to another server:```bash
docker run --rm -e DEBUG=true -e COLLECTION_INTERVAL=30 -e INFLUX_ENDPOINT=http://127.0.0.1:8086 -e SYMBOLS=AAPL,TSLA,MSFT hilli/finance-influxdb
```If you prefer, you can create a `.env` file with the same environment as the docker-compose file and map it to the container as a volume.
## InfluxDB
You will need a `InfluxDB` server to accept your data. Set `INFLUX_ENTRYPOINT` to point to your server of choice (URL format).
# Docker Compose
`docker-compose.yaml` setting the environment:
```yaml
version: '3.7'
services:
finance-influxdb:
image: hilli/finance-influxdb
container_name: finance-influxdb
hostname: finance-influxdb
restart: unless-stopped
environment:
INFLUX_ENDPOINT: "http://influxdb:8086"
COLLECTION_INTERVAL: 60 # Seconds
SYMBOLS: "AAPL,TSLA,MSFT" # Choose your symbols on https://finance.yahoo.com/
#INFLUX_USER: "myuser" # If needed
#INFLUX_PASSWORD: "boohoo" # If needed
#DEBUG: "jearh" # Print the collected results in a human readable format to the docker log
````docker-compose.yaml` setting the environment in an `.env` file:
```yaml
version: '3.7'
services:
finance-influxdb:
image: hilli/finance-influxdb
container_name: finance-influxdb
hostname: finance-influxdb
restart: unless-stopped
volumes:
- "./env:/.env"
````.env`:
```bash
INFLUX_ENDPOINT=http://localhost:8086
#INFLUX_USER=myuser # If needed
#INFLUX_PASSWORD=boohoo # If needed
COLLECTION_INTERVAL=15
SYMBOLS=AAPL,TSLA,MSFT,DANSKE.CO
#DEBUG=OK # Output data to stdout as well
```# License etc
Licensed under MIT License. Source available at https://github.com/hilli/finance-influxdb