August 30, 2026
HIP-3 is the Hyperliquid Improvement Proposal that lets third-party “deployers” launch their own perpetual futures markets on top of Hyperliquid’s infrastructure — for almost any underlying asset. This is how…
August 28, 2026
Hyperliquid exposes two public APIs: an info endpoint for read-only market data and an exchange endpoint for signed trading actions. Most tools — bots, dashboards, backtesters — only ever need…
August 27, 2026
A strategy that looks profitable in backtesting and fails immediately in production is one of the most demoralizing experiences in algo trading. The most common cause is not a flawed…
August 26, 2026
Every trade has two sides: passive (limit order, waited in the book) and aggressive (market order, matched immediately). Knowing which side was aggressive is the foundation of order flow analysis…
August 25, 2026
Building your own crypto data pipeline helps you evaluate dataset quality, debug problems, and extend to new assets. This article covers the core stages from raw compressed files to a…
August 24, 2026
Solana emerged as one of the most actively traded crypto assets from 2021 onward. For algo traders building strategies on SOL, understanding the historical data quality is particularly important —…
August 23, 2026
vectorbt is built on NumPy and Numba — it can run thousands of parameter combinations in the time other frameworks take for one. But its speed advantage only matters if…
August 22, 2026
Order flow trading is based on a simple premise: the imbalance between aggressive buying and selling predicts short-term price direction. It requires tick data — OHLCV candles do not contain…
August 21, 2026
Most algo traders think in candles. Market microstructure researchers think in individual trades, quotes, and order events. The gap between these two perspectives is where most profitable strategies live. The…
August 20, 2026
Fetching Historical Trades with CCXT: Limits and Alternatives Published 2026-08-20 · ccxtpythonhistorical-data CCXT is the standard Python library for connecting to crypto exchange APIs. When it comes to historical tick data,…