High Frequency Trading Simulator
Traditional backtesting engines oversimplify. HFTS simulates every market event with real network delays and exchange processing time — so you know if your strategy actually works before you risk your money.
Why it matters
Traditional OHLC-based backtests assume your order fills instantly at the candle close. In high-frequency markets, that assumption costs money.
From the author
HFTS replays raw quote events at their original exchange timestamps — down to the microsecond. When your strategy signal fires at T+0 µs, the engine schedules the order arrival at T + RTT and matches it only against the order book state that existed at that exact moment. A 10 ms difference in round-trip latency can mean the difference between a fill and a miss.
Set your expected round-trip time — from a co-located 0.3 ms to a retail 80 ms connection — and HFTS injects that delay deterministically into every order. Because the order enters the event stream at the correct delayed timestamp, slippage is not random noise: it is the structural cost of being late to a fast-moving queue. You see exactly how many basis points your strategy bleeds to execution lag per trade.
OHLC candles compress thousands of individual quote updates into four numbers. HFTS feeds your strategy a raw Level-2 event stream — every bid/ask and size update in original arrival order — so passive limit orders are matched against the actual queue state at the moment of arrival. A limit posted 12 ms after a large momentum tick faces a different fill probability than one posted in a quiet period; HFTS captures that difference.
Strategies that look profitable on daily bars often rely implicitly on instant fills and zero latency. HFTS forces every fill through the latency pipeline, so overfitted logic fails in the backtest — where it is safe — rather than in production. The gap between your candle-based result and your HFTS result is precisely the cost your real infrastructure will pay.
Strategy editor
No proprietary DSL. No framework lock-in. Your strategy is a Python function that receives every market event as a structured object and returns orders. HFTS handles the rest.
Reporting
See every fill, every cancellation, and every latency measurement. The report view shows your accumulated P&L curve alongside a trade log that includes actual execution delay per order.
Data
You do not need to source or clean data. HFTS ships with high-quality Level-2 quote data for major crypto instruments, updated regularly, ready to replay against your strategy.
Pricing
All plans include the full strategy editor and event-driven engine. Paid plans unlock longer date ranges, more strategies, and extended execution limits.
Free
forever · no card required
Pro
per month · billed monthly
Quant
per month · billed monthly
What traders say
Feedback from early users testing strategies on real tick data.
"Every other backtester I used showed my scalping strategy breaking even at worst. HFTS showed me it was actually losing 40 bps per trade to execution lag alone. That was exactly the insight I needed."
"The Python interface is clean and the event format is well-documented. I had my existing signal logic running in under 10 minutes. The latency injection is the feature that sets this apart from everything else."
"I love that the free tier gives you real tick data for one day — enough to validate your idea quickly without paying anything. Upgraded to Pro when I needed longer history."
Contact
Have a question, feedback, or would like to suggest a new feature? Do not hesitate to contact us directly.