Monitor, observe, control and evaluate your trading programs and bots with Absurdia's APIs and application in order to increase your chances of success in the market. "Are ya winning?" Absurdia will tell you the answer.
Get started Request a demoOnline preview of a backtest
Track, compare, and visualize backtests with 2 more CLI arguments or 5 lines of code. Free for academic and open source projects.
See it in action
$ absurdia import --freqtrade backtesting [...]
Read more ->
# Flexible integration for any Python script
import absurdia
# 1. Start a backtest record with configs
bt = absurdia.backtesting.init(strategy='MomentumA',
configs=dict(
timeframe: '1h',
momentum_period: 50
)
)
# 2. Run backtest and record historical position
...
bt.record('buy', 10000, 1)
# 3. Finish backtest recording
bt.finish()
Read more ->
POST /backtests/{{id}}/positions HTTP/1.1
Host: api.absurdia.markets
Content-Type: application/json; charset=utf-8
Content-Length: 137
[{
"pair": "BTC/USDT",
"entry_price": 10000,
"exit_price": 11000
}]
Read more ->Add Absurdia's lightweight integration to your existing trading code and quickly get live metrics and system stats streamed to your dashboard.
Watch a demoExplain how your model works, show graphs of how model versions improved, discuss bugs, and demonstrate progress towards milestones.
View reports