Starting algo-trading requires reliable and clean data. However, the time-consuming and mundane tasks of data cleaning and storage often discourage traders from embarking on their algo-trading journey.
By leveraging modern data engineering tools, pfeed
handles the tedious data work and outputs backtesting-ready data, allowing traders to focus on strategy development.
PFeed (/piː fiːd/) is a data pipeline for algorithmic trading, serving as a bridge between raw data sources and traders. It enables you to download historical data, stream real-time data, and store cleaned data in a local data lake for quantitative analysis, by automating the processes of data collection, cleaning, transformation, and storage.
- Download or stream reliable, validated and clean data for research, backtesting, or live trading
- Get historical data (dataframe) or live data in standardized formats by just calling a single function
- Own your data by storing them locally using MinIO, with the option to connect to the cloud
- Interact with different kinds of data (including TradFi, CeFi and DeFi) using a unified interface
Table of Contents
For more installation options, please refer to the documentation.
# [RECOMMENDED]: Full Features, choose this if you do not care about the package size
pip install -U "pfeed[all]"
# Minimal Features, only supports getting, downloading and streaming data
pip install -U "pfeed[core]"
Get Bybit's data in dataframe, e.g. 1-minute data (data is downloaded on the fly if not stored locally)
import pfeed as pe
feed = pe.BybitFeed(data_tool='polars')
df = feed.get_historical_data(
'BTC_USDT_PERP',
resolution='1minute', # 'raw' or '1tick'/'1t' or '2second'/'2s' etc.
start_date='2024-03-01',
end_date='2024-03-01',
)
Printing the first few rows of df
:
ts | product | resolution | open | high | low | close | volume | |
---|---|---|---|---|---|---|---|---|
0 | 2024-03-01 00:00:00 | BTC_USDT_PERP | 1m | 61184.1 | 61244.5 | 61175.8 | 61244.5 | 159.142 |
1 | 2024-03-01 00:01:00 | BTC_USDT_PERP | 1m | 61245.3 | 61276.5 | 61200.7 | 61232.2 | 227.242 |
2 | 2024-03-01 00:02:00 | BTC_USDT_PERP | 1m | 61232.2 | 61249 | 61180 | 61184.2 | 91.446 |
By using pfeed, you are just a few lines of code away from getting a standardized dataframe, how convenient!
For more CLI commands, please refer to the documentation.
# download data, default data type (dtype) is 'raw' data
pfeed download -d BYBIT -p BTC_USDT_PERP --start-date 2024-03-01 --end-date 2024-03-08
# download multiple products BTC_USDT_PERP and ETH_USDT_PERP as minute data and store them locally
pfeed download -d BYBIT -p BTC_USDT_PERP -p ETH_USDT_PERP --dtypes minute --use-minio
import pfeed as pe
# compared to the CLI approach, this approach is more convenient for downloading multiple products
pe.download(
data_source='bybit',
pdts=[
'BTC_USDT_PERP',
'ETH_USDT_PERP',
'BCH_USDT_PERP',
],
dtypes=['raw'], # data types, e.g. 'raw', 'tick', 'second', 'minute' etc.
start_date='2024-03-01',
end_date='2024-03-08',
use_minio=False,
)
Data Source | Get Historical Data | Download Historical Data | Get Live Data | Stream Live Data |
---|---|---|---|---|
Yahoo Finance | 🟢 | ⚪ | ⚪ | ⚪ |
Bybit | 🟢 | 🟢 | 🟡 | 🔴 |
*Interactive Brokers | 🔴 | ⚪ | 🔴 | 🔴 |
*FirstRate Data | 🔴 | 🔴 | ⚪ | ⚪ |
*Databento | 🔴 | 🔴 | 🔴 | 🔴 |
*Polygon | 🔴 | 🔴 | 🔴 | 🔴 |
Binance | 🔴 | 🔴 | 🔴 | 🔴 |
OKX | 🔴 | 🔴 | 🔴 | 🔴 |
🟢 = finished
🟡 = in progress
🔴 = todo
⚪ = not applicable
* = paid data
- PFund — A Complete Algo-Trading Framework for Machine Learning, TradFi, CeFi and DeFi ready. Supports Vectorized and Event-Driven Backtesting, Paper and Live Trading
- PyTrade.org - A curated list of Python libraries and resources for algorithmic trading.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This framework is intended for educational and research purposes only. It should not be used for real trading without understanding the risks involved. Trading in financial markets involves significant risk, and there is always the potential for loss. Your trading results may vary. No representation is being made that any account will or is likely to achieve profits or losses similar to those discussed on this platform.
The developers of this framework are not responsible for any financial losses incurred from using this software. This includes but not limited to losses resulting from inaccuracies in any financial data output by PFeed. Users should conduct their due diligence, verify the accuracy of any data produced by PFeed, and consult with a professional financial advisor before engaging in real trading activities.