Blockforce Labs Web Tools
blockforcelabs.com A platform for showcasing BFC research and data-visualization tools
Provides API for daily coin price data from Binance.
Data for the tools is updated once daily, and calculations are done on update
Current tools:
- Heatmap: Today's 90-day return correlation
- Heatmap Timeline: Historical 90-day return correlation
- Volatility Chart: Historical volatility of crypto-currency returns
Fields returned by API:
n_tradesprice_closeprice_highprice_lowprice_opentimestampvolume
Pull data by: https://blockforcelabs.com/api/api/v1/load_daily?symbol=<symbolpair>
Where <symbolpair> is a Binance symbol pair in:
- ETH-USDT
- EOS-USDT
- BTC-USDT
- TRX-USDT
- IOTA-USDT
- XLM-USDT
- XRP-USDT
- LTC-USDT
- ADA-USDT
- NEO-USDT
- BCHABC-USDT
- BNB-USDT
.
├── database/ # psql database holding code, flask backend
| ├── db_init/ # database initialization
| ├── get_data/ # database and api connection
| ├── flask/ # backend for API, and data visualization
| └── ...
|
├── backtest/
| └── ... # testing data api, and psql database
└── ...


