Turn markets and protocols into event streams you can compose into automated strategies.
Website · Documentation · Contributing
quantform is a runtime for building automated financial systems.
It connects markets, exchanges, and protocols, and lets you define how your system reacts to changes in real time.
Define your logic once and run it across markets, protocols, and environments.
Use it to build trading strategies, automate DeFi, or run cross-market execution — all in one place.
-
works everywhere
connect centralized exchanges, DeFi protocols, and wallets in one system -
real-time by default
react instantly to market and protocol changes -
one system, all environments
run the same logic in backtesting and live execution -
built for automation
go beyond trading — automate entire financial workflows
export function useStrategy() {
return combineLatest(
watchPrice("BTCUSDT"),
watchPrice("ETHUSDT")
).pipe(
map(([btc, eth]) => btc.price / eth.price),
filter(ratio => ratio > 15),
switchMap(() => placeOrder("BTCUSDT", "BUY", 0.1))
);
}Please read the full text so that you can understand what actions will and will not be tolerated.
Trading Cryptocurrencies, Futures, Forex, CFDs and Stocks involves a risk of loss. Please consider carefully if such trading is appropriate for you. Past performance is not indicative of future results. Articles and content on this website are for entertainment purposes only and do not constitute investment recommendations or advice.
This project is MIT licensed.