biquote
Free real-time market data for Python - forex, crypto, gold, index CFDs and a 54-country economic calendar, streamed from a MetaTrader 5 feed.
No API key. No signup. 15,000 requests/min.
pip install biquote
from biquote import Biquote
bq = Biquote()
# One quote - use "mid" as the price
tick = bq.tick("EURUSD")
print(tick["mid"], tick["dayDiffPercent"])
# Up to 100 symbols in one request
ticks = bq.latest(["EURUSD", "XAUUSD", "BTCUSD", "USDTRY"])
# OHLC candles into pandas (oldest first)
import pandas as pd
df = pd.DataFrame(bq.ohlc("XAUUSD", interval="1h", limit=500))
# Only the ~280 instruments that are live right now
live = bq.symbols(live_only=True)
# This week's high-impact macro events
events = bq.calendar(importance="high", countries="US,EU,GB")
Good to know
lastandvolumeare always0on FX/CFD feeds -midis the price.- The catalogue lists ~1,700 instruments but only ~280 quote at any moment; filter with
symbols(live_only=True). - For push updates use the SignalR hub at
https://biquote.io/hubs/tick(no rate limit) - see the API docs. - Docs: https://biquote.io/docs/ - Widgets: https://widgets.biquote.io
MIT (c) biquote.io
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
biquote-0.2.0.tar.gz
(4.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file biquote-0.2.0.tar.gz.
File metadata
- Download URL: biquote-0.2.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6871eedb71fd2d1c4e7b608e66ff056bbd77331fc7d9baf11950b1fa35c8f93e
|
|
| MD5 |
f7220f7b911153a487ae7207aa8f096b
|
|
| BLAKE2b-256 |
0436ea6c8b9bde57adee0e9e976068999244f8c439641018c52c2e776ec7d4cf
|
File details
Details for the file biquote-0.2.0-py3-none-any.whl.
File metadata
- Download URL: biquote-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a3cce280aa8dffb3322e7e6232a5cd9e2cb30f1b9e5a5a387871f682780fb05
|
|
| MD5 |
60b0da990e01c76a9b0f5017f567fb93
|
|
| BLAKE2b-256 |
197a406d77f0d096c98036cb8cb358d87d6c2345d11374a5ccb9d241f9fc192b
|