Recent AI Backtests
Use the API
POST /api/backtest
Free. No auth required. Works with Claude, ChatGPT, or any HTTP client.
// Example request
fetch('https://fxabsolute.com/api/backtest', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
pair: "EURUSD",
timeframe: "H1",
strategy: "breakout",
params: {
lookback: 20,
sl_pips: 20,
tp_pips: 40
}
})
})
// Available strategies: breakout, mean_reversion
// Available pairs: EURUSD, GBPUSD, XAUUSD, USDJPY, USDCAD,
// AUDUSD, EURJPY, GBPJPY, EURGBP, AUDCAD
// Timeframes: 15M, 30M, H1, H4, D1
// Response
{
"id": "uuid-...",
"url": "https://fxabsolute.com/strategy/uuid-...",
"stats": {
"total_trades": 847,
"win_rate": 62.3,
"profit_factor": 1.84,
"total_pips": 2840,
"max_drawdown_pips": 120
},
"message": "Backtest complete — full results at https://fxabsolute.com/strategy/..."
}