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.1.0.tar.gz
(3.7 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.1.0.tar.gz.
File metadata
- Download URL: biquote-0.1.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b34e0efbc75dbffbbef2ca7602258b3c16754a1b97b9d5a00a2190d351135529
|
|
| MD5 |
987ce6b0324279537df959afd257d6c0
|
|
| BLAKE2b-256 |
6017eae9ac7374f574dd372c5dadf49d9e91e7e6af216798f21be23daeb71e75
|
File details
Details for the file biquote-0.1.0-py3-none-any.whl.
File metadata
- Download URL: biquote-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.3 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 |
bc4de89cd06cbd2d6d54e2ddcc610efb8b26bad76a036fd4d044ab55d1a54b94
|
|
| MD5 |
408b64df6757c1327f21aff08d228fd0
|
|
| BLAKE2b-256 |
aaec8167f1f62ac1aac74b84570fd859fe296c46cc657333b219099173d7b83c
|