Documentation Index
Fetch the complete documentation index at: https://uncoded.ch/docs/llms.txt
Use this file to discover all available pages before exploring further.
PAXGUSDT * BasicMode
PAXGUSDT | 4BasicMode.json | 2024-04-24 - 2026-02-25 | +12.68% | 29,904 closed trades | 100.0% closed WR | 448 open orders
Headline Performance
GET /backtests/{id} + /equity + /trades * Fields used: return_pct, final_value, total_profit, win_rate, fulfilled_trades, active_orders, unrealized_pnl_exit_net, max_profit, min_profitfinal_value - start_balance.Return
Final Value
Portfolio PnL
Realized Profit
Unrealized PnL
Win Rate (closed)
Closed Trades
Open Orders
Best Closed Trade
Worst Closed Trade
TL;DR
Performance KPI Metrics
GET /backtests/{id} + /equity + /trades * Fields used: server aggregates from /daily-stats and /extras (Total Fees, Gross Profit/Loss, fill-type counts) plus <AnalyticsCharts> KPI strip * Transform: bt.* + dailyStats.totals + extras.deep_dive.fill_type_breakdownMax Drawdown
Profit Factor
Sharpe Ratio
Total Fees
Avg Hold Time
TP / SL / TSL
Trade Economics
| Metric | Value | Interpretation |
|---|---|---|
| Profit Factor | inf (no losing trades) | Sum of winning trades / sum of losing trades. >1 = profitable edge, >2 = strong, inf = no losses. |
| Gross Profit | 1,478.42 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 392.67 USDT | Buy + sell fees across all trades. |
| Fee Drag | 26.6% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 99.0 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 29,904 | 100.0% | Position closed by hitting the profit target - the desired outcome. |
| SL (Stop Loss) | 0 | 0.0% | Position closed by hitting the stop - capital preservation in action. |
| TSL (Trailing Stop) | 0 | 0.0% | Trailing stop locked in profit during a trend. |
Verdict
For PAXGUSDT, the strategy’s profit factor of inf (no losing trades) indicates gross winners materially exceeded gross losers in this window, exits are TP-dominant (100.0%), so most profit comes from hitting take-profit targets, fees consumed 26.6% of gross profit (notable but acceptable).Chunking & Headings Guide
Chunk markers
Every section is delimited by paired JSX comments - invisible to readers, trivial for splitters. (Earlier versions of this exporter used HTML comments; we switched to JSX comments in v2.4.0 because MDX 3 - the parser Mintlify uses - forbids HTML comments at the document level.) The example below uses uppercaseRAG-CHUNK so it doesn’t accidentally match a splitter that scans this very page; real markers use lowercase rag-chunk:
{/* RAG-CHUNK:start id="tldr" type="summary" title="TL;DR" tokens~="120" backtest_id="059eb1f8-8f62-4501-aa0e-845a0d2a5fb0" */}
...section markdown...
{/* RAG-CHUNK:end id="tldr" */}
\{/\*\s*rag-chunk:(start|end)\b[^*]*\*/\} and treat everything between a matching start/end pair (same id) as one indivisible chunk. Never split inside a chunk. (For backwards compatibility with v2.3.x exports, splitters can OR-match the legacy regex <!--rag-chunk:(start|end)\b[^>]*-->.)
Heading convention
# Title- appears exactly once (the document title in the intro chunk).## Section- opens every top-level chunk. Heading text matches the chunk’stitleattribute.### Sub-section- purely visual; never introduces a new chunk.####and deeper - reserved for inline detail (e.g. per-chart sub-blocks inside the catalogue).
Chunk type taxonomy
| Type | Purpose | Best for retrieval of… |
|---|---|---|
meta | Frontmatter & document intro | document-identity questions |
summary | TL;DR-style condensed prose | ”give me the headline” |
kpis | Headline numbers, card grids | numeric lookups |
overview | Tabular meta (period, balance, …) | “what was tested” |
comparison | Strategy vs benchmark | ”did it beat buy & hold” |
claims | Assertion -> evidence -> source | citation-grade answers |
config | Reproduction parameters | ”how do I rerun this” |
chart | Single visualization w/ embedded data | chart-specific questions |
catalogue | Multi-chart bundle | exploratory chart questions |
risk / allocation / trade-stats / monthly / top-trades | Domain-specific analytics | targeted KPI questions |
validation | Data-quality report | trust / sanity questions |
facts | Machine-readable JSON + key-value | deterministic lookups |
qa | Pre-answered FAQ | direct Q&A retrieval |
glossary | Term definitions | disambiguation |
narrative | Human-oriented prose | ”explain like I’m…” |
structured | JSON-LD / schema.org | search-engine indexing |
provenance | Metric -> API field -> formula lookup | ”where does this number come from” |
integrity | SHA-256 fingerprints of raw API payloads | tamper-evidence checks |
attachments | Verbatim API responses + trade-sample CSV (full ledger via /trades pagination) | byte-level reproduction |
footer | Disclaimers, links | compliance lookups |
Recommended ingestion pipeline
- Split on
{/* rag-chunk:start ... */}/{/* rag-chunk:end ... */}boundaries. - Use the
idattribute as the vector-store primary key - stable across re-exports. - Store
type,title,tokens~, andbacktest_idas filterable metadata. - Do not further chunk the
facts,claims,qa, orstructuredsections - they’re designed to be retrieved whole. - The
cataloguechunk is large; if your context budget is tight, split it on its###sub-headings instead of dropping it.
Performance Analysis
GET /backtests/{id} + /equity + /trades * Fields used: same prose rendered on the live page by <BacktestInterpretation> - pure, deterministic, no LLM * Transform: buildBacktestInterpretation(bt)Methodology & data
This backtest was executed on historical Binance Spot 1-minute candles for PAXGUSDT, with intrabar fill simulation in “OLHC” mode and a synthetic order latency of 2s applied to each fill to approximate real-world routing delay. The simulator processes every minute sequentially, evaluates the BasicMode rule set, and books fills against the next available bar - a standard event-driven backtesting approach that avoids look-ahead bias. Equity is marked-to-market on every closed trade and aggregated into the equity curve shown above. Configured backtest window: approximately 22.1 months (673 days fromconfig.from to config.to) of PAXGUSDT 1-minute price action - a sample size that is large enough to span multiple short-term regimes. Note: the equity series may cover fewer days if the engine omits leading or trailing flat periods (e.g. dates before the asset began trading); see the Overview section for the exact equity-coverage span.
Live trading considerations
Translating this result to live trading: PAXGUSDT is a deeply-liquid USDT-quoted pair on Binance, so the simulated fills here translate well to live execution at retail size. The high trade frequency means cumulative slippage and exchange-side latency will erode a few percent of the headline return over a full year - budget for that gap. Without a hard stop-loss, the live system depends on the take-profit ladder firing during recovery legs; a prolonged downtrend without recovery will hold positions open longer than backtest aggregates suggest. Additionally, exchange downtime, API rate limits, and funding-rate changes (on perp variants) are not modelled here and should be accounted for in production deployment.Frequently asked questions
Is a 12.68% return on PAXGUSDT a good backtest result?
Is a 12.68% return on PAXGUSDT a good backtest result?
What does the 100.0% win rate mean here?
What does the 100.0% win rate mean here?
What is the annualised return for this PAXGUSDT backtest?
What is the annualised return for this PAXGUSDT backtest?
Can I run this exact BasicMode configuration live?
Can I run this exact BasicMode configuration live?
How is this backtest different from others on PAXGUSDT?
How is this backtest different from others on PAXGUSDT?
Overview
GET /backtests/{id} * Fields used: symbol, mode_name, config.from, config.to, start_balance, final_value, avg_profit, status, created_at, started_at, completed_at, elapsed_sec, is_duplicate, data_file, id, summary_text| Field | Value |
|---|---|
| Trading Pair | PAXGUSDT |
| Strategy | BasicMode |
| Period | 2024-04-24 -> 2026-02-25 |
| Configured window (inclusive elapsed) | 673.0 days (1.84 years) - (config.to - config.from) / 86 400 000 ms |
| Configured window (calendar days) | 673 days - Math.round of the elapsed value above; this is what the narrative paragraph quotes |
| Equity-stat duration | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 11,268.18 USDT |
| Avg Profit / Trade | +0.0363 USDT |
| Trades / Month | 1352.4 |
| Status | completed |
| Created | 2026-05-08 09:59:35 UTC |
| Started | 2026-05-08 13:14:18 UTC |
| Completed | 2026-05-08 13:38:05 UTC |
| Compute Time | 9m 12s |
| Backtest ID | 059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 |
| Engine summary: |
Backtest PAXGUSDT (Mode: 4BasicMode.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 11,268.18 USDT
P&L: +1,268.18 USDT (+12.68%)
Result: PROFIT
Completed trades: 29904
Open orders at end: 448
Win rate: 100.0%
Avg. profit/trade: 0.036308 USDT
Best trade: 0.266501 USDT
Worst trade: 0.012230 USDT
Total profit (trades only): 1,085.748697 USDT
Max drawdown: -4.85%
Profit factor: inf (no losing trades)
Sharpe ratio: 1.23
Total fees: 392.67 USDT
Avg hold time: 99.0h
TP / SL / TSL: 29904 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 7
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0]
Investment per buy: 50.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 552.3s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned +12.68% over the tested window | return_pct = 12.6818 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 11,268.18 USDT | final_value - start_balance = +1,268.18 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 29904 of 29904 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 4.85% | max_drawdown_pct = 4.8477 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = 1.23 | sharpe_annualized = 1.2271 | derived from daily-resampled equity returns |
Strategy Configuration
GET /backtests/{id} * Fields used: mode_name, config (full JSON payload)- Highlights
- Full JSON
| Parameter | Value |
|---|---|
canBuy | true |
canSell | true |
canBuyUp | true |
startBal | 10000 |
stepSize | 0.0001 |
stopLoss | false |
tickSize | 0.01 |
buySplits | 7 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "PAXGUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.0001,
"stopLoss": false,
"tickSize": 0.01,
"buySplits": 7,
"buyVolumes": [
25,
15,
15,
15,
10,
10,
10
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5
],
"triggerCoolDown": 1,
"investmentPerBuy": 50,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 20,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 7 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [25,15,15,15,10,10,10] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 50 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 20 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.0001 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.01 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,0,0,0,0,0] | Per-tier trailing-SL distances. Zero entries disable TSL on that tier. |
triggerCoolDown | 1 | Minimum bars/ticks between two consecutive buys on the same level. |
to: "2026-02-25 23:59:59"
from: "2024-04-24 00:00:01"
canBuy: true
symbol: PAXGUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.0001
stopLoss: false
tickSize: 0.01
buySplits: 7
buyVolumes:
- 25
- 15
- 15
- 15
- 10
- 10
- 10
canBuyDown: false
minNotional: 5
buyPercentage: 0.1
fees_in_quote: true
intrabar_mode: OLHC
maker_fee_bps: 7.5
taker_fee_bps: 7.5
sellPercentages:
- 0.25
- 0.35
- 0.5
- 0.75
- 1
- 2.5
- 5
triggerCoolDown: 1
investmentPerBuy: 50
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 20
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 0
- 0
- 0
- 0
- 0
sellCancelDistancePercentage: 1
dontBuyBelowQuoteAssetBalance: 1
investmentPerFreeQuotePercent: 0.01
sellActivateDistancePercentage: 0.1
Strategy Logic
strategyLogic object to buildVerifiableMdx (or wire up getModes() so the exporter can derive a sketch) to remove this notice.GET /modes and select the entry whose filename == "4BasicMode.json" to inspect the public rule fields, or consult the engine source for the executable logic.
Engine Specification
engine_version field in this document’s frontmatter (see also the Data Source Metadata section).Engine Specification
uncoded.ch/docs/engine; this report only pins which revision applied (engine_version in the frontmatter).
Data Source Metadata
buildVerifiableMdx({ dataSource: ... }) to fill it in. The engine spec describes deterministic execution semantics (segment order, fill rules, fee classification) that cannot be reverse-engineered from trades alone.| Field | Value | Source |
|---|---|---|
| Market-data provider | Binance Spot | caller DataSourceInput.provider |
| Exchange / venue | binance | caller DataSourceInput.exchange |
| Symbol | PAXGUSDT | GET /backtests/{id} -> $.symbol |
| Candle interval | 1m | platform invariant - all backtests run on 1-minute OHLCV candles |
| First candle (UTC) | 2024-04-24 00:00:01 | GET /backtests/{id} -> $.config.from |
| Last candle (UTC) | 2026-02-25 23:59:59 | GET /backtests/{id} -> $.config.to |
| Timezone | UTC | default assumption (UTC) |
| Engine version | uncoded-engine (FastAPI backend) | caller DataSourceInput.engineVersion |
| Engine spec version | 1.1 | caller DataSourceInput.engineSpecVersion |
| Engine spec document | https://uncoded.ch/docs/engine | caller DataSourceInput.engineSpecPath |
Equity Curve
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value 11,178 | #
| ###:
| ####::::
| ## ##::::::::
| ###::#::::::::::
| # #########::::::::::::::::
| ######:##:::::::::::::::::::::::::
| ####::::::::::::::::::::::::::::::::::
| #############::::::::::::::::::::::::::::::::::::::
9,996 |#########:::::::::::::::::::::::::::::::::::::::::::::::::::
+------------------------------------------------------------
start end
Risk & Quality Metrics
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value, base_asset_bal (for time-in-market)Max Drawdown
CAGR
Volatility (ann.)
Sharpe Ratio
Sortino Ratio
Time in Market
Drawdown Detail
| Field | Value |
|---|---|
| Peak | 11,296.46 USDT @ 2026-01-28 23:59:00 UTC |
| Trough | 10,748.84 USDT @ 2026-02-05 23:59:00 UTC |
| Drawdown Duration | 8.0 days |
| Recovery | 2026-02-23 23:59:00 UTC (18.0 days to recover) |
| All-time Peak | 11,316.50 USDT |
Final Portfolio Allocation
GET /backtests/{id}/equity * Fields used: total_value_exit_net, quote_asset_bal, base_asset_bal, base_value_exit_net, base_value_mid, unrealized_pnl_exit_net| Asset | Quantity | Value (USDT) | Allocation |
|---|---|---|---|
| USDT (Cash) | 7,768.67 | 7,768.67 | 68.9% |
| PAXG | 0.67670000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 3,499.51 | 31.1% |
| Total | - | 11,268.18 | 100.0% |
Trade Analytics
GET /backtests/{id}/trades * Fields used: profit, profit_percentage, fill_type, buy_time, sell_time, buy_price, sell_price, buy_quantity, buy_fee_in_quote, sell_fee_in_quoteWins
Losses
Breakeven
Profit Factor
Payoff Ratio
Expectancy / Trade
Avg Win
Avg Loss
Median Trade
Max Win Streak
Max Loss Streak
Avg Holding
Median Holding
Total Volume
Total Fees
Gross Performance
| Metric | Value | Source |
|---|---|---|
| Gross Profit (winners only) | +9.28 USDT | Sum profit where profit > 0 (client-side from /trades) |
| Gross Loss (losers only) | -0.00 USDT | Sum -profit where profit < 0 (client-side from /trades) |
| Net Profit | +9.28 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.66 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.66 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 1.32 USDT | buy + sell on matched pairs |
| Open-position buy fees | 391.34 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 448 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 392.67 USDT | bt.total_fees - engine-tracked sum of every fee actually paid (closed + open buy fills). reconciles to closed-fees + open-position buy fees |
| Fees as % of Gross Profit | 4233.09% | Total Fees / Gross Profit |
bt.total_fees is the engine-tracked total of every fee actually paid. Per-trade rows in /trades only emit on matched buy+sell pairs, so positions still open at end-of-window contribute their buy-fee to bt.total_fees but not to the per-trade sum. The identity is exact:
bt.total_fees = Sum closed-trade (buy_fee + sell_fee) + Sum open-position buy_fees
Citation rules: use Total Fees Paid for the headline (the authoritative number every consumer should quote), use Closed-trade fees subtotal when reasoning specifically about realized round-trip economics, and use Open-position buy fees when sizing the unrealized exposure of the still-open ladder.Advanced - mechanical breakdown from API field mapping
Advanced - mechanical breakdown from API field mapping
| Line item | Formula | API field(s) | Endpoint |
|---|---|---|---|
| Closed-trade buy fees | Sum row.buy_fee_in_quote | buy_fee_in_quote per row | GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.660781 + 0.663936
= 1.324717 USDT
(B) bt.total_fees = 392.668625 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 392.668625 - 1.324717
= 391.343908 USDT
Identity check: (A) + (C) ?= (B)
1.324717 + 391.343908 = 392.668625 USDT
vs bt.total_fees = 392.668625 USDT -> matches within 0.01
/trades rows emit only on matched buy+sell pairs. A buy fill that hasn’t found its sell yet (still sitting in the DCA ladder at end-of-window) has already paid its fee - that fee is included in bt.total_fees (B) but not in any per-trade row, so it is not part of (A). The remainder (C) is therefore the buy-side fee paid on the 448 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 7.2h | 150.5h | 1996.6h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:49:00 UTC | 2026-02-25 23:09:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +9.28 USDT | +1.64% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 21 | 21 | 100.0% | +0.89 |
| 2024-05 | 2 | 2 | 100.0% | +0.49 |
| 2024-07 | 2 | 2 | 100.0% | +0.49 |
| 2024-09 | 4 | 4 | 100.0% | +0.05 |
| 2024-11 | 21 | 21 | 100.0% | +0.26 |
| 2026-01 | 12 | 12 | 100.0% | +3.18 |
| 2026-02 | 38 | 38 | 100.0% | +3.92 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2026-01-23 -> 2026-01-28 | 4,999.130000 | 5,249.090000 | +0.2665 | +4.85% |
| 2 | TP | 2026-02-03 -> 2026-02-23 | 4,996.020000 | 5,245.830000 | +0.2663 | +4.85% |
| 3 | TP | 2026-01-30 -> 2026-02-23 | 4,990.270000 | 5,239.790000 | +0.2660 | +4.85% |
| 4 | TP | 2026-01-23 -> 2026-01-28 | 4,989.850000 | 5,239.350000 | +0.2660 | +4.85% |
| 5 | TP | 2026-02-03 -> 2026-02-23 | 4,982.890000 | 5,232.040000 | +0.2656 | +4.85% |
| 6 | TP | 2026-01-23 -> 2026-01-27 | 4,981.770000 | 5,230.860000 | +0.2656 | +4.85% |
| 7 | TP | 2026-01-30 -> 2026-02-23 | 4,977.770000 | 5,226.660000 | +0.2654 | +4.85% |
| 8 | TP | 2026-01-22 -> 2026-01-27 | 4,975.930000 | 5,224.730000 | +0.2653 | +4.85% |
| 9 | TP | 2026-01-30 -> 2026-02-23 | 4,971.350000 | 5,219.920000 | +0.2650 | +4.85% |
| 10 | TP | 2026-01-22 -> 2026-01-27 | 4,969.960000 | 5,218.460000 | +0.2649 | +4.85% |
Top 10 Losers
Top 10 Losers
Charts Catalogue
GET /backtests/{id} + /equity + /trades * Fields used: every chart from the live <AnalyticsCharts> UI, with the exact transform + API fields it consumesX-API-Key.- Equity & Balance
- Trade Analysis
- Risk & Recovery
- Deep Dive
- Advanced
Drawdown
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: computeDrawdown(equity)drawdown).| Stat | Value |
|---|---|
| Shallowest DD | 0.00% @ 2024-04-24 23:59:00 UTC |
| Deepest DD | -4.85% @ 2026-02-05 23:59:00 UTC |
| Mean | -0.28% |
| Std Dev | 0.54% |
| Last | -0.43% |
| Points | 673 |
| Across 673 points the series ranged from -4.85% (2026-02-05 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -0.28%. 0% of points were positive, 74% negative. The most recent value is -0.43%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-05T23:59:00+00:00","drawdown":-0.22825744971134948},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.12907972533641002},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.2701724076573061},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-0.0256056183103022},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-0.16324248580694084},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":0},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-0.12985486558239945},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-0.1750230119585754},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":0},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":0},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-0.03366237504908838},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":0},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-0.06484070192021137},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-0.03041346251370485},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-0.040941868202490926},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-0.08933401508150714},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-1.1147339199869226},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-0.521057179973849},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.5462046653884867},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-0.4712043791678267},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-0.27596067351777864},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":0},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":0},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":0},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-0.08761267761621877},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-0.15265393324609064},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-0.03707947382128037},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-0.015398981721436193},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-0.04655658044116913},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-0.07284254299868416},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-0.551413674398448},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-0.3332211112240328},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-1.092883498246889},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-0.5482153975285371},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-0.2713727013091923},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-0.24284436964806988},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-0.2557245058266317},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-0.21478620038031704},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-0.1699613572428167},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-0.10296046075136667},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-0.3107088370394273},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-0.0339866547374053},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-0.046727800549520124},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-0.013796295100945434},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":0},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-0.11437908655661622},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-0.8701207795868424},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-1.6395288164665078},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-0.7848880060669413},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-0.1011472961803684},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-0.11441981955601581},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-0.01107499065754977},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-0.6828997673045455},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":0},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":0},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-4.1139747503107005},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-1.4794102467112098},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-0.42696031028165776}]
Unrealized PnL
GET /backtests/{id}/equity * Fields used: timestamp, unrealized_pnl_exit_net * Transform: equity.map(p => ({ pnl: p.unrealized_pnl_exit_net }))pnl).| Stat | Value |
|---|---|
| Best Unrealized | 455.91 USDT @ 2026-01-28 23:59:00 UTC |
| Worst Unrealized | -209.62 USDT @ 2026-02-05 23:59:00 UTC |
| Mean | 71.67 USDT |
| Std Dev | 82.58 USDT |
| Last | 246.08 USDT |
| Points | 673 |
| Sum | 48,233.24 USDT |
| Across 673 points the series ranged from -209.62 USDT (2026-02-05 23:59:00 UTC) to 455.91 USDT (2026-01-28 23:59:00 UTC), averaging 71.67 USDT. 81% of points were positive, 19% negative. The most recent value is 246.08 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-2.4360269308},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-27.5761218767},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":3.7922302365},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":-15.4864069368},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-33.522074019},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-15.4681593},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-30.4753472255},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-0.7537257833},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-14.4202949615},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-27.4571602528},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":6.0593478007},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":4.7116476165},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":0.2743777525},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":21.7385387857},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":19.9506162413},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":21.2815127517},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":24.103325226},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":23.0008677573},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-59.5183951002},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":15.2461599393},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":8.9595969823},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":7.527322801},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":22.8370232568},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":60.3814904323},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":76.9587965157},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":64.0489058962},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":82.5692086582},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":76.7828910365},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":78.1884038747},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":91.8157528817},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":96.444601353},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":105.6065396095},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":72.0334997427},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":80.9414605035},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-11.9913872685},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":30.0114539372},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":72.9122028535},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":103.2318256352},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":91.1307906413},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":92.815673775},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":101.943809644},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":105.7663875535},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":81.7045979888},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":107.499070696},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":141.3450120918},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":151.3769282535},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":176.1142499},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":171.0249550235},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":113.2063060827},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":16.0582977758},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":84.860403587},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":145.1457853308},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":166.9508985378},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":219.377461603},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":182.4913278085},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":247.7413687938},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":336.102615262},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-85.3214010329},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":132.3808657668},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":246.0840262318}]
Balance Composition (Cash vs. Coin)
GET /backtests/{id}/equity * Fields used: quote_asset_bal, base_value_exit_net, total_value_exit_net * Transform: stack(quote, base, total)total).| Stat | Value |
|---|---|
| Peak Total Equity | 11,316.50 USDT @ 2026-02-23 23:59:00 UTC |
| Trough Total Equity | 9,982.69 USDT @ 2024-05-05 23:59:00 UTC |
| Mean | 10,427.69 USDT |
| Std Dev | 325.16 USDT |
| Last | 11,268.18 USDT |
| Points | 673 |
| Sum | 7,017,835.81 USDT |
| Across 673 points the series ranged from 9,982.69 USDT (2024-05-05 23:59:00 UTC) to 11,316.50 USDT (2026-02-23 23:59:00 UTC), averaging 10,427.69 USDT. 100% of points were positive, 0% negative. The most recent value is 11,268.18 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9622.3213746295,"base":375.5733086,"total":9997.8946832295},{"timestamp":"2024-05-05T23:59:00+00:00","quote":8663.2989611687,"base":1319.3901146999997,"total":9982.6890758687},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9583.1515029867,"base":443.7289535,"total":10026.8804564867},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9047.7037217692,"base":971.7006775000009,"total":10019.4043992692},{"timestamp":"2024-06-09T23:59:00+00:00","quote":8580.277412921,"base":1424.9720688000016,"total":10005.249481721},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9003.0079491235,"base":1026.7773390000002,"total":10029.7852881235},{"timestamp":"2024-07-01T23:59:00+00:00","quote":8671.3952634067,"base":1344.5818067499986,"total":10015.9770701567},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9234.8552329105,"base":819.6328139999987,"total":10054.4880469105},{"timestamp":"2024-07-24T23:59:00+00:00","quote":9133.077637212,"base":922.8033780000005,"total":10055.881015212},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8551.7693532008,"base":1520.1630220000006,"total":10071.9323752008},{"timestamp":"2024-08-16T23:59:00+00:00","quote":9615.1567702653,"base":504.7959189000012,"total":10119.9526891653},{"timestamp":"2024-08-27T23:59:00+00:00","quote":9593.8802907356,"base":533.8033469999991,"total":10127.6836377356},{"timestamp":"2024-09-08T23:59:00+00:00","quote":9444.3601476225,"base":683.6648665000012,"total":10128.0250141225},{"timestamp":"2024-09-19T23:59:00+00:00","quote":9501.702005737,"base":646.7555692500009,"total":10148.457574987},{"timestamp":"2024-09-30T23:59:00+00:00","quote":9316.1849884683,"base":839.7265324,"total":10155.9115208683},{"timestamp":"2024-10-12T23:59:00+00:00","quote":9382.7986486585,"base":787.5365043000002,"total":10170.3351529585},{"timestamp":"2024-10-23T23:59:00+00:00","quote":9436.3177440848,"base":750.4707245000009,"total":10186.7884685848},{"timestamp":"2024-11-04T23:59:00+00:00","quote":9374.4729785893,"base":814.6081852999996,"total":10189.0811638893},{"timestamp":"2024-11-15T23:59:00+00:00","quote":7325.628629987,"base":2758.880286750001,"total":10084.508916737},{"timestamp":"2024-11-26T23:59:00+00:00","quote":8069.153383377,"base":2099.322226575,"total":10168.475609952},{"timestamp":"2024-12-08T23:59:00+00:00","quote":7972.5992142805,"base":2193.3058859250004,"total":10165.9051002055},{"timestamp":"2024-12-19T23:59:00+00:00","quote":8309.4746298572,"base":1868.9232554999999,"total":10178.3978853572},{"timestamp":"2024-12-31T23:59:00+00:00","quote":8244.5653001877,"base":1953.7993506500006,"total":10198.3646508377},{"timestamp":"2025-01-11T23:59:00+00:00","quote":8908.354151818,"base":1332.9357478499987,"total":10241.289899668},{"timestamp":"2025-01-22T23:59:00+00:00","quote":9477.2764560742,"base":793.9331032499995,"total":10271.2095593242},{"timestamp":"2025-02-03T23:59:00+00:00","quote":9020.5260438374,"base":1274.8591379999998,"total":10295.3851818374},{"timestamp":"2025-02-14T23:59:00+00:00","quote":9341.6143526323,"base":992.5880002499998,"total":10334.2023528823},{"timestamp":"2025-02-26T23:59:00+00:00","quote":9006.4074279753,"base":1333.0892326499998,"total":10339.4966606253},{"timestamp":"2025-03-09T23:59:00+00:00","quote":8951.7145483538,"base":1399.7501993999995,"total":10351.4647477538},{"timestamp":"2025-03-20T23:59:00+00:00","quote":9767.9471893873,"base":622.2438668249997,"total":10390.1910562123},{"timestamp":"2025-04-01T23:59:00+00:00","quote":9533.1545731233,"base":871.9207686000009,"total":10405.0753417233},{"timestamp":"2025-04-12T23:59:00+00:00","quote":9473.0466091616,"base":975.4340753500001,"total":10448.4806845116},{"timestamp":"2025-04-23T23:59:00+00:00","quote":8157.9559630063,"base":2289.426641249999,"total":10447.3826042563},{"timestamp":"2025-05-05T23:59:00+00:00","quote":8243.5469317171,"base":2226.7574784000008,"total":10470.3044101171},{"timestamp":"2025-05-16T23:59:00+00:00","quote":7352.6269069158,"base":3043.493266800001,"total":10396.1201737158},{"timestamp":"2025-05-28T23:59:00+00:00","quote":7891.5727107078,"base":2562.2177483595005,"total":10453.7904590673},{"timestamp":"2025-06-08T23:59:00+00:00","quote":8501.668845845,"base":2005.9510824937988,"total":10507.6199283388},{"timestamp":"2025-06-19T23:59:00+00:00","quote":9134.3447037805,"base":1429.0840025350008,"total":10563.4287063155},{"timestamp":"2025-07-01T23:59:00+00:00","quote":8882.2129356998,"base":1679.8518744682005,"total":10562.064810168},{"timestamp":"2025-07-12T23:59:00+00:00","quote":8933.1235378436,"base":1633.2762883762007,"total":10566.3998262198},{"timestamp":"2025-07-24T23:59:00+00:00","quote":9174.526888106,"base":1406.6278173150004,"total":10581.154705421},{"timestamp":"2025-08-04T23:59:00+00:00","quote":9006.6999413238,"base":1581.5563024799994,"total":10588.2562438038},{"timestamp":"2025-08-15T23:59:00+00:00","quote":8784.525953877,"base":1781.7106880194988,"total":10566.2366418965},{"timestamp":"2025-08-27T23:59:00+00:00","quote":9170.7029062835,"base":1424.8639879214988,"total":10595.566894205},{"timestamp":"2025-09-07T23:59:00+00:00","quote":9868.614471641,"base":784.3677056828001,"total":10652.9821773238},{"timestamp":"2025-09-19T23:59:00+00:00","quote":9752.0533006603,"base":923.3230519520002,"total":10675.3763526123},{"timestamp":"2025-09-30T23:59:00+00:00","quote":9703.4028006323,"base":1016.6239597499989,"total":10720.0267603823},{"timestamp":"2025-10-11T23:59:00+00:00","quote":9322.3908204488,"base":1421.336242716301,"total":10743.7270631651},{"timestamp":"2025-10-23T23:59:00+00:00","quote":7956.7867484518,"base":2798.595769781,"total":10755.3825182328},{"timestamp":"2025-11-03T23:59:00+00:00","quote":6869.9722288848,"base":3801.931142451801,"total":10671.9033713366},{"timestamp":"2025-11-14T23:59:00+00:00","quote":7783.3504261148,"base":2981.2796680205,"total":10764.6300941353},{"timestamp":"2025-11-26T23:59:00+00:00","quote":8227.5217025605,"base":2611.2928144345005,"total":10838.814516995},{"timestamp":"2025-12-07T23:59:00+00:00","quote":8736.515766249,"base":2136.2453294629995,"total":10872.761095712},{"timestamp":"2025-12-19T23:59:00+00:00","quote":9572.6704749675,"base":1366.1593554420015,"total":10938.8298304095},{"timestamp":"2025-12-30T23:59:00+00:00","quote":8691.0574989548,"base":2231.7934865589996,"total":10922.8509855138},{"timestamp":"2026-01-10T23:59:00+00:00","quote":9493.3771801442,"base":1506.0731413419999,"total":10999.4503214862},{"timestamp":"2026-01-22T23:59:00+00:00","quote":9661.5085457665,"base":1466.9970304219987,"total":11128.5055761885},{"timestamp":"2026-02-02T23:59:00+00:00","quote":5207.8463787305,"base":5623.878129596999,"total":10831.7245083275},{"timestamp":"2026-02-14T23:59:00+00:00","quote":6910.4683696115,"base":4218.8686096480005,"total":11129.3369792595},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7768.6742349535,"base":3499.5056777923,"total":11268.1799127458}]
Base Exposure (% of Portfolio)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, quote_asset_bal, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Exposure | 54.98% @ 2026-02-05 23:59:00 UTC |
| Min Exposure | 2.98% @ 2024-04-26 23:59:00 UTC |
| Mean | 14.74% |
| Std Dev | 8.69% |
| Last | 31.06% |
| Points | 673 |
| Across 673 points the series ranged from 2.98% (2024-04-26 23:59:00 UTC) to 54.98% (2026-02-05 23:59:00 UTC), averaging 14.74%. 100% of points were positive, 0% negative. The most recent value is 31.06%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":3.7565239532877643},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":13.216780615649752},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":4.425393874252664},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":9.698188023739966},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":14.242244247915469},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":10.237281352531355},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":13.424369857597554},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":8.151909974688886},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.176753151753017},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":15.093062238413745},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":4.9881252848192625},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":5.270734810584483},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":6.750228850607103},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":6.3729445038432795},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":8.268352187536642},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":7.743466586456689},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":7.367098343254987},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":7.9949131054821585},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":27.35760669685321},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":20.6453976692472},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":21.57511666994278},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":18.36166434590518},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":19.15796715985748},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":13.015311165961718},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":7.729694333120361},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":12.382821191081243},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":9.604882567188733},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":12.89317339524513},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":13.522242827554779},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":5.988762511281829},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":8.379764105154402},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":9.335654673659336},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":21.91387764737628},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":21.267361398283324},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":29.275279776918833},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":24.509939800229212},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":19.090441947598396},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":13.528599872885987},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":15.904578362850256},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.457263734458893},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":13.293708073225208},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":14.936891080677416},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":16.862301578168186},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":13.447737172994445},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":7.362893250233952},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":8.649091343051902},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":9.483408786880155},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":13.229452259536231},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":26.020420612997714},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":35.62561438349707},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":27.695142721576072},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":24.092051859915642},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":19.647680204299643},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":12.489081342541175},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":20.432334831985425},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":13.692258224941058},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":13.182336301838324},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":51.920431739870466},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":37.9076365241724},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":31.05653002428455}]
Daily Change
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: dailyDelta(equity)total_value_exit_net between consecutive equity samples (typically daily).How to read it. Green bars are gain days, red bars are loss days. A long stretch of red bars indicates a sustained drawdown, not just a single bad day.Why it matters. Shows whether returns are consistent or driven by a few jackpot days - important for compounding and for sizing live capital.Insights (auto-derived from delta).| Stat | Value |
|---|---|
| Best Day | 287.36 USDT @ 2026-02-06 23:59:00 UTC |
| Worst Day | -355.81 USDT @ 2026-01-30 23:59:00 UTC |
| Mean | 1.89 USDT |
| Std Dev | 30.94 USDT |
| Last | 8.38 USDT |
| Points | 672 |
| Sum | 1,270.29 USDT |
| Across 672 points the series ranged from -355.81 USDT (2026-01-30 23:59:00 UTC) to 287.36 USDT (2026-02-06 23:59:00 UTC), averaging 1.89 USDT. 57% of points were positive, 43% negative. The most recent value is 8.38 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":4.104518170199299},{"timestamp":"2024-05-06T23:59:00+00:00","delta":11.270121294999626},{"timestamp":"2024-05-18T23:59:00+00:00","delta":-0.9540936334997241},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-11.153511169701233},{"timestamp":"2024-06-09T23:59:00+00:00","delta":7.01090841830046},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-11.52582465299929},{"timestamp":"2024-07-02T23:59:00+00:00","delta":5.329740691800907},{"timestamp":"2024-07-14T23:59:00+00:00","delta":0.8741326102008316},{"timestamp":"2024-07-25T23:59:00+00:00","delta":-8.525818435000474},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-14.744536642499952},{"timestamp":"2024-08-17T23:59:00+00:00","delta":5.397400620298868},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-1.6628294032998383},{"timestamp":"2024-09-08T23:59:00+00:00","delta":1.1690086265007267},{"timestamp":"2024-09-20T23:59:00+00:00","delta":7.184267733100569},{"timestamp":"2024-10-01T23:59:00+00:00","delta":11.925539040999865},{"timestamp":"2024-10-13T23:59:00+00:00","delta":0.7896068480004033},{"timestamp":"2024-10-24T23:59:00+00:00","delta":4.353549785699215},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-0.8595703350001713},{"timestamp":"2024-11-16T23:59:00+00:00","delta":-7.892705528500301},{"timestamp":"2024-11-27T23:59:00+00:00","delta":7.640205163499559},{"timestamp":"2024-12-08T23:59:00+00:00","delta":4.32068201669972},{"timestamp":"2024-12-20T23:59:00+00:00","delta":14.756723219299602},{"timestamp":"2024-12-31T23:59:00+00:00","delta":9.330863742001384},{"timestamp":"2025-01-12T23:59:00+00:00","delta":0.3788646247012366},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-1.368842676798522},{"timestamp":"2025-02-03T23:59:00+00:00","delta":9.884042739500728},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-2.052188990499417},{"timestamp":"2025-02-26T23:59:00+00:00","delta":-1.8370196585001395},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-1.3362514082000416},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-2.6710191592992487},{"timestamp":"2025-04-01T23:59:00+00:00","delta":-4.846503637798378},{"timestamp":"2025-04-13T23:59:00+00:00","delta":1.806256015699546},{"timestamp":"2025-04-24T23:59:00+00:00","delta":20.934782481301227},{"timestamp":"2025-05-05T23:59:00+00:00","delta":68.50651005799955},{"timestamp":"2025-05-17T23:59:00+00:00","delta":4.4237023536989},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-33.13357963799899},{"timestamp":"2025-06-08T23:59:00+00:00","delta":5.050592813298863},{"timestamp":"2025-06-20T23:59:00+00:00","delta":2.3116247532998386},{"timestamp":"2025-07-01T23:59:00+00:00","delta":14.426760970700343},{"timestamp":"2025-07-13T23:59:00+00:00","delta":1.3457409368002118},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-6.926528200800021},{"timestamp":"2025-08-04T23:59:00+00:00","delta":6.075562544299828},{"timestamp":"2025-08-16T23:59:00+00:00","delta":-0.43869872899995244},{"timestamp":"2025-08-27T23:59:00+00:00","delta":4.3932138311993185},{"timestamp":"2025-09-07T23:59:00+00:00","delta":-4.980231416999231},{"timestamp":"2025-09-19T23:59:00+00:00","delta":12.941766605499652},{"timestamp":"2025-09-30T23:59:00+00:00","delta":7.620027994000338},{"timestamp":"2025-10-12T23:59:00+00:00","delta":14.888849919199856},{"timestamp":"2025-10-23T23:59:00+00:00","delta":19.47787088500081},{"timestamp":"2025-11-03T23:59:00+00:00","delta":13.059500363300685},{"timestamp":"2025-11-15T23:59:00+00:00","delta":14.047266789999412},{"timestamp":"2025-11-26T23:59:00+00:00","delta":24.2688016082011},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-0.10647408450131479},{"timestamp":"2025-12-19T23:59:00+00:00","delta":1.2473448807013483},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-0.9657587521996902},{"timestamp":"2026-01-11T23:59:00+00:00","delta":6.775139671499346},{"timestamp":"2026-01-22T23:59:00+00:00","delta":58.18544748079876},{"timestamp":"2026-02-02T23:59:00+00:00","delta":79.31023015269966},{"timestamp":"2026-02-14T23:59:00+00:00","delta":-17.960135064000497},{"timestamp":"2026-02-25T23:59:00+00:00","delta":8.379488053000387}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 4.80% @ 2026-02 |
| Worst Month | -0.73% @ 2026-01 |
| Mean | 0.52% |
| Std Dev | 1.05% |
| Last | 4.80% |
| Points | 23 |
| Across 23 points the series ranged from -0.73% (2026-01) to 4.80% (2026-02), averaging 0.52%. 74% of points were positive, 26% negative. The most recent value is 4.80%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.09081629084901956},{"month":"2024-05","returnPct":0.17468254285740945},{"month":"2024-06","returnPct":-0.03212634728282776},{"month":"2024-07","returnPct":0.5975928019038943},{"month":"2024-08","returnPct":0.49384471586564604},{"month":"2024-09","returnPct":0.30284859829020055},{"month":"2024-10","returnPct":0.23604903312853254},{"month":"2024-11","returnPct":-0.1805052045267622},{"month":"2024-12","returnPct":0.13171585260639623},{"month":"2025-01","returnPct":0.8764307628073684},{"month":"2025-02","returnPct":0.11339490223238147},{"month":"2025-03","returnPct":1.0814887962333704},{"month":"2025-04","returnPct":0.09038119669627916},{"month":"2025-05","returnPct":0.7792287615063339},{"month":"2025-06","returnPct":0.570991965943401},{"month":"2025-07","returnPct":-0.20734872822326333},{"month":"2025-08","returnPct":0.3747533380312041},{"month":"2025-09","returnPct":0.8274350663862481},{"month":"2025-10","returnPct":-0.363909797515659},{"month":"2025-11","returnPct":1.8167007537327646},{"month":"2025-12","returnPct":0.24781488195270168},{"month":"2026-01","returnPct":-0.7326793361575159},{"month":"2026-02","returnPct":4.796742584759768}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 1,085.75 USDT @ 2026-02-25 |
| Trough Cum. | 0.3307 USDT @ 2024-04-24 |
| Mean | 401.91 USDT |
| Std Dev | 278.46 USDT |
| Last | 1,085.75 USDT |
| Points | 673 |
| Sum | 270,483.32 USDT |
| Across 673 points the series ranged from 0.3307 USDT (2024-04-24) to 1,085.75 USDT (2026-02-25), averaging 401.91 USDT. 100% of points were positive, 0% negative. The most recent value is 1,085.75 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":0.33071},{"timestamp":"2024-05-05","cumProfit":10.265198},{"timestamp":"2024-05-17","cumProfit":23.088226000000002},{"timestamp":"2024-05-28","cumProfit":34.89080600000001},{"timestamp":"2024-06-09","cumProfit":38.771554000000016},{"timestamp":"2024-06-20","cumProfit":45.25344600000002},{"timestamp":"2024-07-01","cumProfit":46.452415000000016},{"timestamp":"2024-07-13","cumProfit":55.24177000000002},{"timestamp":"2024-07-24","cumProfit":70.30130700000002},{"timestamp":"2024-08-05","cumProfit":99.389533},{"timestamp":"2024-08-16","cumProfit":113.89333899999998},{"timestamp":"2024-08-27","cumProfit":122.97198799999997},{"timestamp":"2024-09-08","cumProfit":127.75063599999996},{"timestamp":"2024-09-19","cumProfit":143.4992269999999},{"timestamp":"2024-09-30","cumProfit":154.04046499999998},{"timestamp":"2024-10-12","cumProfit":167.1332},{"timestamp":"2024-10-23","cumProfit":180.764705},{"timestamp":"2024-11-04","cumProfit":184.15985799999999},{"timestamp":"2024-11-15","cumProfit":195.06239799999997},{"timestamp":"2024-11-26","cumProfit":216.361653},{"timestamp":"2024-12-08","cumProfit":220.077707},{"timestamp":"2024-12-19","cumProfit":234.523376},{"timestamp":"2024-12-31","cumProfit":239.18044099999997},{"timestamp":"2025-01-11","cumProfit":244.56122199999993},{"timestamp":"2025-01-22","cumProfit":257.903576},{"timestamp":"2025-02-03","cumProfit":294.9890889999999},{"timestamp":"2025-02-14","cumProfit":315.2859579999999},{"timestamp":"2025-02-26","cumProfit":326.3665829999999},{"timestamp":"2025-03-09","cumProfit":336.9291569999999},{"timestamp":"2025-03-20","cumProfit":362.02811499999984},{"timestamp":"2025-04-01","cumProfit":372.28355199999993},{"timestamp":"2025-04-12","cumProfit":406.526955},{"timestamp":"2025-04-23","cumProfit":439.001915},{"timestamp":"2025-05-05","cumProfit":453.01576100000005},{"timestamp":"2025-05-16","cumProfit":471.7643720000001},{"timestamp":"2025-05-28","cumProfit":487.43181500000003},{"timestamp":"2025-06-08","cumProfit":498.36053599999997},{"timestamp":"2025-06-19","cumProfit":523.849692},{"timestamp":"2025-07-01","cumProfit":534.5868320000001},{"timestamp":"2025-07-12","cumProfit":537.2369659999999},{"timestamp":"2025-07-24","cumProfit":542.86371},{"timestamp":"2025-08-04","cumProfit":546.142669},{"timestamp":"2025-08-15","cumProfit":548.184857},{"timestamp":"2025-08-27","cumProfit":551.7206379999999},{"timestamp":"2025-09-07","cumProfit":575.2899779999999},{"timestamp":"2025-09-19","cumProfit":587.652236},{"timestamp":"2025-09-30","cumProfit":607.565322},{"timestamp":"2025-10-11","cumProfit":636.3549200000001},{"timestamp":"2025-10-23","cumProfit":705.8290230000002},{"timestamp":"2025-11-03","cumProfit":719.4978840000003},{"timestamp":"2025-11-14","cumProfit":743.4225000000002},{"timestamp":"2025-11-26","cumProfit":757.3215390000003},{"timestamp":"2025-12-07","cumProfit":769.4630040000002},{"timestamp":"2025-12-19","cumProfit":783.1051770000003},{"timestamp":"2025-12-30","cumProfit":804.0124670000005},{"timestamp":"2026-01-10","cumProfit":815.3617610000005},{"timestamp":"2026-01-22","cumProfit":856.0557700000004},{"timestamp":"2026-02-02","cumProfit":980.6987190000003},{"timestamp":"2026-02-14","cumProfit":1060.6089230000005},{"timestamp":"2026-02-25","cumProfit":1085.748696000001}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 36.75 USDT @ 2026-02-02 |
| Worst Day | 0.0000 USDT @ 2024-06-23 |
| Mean | 1.61 USDT |
| Std Dev | 3.05 USDT |
| Last | 1.32 USDT |
| Points | 673 |
| Sum | 1,085.75 USDT |
| Across 673 points the series ranged from 0.0000 USDT (2024-06-23) to 36.75 USDT (2026-02-02), averaging 1.61 USDT. 96% of points were positive, 0% negative. The most recent value is 1.32 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":0.33071},{"day":"2024-05-05","profit":0.131579},{"day":"2024-05-17","profit":1.934579},{"day":"2024-05-28","profit":0.605748},{"day":"2024-06-09","profit":0.121715},{"day":"2024-06-20","profit":0.962375},{"day":"2024-07-01","profit":0.080055},{"day":"2024-07-13","profit":0.270347},{"day":"2024-07-24","profit":0.614335},{"day":"2024-08-05","profit":7.557724},{"day":"2024-08-16","profit":3.815316},{"day":"2024-08-27","profit":0.465293},{"day":"2024-09-08","profit":0.040953},{"day":"2024-09-19","profit":1.053314},{"day":"2024-09-30","profit":0.386683},{"day":"2024-10-12","profit":0.18152},{"day":"2024-10-23","profit":2.527066},{"day":"2024-11-04","profit":0.040568},{"day":"2024-11-15","profit":0.847761},{"day":"2024-11-26","profit":1.01239},{"day":"2024-12-08","profit":0.093358},{"day":"2024-12-19","profit":2.817567},{"day":"2024-12-31","profit":0.189765},{"day":"2025-01-11","profit":0.494128},{"day":"2025-01-22","profit":4.608501},{"day":"2025-02-03","profit":3.290917},{"day":"2025-02-14","profit":1.345028},{"day":"2025-02-26","profit":0.365541},{"day":"2025-03-09","profit":0.099998},{"day":"2025-03-20","profit":0.196089},{"day":"2025-04-01","profit":1.913424},{"day":"2025-04-12","profit":3.227222},{"day":"2025-04-23","profit":2.842479},{"day":"2025-05-05","profit":4.356473},{"day":"2025-05-16","profit":0.935381},{"day":"2025-05-28","profit":0.636407},{"day":"2025-06-08","profit":0.110863},{"day":"2025-06-19","profit":0.192294},{"day":"2025-07-01","profit":1.505619},{"day":"2025-07-12","profit":0},{"day":"2025-07-24","profit":0.236883},{"day":"2025-08-04","profit":0.900278},{"day":"2025-08-15","profit":0.027965},{"day":"2025-08-27","profit":0.411397},{"day":"2025-09-07","profit":0},{"day":"2025-09-19","profit":1.002278},{"day":"2025-09-30","profit":3.115919},{"day":"2025-10-11","profit":0.803081},{"day":"2025-10-23","profit":3.029158},{"day":"2025-11-03","profit":0.813754},{"day":"2025-11-14","profit":2.31982},{"day":"2025-11-26","profit":0.991223},{"day":"2025-12-07","profit":0},{"day":"2025-12-19","profit":0.198559},{"day":"2025-12-30","profit":1.420772},{"day":"2026-01-10","profit":0.383904},{"day":"2026-01-22","profit":6.822296},{"day":"2026-02-02","profit":36.752404},{"day":"2026-02-14","profit":0},{"day":"2026-02-25","profit":1.316673}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 1066 trades @ 2026-02-02 |
| Quietest Day | 0 trades @ 2024-06-23 |
| Mean | 44 trades |
| Std Dev | 74 trades |
| Last | 57 trades |
| Points | 673 |
| Sum | 29904 trades |
| Across 673 points the series ranged from 0 trades (2024-06-23) to 1066 trades (2026-02-02), averaging 44 trades. The most recent value is 57 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":19},{"day":"2024-05-05","count":9},{"day":"2024-05-17","count":60},{"day":"2024-05-28","count":30},{"day":"2024-06-09","count":7},{"day":"2024-06-20","count":38},{"day":"2024-07-01","count":5},{"day":"2024-07-13","count":17},{"day":"2024-07-24","count":24},{"day":"2024-08-05","count":363},{"day":"2024-08-16","count":76},{"day":"2024-08-27","count":27},{"day":"2024-09-08","count":3},{"day":"2024-09-19","count":44},{"day":"2024-09-30","count":22},{"day":"2024-10-12","count":8},{"day":"2024-10-23","count":48},{"day":"2024-11-04","count":3},{"day":"2024-11-15","count":44},{"day":"2024-11-26","count":48},{"day":"2024-12-08","count":7},{"day":"2024-12-19","count":113},{"day":"2024-12-31","count":12},{"day":"2025-01-11","count":12},{"day":"2025-01-22","count":76},{"day":"2025-02-03","count":138},{"day":"2025-02-14","count":31},{"day":"2025-02-26","count":21},{"day":"2025-03-09","count":4},{"day":"2025-03-20","count":11},{"day":"2025-04-01","count":36},{"day":"2025-04-12","count":60},{"day":"2025-04-23","count":123},{"day":"2025-05-05","count":109},{"day":"2025-05-16","count":42},{"day":"2025-05-28","count":23},{"day":"2025-06-08","count":7},{"day":"2025-06-19","count":12},{"day":"2025-07-01","count":42},{"day":"2025-07-12","count":0},{"day":"2025-07-24","count":9},{"day":"2025-08-04","count":24},{"day":"2025-08-15","count":2},{"day":"2025-08-27","count":13},{"day":"2025-09-07","count":0},{"day":"2025-09-19","count":40},{"day":"2025-09-30","count":70},{"day":"2025-10-11","count":40},{"day":"2025-10-23","count":101},{"day":"2025-11-03","count":37},{"day":"2025-11-14","count":83},{"day":"2025-11-26","count":31},{"day":"2025-12-07","count":0},{"day":"2025-12-19","count":10},{"day":"2025-12-30","count":55},{"day":"2026-01-10","count":5},{"day":"2026-01-22","count":138},{"day":"2026-02-02","count":1066},{"day":"2026-02-14","count":0},{"day":"2026-02-25","count":57}]
Cumulative Fees
GET /backtests/{id}/trades * Fields used: sell_time, buy_fee_in_quote, sell_fee_in_quote * Transform: cumulativeFees(trades)cumFees).| Stat | Value |
|---|---|
| Final Fees | 392.67 USDT @ 2026-02-25 |
| Start | 0.2855 USDT @ 2024-04-24 |
| Mean | 160.89 USDT |
| Std Dev | 99.66 USDT |
| Last | 392.67 USDT |
| Points | 673 |
| Sum | 108,278.94 USDT |
| Across 673 points the series ranged from 0.2855 USDT (2024-04-24) to 392.67 USDT (2026-02-25), averaging 160.89 USDT. 100% of points were positive, 0% negative. The most recent value is 392.67 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":0.285503},{"index":11,"timestamp":"2024-05-05","cumFees":6.310436},{"index":23,"timestamp":"2024-05-17","cumFees":12.775078999999998},{"index":34,"timestamp":"2024-05-28","cumFees":18.428425999999995},{"index":46,"timestamp":"2024-06-09","cumFees":21.227496},{"index":57,"timestamp":"2024-06-20","cumFees":24.902292},{"index":68,"timestamp":"2024-07-01","cumFees":25.899729999999998},{"index":80,"timestamp":"2024-07-13","cumFees":30.504653000000005},{"index":91,"timestamp":"2024-07-24","cumFees":36.00225699999999},{"index":103,"timestamp":"2024-08-05","cumFees":50.50432300000001},{"index":114,"timestamp":"2024-08-16","cumFees":56.024753000000004},{"index":125,"timestamp":"2024-08-27","cumFees":60.22589200000001},{"index":137,"timestamp":"2024-09-08","cumFees":63.20579200000002},{"index":148,"timestamp":"2024-09-19","cumFees":67.60432800000001},{"index":159,"timestamp":"2024-09-30","cumFees":70.764868},{"index":171,"timestamp":"2024-10-12","cumFees":76.51814199999998},{"index":182,"timestamp":"2024-10-23","cumFees":79.94078499999996},{"index":194,"timestamp":"2024-11-04","cumFees":82.33084499999993},{"index":205,"timestamp":"2024-11-15","cumFees":89.2939749999999},{"index":216,"timestamp":"2024-11-26","cumFees":96.9733749999999},{"index":228,"timestamp":"2024-12-08","cumFees":99.6002869999999},{"index":239,"timestamp":"2024-12-19","cumFees":106.50605499999989},{"index":251,"timestamp":"2024-12-31","cumFees":109.8347709999999},{"index":262,"timestamp":"2025-01-11","cumFees":112.4574009999999},{"index":273,"timestamp":"2025-01-22","cumFees":117.18459199999991},{"index":285,"timestamp":"2025-02-03","cumFees":129.5296579999999},{"index":296,"timestamp":"2025-02-14","cumFees":137.9541949999999},{"index":308,"timestamp":"2025-02-26","cumFees":142.38787499999992},{"index":319,"timestamp":"2025-03-09","cumFees":148.1206439999999},{"index":330,"timestamp":"2025-03-20","cumFees":153.6726219999999},{"index":342,"timestamp":"2025-04-01","cumFees":157.91367399999987},{"index":353,"timestamp":"2025-04-12","cumFees":169.70441599999987},{"index":364,"timestamp":"2025-04-23","cumFees":178.90070599999987},{"index":376,"timestamp":"2025-05-05","cumFees":185.4292459999999},{"index":387,"timestamp":"2025-05-16","cumFees":192.5966159999999},{"index":399,"timestamp":"2025-05-28","cumFees":197.9372719999998},{"index":410,"timestamp":"2025-06-08","cumFees":201.9645719999998},{"index":421,"timestamp":"2025-06-19","cumFees":208.56215599999982},{"index":433,"timestamp":"2025-07-01","cumFees":213.92175199999983},{"index":444,"timestamp":"2025-07-12","cumFees":215.45510399999984},{"index":456,"timestamp":"2025-07-24","cumFees":217.67522899999983},{"index":467,"timestamp":"2025-08-04","cumFees":219.29960099999983},{"index":478,"timestamp":"2025-08-15","cumFees":220.46723499999982},{"index":490,"timestamp":"2025-08-27","cumFees":222.27491499999985},{"index":501,"timestamp":"2025-09-07","cumFees":226.74158299999988},{"index":513,"timestamp":"2025-09-19","cumFees":230.54042399999986},{"index":524,"timestamp":"2025-09-30","cumFees":235.03116199999982},{"index":535,"timestamp":"2025-10-11","cumFees":243.2202969999998},{"index":547,"timestamp":"2025-10-23","cumFees":263.8578299999998},{"index":558,"timestamp":"2025-11-03","cumFees":271.5823399999998},{"index":569,"timestamp":"2025-11-14","cumFees":278.9224539999999},{"index":581,"timestamp":"2025-11-26","cumFees":285.92477299999996},{"index":592,"timestamp":"2025-12-07","cumFees":289.5142459999999},{"index":604,"timestamp":"2025-12-19","cumFees":293.706804},{"index":615,"timestamp":"2025-12-30","cumFees":298.69905500000004},{"index":626,"timestamp":"2026-01-10","cumFees":303.45696000000004},{"index":638,"timestamp":"2026-01-22","cumFees":312.76219700000007},{"index":649,"timestamp":"2026-02-02","cumFees":356.15779799999996},{"index":661,"timestamp":"2026-02-14","cumFees":384.426829},{"index":672,"timestamp":"2026-02-25","cumFees":392.668625}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 8986 trades @ 0.10% |
| Least Populated Bin | 0 trades @ 0.26% |
| Mean | 498 trades |
| Std Dev | 1648 trades |
| Last | 1011 trades |
| Points | 60 |
| Sum | 29904 trades |
| Across 60 points the series ranged from 0 trades (0.26%) to 8986 trades (0.10%), averaging 498 trades. The most recent value is 1011 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":8986,"from":0.099812},{"bin":"0.18%","count":6841,"from":0.178927},{"bin":"0.26%","count":0,"from":0.258041},{"bin":"0.34%","count":5057,"from":0.337155},{"bin":"0.42%","count":0,"from":0.416269},{"bin":"0.50%","count":0,"from":0.495383},{"bin":"0.57%","count":3629,"from":0.574498},{"bin":"0.65%","count":0,"from":0.653612},{"bin":"0.73%","count":0,"from":0.732726},{"bin":"0.81%","count":2877,"from":0.81184},{"bin":"0.89%","count":0,"from":0.890954},{"bin":"0.97%","count":0,"from":0.970069},{"bin":"1.05%","count":0,"from":1.049183},{"bin":"1.13%","count":0,"from":1.128297},{"bin":"1.21%","count":0,"from":1.207411},{"bin":"1.29%","count":0,"from":1.286525},{"bin":"1.37%","count":0,"from":1.36564},{"bin":"1.44%","count":0,"from":1.444754},{"bin":"1.52%","count":0,"from":1.523868},{"bin":"1.60%","count":0,"from":1.602982},{"bin":"1.68%","count":0,"from":1.682096},{"bin":"1.76%","count":0,"from":1.761211},{"bin":"1.84%","count":0,"from":1.840325},{"bin":"1.92%","count":0,"from":1.919439},{"bin":"2.00%","count":0,"from":1.998553},{"bin":"2.08%","count":0,"from":2.077667},{"bin":"2.16%","count":0,"from":2.156782},{"bin":"2.24%","count":0,"from":2.235896},{"bin":"2.32%","count":1503,"from":2.31501},{"bin":"2.39%","count":0,"from":2.394124},{"bin":"2.47%","count":0,"from":2.473238},{"bin":"2.55%","count":0,"from":2.552353},{"bin":"2.63%","count":0,"from":2.631467},{"bin":"2.71%","count":0,"from":2.710581},{"bin":"2.79%","count":0,"from":2.789695},{"bin":"2.87%","count":0,"from":2.868809},{"bin":"2.95%","count":0,"from":2.947924},{"bin":"3.03%","count":0,"from":3.027038},{"bin":"3.11%","count":0,"from":3.106152},{"bin":"3.19%","count":0,"from":3.185266},{"bin":"3.26%","count":0,"from":3.26438},{"bin":"3.34%","count":0,"from":3.343495},{"bin":"3.42%","count":0,"from":3.422609},{"bin":"3.50%","count":0,"from":3.501723},{"bin":"3.58%","count":0,"from":3.580837},{"bin":"3.66%","count":0,"from":3.659951},{"bin":"3.74%","count":0,"from":3.739066},{"bin":"3.82%","count":0,"from":3.81818},{"bin":"3.90%","count":0,"from":3.897294},{"bin":"3.98%","count":0,"from":3.976408},{"bin":"4.06%","count":0,"from":4.055522},{"bin":"4.13%","count":0,"from":4.134637},{"bin":"4.21%","count":0,"from":4.213751},{"bin":"4.29%","count":0,"from":4.292865},{"bin":"4.37%","count":0,"from":4.371979},{"bin":"4.45%","count":0,"from":4.451093},{"bin":"4.53%","count":0,"from":4.530208},{"bin":"4.61%","count":0,"from":4.609322},{"bin":"4.69%","count":0,"from":4.688436},{"bin":"4.77%","count":1011,"from":4.76755}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 299 |
| Coldest Window | 100.00% @ 299 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (299) to 100.00% (299), averaging 100.00%. 100% of points were positive, 0% negative. The most recent value is 100.00%. | |
| Showing 60 of 1000 points (down-sampled for readability). |
[{"index":299,"winRate":100},{"index":803,"winRate":100},{"index":1307,"winRate":100},{"index":1810,"winRate":100},{"index":2314,"winRate":100},{"index":2818,"winRate":100},{"index":3322,"winRate":100},{"index":3826,"winRate":100},{"index":4300,"winRate":100},{"index":4803,"winRate":100},{"index":5307,"winRate":100},{"index":5811,"winRate":100},{"index":6315,"winRate":100},{"index":6819,"winRate":100},{"index":7322,"winRate":100},{"index":7826,"winRate":100},{"index":8330,"winRate":100},{"index":8834,"winRate":100},{"index":9338,"winRate":100},{"index":9841,"winRate":100},{"index":10345,"winRate":100},{"index":10849,"winRate":100},{"index":11353,"winRate":100},{"index":11827,"winRate":100},{"index":12331,"winRate":100},{"index":12834,"winRate":100},{"index":13338,"winRate":100},{"index":13842,"winRate":100},{"index":14346,"winRate":100},{"index":14850,"winRate":100},{"index":15353,"winRate":100},{"index":15857,"winRate":100},{"index":16361,"winRate":100},{"index":16865,"winRate":100},{"index":17369,"winRate":100},{"index":17872,"winRate":100},{"index":18376,"winRate":100},{"index":18850,"winRate":100},{"index":19354,"winRate":100},{"index":19858,"winRate":100},{"index":20362,"winRate":100},{"index":20865,"winRate":100},{"index":21369,"winRate":100},{"index":21873,"winRate":100},{"index":22377,"winRate":100},{"index":22881,"winRate":100},{"index":23384,"winRate":100},{"index":23888,"winRate":100},{"index":24392,"winRate":100},{"index":24896,"winRate":100},{"index":25400,"winRate":100},{"index":25903,"winRate":100},{"index":26377,"winRate":100},{"index":26881,"winRate":100},{"index":27385,"winRate":100},{"index":27889,"winRate":100},{"index":28393,"winRate":100},{"index":28896,"winRate":100},{"index":29400,"winRate":100},{"index":29904,"winRate":100}]
Gross vs. Net PnL (Fee Impact)
GET /backtests/{id}/trades * Fields used: sell_time, profit, buy_fee_in_quote, sell_fee_in_quote * Transform: grossVsNetPnL(trades)net).| Stat | Value |
|---|---|
| Peak Net | 9.28 USDT @ 2026-02-25 23:09:00 UTC |
| Trough Net | 0.0127 USDT @ 2024-04-24 04:21:00 UTC |
| Mean | 4.29 USDT |
| Std Dev | 3.45 USDT |
| Last | 9.28 USDT |
| Points | 100 |
| Sum | 429.22 USDT |
| Across 100 points the series ranged from 0.0127 USDT (2024-04-24 04:21:00 UTC) to 9.28 USDT (2026-02-25 23:09:00 UTC), averaging 4.29 USDT. 100% of points were positive, 0% negative. The most recent value is 9.28 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T04:21:00Z","net":0.0127144325,"gross":0.03179},{"timestamp":"2024-04-24T15:06:00Z","net":0.040674807199999996,"gross":0.09027699989999999},{"timestamp":"2024-04-24T15:07:00Z","net":0.053419365999999996,"gross":0.12212199999999998},{"timestamp":"2024-04-24T15:14:00Z","net":0.08117192349999999,"gross":0.1801179999},{"timestamp":"2024-04-25T14:39:00Z","net":0.134533732,"gross":0.2564139999},{"timestamp":"2024-04-25T14:39:00Z","net":0.1498158752,"gross":0.2831769998},{"timestamp":"2024-04-25T14:41:00Z","net":0.22222252820000002,"gross":0.37854699979999995},{"timestamp":"2024-04-25T15:49:00Z","net":0.3135916247,"gross":0.4928589998},{"timestamp":"2024-04-25T15:49:00Z","net":0.35667808570000004,"gross":0.5435909997999999},{"timestamp":"2024-04-25T15:51:00Z","net":0.4456565054,"gross":0.6517319996999998},{"timestamp":"2024-04-25T15:52:00Z","net":0.5321469809,"gross":0.7535699996999998},{"timestamp":"2024-04-27T17:54:00Z","net":0.6514590199,"gross":0.8805979996999999},{"timestamp":"2024-04-28T05:08:00Z","net":0.8905369689,"gross":1.1351379997},{"timestamp":"2024-05-20T01:52:00Z","net":1.3825560679,"gross":1.6427659997000001},{"timestamp":"2024-07-16T05:23:00Z","net":1.6290986719,"gross":1.8971299997000002},{"timestamp":"2024-09-13T01:11:00Z","net":1.8882245644,"gross":2.1826875160000005},{"timestamp":"2024-09-19T01:59:00Z","net":1.9127418004,"gross":2.244463148500001},{"timestamp":"2024-11-12T09:42:00Z","net":1.9372662364000002,"gross":2.306238706100001},{"timestamp":"2024-11-12T10:16:00Z","net":1.9495344364000002,"gross":2.3371506724000013},{"timestamp":"2024-11-12T10:52:00Z","net":1.9740469084000003,"gross":2.3988778550000016},{"timestamp":"2024-11-12T22:35:00Z","net":1.9985521804000004,"gross":2.460605112500002},{"timestamp":"2024-11-13T00:31:00Z","net":2.0108203804,"gross":2.491517078800002},{"timestamp":"2024-11-14T13:51:00Z","net":2.0353328524000003,"gross":2.5532442613000024},{"timestamp":"2024-11-14T14:40:00Z","net":2.0598717604,"gross":2.6150196681000026},{"timestamp":"2024-11-14T15:11:00Z","net":2.0721207964,"gross":2.6458833343000028},{"timestamp":"2024-11-14T15:36:00Z","net":2.0965997764,"gross":2.707562366000003},{"timestamp":"2024-11-15T03:00:00Z","net":2.1211170124,"gross":2.7693379985000033},{"timestamp":"2024-11-15T08:15:00Z","net":2.1333852124,"gross":2.8002499648000034},{"timestamp":"2024-11-16T01:37:00Z","net":2.1579096483999995,"gross":2.8620255224000037},{"timestamp":"2024-11-17T15:36:00Z","net":2.1824221203999996,"gross":2.923752704900004},{"timestamp":"2026-01-20T09:29:00Z","net":2.4458296113999998,"gross":3.195516704900004},{"timestamp":"2026-01-20T14:05:00Z","net":2.9736683193999998,"gross":3.740100704900004},{"timestamp":"2026-01-27T20:55:00Z","net":3.5010095981999996,"gross":4.284171705000004},{"timestamp":"2026-01-27T21:45:00Z","net":3.7653037354999994,"gross":4.556850705000004},{"timestamp":"2026-01-27T22:35:00Z","net":4.2949052228,"gross":5.103253705100004},{"timestamp":"2026-01-27T22:35:00Z","net":4.825743258499999,"gross":5.650932705200003},{"timestamp":"2026-01-28T01:56:00Z","net":5.0917541685,"gross":5.925382705300003},{"timestamp":"2026-02-02T11:13:00Z","net":5.621965266,"gross":6.472414705400004},{"timestamp":"2026-02-02T13:31:00Z","net":6.149373339,"gross":7.016554705400004},{"timestamp":"2026-02-22T23:58:00Z","net":6.412985223300001,"gross":7.288529705500005},{"timestamp":"2026-02-23T14:43:00Z","net":6.941083469700001,"gross":7.833381705500004},{"timestamp":"2026-02-23T14:45:00Z","net":7.4702904722,"gross":8.379377705500003},{"timestamp":"2026-02-23T15:21:00Z","net":7.735309674400001,"gross":8.652804705500003},{"timestamp":"2026-02-23T16:31:00Z","net":8.2663077023,"gross":9.200648705500003},{"timestamp":"2026-02-23T20:46:00Z","net":8.798681376500001,"gross":9.749911705500002},{"timestamp":"2026-02-25T12:03:00Z","net":8.827160369000001,"gross":9.809521705600003},{"timestamp":"2026-02-25T12:03:00Z","net":8.840109575200001,"gross":9.841946705500003},{"timestamp":"2026-02-25T13:06:00Z","net":8.882836748900003,"gross":9.908051705500004},{"timestamp":"2026-02-25T14:53:00Z","net":8.908764880100001,"gross":9.972976705500004},{"timestamp":"2026-02-25T14:53:00Z","net":8.924315252600001,"gross":10.000216705600005},{"timestamp":"2026-02-25T15:02:00Z","net":8.952845338800001,"gross":10.059961705700005},{"timestamp":"2026-02-25T15:07:00Z","net":8.993041177600002,"gross":10.131396705800004},{"timestamp":"2026-02-25T15:50:00Z","net":9.006020852600003,"gross":10.163896705800004},{"timestamp":"2026-02-25T16:35:00Z","net":9.034621123800003,"gross":10.223761705800005},{"timestamp":"2026-02-25T16:48:00Z","net":9.077480380100003,"gross":10.290076705800006},{"timestamp":"2026-02-25T16:49:00Z","net":9.124069300100002,"gross":10.348366705800006},{"timestamp":"2026-02-25T17:14:00Z","net":9.163851451900001,"gross":10.418677705900004},{"timestamp":"2026-02-25T21:13:00Z","net":9.220699293200001,"gross":10.502712706000004},{"timestamp":"2026-02-25T21:18:00Z","net":9.2361678219,"gross":10.529817706000005},{"timestamp":"2026-02-25T23:09:00Z","net":9.2761807444,"gross":10.600897706100003}]
Rolling Sharpe Ratio (30d / 90d)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: rollingSharpe(equity, 30) + rollingSharpe(equity, 90)sharpe30).| Stat | Value |
|---|---|
| Peak Sharpe (30d) | 10.97 @ 2025-09-24 23:59:00 UTC |
| Worst Sharpe (30d) | -4.39 @ 2024-11-14 23:59:00 UTC |
| Mean | 3.17 |
| Std Dev | 3.13 |
| Last | 0.59 |
| Points | 643 |
| Across 643 points the series ranged from -4.39 (2024-11-14 23:59:00 UTC) to 10.97 (2025-09-24 23:59:00 UTC), averaging 3.17. The most recent value is 0.59. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":1.6712550222199578,"sharpe90":1.825271549606241},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":2.780133738611323,"sharpe90":3.152062288954515},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-0.003990738056425344,"sharpe90":2.3311258765185427},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-1.5229124968028118,"sharpe90":3.0251905795970417},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":3.2963944334237185,"sharpe90":4.097387629392445},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":5.493546292680084,"sharpe90":4.5035503224327735},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":5.200895139146701,"sharpe90":5.463698958058742},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":4.206594740295427,"sharpe90":4.923847052990914},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":5.424229319650329,"sharpe90":4.887005568550027},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":4.187673398703954,"sharpe90":4.72785549223472},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":5.704473565881717,"sharpe90":1.7375644332459514},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":8.65545959387465,"sharpe90":0.916727166784254},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":7.085101822391831,"sharpe90":0.9139245550318873},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":4.136583727850298,"sharpe90":1.2954837248177522},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":4.174110707652034,"sharpe90":0.48375418988353885},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":3.6633346547967727,"sharpe90":0.6915337627549026},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-4.387823417966589,"sharpe90":0.7416644366209483},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":-0.8866804734472468,"sharpe90":1.095839500158271},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":0.5261705015132027,"sharpe90":2.2392623147292774},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":3.8679353402559045,"sharpe90":3.8706902347496124},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":2.213519027586851,"sharpe90":3.7249509952351754},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":2.003675022198221,"sharpe90":3.535095460944153},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":4.77404251255717,"sharpe90":5.093064921460908},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":7.813832861731946,"sharpe90":5.432475167425217},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":7.54925669945564,"sharpe90":3.8810167647756826},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":8.215080867809558,"sharpe90":4.393033465015943},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":2.270235748575862,"sharpe90":1.512927266721416},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":2.2464013578881414,"sharpe90":1.0480792025828174},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":2.1231266788829384,"sharpe90":1.6571275685485376},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":2.745564346074837,"sharpe90":1.8175358890028184},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":3.4233672653798206,"sharpe90":2.0296026082620378},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":1.3092499696091964,"sharpe90":1.5926860521449322},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":3.6473042898582735,"sharpe90":1.9034991456484187},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":-1.383359199605974,"sharpe90":0.8378910332034006},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":1.13837989985231,"sharpe90":1.2483520124951657},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":1.0505070306404145,"sharpe90":1.4919561282755627},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":2.802954857157616,"sharpe90":1.184397579230663},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":3.0815411777454886,"sharpe90":2.3709162908270467},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":1.9043688383001358,"sharpe90":2.6897955105836977},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":1.7295859868281713,"sharpe90":2.257019545488422},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":1.3269402754282416,"sharpe90":3.8530387133215838},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":0.7487249966126439,"sharpe90":4.602255980810503},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.8091961811473433,"sharpe90":2.2772840679690773},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":3.94689490770739,"sharpe90":0.8307813250797075},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":9.672159343759269,"sharpe90":1.6738701514838892},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":10.190029545141384,"sharpe90":1.747677459723079},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":10.163199204539024,"sharpe90":1.728993191480374},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":6.247163060024503,"sharpe90":2.0176186420347766},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-1.1412931960204955,"sharpe90":2.357275969923516},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-1.3029794133349692,"sharpe90":1.745277010022363},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-0.9770847898641283,"sharpe90":1.5108317089734251},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":4.059201881543783,"sharpe90":5.217625596167965},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":3.211921334150344,"sharpe90":1.0292956661916042},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":9.249971775139446,"sharpe90":1.311400838800425},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":1.7292201229662336,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":3.77051486140664,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":5.097389747325864,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":0.61675376036793,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":0.5331714198006489,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":0.5896650803104011,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.10% @ 3 |
| Deepest Episode | -4.85% @ 24 |
| Mean | -0.68% |
| Std Dev | 0.93% |
| Last | -0.50% |
| Points | 28 |
| Across 28 points the series ranged from -4.85% (24) to -0.10% (3), averaging -0.68%. 0% of points were positive, 100% negative. The most recent value is -0.50%. | |
| Full series - 28 points. |
[{"start":"2024-04-30T23:59:00+00:00","end":"2024-05-09T23:59:00+00:00","depth":-0.22825744971134948,"durationDays":9},{"start":"2024-05-23T23:59:00+00:00","end":"2024-07-05T23:59:00+00:00","depth":-0.34428238806345113,"durationDays":43},{"start":"2024-07-20T23:59:00+00:00","end":"2024-07-31T23:59:00+00:00","depth":-0.21452916942560574,"durationDays":11},{"start":"2024-08-05T23:59:00+00:00","end":"2024-08-09T23:59:00+00:00","depth":-0.2974831387973326,"durationDays":4},{"start":"2024-10-08T23:59:00+00:00","end":"2024-10-11T23:59:00+00:00","depth":-0.18376893481628304,"durationDays":3},{"start":"2024-11-05T23:59:00+00:00","end":"2024-11-22T23:59:00+00:00","depth":-1.2653691363148452,"durationDays":17},{"start":"2024-11-25T23:59:00+00:00","end":"2024-12-11T23:59:00+00:00","depth":-0.5884742145097062,"durationDays":16},{"start":"2024-12-12T23:59:00+00:00","end":"2025-01-09T23:59:00+00:00","depth":-0.6001074296274329,"durationDays":28},{"start":"2025-01-13T23:59:00+00:00","end":"2025-01-15T23:59:00+00:00","depth":-0.13234647081594633,"durationDays":2},{"start":"2025-01-19T23:59:00+00:00","end":"2025-01-21T23:59:00+00:00","depth":-0.1605525488704528,"durationDays":2},{"start":"2025-02-06T23:59:00+00:00","end":"2025-02-09T23:59:00+00:00","depth":-0.10382984343277471,"durationDays":3},{"start":"2025-02-15T23:59:00+00:00","end":"2025-02-18T23:59:00+00:00","depth":-0.13105658697573422,"durationDays":3},{"start":"2025-02-25T23:59:00+00:00","end":"2025-03-12T23:59:00+00:00","depth":-0.5481267816416122,"durationDays":15},{"start":"2025-04-03T23:59:00+00:00","end":"2025-04-10T23:59:00+00:00","depth":-0.6118308186375498,"durationDays":7},{"start":"2025-04-22T23:59:00+00:00","end":"2025-05-06T23:59:00+00:00","depth":-1.0950175780156486,"durationDays":14},{"start":"2025-05-07T23:59:00+00:00","end":"2025-05-23T23:59:00+00:00","depth":-1.3561097235143766,"durationDays":16},{"start":"2025-05-27T23:59:00+00:00","end":"2025-06-02T23:59:00+00:00","depth":-0.5482153975285371,"durationDays":6},{"start":"2025-06-03T23:59:00+00:00","end":"2025-06-12T23:59:00+00:00","depth":-0.3193082653807945,"durationDays":9},{"start":"2025-06-16T23:59:00+00:00","end":"2025-07-22T23:59:00+00:00","depth":-0.6180626244688916,"durationDays":36},{"start":"2025-07-23T23:59:00+00:00","end":"2025-08-28T23:59:00+00:00","depth":-0.5566916900471538,"durationDays":36},{"start":"2025-09-18T23:59:00+00:00","end":"2025-09-22T23:59:00+00:00","depth":-0.13500964340618832,"durationDays":4},{"start":"2025-10-10T23:59:00+00:00","end":"2025-10-12T23:59:00+00:00","depth":-0.15110187961476895,"durationDays":2},{"start":"2025-10-17T23:59:00+00:00","end":"2025-10-20T23:59:00+00:00","depth":-0.4004263031395837,"durationDays":3},{"start":"2025-10-21T23:59:00+00:00","end":"2025-11-28T23:59:00+00:00","depth":-2.2039530436109844,"durationDays":38},{"start":"2025-12-02T23:59:00+00:00","end":"2025-12-10T23:59:00+00:00","depth":-0.1569568630006199,"durationDays":8},{"start":"2025-12-29T23:59:00+00:00","end":"2026-01-10T23:59:00+00:00","depth":-0.7842684882925494,"durationDays":12},{"start":"2026-01-30T23:59:00+00:00","end":"2026-02-23T23:59:00+00:00","depth":-4.847731363910075,"durationDays":24},{"start":"2026-02-24T23:59:00+00:00","end":"ongoing","depth":-0.5010069711392062,"durationDays":1}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 100 trades @ win |
| Shortest Streak | 100 trades @ win |
| Mean | 100 trades |
| Std Dev | 0 trades |
| Last | 100 trades |
| Points | 1 |
| Sum | 100 trades |
| Across 1 points the series ranged from 100 trades (win) to 100 trades (win), averaging 100 trades. The most recent value is 100 trades. | |
| Full series - 1 points. |
[{"type":"win","length":100,"index":0}]
Capital Utilization (% Invested)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Utilization | 54.98% @ 2026-02-05 23:59:00 UTC |
| Min Utilization | 2.98% @ 2024-04-26 23:59:00 UTC |
| Mean | 14.74% |
| Std Dev | 8.69% |
| Last | 31.06% |
| Points | 673 |
| Across 673 points the series ranged from 2.98% (2024-04-26 23:59:00 UTC) to 54.98% (2026-02-05 23:59:00 UTC), averaging 14.74%. 100% of points were positive, 0% negative. The most recent value is 31.06%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":3.7565239532877643},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":13.216780615649752},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":4.425393874252664},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":9.698188023739966},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":14.242244247915469},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":10.237281352531355},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":13.424369857597554},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":8.151909974688886},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.176753151753017},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":15.093062238413745},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":4.9881252848192625},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":5.270734810584483},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":6.750228850607103},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":6.3729445038432795},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":8.268352187536642},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":7.743466586456689},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":7.367098343254987},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":7.9949131054821585},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":27.35760669685321},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":20.6453976692472},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":21.57511666994278},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":18.36166434590518},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":19.15796715985748},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":13.015311165961718},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":7.729694333120361},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":12.382821191081243},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":9.604882567188733},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":12.89317339524513},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":13.522242827554779},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":5.988762511281829},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":8.379764105154402},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":9.335654673659336},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":21.91387764737628},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":21.267361398283324},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":29.275279776918833},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":24.509939800229212},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":19.090441947598396},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":13.528599872885987},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":15.904578362850256},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.457263734458893},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":13.293708073225208},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":14.936891080677416},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":16.862301578168186},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":13.447737172994445},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":7.362893250233952},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":8.649091343051902},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":9.483408786880155},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":13.229452259536231},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":26.020420612997714},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":35.62561438349707},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":27.695142721576072},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":24.092051859915642},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":19.647680204299643},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":12.489081342541175},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":20.432334831985425},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":13.692258224941058},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":13.182336301838324},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":51.920431739870466},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":37.9076365241724},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":31.05653002428455}]
Price Chart with Buy/Sell Markers
GET /backtests/{id}/trades * Fields used: buy_time, buy_price, sell_time, sell_price * Transform: priceWithMarkers(trades)price).| Stat | Value |
|---|---|
| Highest Price | 5,249.09 @ 2026-01-28 02:31:00 UTC |
| Lowest Price | 2,305.30 @ 2024-04-24 09:56:00 UTC |
| Mean | 3,918.28 |
| Std Dev | 1,294.02 |
| Last | 5,188.55 |
| Points | 152 |
| Across 152 points the series ranged from 2,305.30 (2024-04-24 09:56:00 UTC) to 5,249.09 (2026-01-28 02:31:00 UTC), averaging 3,918.28. The most recent value is 5,188.55. | |
| Showing 60 of 152 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:49:00Z","price":2312.31},{"timestamp":"2024-04-24T04:21:00Z","price":2315.08},{"timestamp":"2024-04-24T06:11:00Z","price":2315.08},{"timestamp":"2024-04-24T15:07:00Z","price":2318.1},{"timestamp":"2024-04-25T14:39:00Z","price":2323.88},{"timestamp":"2024-04-25T15:51:00Z","price":2332.68},{"timestamp":"2024-04-27T17:54:00Z","price":2367.04},{"timestamp":"2024-05-20T01:11:00Z","price":2420.57},{"timestamp":"2024-07-16T05:23:00Z","price":2427.93},{"timestamp":"2024-09-13T05:28:00Z","price":2565.95},{"timestamp":"2024-09-19T01:59:00Z","price":2561.94},{"timestamp":"2024-11-12T09:42:00Z","price":2554.55},{"timestamp":"2024-11-12T10:35:00Z","price":2554.55},{"timestamp":"2024-11-12T10:50:00Z","price":2554.55},{"timestamp":"2024-11-12T12:01:00Z","price":2560.94},{"timestamp":"2024-11-12T22:18:00Z","price":2555.55},{"timestamp":"2024-11-14T09:35:00Z","price":2559.55},{"timestamp":"2024-11-14T10:05:00Z","price":2555.55},{"timestamp":"2024-11-14T14:19:00Z","price":2565.95},{"timestamp":"2024-11-14T15:11:00Z","price":2561.94},{"timestamp":"2024-11-14T15:20:00Z","price":2557.92},{"timestamp":"2024-11-14T22:30:00Z","price":2555.55},{"timestamp":"2024-11-14T23:08:00Z","price":2559.55},{"timestamp":"2024-11-15T08:15:00Z","price":2565.95},{"timestamp":"2024-11-16T00:14:00Z","price":2565.95},{"timestamp":"2024-11-17T02:02:00Z","price":2555.55},{"timestamp":"2024-11-17T15:36:00Z","price":2559.94},{"timestamp":"2025-12-23T23:57:00Z","price":4534.02},{"timestamp":"2026-01-20T14:03:00Z","price":4769.12},{"timestamp":"2026-01-22T19:12:00Z","price":4941.3},{"timestamp":"2026-01-22T22:46:00Z","price":4969.96},{"timestamp":"2026-01-23T05:49:00Z","price":4981.77},{"timestamp":"2026-01-23T17:56:00Z","price":4989.85},{"timestamp":"2026-01-27T20:55:00Z","price":5198.16},{"timestamp":"2026-01-27T22:35:00Z","price":5218.46},{"timestamp":"2026-01-30T09:51:00Z","price":4990.27},{"timestamp":"2026-01-30T17:09:00Z","price":4971.35},{"timestamp":"2026-01-30T17:27:00Z","price":4960.62},{"timestamp":"2026-01-31T04:18:00Z","price":4950.48},{"timestamp":"2026-02-02T06:34:00Z","price":4529.15},{"timestamp":"2026-02-02T11:15:00Z","price":4766.63},{"timestamp":"2026-02-03T16:53:00Z","price":4982.89},{"timestamp":"2026-02-23T14:39:00Z","price":5198.01},{"timestamp":"2026-02-23T14:45:00Z","price":5214.67},{"timestamp":"2026-02-23T16:31:00Z","price":5226.66},{"timestamp":"2026-02-23T20:46:00Z","price":5245.83},{"timestamp":"2026-02-24T01:15:00Z","price":5175.93},{"timestamp":"2026-02-25T10:29:00Z","price":5195.88},{"timestamp":"2026-02-25T11:52:00Z","price":5194.01},{"timestamp":"2026-02-25T12:23:00Z","price":5205.22},{"timestamp":"2026-02-25T13:43:00Z","price":5206.79},{"timestamp":"2026-02-25T14:37:00Z","price":5186.31},{"timestamp":"2026-02-25T14:57:00Z","price":5208.96},{"timestamp":"2026-02-25T15:07:00Z","price":5216.93},{"timestamp":"2026-02-25T15:44:00Z","price":5205.15},{"timestamp":"2026-02-25T16:47:00Z","price":5225.02},{"timestamp":"2026-02-25T16:49:00Z","price":5219.91},{"timestamp":"2026-02-25T20:58:00Z","price":5162.73},{"timestamp":"2026-02-25T21:13:00Z","price":5175.64},{"timestamp":"2026-02-25T23:09:00Z","price":5188.55}]
Trade Size Distribution (Notional)
GET /backtests/{id}/trades * Fields used: buy_price, buy_quantity * Transform: tradeSizeDistribution(trades, 25)buy_price x buy_quantity) in quote currency.How to read it. A tight peak => uniform sizing. A long right-tail => a few oversized positions that dominate PnL and risk.Why it matters. Position-size variance is a hidden risk factor - strategies that ape into one mega-trade are not as repeatable as their headline numbers suggest.Insights (auto-derived from count).| Stat | Value |
|---|---|
| Most Populated Bin | 27 trades @ $12.38 |
| Least Populated Bin | 0 trades @ $5.71 |
| Mean | 4 trades |
| Std Dev | 8 trades |
| Last | 13 trades |
| Points | 25 |
| Sum | 100 trades |
| Across 25 points the series ranged from 0 trades (5.71)to∗∗27trades∗∗(12.38), averaging 4 trades. The most recent value is 13 trades. | |
| Full series - 25 points. |
[{"bin":"$5.07","count":12,"from":5.0716600000000005},{"bin":"$5.39","count":25,"from":5.389308600000001},{"bin":"$5.71","count":0,"from":5.706957200000001},{"bin":"$6.02","count":0,"from":6.024605800000001},{"bin":"$6.34","count":0,"from":6.3422544},{"bin":"$6.66","count":0,"from":6.659903},{"bin":"$6.98","count":0,"from":6.9775516},{"bin":"$7.30","count":1,"from":7.2952002},{"bin":"$7.61","count":22,"from":7.6128488},{"bin":"$7.93","count":0,"from":7.9304974},{"bin":"$8.25","count":0,"from":8.248146},{"bin":"$8.57","count":0,"from":8.5657946},{"bin":"$8.88","count":0,"from":8.8834432},{"bin":"$9.20","count":0,"from":9.2010918},{"bin":"$9.52","count":0,"from":9.518740399999999},{"bin":"$9.84","count":0,"from":9.836389},{"bin":"$10.15","count":0,"from":10.154037599999999},{"bin":"$10.47","count":0,"from":10.4716862},{"bin":"$10.79","count":0,"from":10.789334799999999},{"bin":"$11.11","count":0,"from":11.1069834},{"bin":"$11.42","count":0,"from":11.424631999999999},{"bin":"$11.74","count":0,"from":11.742280599999999},{"bin":"$12.06","count":0,"from":12.0599292},{"bin":"$12.38","count":27,"from":12.3775778},{"bin":"$12.70","count":13,"from":12.6952264}]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 50 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 1.05 |
| Mean | 5 trades |
| Std Dev | 12 trades |
| Last | 29 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (1.05) to 50 trades (0.1), averaging 5 trades. The most recent value is 29 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 50,
"SL": 0,
"TSL": 0
},
{
"bin": 0.34,
"TP": 8,
"SL": 0,
"TSL": 0
},
{
"bin": 0.57,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.81,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 1.05,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 1.29,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 1.52,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 1.76,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 2,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 2.24,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 2.47,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 2.71,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 2.95,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.19,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.42,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.66,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.9,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 4.13,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 4.37,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 4.61,
"TP": 29,
"SL": 0,
"TSL": 0
}
]
Monthly Equity Comparison (YoY)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyEquityYoY(equity)2025).| Stat | Value |
|---|---|
| Best Indexed Value | 107.01 @ Dec |
| Worst Indexed Value | 100.88 @ Jan |
| Mean | 103.61 |
| Std Dev | 1.93 |
| Last | 107.01 |
| Points | 12 |
| Across 12 points the series ranged from 100.88 (Jan) to 107.01 (Dec), averaging 103.61. The most recent value is 107.01. | |
| Full series - 12 points. |
[
{
"2025": 100.87643076280737,
"2026": 99.26732066384248,
"month": "Jan"
},
{
"2025": 101.025970330491,
"2026": 103.13117610050209,
"month": "Feb"
},
{
"2025": 102.09175453926352,
"month": "Mar"
},
{
"2024": 99.90918370915098,
"2025": 102.13645290034718,
"month": "Apr"
},
{
"2024": 100.14074524008343,
"2025": 102.69310494396781,
"month": "May"
},
{
"2024": 100.16823469107163,
"2025": 103.442359191919,
"month": "Jun"
},
{
"2024": 100.77953556631809,
"2025": 103.36906494014491,
"month": "Jul"
},
{
"2024": 101.27666072843218,
"2025": 104.16556772136418,
"month": "Aug"
},
{
"2024": 101.58050112193978,
"2025": 105.13300262316451,
"month": "Sep"
},
{
"2024": 101.93984297589292,
"2025": 104.7263657912774,
"month": "Oct"
},
{
"2024": 101.73241220001381,
"2025": 106.7067089394012,
"month": "Nov"
},
{
"2024": 102.00512181774097,
"2025": 107.0127969833043,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 203.49 USDT @ Sun |
| Worst Weekday | 58.53 USDT @ Fri |
| Mean | 155.11 USDT |
| Std Dev | 55.46 USDT |
| Last | 203.49 USDT |
| Points | 7 |
| Sum | 1,085.75 USDT |
| Across 7 points the series ranged from 58.53 USDT (Fri) to 203.49 USDT (Sun), averaging 155.11 USDT. 100% of points were positive, 0% negative. The most recent value is 203.49 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 195.11893
},
{
"day": "Tue",
"profit": 183.72236
},
{
"day": "Wed",
"profit": 163.131625
},
{
"day": "Thu",
"profit": 199.939693
},
{
"day": "Fri",
"profit": 58.531602
},
{
"day": "Sat",
"profit": 81.819296
},
{
"day": "Sun",
"profit": 203.485191
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 73.14 USDT @ 16:00 |
| Worst Hour (UTC) | 25.52 USDT @ 4:00 |
| Mean | 45.24 USDT |
| Std Dev | 13.06 USDT |
| Last | 55.14 USDT |
| Points | 24 |
| Sum | 1,085.75 USDT |
| Across 24 points the series ranged from 25.52 USDT (4:00) to 73.14 USDT (16:00), averaging 45.24 USDT. 100% of points were positive, 0% negative. The most recent value is 55.14 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":53.221981},{"hour":"1:00","profit":67.296536},{"hour":"2:00","profit":53.7718},{"hour":"3:00","profit":34.968958},{"hour":"4:00","profit":25.515533},{"hour":"5:00","profit":41.598649},{"hour":"6:00","profit":43.821799},{"hour":"7:00","profit":44.800159},{"hour":"8:00","profit":44.571002},{"hour":"9:00","profit":37.434065},{"hour":"10:00","profit":27.922316},{"hour":"11:00","profit":32.630168},{"hour":"12:00","profit":48.806871},{"hour":"13:00","profit":58.522397},{"hour":"14:00","profit":68.386767},{"hour":"15:00","profit":60.659353},{"hour":"16:00","profit":73.144671},{"hour":"17:00","profit":34.184786},{"hour":"18:00","profit":33.491759},{"hour":"19:00","profit":32.486126},{"hour":"20:00","profit":36.385695},{"hour":"21:00","profit":36.230986},{"hour":"22:00","profit":40.760962},{"hour":"23:00","profit":55.135356}]
Profit vs. Hold Time
GET /backtests/{id}/trades * Fields used: buy_time, sell_time, profit_percentage * Transform: holdTimes(trades)profitPct).| Stat | Value |
|---|---|
| Best Trade Return | 4.85% @ 615.25 |
| Worst Trade Return | 0.10% @ 0.38333333333333336 |
| Mean | 1.64% |
| Std Dev | 2.09% |
| Last | 0.10% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0.38333333333333336) to 4.85% (615.25), averaging 1.64%. 100% of points were positive, 0% negative. The most recent value is 0.10%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":39.05,"profitPct":0.8495481791,"profit":0.0432172125},{"hours":1996.5666666666666,"profitPct":4.8464444646,"profit":0.246542604},{"hours":39,"profitPct":0.5997691702,"profit":0.0457661242},{"hours":14.3,"profitPct":0.1002111525,"profit":0.0127445588},{"hours":100.2,"profitPct":2.3484378982,"profit":0.1196219585},{"hours":38.93333333333333,"profitPct":0.8495477927,"profit":0.043273263},{"hours":1996.45,"profitPct":4.8464442127,"profit":0.2468624565},{"hours":37.75,"profitPct":0.3497738964,"profit":0.026724555},{"hours":14.3,"profitPct":0.0998869482,"profit":0.0124885395},{"hours":36.78333333333333,"profitPct":0.5994483177,"profit":0.045682098},{"hours":13.2,"profitPct":0.2000598666,"profit":0.0152459422},{"hours":623.9666666666667,"profitPct":4.8464663534,"profit":0.2462227845},{"hours":13.333333333333334,"profitPct":0.3497764474,"profit":0.0266553787},{"hours":29.883333333333333,"profitPct":0.8495534204,"profit":0.043086461},{"hours":28.75,"profitPct":0.5994483364,"profit":0.0456029723},{"hours":5.6,"profitPct":0.1000521823,"profit":0.012263436},{"hours":0.8,"profitPct":0.0998564201,"profit":0.0122682},{"hours":0,"profitPct":0.0999542972,"profit":0.012256236},{"hours":0.2,"profitPct":0.0998564201,"profit":0.0122682},{"hours":0.03333333333333333,"profitPct":0.0999542972,"profit":0.012256236},{"hours":2.2666666666666666,"profitPct":0.0998564201,"profit":0.0122682},{"hours":0.2833333333333333,"profitPct":0.0998564888,"profit":0.012249036},{"hours":0.1,"profitPct":0.1000521823,"profit":0.012263436},{"hours":0,"profitPct":0.100151124,"profit":0.012270708},{"hours":0.1,"profitPct":0.0998564888,"profit":0.012249036},{"hours":0.03333333333333333,"profitPct":0.0998564888,"profit":0.012249036},{"hours":3.8666666666666667,"profitPct":0.0998564201,"profit":0.0122682},{"hours":0.11666666666666667,"profitPct":0.0998564201,"profit":0.0122682},{"hours":1.3333333333333333,"profitPct":0.0999542972,"profit":0.012256236},{"hours":0.1,"profitPct":0.1000521823,"profit":0.012263436},{"hours":657.85,"profitPct":4.8463934034,"profit":0.263407491},{"hours":660.6166666666667,"profitPct":4.8464590016,"profit":0.264151983},{"hours":120.06666666666666,"profitPct":4.8462600776,"profit":0.2642941373},{"hours":119.43333333333334,"profitPct":4.8464412186,"profit":0.2646569338},{"hours":119.38333333333334,"profitPct":4.8463202859,"profit":0.2652644555},{"hours":108.58333333333333,"profitPct":4.8464316591,"profit":0.2639212565},{"hours":106.16666666666667,"profitPct":4.8463199597,"profit":0.2665012185},{"hours":586.3333333333334,"profitPct":4.8463801558,"profit":0.2660322005},{"hours":574.2,"profitPct":4.8463002504,"profit":0.2650192022},{"hours":573.5166666666667,"profitPct":4.8464012289,"profit":0.2641877507},{"hours":573.2833333333333,"profitPct":4.8464312929,"profit":0.264454344},{"hours":562.35,"profitPct":4.8463711095,"profit":0.2639104957},{"hours":4.866666666666666,"profitPct":4.8463822202,"profit":0.263709879},{"hours":6.95,"profitPct":4.8463051566,"profit":0.263395716},{"hours":479.45,"profitPct":4.8463602949,"profit":0.2656376827},{"hours":40,"profitPct":0.3496960833,"profit":0.0272829038},{"hours":39.983333333333334,"profitPct":0.849263514,"profit":0.043957285},{"hours":6.316666666666666,"profitPct":0.349636539,"profit":0.0272500425},{"hours":5.55,"profitPct":0.5994784841,"profit":0.04658892},{"hours":1.8333333333333333,"profitPct":0.3497166115,"profit":0.0271784887},{"hours":0.6,"profitPct":0.0999547389,"profit":0.0129467625},{"hours":0.8666666666666667,"profitPct":0.1998394081,"profit":0.015548685},{"hours":0.5333333333333333,"profitPct":0.0998577711,"profit":0.0129492062},{"hours":2.7333333333333334,"profitPct":0.0998163404,"profit":0.0129859063},{"hours":0.38333333333333336,"profitPct":0.0998139423,"profit":0.0129657562},{"hours":0.3,"profitPct":0.0998943221,"profit":0.0129620375},{"hours":0.23333333333333334,"profitPct":0.0998643949,"profit":0.012979675},{"hours":2.183333333333333,"profitPct":0.3497479047,"profit":0.02708481},{"hours":0.3333333333333333,"profitPct":0.199746113,"profit":0.0154685287},{"hours":1.9166666666666667,"profitPct":0.0999718716,"profit":0.0129281125}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 100 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 47 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 100 trades |
| Across 3 points the series ranged from 0 trades (SL) to 100 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 100
},
{
"type": "SL",
"count": 0
},
{
"type": "TSL",
"count": 0
}
]
Machine-Readable Facts
facts_sha256 in the frontmatter - re-hash it to verify.- JSON
- Flat Table
{
"backtest_id": "059eb1f8-8f62-4501-aa0e-845a0d2a5fb0",
"symbol": "PAXGUSDT",
"strategy": "4BasicMode.json",
"strategy_label": "BasicMode",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 672,
"start_balance_usdt": 10000,
"final_value_usdt": 11268.17991275,
"return_pct": 12.6818,
"total_profit_usdt": 1085.74869733,
"avg_profit_per_trade_usdt": 0.03630781,
"fulfilled_trades": 29904,
"active_orders": 448,
"win_rate_pct": 100,
"best_trade_usdt": 0.26650122,
"worst_trade_usdt": 0.01222994,
"trades_per_month": 1352.3724850689066,
"max_drawdown_pct": 4.847731363910075,
"max_drawdown_abs_usdt": 547.6219343487992,
"drawdown_duration_days": 8,
"recovery_days": 18,
"cagr_pct": 6.7047897216378605,
"volatility_annualized_pct": 5.414908500115384,
"sharpe_annualized": 1.2270697490617049,
"sortino_annualized": 1.0818290406458728,
"time_in_market_pct": 100,
"final_cash_usdt": 7768.6742349535,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": 246.0840262318,
"median_hold_hours": 7.241666666666667,
"avg_hold_hours": 150.48248299319732,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 |
symbol | PAXGUSDT |
strategy | 4BasicMode.json |
strategy_label | BasicMode |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 672 |
start_balance_usdt | 10000 |
final_value_usdt | 11268.17991275 |
return_pct | 12.6818 |
total_profit_usdt | 1085.74869733 |
avg_profit_per_trade_usdt | 0.03630781 |
fulfilled_trades | 29904 |
active_orders | 448 |
win_rate_pct | 100 |
best_trade_usdt | 0.26650122 |
worst_trade_usdt | 0.01222994 |
trades_per_month | 1352.3724850689066 |
max_drawdown_pct | 4.847731363910075 |
max_drawdown_abs_usdt | 547.6219343487992 |
drawdown_duration_days | 8 |
recovery_days | 18 |
cagr_pct | 6.7047897216378605 |
volatility_annualized_pct | 5.414908500115384 |
sharpe_annualized | 1.2270697490617049 |
sortino_annualized | 1.0818290406458728 |
time_in_market_pct | 100 |
final_cash_usdt | 7768.6742349535 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | 246.0840262318 |
median_hold_hours | 7.241666666666667 |
avg_hold_hours | 150.48248299319732 |
buyhold_return_pct | null |
outperformance_vs_buyhold_pp | null |
Metric Provenance Index
| Metric | Source | JSON path | Transform | Value in this report |
|---|---|---|---|---|
| Symbol | GET /backtests/{id} | $.symbol | direct API value | PAXGUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 4BasicMode.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 11,268.18 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | +12.68% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +1,085.75 USDT |
| Win rate % | GET /backtests/{id} | $.win_rate | direct API value (cross-check: 100 * count(trades[].profit > 0) / count(trades)) | 100.0% |
| Trades count | GET /backtests/{id} | $.fulfilled_trades | direct API value (cross-check: count(trades)) | 29,904 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.2665 USDT |
| Worst trade | GET /backtests/{id} | $.min_profit | direct API value (cross-check: min(trades[].profit)) | +0.0122 USDT |
| Avg profit / trade | GET /backtests/{id} | $.avg_profit | direct API value | +0.0363 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 1352.4 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -4.85% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -547.62 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | +6.70% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 5.41% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | 1.23 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | 1.08 |
| Time in market % | GET /backtests/{id}/equity | $[*].base_asset_bal | count(samples where base_asset_bal>0) / count(samples) * 100 | 100.0% |
| Total fees | GET /backtests/{id}/trades | $[*].buy_fee_in_quote, $[*].sell_fee_in_quote | Sum (buy_fee_in_quote + sell_fee_in_quote) | 1.32 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +9.28 USDT |
| Gross loss (losers) | GET /backtests/{id}/trades | $[?(@.profit<0)].profit | Sum abs(profit) where profit < 0 | 0.00 USDT |
| Profit factor | GET /backtests/{id}/trades | $[*].profit | Sum winners.profit / Sum abs(losers.profit) | inf |
| Payoff ratio | GET /backtests/{id}/trades | $[*].profit | avg(winners.profit) / avg(abs(losers.profit)) | inf |
| Expectancy / trade | GET /backtests/{id}/trades | $[*].profit | mean(trades[].profit) | +0.0928 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 100 |
| Max consecutive losses | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit < 0 | 0 |
| Avg holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | mean(sell_time - buy_time) / 3600 | 150.5h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 7.2h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,773 USDT |
Raw API Attachments
/trades. Full trade population: 29,904 closed trades - fetch the complete list via GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 - backtest summary (verbatim)
GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0 - backtest summary (verbatim)
{
"id": "059eb1f8-8f62-4501-aa0e-845a0d2a5fb0",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T09:59:35.838809Z",
"started_at": "2026-05-08T13:14:18.698097Z",
"completed_at": "2026-05-08T13:38:05.624862Z",
"mode_name": "4BasicMode.json",
"symbol": "PAXGUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 11268.17991275,
"return_pct": 12.6818,
"total_profit": 1085.74869733,
"fulfilled_trades": 29904,
"active_orders": 448,
"win_rate": 100,
"avg_profit": 0.03630781,
"max_profit": 0.26650122,
"min_profit": 0.01222994,
"elapsed_sec": 552.26,
"max_drawdown": -4.8477,
"profit_factor": null,
"sharpe_ratio": 1.2271,
"total_fees": 392.66862495,
"avg_hold_time_hours": 98.9838,
"tp_count": 29904,
"sl_count": 0,
"tsl_count": 0,
"start_price": 2296,
"end_price": 5175.31,
"gross_profit_quote": 1478.417322,
"gross_loss_quote": 0,
"wins": 29904,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 29904,
"consecutive_losses_max": 0,
"holding_minutes_p50": 340,
"holding_minutes_p95": 31114.4,
"holding_minutes_max": 211714,
"description": "PAXGUSDT | 4BasicMode.json | 2024-04-24 - 2026-02-25 | +12.68% | 29904 trades | 100% WR",
"summary_text": "Backtest PAXGUSDT (Mode: 4BasicMode.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 11,268.18 USDT\nP&L: +1,268.18 USDT (+12.68%)\nResult: PROFIT\nCompleted trades: 29904\nOpen orders at end: 448\nWin rate: 100.0%\nAvg. profit/trade: 0.036308 USDT\nBest trade: 0.266501 USDT\nWorst trade: 0.012230 USDT\nTotal profit (trades only): 1,085.748697 USDT\nMax drawdown: -4.85%\nProfit factor: inf (no losing trades)\nSharpe ratio: 1.23\nTotal fees: 392.67 USDT\nAvg hold time: 99.0h\nTP / SL / TSL: 29904 / 0 / 0\n\nStrategy parameters:\n Buy trigger: -0.1% from last buy\n Buy splits: 7\n Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0]\n Investment per buy: 50.0 USDT\n Fees: maker 7.5 bps / taker 7.5 bps\n\nElapsed: 552.3s",
"share_token": null,
"config_hash": "b354b340d7b7e8ded3bf985ec7498c68045874505d7dbfb57d568e6f7dae68fa",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "PAXGUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.0001,
"stopLoss": false,
"tickSize": 0.01,
"buySplits": 7,
"buyVolumes": [
25,
15,
15,
15,
10,
10,
10
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5
],
"triggerCoolDown": 1,
"investmentPerBuy": 50,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 20,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/equity - equity series (verbatim, 673 points)
GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 0.1637,
"quote_asset_bal": 9622.3213746295,
"total_value_mid": 9998.1765746295,
"total_value_exit_net": 9997.8946832295,
"total_value": 9998.1765746295,
"base_cost_quote": 378.0093355307,
"unrealized_pnl_exit_net": -2.4360269308
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 0.1546,
"quote_asset_bal": 9642.5148170497,
"total_value_mid": 10002.2690170497,
"total_value_exit_net": 10001.9992013997,
"total_value": 10002.2690170497,
"base_cost_quote": 360.144618034,
"unrealized_pnl_exit_net": -0.660233684
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 0.1271,
"quote_asset_bal": 9706.6596226957,
"total_value_mid": 10004.7091226957,
"total_value_exit_net": 10004.4855855707,
"total_value": 10004.7091226957,
"base_cost_quote": 296.697232157,
"unrealized_pnl_exit_net": 1.128730718
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 0.1985,
"quote_asset_bal": 9537.878518661,
"total_value_mid": 10005.743018661,
"total_value_exit_net": 10005.392120286,
"total_value": 10005.743018661,
"base_cost_quote": 466.7895327773,
"unrealized_pnl_exit_net": 0.7240688478
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 0.2006,
"quote_asset_bal": 9533.268297828,
"total_value_mid": 10005.881897828,
"total_value_exit_net": 10005.527437628,
"total_value": 10005.881897828,
"base_cost_quote": 472.7229384965,
"unrealized_pnl_exit_net": -0.4637986965
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 0.2521,
"quote_asset_bal": 9412.6767159715,
"total_value_mid": 10003.5991159715,
"total_value_exit_net": 10003.1559241715,
"total_value": 10003.5991159715,
"base_cost_quote": 593.8919841743,
"unrealized_pnl_exit_net": -3.4127759742
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 0.5066,
"quote_asset_bal": 8823.4964110152,
"total_value_mid": 9989.6896110152,
"total_value_exit_net": 9988.8149661152,
"total_value": 9989.6896110152,
"base_cost_quote": 1183.5388468935,
"unrealized_pnl_exit_net": -18.2202917935
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 0.4582,
"quote_asset_bal": 8936.8594156107,
"total_value_mid": 9995.3014156107,
"total_value_exit_net": 9994.5075841107,
"total_value": 9995.3014156107,
"base_cost_quote": 1072.0627905095,
"unrealized_pnl_exit_net": -14.4146220095
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 0.522,
"quote_asset_bal": 8790.74248478,
"total_value_mid": 9986.64448478,
"total_value_exit_net": 9985.74755828,
"total_value": 9986.64448478,
"base_cost_quote": 1218.722248669,
"unrealized_pnl_exit_net": -23.717175169
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 0.5539,
"quote_asset_bal": 8718.2790399377,
"total_value_mid": 9986.1561399377,
"total_value_exit_net": 9985.2052321127,
"total_value": 9986.1561399377,
"base_cost_quote": 1291.7103036852,
"unrealized_pnl_exit_net": -24.7841115102
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 0.5781,
"quote_asset_bal": 8663.1673819297,
"total_value_mid": 9984.7039819297,
"total_value_exit_net": 9983.7128294797,
"total_value": 9984.7039819297,
"base_cost_quote": 1346.9662365767,
"unrealized_pnl_exit_net": -26.4207890267
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 0.5781,
"quote_asset_bal": 8663.2989611687,
"total_value_mid": 9983.6793611687,
"total_value_exit_net": 9982.6890758687,
"total_value": 9983.6793611687,
"base_cost_quote": 1346.9662365767,
"unrealized_pnl_exit_net": -27.5761218767
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 0.4912,
"quote_asset_bal": 8863.5740223637,
"total_value_mid": 9994.8076223637,
"total_value_exit_net": 9993.9591971637,
"total_value": 9994.8076223637,
"base_cost_quote": 1147.859677571,
"unrealized_pnl_exit_net": -17.474502771
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 0.5198,
"quote_asset_bal": 8798.4616118852,
"total_value_mid": 9987.7640118852,
"total_value_exit_net": 9986.8720350852,
"total_value": 9987.7640118852,
"base_cost_quote": 1213.3018524185,
"unrealized_pnl_exit_net": -24.8914292185
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 0.5319,
"quote_asset_bal": 8771.096846163,
"total_value_mid": 9992.871146163,
"total_value_exit_net": 9991.954815438,
"total_value": 9992.871146163,
"base_cost_quote": 1241.2851431577,
"unrealized_pnl_exit_net": -20.4271738827
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 0.3366,
"quote_asset_bal": 9224.4027732087,
"total_value_mid": 10012.0467732087,
"total_value_exit_net": 10011.4560402087,
"total_value": 10012.0467732087,
"base_cost_quote": 790.2606042647,
"unrealized_pnl_exit_net": -3.2073372647
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 0.2973,
"quote_asset_bal": 9317.9233168572,
"total_value_mid": 10011.2269168572,
"total_value_exit_net": 10010.7069391572,
"total_value": 10011.2269168572,
"base_cost_quote": 698.6205437282,
"unrealized_pnl_exit_net": -5.8369214282
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 0.3146,
"quote_asset_bal": 9277.6735606932,
"total_value_mid": 10013.8375606932,
"total_value_exit_net": 10013.2854376932,
"total_value": 10013.8375606932,
"base_cost_quote": 739.2549917245,
"unrealized_pnl_exit_net": -3.6431147245
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 0.3026,
"quote_asset_bal": 9305.8296094775,
"total_value_mid": 10014.8214094775,
"total_value_exit_net": 10014.2896656275,
"total_value": 10014.8214094775,
"base_cost_quote": 711.1947022795,
"unrealized_pnl_exit_net": -2.7346461295
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 0.377,
"quote_asset_bal": 9132.549664661,
"total_value_mid": 10007.189664661,
"total_value_exit_net": 10006.533684661,
"total_value": 10007.189664661,
"base_cost_quote": 884.6918085903,
"unrealized_pnl_exit_net": -10.7077885902
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 0.3344,
"quote_asset_bal": 9232.2072429245,
"total_value_mid": 10014.7032429245,
"total_value_exit_net": 10014.1163709245,
"total_value": 10014.7032429245,
"base_cost_quote": 785.435403076,
"unrealized_pnl_exit_net": -3.526275076
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 0.1421,
"quote_asset_bal": 9686.6836071182,
"total_value_mid": 10024.8816071182,
"total_value_exit_net": 10024.6279586182,
"total_value": 10024.8816071182,
"base_cost_quote": 333.9712447155,
"unrealized_pnl_exit_net": 3.9731067845
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 0.2909,
"quote_asset_bal": 9333.4020993212,
"total_value_mid": 10020.2169993212,
"total_value_exit_net": 10019.7018881462,
"total_value": 10020.2169993212,
"base_cost_quote": 687.7515480907,
"unrealized_pnl_exit_net": -1.4517592658
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 0.1858,
"quote_asset_bal": 9583.1515029867,
"total_value_mid": 10027.2135029867,
"total_value_exit_net": 10026.8804564867,
"total_value": 10027.2135029867,
"base_cost_quote": 439.9367232635,
"unrealized_pnl_exit_net": 3.7922302365
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 0.1975,
"quote_asset_bal": 9555.2421409782,
"total_value_mid": 10026.2796409782,
"total_value_exit_net": 10025.9263628532,
"total_value": 10026.2796409782,
"base_cost_quote": 467.873942475,
"unrealized_pnl_exit_net": 2.8102794
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 0.165,
"quote_asset_bal": 9633.318042025,
"total_value_mid": 10030.143042025,
"total_value_exit_net": 10029.845423275,
"total_value": 10030.143042025,
"base_cost_quote": 393.2715386045,
"unrealized_pnl_exit_net": 3.2558426455
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 0.2169,
"quote_asset_bal": 9508.833200766,
"total_value_mid": 10032.429800766,
"total_value_exit_net": 10032.037103316,
"total_value": 10032.429800766,
"base_cost_quote": 520.0272781625,
"unrealized_pnl_exit_net": 3.1766243875
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 0.2252,
"quote_asset_bal": 9489.3540901307,
"total_value_mid": 10032.7616901307,
"total_value_exit_net": 10032.3541344307,
"total_value": 10032.7616901307,
"base_cost_quote": 540.123164782,
"unrealized_pnl_exit_net": 2.876879518
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 0.3123,
"quote_asset_bal": 9281.1273133535,
"total_value_mid": 10025.9628133535,
"total_value_exit_net": 10025.4041867285,
"total_value": 10025.9628133535,
"base_cost_quote": 748.670510071,
"unrealized_pnl_exit_net": -4.393636696
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 0.5459,
"quote_asset_bal": 8730.45908161,
"total_value_mid": 10009.50278161,
"total_value_exit_net": 10008.543498835,
"total_value": 10009.50278161,
"base_cost_quote": 1300.2950294043,
"unrealized_pnl_exit_net": -22.2106121793
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 0.3583,
"quote_asset_bal": 9177.495439566,
"total_value_mid": 10018.067239566,
"total_value_exit_net": 10017.436810716,
"total_value": 10018.067239566,
"base_cost_quote": 855.873295904,
"unrealized_pnl_exit_net": -15.931924754
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 0.3791,
"quote_asset_bal": 9128.7782810332,
"total_value_mid": 10018.1468810332,
"total_value_exit_net": 10017.4798545832,
"total_value": 10018.1468810332,
"base_cost_quote": 904.6284638758,
"unrealized_pnl_exit_net": -15.9268903258
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 0.3606,
"quote_asset_bal": 9172.3041571167,
"total_value_mid": 10020.0747571167,
"total_value_exit_net": 10019.4389291667,
"total_value": 10020.0747571167,
"base_cost_quote": 861.2436256328,
"unrealized_pnl_exit_net": -14.1088535828
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 0.3708,
"quote_asset_bal": 9148.1876604045,
"total_value_mid": 10022.1632604045,
"total_value_exit_net": 10021.5077787045,
"total_value": 10022.1632604045,
"base_cost_quote": 886.0973979922,
"unrealized_pnl_exit_net": -12.7772796923
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 0.4138,
"quote_asset_bal": 9047.7037217692,
"total_value_mid": 10020.1337217692,
"total_value_exit_net": 10019.4043992692,
"total_value": 10020.1337217692,
"base_cost_quote": 987.1870844368,
"unrealized_pnl_exit_net": -15.4864069368
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 0.4805,
"quote_asset_bal": 8891.9262599745,
"total_value_mid": 10009.0887599745,
"total_value_exit_net": 10008.2508880995,
"total_value": 10009.0887599745,
"base_cost_quote": 1143.032860171,
"unrealized_pnl_exit_net": -26.708232046
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 0.4663,
"quote_asset_bal": 8925.3669321992,
"total_value_mid": 10015.5763321992,
"total_value_exit_net": 10014.7586751492,
"total_value": 10015.5763321992,
"base_cost_quote": 1109.9709052883,
"unrealized_pnl_exit_net": -20.5791623383
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 0.4968,
"quote_asset_bal": 8854.2975473047,
"total_value_mid": 10012.8351473047,
"total_value_exit_net": 10011.9662441047,
"total_value": 10012.8351473047,
"base_cost_quote": 1181.3097443195,
"unrealized_pnl_exit_net": -23.6410475195
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 0.4608,
"quote_asset_bal": 8938.6278928117,
"total_value_mid": 10018.7430928117,
"total_value_exit_net": 10017.9330064117,
"total_value": 10018.7430928117,
"base_cost_quote": 1097.2166947993,
"unrealized_pnl_exit_net": -17.9115811993
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 0.4815,
"quote_asset_bal": 8890.3404589597,
"total_value_mid": 10014.6429589597,
"total_value_exit_net": 10013.7997320847,
"total_value": 10014.6429589597,
"base_cost_quote": 1145.6378144225,
"unrealized_pnl_exit_net": -22.1785412975
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 0.452,
"quote_asset_bal": 8960.0050052202,
"total_value_mid": 10020.8490052202,
"total_value_exit_net": 10020.0533722202,
"total_value": 10020.8490052202,
"base_cost_quote": 1076.612794455,
"unrealized_pnl_exit_net": -16.564427455
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 0.5067,
"quote_asset_bal": 8832.3439545512,
"total_value_mid": 10015.4884545512,
"total_value_exit_net": 10014.6010961762,
"total_value": 10015.4884545512,
"base_cost_quote": 1204.43661047,
"unrealized_pnl_exit_net": -22.179468845
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 0.4086,
"quote_asset_bal": 9062.8059554745,
"total_value_mid": 10026.6933554745,
"total_value_exit_net": 10025.9704399245,
"total_value": 10026.6933554745,
"base_cost_quote": 974.7888387213,
"unrealized_pnl_exit_net": -11.6243542713
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 0.3625,
"quote_asset_bal": 9171.80531114,
"total_value_mid": 10029.11781114,
"total_value_exit_net": 10028.474826765,
"total_value": 10029.11781114,
"base_cost_quote": 866.2611069235,
"unrealized_pnl_exit_net": -9.5915912985
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 0.608,
"quote_asset_bal": 8600.4489176425,
"total_value_mid": 10004.9289176425,
"total_value_exit_net": 10003.8755576425,
"total_value": 10004.9289176425,
"base_cost_quote": 1438.160363914,
"unrealized_pnl_exit_net": -34.733723914
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 0.6322,
"quote_asset_bal": 8544.6373924527,
"total_value_mid": 9999.3295924527,
"total_value_exit_net": 9998.2385733027,
"total_value": 9999.3295924527,
"base_cost_quote": 1494.0124485843,
"unrealized_pnl_exit_net": -40.4112677343
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 0.6168,
"quote_asset_bal": 8580.277412921,
"total_value_mid": 10006.319012921,
"total_value_exit_net": 10005.249481721,
"total_value": 10006.319012921,
"base_cost_quote": 1458.494142819,
"unrealized_pnl_exit_net": -33.522074019
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 0.5871,
"quote_asset_bal": 8649.218210914,
"total_value_mid": 10008.941810914,
"total_value_exit_net": 10007.922018214,
"total_value": 10008.941810914,
"base_cost_quote": 1389.8905857118,
"unrealized_pnl_exit_net": -31.1867784118
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 0.598,
"quote_asset_bal": 8624.1081908107,
"total_value_mid": 10007.8801908107,
"total_value_exit_net": 10006.8423618107,
"total_value": 10007.8801908107,
"base_cost_quote": 1415.1365179708,
"unrealized_pnl_exit_net": -32.4023469708
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 0.5566,
"quote_asset_bal": 8721.1006111582,
"total_value_mid": 10009.0730111582,
"total_value_exit_net": 10008.1070318582,
"total_value": 10009.0730111582,
"base_cost_quote": 1319.051691358,
"unrealized_pnl_exit_net": -32.045270658
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 0.6402,
"quote_asset_bal": 8528.3780105877,
"total_value_mid": 9998.9174105877,
"total_value_exit_net": 9997.8145060377,
"total_value": 9998.9174105877,
"base_cost_quote": 1511.870569137,
"unrealized_pnl_exit_net": -42.434073687
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 0.5533,
"quote_asset_bal": 8729.8521310872,
"total_value_mid": 10014.0614310872,
"total_value_exit_net": 10013.0982741122,
"total_value": 10014.0614310872,
"base_cost_quote": 1311.3630281823,
"unrealized_pnl_exit_net": -28.1168851573
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 0.527,
"quote_asset_bal": 8791.0817514212,
"total_value_mid": 10020.5727514212,
"total_value_exit_net": 10019.6506331712,
"total_value": 10020.5727514212,
"base_cost_quote": 1250.4333431658,
"unrealized_pnl_exit_net": -21.8644614158
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 0.4795,
"quote_asset_bal": 8904.174611368,
"total_value_mid": 10019.491611368,
"total_value_exit_net": 10018.655123618,
"total_value": 10019.491611368,
"base_cost_quote": 1139.1703584658,
"unrealized_pnl_exit_net": -24.6898462158
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 0.5562,
"quote_asset_bal": 8726.561085041,
"total_value_mid": 10013.607885041,
"total_value_exit_net": 10012.642599941,
"total_value": 10013.607885041,
"base_cost_quote": 1316.9998286143,
"unrealized_pnl_exit_net": -30.9183137143
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 0.5474,
"quote_asset_bal": 8747.4323301212,
"total_value_mid": 10016.8529301212,
"total_value_exit_net": 10015.9008646712,
"total_value": 10016.8529301212,
"base_cost_quote": 1296.7107832343,
"unrealized_pnl_exit_net": -28.2422486843
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 0.5387,
"quote_asset_bal": 8767.7656134827,
"total_value_mid": 10015.3948134827,
"total_value_exit_net": 10014.4590915827,
"total_value": 10015.3948134827,
"base_cost_quote": 1276.5254585865,
"unrealized_pnl_exit_net": -29.8319804865
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 0.438,
"quote_asset_bal": 9003.0079491235,
"total_value_mid": 10030.5559491235,
"total_value_exit_net": 10029.7852881235,
"total_value": 10030.5559491235,
"base_cost_quote": 1042.2454983,
"unrealized_pnl_exit_net": -15.4681593
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 0.5267,
"quote_asset_bal": 8796.7056164955,
"total_value_mid": 10019.1763164955,
"total_value_exit_net": 10018.2594634705,
"total_value": 10019.1763164955,
"base_cost_quote": 1248.6134092383,
"unrealized_pnl_exit_net": -27.0595622633
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 0.5288,
"quote_asset_bal": 8791.8781794142,
"total_value_mid": 10017.1077794142,
"total_value_exit_net": 10016.1888572142,
"total_value": 10017.1077794142,
"base_cost_quote": 1253.4954190015,
"unrealized_pnl_exit_net": -29.1847412015
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 0.5464,
"quote_asset_bal": 8751.1267827722,
"total_value_mid": 10014.9499827722,
"total_value_exit_net": 10014.0021153722,
"total_value": 10014.9499827722,
"base_cost_quote": 1294.2468156435,
"unrealized_pnl_exit_net": -31.3714830435
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 0.5727,
"quote_asset_bal": 8690.5795447785,
"total_value_mid": 10014.0892447785,
"total_value_exit_net": 10013.0966125035,
"total_value": 10014.0892447785,
"base_cost_quote": 1355.0252543103,
"unrealized_pnl_exit_net": -32.5081865853
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 0.6332,
"quote_asset_bal": 8551.2829201135,
"total_value_mid": 10008.9093201135,
"total_value_exit_net": 10007.8161003135,
"total_value": 10008.9093201135,
"base_cost_quote": 1494.428437342,
"unrealized_pnl_exit_net": -37.895257142
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 0.6739,
"quote_asset_bal": 8457.9341059422,
"total_value_mid": 10003.1868059422,
"total_value_exit_net": 10002.0278664172,
"total_value": 10003.1868059422,
"base_cost_quote": 1587.8175977203,
"unrealized_pnl_exit_net": -43.7238372453
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 0.6145,
"quote_asset_bal": 8594.8621937965,
"total_value_mid": 10013.1281937965,
"total_value_exit_net": 10012.0644942965,
"total_value": 10013.1281937965,
"base_cost_quote": 1451.2265051758,
"unrealized_pnl_exit_net": -34.0242046758
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 0.5903,
"quote_asset_bal": 8650.9198919077,
"total_value_mid": 10013.9225919077,
"total_value_exit_net": 10012.9003398827,
"total_value": 10013.9225919077,
"base_cost_quote": 1395.4118485555,
"unrealized_pnl_exit_net": -33.4314005805
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 0.6024,
"quote_asset_bal": 8622.9806231602,
"total_value_mid": 10013.3198231602,
"total_value_exit_net": 10012.2770687602,
"total_value": 10013.3198231602,
"base_cost_quote": 1423.351117303,
"unrealized_pnl_exit_net": -34.054671703
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 0.5936,
"quote_asset_bal": 8643.3407128635,
"total_value_mid": 10015.7439128635,
"total_value_exit_net": 10014.7146104635,
"total_value": 10015.7439128635,
"base_cost_quote": 1403.031649123,
"unrealized_pnl_exit_net": -31.657751523
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 0.5815,
"quote_asset_bal": 8671.3952634067,
"total_value_mid": 10016.9862634067,
"total_value_exit_net": 10015.9770701567,
"total_value": 10016.9862634067,
"base_cost_quote": 1375.0571539755,
"unrealized_pnl_exit_net": -30.4753472255
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 0.5465,
"quote_asset_bal": 8752.7394504735,
"total_value_mid": 10022.2589504735,
"total_value_exit_net": 10021.3068108485,
"total_value": 10022.2589504735,
"base_cost_quote": 1294.0788027283,
"unrealized_pnl_exit_net": -25.5114423533
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 0.4688,
"quote_asset_bal": 8934.1505476777,
"total_value_mid": 10031.6113476777,
"total_value_exit_net": 10030.7882520777,
"total_value": 10031.6113476777,
"base_cost_quote": 1113.5703328358,
"unrealized_pnl_exit_net": -16.9326284358
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 0.5048,
"quote_asset_bal": 8850.4256924437,
"total_value_mid": 10024.5904924437,
"total_value_exit_net": 10023.7098688437,
"total_value": 10024.5904924437,
"base_cost_quote": 1197.5801870063,
"unrealized_pnl_exit_net": -24.2960106063
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 0.4256,
"quote_asset_bal": 9037.3063774832,
"total_value_mid": 10039.1687774832,
"total_value_exit_net": 10038.4173806832,
"total_value": 10039.1687774832,
"base_cost_quote": 1013.274382247,
"unrealized_pnl_exit_net": -12.163379047
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 0.4385,
"quote_asset_bal": 9007.1203190925,
"total_value_mid": 10039.3493190925,
"total_value_exit_net": 10038.5751473425,
"total_value": 10039.3493190925,
"base_cost_quote": 1043.6242896185,
"unrealized_pnl_exit_net": -12.1694613685
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 0.4137,
"quote_asset_bal": 9065.890174694,
"total_value_mid": 10040.153674694,
"total_value_exit_net": 10039.422977069,
"total_value": 10040.153674694,
"base_cost_quote": 985.5251929523,
"unrealized_pnl_exit_net": -11.9923905773
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 0.4842,
"quote_asset_bal": 8900.9254740597,
"total_value_mid": 10036.3744740597,
"total_value_exit_net": 10035.5228873097,
"total_value": 10036.3744740597,
"base_cost_quote": 1150.9172910625,
"unrealized_pnl_exit_net": -16.3198778125
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 0.483,
"quote_asset_bal": 8903.8055466065,
"total_value_mid": 10035.4745466065,
"total_value_exit_net": 10034.6257948565,
"total_value": 10035.4745466065,
"base_cost_quote": 1148.1539240905,
"unrealized_pnl_exit_net": -17.3336758405
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 0.4244,
"quote_asset_bal": 9041.7105099452,
"total_value_mid": 10040.7481099452,
"total_value_exit_net": 10039.9988317452,
"total_value": 10040.7481099452,
"base_cost_quote": 1010.718442729,
"unrealized_pnl_exit_net": -12.430120929
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 0.3517,
"quote_asset_bal": 9214.0100351852,
"total_value_mid": 10054.9247351852,
"total_value_exit_net": 10054.2940491602,
"total_value": 10054.9247351852,
"base_cost_quote": 840.7113379577,
"unrealized_pnl_exit_net": -0.4273239828
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 0.34,
"quote_asset_bal": 9242.2185232832,
"total_value_mid": 10054.8185232832,
"total_value_exit_net": 10054.2090732832,
"total_value": 10054.8185232832,
"base_cost_quote": 812.7529028462,
"unrealized_pnl_exit_net": -0.7623528463
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 0.3432,
"quote_asset_bal": 9234.8552329105,
"total_value_mid": 10055.1032329105,
"total_value_exit_net": 10054.4880469105,
"total_value": 10055.1032329105,
"base_cost_quote": 820.3865397832,
"unrealized_pnl_exit_net": -0.7537257833
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 0.3333,
"quote_asset_bal": 9259.0395697457,
"total_value_mid": 10055.9598697457,
"total_value_exit_net": 10055.3621795207,
"total_value": 10055.9598697457,
"base_cost_quote": 797.5287913197,
"unrealized_pnl_exit_net": -1.2061815448
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 0.2768,
"quote_asset_bal": 9395.0514751537,
"total_value_mid": 10060.2018751537,
"total_value_exit_net": 10059.7030123537,
"total_value": 10060.2018751537,
"base_cost_quote": 662.5308487422,
"unrealized_pnl_exit_net": 2.1206884577
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 0.1638,
"quote_asset_bal": 9668.6017356493,
"total_value_mid": 10069.2565356492,
"total_value_exit_net": 10068.9560445492,
"total_value": 10069.2565356492,
"base_cost_quote": 395.3651306217,
"unrealized_pnl_exit_net": 4.9891782782
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 0.2698,
"quote_asset_bal": 9408.9397174565,
"total_value_mid": 10067.7913174565,
"total_value_exit_net": 10067.2971787565,
"total_value": 10067.7913174565,
"base_cost_quote": 657.4279564413,
"unrealized_pnl_exit_net": 0.9295048587
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 0.2844,
"quote_asset_bal": 9374.3050503145,
"total_value_mid": 10063.9750503145,
"total_value_exit_net": 10063.4577978145,
"total_value": 10063.9750503145,
"base_cost_quote": 692.530056286,
"unrealized_pnl_exit_net": -3.377308786
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 0.3739,
"quote_asset_bal": 9159.1281715035,
"total_value_mid": 10059.8532715035,
"total_value_exit_net": 10059.1777276785,
"total_value": 10059.8532715035,
"base_cost_quote": 908.485233285,
"unrealized_pnl_exit_net": -8.43567711
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 0.394,
"quote_asset_bal": 9110.967339052,
"total_value_mid": 10056.173339052,
"total_value_exit_net": 10055.464434552,
"total_value": 10056.173339052,
"base_cost_quote": 956.8129298935,
"unrealized_pnl_exit_net": -12.3158343935
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 0.3655,
"quote_asset_bal": 9179.937655192,
"total_value_mid": 10060.792655192,
"total_value_exit_net": 10060.132013942,
"total_value": 10060.792655192,
"base_cost_quote": 888.253510865,
"unrealized_pnl_exit_net": -8.059152115
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 0.3378,
"quote_asset_bal": 9249.3011207953,
"total_value_mid": 10056.9809207953,
"total_value_exit_net": 10056.3751609453,
"total_value": 10056.9809207953,
"base_cost_quote": 820.09965378,
"unrealized_pnl_exit_net": -13.02561363
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 0.3473,
"quote_asset_bal": 9226.7470936208,
"total_value_mid": 10059.9197936208,
"total_value_exit_net": 10059.2949140958,
"total_value": 10059.9197936208,
"base_cost_quote": 842.9398811125,
"unrealized_pnl_exit_net": -10.3920606375
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 0.3864,
"quote_asset_bal": 9133.077637212,
"total_value_mid": 10056.573637212,
"total_value_exit_net": 10055.881015212,
"total_value": 10056.573637212,
"base_cost_quote": 937.2236729615,
"unrealized_pnl_exit_net": -14.4202949615
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 0.5181,
"quote_asset_bal": 8820.379119527,
"total_value_mid": 10048.276119527,
"total_value_exit_net": 10047.355196777,
"total_value": 10048.276119527,
"base_cost_quote": 1250.1774884185,
"unrealized_pnl_exit_net": -23.2014111685
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 0.4102,
"quote_asset_bal": 9078.2598726735,
"total_value_mid": 10057.4072726735,
"total_value_exit_net": 10056.6729121235,
"total_value": 10057.4072726735,
"base_cost_quote": 993.628490871,
"unrealized_pnl_exit_net": -15.215451421
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 0.4507,
"quote_asset_bal": 8981.6499851423,
"total_value_mid": 10056.1187851423,
"total_value_exit_net": 10055.3129335423,
"total_value": 10056.1187851423,
"base_cost_quote": 1090.5762652095,
"unrealized_pnl_exit_net": -16.9133168095
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 0.4241,
"quote_asset_bal": 9045.362968664,
"total_value_mid": 10059.810168664,
"total_value_exit_net": 10059.049333264,
"total_value": 10059.810168664,
"base_cost_quote": 1027.1258970975,
"unrealized_pnl_exit_net": -13.4395324975
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 0.4507,
"quote_asset_bal": 8982.4343822555,
"total_value_mid": 10057.3538822555,
"total_value_exit_net": 10056.5476926305,
"total_value": 10057.3538822555,
"base_cost_quote": 1090.8161089575,
"unrealized_pnl_exit_net": -16.7027985825
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 0.373,
"quote_asset_bal": 9169.0575980368,
"total_value_mid": 10064.2575980368,
"total_value_exit_net": 10063.5861980368,
"total_value": 10064.2575980368,
"base_cost_quote": 904.8859178215,
"unrealized_pnl_exit_net": -10.3573178215
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 0.2969,
"quote_asset_bal": 9353.7192191183,
"total_value_mid": 10076.3738191183,
"total_value_exit_net": 10075.8318281683,
"total_value": 10076.3738191183,
"base_cost_quote": 722.959116978,
"unrealized_pnl_exit_net": -0.846507928
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 0.3083,
"quote_asset_bal": 9327.1680716876,
"total_value_mid": 10076.3370716876,
"total_value_exit_net": 10075.7751949376,
"total_value": 10076.3370716876,
"base_cost_quote": 750.714790132,
"unrealized_pnl_exit_net": -2.107666882
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 0.2451,
"quote_asset_bal": 9483.8754304991,
"total_value_mid": 10086.3312304991,
"total_value_exit_net": 10085.8793886491,
"total_value": 10086.3312304991,
"base_cost_quote": 600.2918244572,
"unrealized_pnl_exit_net": 1.7121336927
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 0.2081,
"quote_asset_bal": 9576.5938191321,
"total_value_mid": 10089.9765191321,
"total_value_exit_net": 10089.5914821071,
"total_value": 10089.9765191321,
"base_cost_quote": 509.753164352,
"unrealized_pnl_exit_net": 3.244498623
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 0.3199,
"quote_asset_bal": 9302.8704079433,
"total_value_mid": 10087.2652079433,
"total_value_exit_net": 10086.6769118433,
"total_value": 10087.2652079433,
"base_cost_quote": 788.9614035945,
"unrealized_pnl_exit_net": -5.1548996945
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 0.6352,
"quote_asset_bal": 8551.7693532008,
"total_value_mid": 10073.0733532008,
"total_value_exit_net": 10071.9323752008,
"total_value": 10073.0733532008,
"base_cost_quote": 1547.6201822527,
"unrealized_pnl_exit_net": -27.4571602528
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 0.6348,
"quote_asset_bal": 8554.0223265101,
"total_value_mid": 10067.3855265101,
"total_value_exit_net": 10066.2505041101,
"total_value": 10067.3855265101,
"base_cost_quote": 1547.3304110872,
"unrealized_pnl_exit_net": -35.1022334873
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 0.6999,
"quote_asset_bal": 8399.2602206243,
"total_value_mid": 10060.8228206243,
"total_value_exit_net": 10059.5766486743,
"total_value": 10060.8228206243,
"base_cost_quote": 1702.4289938467,
"unrealized_pnl_exit_net": -42.1125657968
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 0.5379,
"quote_asset_bal": 8788.7758316421,
"total_value_mid": 10088.8801316421,
"total_value_exit_net": 10087.9050534171,
"total_value": 10088.8801316421,
"base_cost_quote": 1314.7551243477,
"unrealized_pnl_exit_net": -15.6259025728
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 0.5431,
"quote_asset_bal": 8776.2364997911,
"total_value_mid": 10089.9953997911,
"total_value_exit_net": 10089.0100806161,
"total_value": 10089.9953997911,
"base_cost_quote": 1327.3350322077,
"unrealized_pnl_exit_net": -14.5614513828
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 0.521,
"quote_asset_bal": 8829.8556777321,
"total_value_mid": 10094.3226777321,
"total_value_exit_net": 10093.3743274821,
"total_value": 10094.3226777321,
"base_cost_quote": 1273.9006464527,
"unrealized_pnl_exit_net": -10.3819967028
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 0.478,
"quote_asset_bal": 8934.3940684918,
"total_value_mid": 10096.4120684918,
"total_value_exit_net": 10095.5405549918,
"total_value": 10096.4120684918,
"base_cost_quote": 1169.9695625573,
"unrealized_pnl_exit_net": -8.8230760573
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 0.3385,
"quote_asset_bal": 9276.2179627726,
"total_value_mid": 10110.6204627726,
"total_value_exit_net": 10109.9946608976,
"total_value": 10110.6204627726,
"base_cost_quote": 831.0555955782,
"unrealized_pnl_exit_net": 2.7211025467
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 0.3225,
"quote_asset_bal": 9316.7149977545,
"total_value_mid": 10108.1299977545,
"total_value_exit_net": 10107.5364365045,
"total_value": 10108.1299977545,
"base_cost_quote": 792.3800176335,
"unrealized_pnl_exit_net": -1.5585788835
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 0.3824,
"quote_asset_bal": 9169.9273751685,
"total_value_mid": 10104.1305751685,
"total_value_exit_net": 10103.4299227685,
"total_value": 10104.1305751685,
"base_cost_quote": 939.597554038,
"unrealized_pnl_exit_net": -6.095006438
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 0.3802,
"quote_asset_bal": 9175.7981554305,
"total_value_mid": 10107.6683554305,
"total_value_exit_net": 10106.9694527805,
"total_value": 10107.6683554305,
"base_cost_quote": 934.2798697638,
"unrealized_pnl_exit_net": -3.1085724138
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 0.2028,
"quote_asset_bal": 9615.1567702653,
"total_value_mid": 10120.3315702653,
"total_value_exit_net": 10119.9526891653,
"total_value": 10120.3315702653,
"base_cost_quote": 498.7365710992,
"unrealized_pnl_exit_net": 6.0593478007
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 0.1778,
"quote_asset_bal": 9678.1631317356,
"total_value_mid": 10125.6857317356,
"total_value_exit_net": 10125.3500897856,
"total_value": 10125.6857317356,
"base_cost_quote": 440.80979958,
"unrealized_pnl_exit_net": 6.37715847
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 0.2217,
"quote_asset_bal": 9568.0499262251,
"total_value_mid": 10123.4084262251,
"total_value_exit_net": 10122.9919073501,
"total_value": 10123.4084262251,
"base_cost_quote": 551.0976544807,
"unrealized_pnl_exit_net": 3.8443266442
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 0.2383,
"quote_asset_bal": 9527.1123711371,
"total_value_mid": 10125.0070711371,
"total_value_exit_net": 10124.5586501121,
"total_value": 10125.0070711371,
"base_cost_quote": 592.5389041247,
"unrealized_pnl_exit_net": 4.9073748502
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 0.2318,
"quote_asset_bal": 9543.7724243916,
"total_value_mid": 10124.6632243916,
"total_value_exit_net": 10124.2275562916,
"total_value": 10124.6632243916,
"base_cost_quote": 576.3903988225,
"unrealized_pnl_exit_net": 4.0647330775
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 0.245,
"quote_asset_bal": 9511.0995463248,
"total_value_mid": 10124.0895463248,
"total_value_exit_net": 10123.6298038248,
"total_value": 10124.0895463248,
"base_cost_quote": 609.3942801827,
"unrealized_pnl_exit_net": 3.1359773172
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 0.3336,
"quote_asset_bal": 9290.5255786711,
"total_value_mid": 10119.8551786711,
"total_value_exit_net": 10119.2331814711,
"total_value": 10119.8551786711,
"base_cost_quote": 830.049642679,
"unrealized_pnl_exit_net": -1.342039879
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 0.2148,
"quote_asset_bal": 9588.0275430118,
"total_value_mid": 10127.3903430118,
"total_value_exit_net": 10126.9858209118,
"total_value": 10127.3903430118,
"base_cost_quote": 533.780975705,
"unrealized_pnl_exit_net": 5.177302195
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 0.2038,
"quote_asset_bal": 9615.7453783093,
"total_value_mid": 10127.2833783093,
"total_value_exit_net": 10126.8997248093,
"total_value": 10127.2833783093,
"base_cost_quote": 506.1948516175,
"unrealized_pnl_exit_net": 4.9594948825
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 0.2017,
"quote_asset_bal": 9621.3417300716,
"total_value_mid": 10128.0121300716,
"total_value_exit_net": 10127.6321272716,
"total_value": 10128.0121300716,
"base_cost_quote": 500.9641725483,
"unrealized_pnl_exit_net": 5.3262246517
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 0.1937,
"quote_asset_bal": 9641.6565990316,
"total_value_mid": 10127.4561990316,
"total_value_exit_net": 10127.0918493316,
"total_value": 10127.4561990316,
"base_cost_quote": 480.8500982982,
"unrealized_pnl_exit_net": 4.5851520017
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 0.213,
"quote_asset_bal": 9593.8802907356,
"total_value_mid": 10128.0842907356,
"total_value_exit_net": 10127.6836377356,
"total_value": 10128.0842907356,
"base_cost_quote": 529.0916993835,
"unrealized_pnl_exit_net": 4.7116476165
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 0.256,
"quote_asset_bal": 9486.7566163323,
"total_value_mid": 10126.5006163323,
"total_value_exit_net": 10126.0208083323,
"total_value": 10126.5006163323,
"base_cost_quote": 636.4778736547,
"unrealized_pnl_exit_net": 2.7863183452
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 0.2141,
"quote_asset_bal": 9591.80978686,
"total_value_mid": 10128.98668686,
"total_value_exit_net": 10128.583804185,
"total_value": 10128.98668686,
"base_cost_quote": 531.8835797245,
"unrealized_pnl_exit_net": 4.8904376005
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 0.262,
"quote_asset_bal": 9472.0678339605,
"total_value_mid": 10126.0198339605,
"total_value_exit_net": 10125.5293699605,
"total_value": 10126.0198339605,
"base_cost_quote": 651.6661883537,
"unrealized_pnl_exit_net": 1.7953476462
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 0.2588,
"quote_asset_bal": 9480.0535519203,
"total_value_mid": 10126.0183519203,
"total_value_exit_net": 10125.5338783203,
"total_value": 10126.0183519203,
"base_cost_quote": 643.720196326,
"unrealized_pnl_exit_net": 1.760130074
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 0.2478,
"quote_asset_bal": 9507.9452752418,
"total_value_mid": 10125.7106752418,
"total_value_exit_net": 10125.2473511918,
"total_value": 10125.7106752418,
"base_cost_quote": 616.1379161192,
"unrealized_pnl_exit_net": 1.1641598307
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 0.2456,
"quote_asset_bal": 9514.4252779428,
"total_value_mid": 10127.6884779428,
"total_value_exit_net": 10127.2285305428,
"total_value": 10127.6884779428,
"base_cost_quote": 610.4988289735,
"unrealized_pnl_exit_net": 2.3044236265
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 0.2766,
"quote_asset_bal": 9437.387542104,
"total_value_mid": 10126.951342104,
"total_value_exit_net": 10126.434169254,
"total_value": 10126.951342104,
"base_cost_quote": 687.726868595,
"unrealized_pnl_exit_net": 1.319758555
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 0.2581,
"quote_asset_bal": 9484.1934442393,
"total_value_mid": 10129.7015442393,
"total_value_exit_net": 10129.2174131643,
"total_value": 10129.7015442393,
"base_cost_quote": 641.611055656,
"unrealized_pnl_exit_net": 3.412913269
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 0.2229,
"quote_asset_bal": 9572.376105187,
"total_value_mid": 10131.855105187,
"total_value_exit_net": 10131.435495937,
"total_value": 10131.855105187,
"base_cost_quote": 554.0222232635,
"unrealized_pnl_exit_net": 5.0371674865
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 0.2591,
"quote_asset_bal": 9481.6710448933,
"total_value_mid": 10129.9392448933,
"total_value_exit_net": 10129.4530437433,
"total_value": 10129.9392448933,
"base_cost_quote": 645.8925853967,
"unrealized_pnl_exit_net": 1.8894134532
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 0.276,
"quote_asset_bal": 9439.304056496,
"total_value_mid": 10127.372056496,
"total_value_exit_net": 10126.856005496,
"total_value": 10127.372056496,
"base_cost_quote": 688.4056272825,
"unrealized_pnl_exit_net": -0.8536782825
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 0.274,
"quote_asset_bal": 9444.3601476225,
"total_value_mid": 10128.5381476225,
"total_value_exit_net": 10128.0250141225,
"total_value": 10128.5381476225,
"base_cost_quote": 683.3904887475,
"unrealized_pnl_exit_net": 0.2743777525
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 0.2446,
"quote_asset_bal": 9518.2005101733,
"total_value_mid": 10131.4127101733,
"total_value_exit_net": 10130.9528010233,
"total_value": 10131.4127101733,
"base_cost_quote": 609.798069798,
"unrealized_pnl_exit_net": 2.954221052
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 0.2285,
"quote_asset_bal": 9558.8590629605,
"total_value_mid": 10134.2220629605,
"total_value_exit_net": 10133.7905407105,
"total_value": 10134.2220629605,
"base_cost_quote": 569.4171077737,
"unrealized_pnl_exit_net": 5.5143699762
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 0.2375,
"quote_asset_bal": 9536.489401253,
"total_value_mid": 10133.326901253,
"total_value_exit_net": 10132.879273128,
"total_value": 10133.326901253,
"base_cost_quote": 591.9924766113,
"unrealized_pnl_exit_net": 4.3973952637
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 0.1822,
"quote_asset_bal": 9675.4215153853,
"total_value_mid": 10140.5781153853,
"total_value_exit_net": 10140.2292479353,
"total_value": 10140.5781153853,
"base_cost_quote": 456.5527689583,
"unrealized_pnl_exit_net": 8.2549635917
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 0.1808,
"quote_asset_bal": 9678.4462026415,
"total_value_mid": 10144.5486026415,
"total_value_exit_net": 10144.1990258415,
"total_value": 10144.5486026415,
"base_cost_quote": 455.624530301,
"unrealized_pnl_exit_net": 10.128292899
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 0.1901,
"quote_asset_bal": 9654.540579476,
"total_value_mid": 10144.428279476,
"total_value_exit_net": 10144.060863701,
"total_value": 10144.428279476,
"base_cost_quote": 478.7949651035,
"unrealized_pnl_exit_net": 10.7253191215
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 0.1463,
"quote_asset_bal": 9768.0413660463,
"total_value_mid": 10145.3490660463,
"total_value_exit_net": 10145.0660852713,
"total_value": 10145.3490660463,
"base_cost_quote": 366.0912236458,
"unrealized_pnl_exit_net": 10.9334955792
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 0.1965,
"quote_asset_bal": 9637.8266940008,
"total_value_mid": 10147.1546940008,
"total_value_exit_net": 10146.7726980008,
"total_value": 10147.1546940008,
"base_cost_quote": 495.276050654,
"unrealized_pnl_exit_net": 13.669953346
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 0.286,
"quote_asset_bal": 9406.55050663,
"total_value_mid": 10145.00250663,
"total_value_exit_net": 10144.44866763,
"total_value": 10145.00250663,
"base_cost_quote": 725.4645816682,
"unrealized_pnl_exit_net": 12.4335793317
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 0.2925,
"quote_asset_bal": 9390.892386645,
"total_value_mid": 10144.957386645,
"total_value_exit_net": 10144.391837895,
"total_value": 10144.957386645,
"base_cost_quote": 737.8626282345,
"unrealized_pnl_exit_net": 15.6368230155
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 0.2499,
"quote_asset_bal": 9501.702005737,
"total_value_mid": 10148.943005737,
"total_value_exit_net": 10148.457574987,
"total_value": 10148.943005737,
"base_cost_quote": 625.0170304642,
"unrealized_pnl_exit_net": 21.7385387857
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 0.1818,
"quote_asset_bal": 9678.7747614701,
"total_value_mid": 10155.9997614701,
"total_value_exit_net": 10155.6418427201,
"total_value": 10155.9997614701,
"base_cost_quote": 449.2862301385,
"unrealized_pnl_exit_net": 27.5808511115
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 0.1982,
"quote_asset_bal": 9635.6571734888,
"total_value_mid": 10157.1213734888,
"total_value_exit_net": 10156.7302753388,
"total_value": 10157.1213734888,
"base_cost_quote": 492.8007565748,
"unrealized_pnl_exit_net": 28.2723452752
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 0.2117,
"quote_asset_bal": 9600.3680935821,
"total_value_mid": 10155.4454935821,
"total_value_exit_net": 10155.0291855321,
"total_value": 10155.4454935821,
"base_cost_quote": 528.2248167088,
"unrealized_pnl_exit_net": 26.4362752412
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 0.1893,
"quote_asset_bal": 9659.4238211543,
"total_value_mid": 10156.7149211543,
"total_value_exit_net": 10156.3419528293,
"total_value": 10156.7149211543,
"base_cost_quote": 469.8123101613,
"unrealized_pnl_exit_net": 27.1058215137
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 0.1941,
"quote_asset_bal": 9646.1216022765,
"total_value_mid": 10160.8748022765,
"total_value_exit_net": 10160.4887373765,
"total_value": 10160.8748022765,
"base_cost_quote": 486.5389117107,
"unrealized_pnl_exit_net": 27.8282233892
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 0.185,
"quote_asset_bal": 9670.3942539508,
"total_value_mid": 10161.1992539508,
"total_value_exit_net": 10160.8311502008,
"total_value": 10161.1992539508,
"base_cost_quote": 463.3124499195,
"unrealized_pnl_exit_net": 27.1244463305
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 0.2236,
"quote_asset_bal": 9567.2387769283,
"total_value_mid": 10162.0147769283,
"total_value_exit_net": 10161.5686949283,
"total_value": 10162.0147769283,
"base_cost_quote": 567.8132717982,
"unrealized_pnl_exit_net": 26.5166462017
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 0.2524,
"quote_asset_bal": 9490.981826982,
"total_value_mid": 10160.094226982,
"total_value_exit_net": 10159.592392682,
"total_value": 10160.094226982,
"base_cost_quote": 644.3178972658,
"unrealized_pnl_exit_net": 24.2926684342
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 0.2418,
"quote_asset_bal": 9519.1663587175,
"total_value_mid": 10162.1125587175,
"total_value_exit_net": 10161.6303490675,
"total_value": 10162.1125587175,
"base_cost_quote": 616.176846295,
"unrealized_pnl_exit_net": 26.287144055
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 0.2359,
"quote_asset_bal": 9535.006132172,
"total_value_mid": 10162.971932172,
"total_value_exit_net": 10162.500957822,
"total_value": 10162.971932172,
"base_cost_quote": 600.5680895007,
"unrealized_pnl_exit_net": 26.9267361492
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 0.3188,
"quote_asset_bal": 9316.1849884683,
"total_value_mid": 10156.5417884683,
"total_value_exit_net": 10155.9115208683,
"total_value": 10156.5417884683,
"base_cost_quote": 819.7759161587,
"unrealized_pnl_exit_net": 19.9506162413
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 0.1914,
"quote_asset_bal": 9655.6522868093,
"total_value_mid": 10168.2214868093,
"total_value_exit_net": 10167.8370599093,
"total_value": 10168.2214868093,
"base_cost_quote": 485.393752485,
"unrealized_pnl_exit_net": 26.791020615
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 0.2724,
"quote_asset_bal": 9439.3947035685,
"total_value_mid": 10166.4303035685,
"total_value_exit_net": 10165.8850268685,
"total_value": 10166.4303035685,
"base_cost_quote": 702.2354528783,
"unrealized_pnl_exit_net": 24.2548704217
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 0.28,
"quote_asset_bal": 9419.5525907628,
"total_value_mid": 10166.0325907628,
"total_value_exit_net": 10165.4727307628,
"total_value": 10166.0325907628,
"base_cost_quote": 722.5020574403,
"unrealized_pnl_exit_net": 23.4180825597
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 0.2928,
"quote_asset_bal": 9386.8062759103,
"total_value_mid": 10165.9470759103,
"total_value_exit_net": 10165.3627203103,
"total_value": 10165.9470759103,
"base_cost_quote": 756.4558026645,
"unrealized_pnl_exit_net": 22.1006417355
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 0.2033,
"quote_asset_bal": 9628.1356566155,
"total_value_mid": 10173.7928566155,
"total_value_exit_net": 10173.3836137155,
"total_value": 10173.7928566155,
"base_cost_quote": 518.5204538912,
"unrealized_pnl_exit_net": 26.7275032087
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 0.2109,
"quote_asset_bal": 9607.8852880738,
"total_value_mid": 10172.6754880738,
"total_value_exit_net": 10172.2518954238,
"total_value": 10172.6754880738,
"base_cost_quote": 538.8632915852,
"unrealized_pnl_exit_net": 25.5033157647
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 0.2856,
"quote_asset_bal": 9408.810104772,
"total_value_mid": 10167.649304772,
"total_value_exit_net": 10167.080175372,
"total_value": 10167.649304772,
"base_cost_quote": 738.0896703885,
"unrealized_pnl_exit_net": 20.1804002115
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 0.4219,
"quote_asset_bal": 9049.2911527443,
"total_value_mid": 10160.1538527443,
"total_value_exit_net": 10159.3207057193,
"total_value": 10160.1538527443,
"base_cost_quote": 1097.8971637685,
"unrealized_pnl_exit_net": 12.1323892065
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 0.4518,
"quote_asset_bal": 8970.9569597138,
"total_value_mid": 10155.5765597138,
"total_value_exit_net": 10154.6880950138,
"total_value": 10155.5765597138,
"base_cost_quote": 1176.4986787245,
"unrealized_pnl_exit_net": 7.2324565755
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 0.3891,
"quote_asset_bal": 9136.2583610455,
"total_value_mid": 10165.0387610455,
"total_value_exit_net": 10164.2671757455,
"total_value": 10165.0387610455,
"base_cost_quote": 1011.6166658915,
"unrealized_pnl_exit_net": 16.3921488085
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 0.2936,
"quote_asset_bal": 9390.1051790483,
"total_value_mid": 10174.0171790483,
"total_value_exit_net": 10173.4292450483,
"total_value": 10174.0171790483,
"base_cost_quote": 758.766940719,
"unrealized_pnl_exit_net": 24.557125281
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 0.2964,
"quote_asset_bal": 9382.7986486585,
"total_value_mid": 10170.9262486585,
"total_value_exit_net": 10170.3351529585,
"total_value": 10170.9262486585,
"base_cost_quote": 766.2549915483,
"unrealized_pnl_exit_net": 21.2815127517
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 0.2859,
"quote_asset_bal": 9410.9154447315,
"total_value_mid": 10171.6953447315,
"total_value_exit_net": 10171.1247598065,
"total_value": 10171.6953447315,
"base_cost_quote": 738.2867060545,
"unrealized_pnl_exit_net": 21.9226090205
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 0.2964,
"quote_asset_bal": 9383.0120465308,
"total_value_mid": 10171.4360465308,
"total_value_exit_net": 10170.8447285308,
"total_value": 10171.4360465308,
"base_cost_quote": 766.2702029483,
"unrealized_pnl_exit_net": 21.5624790517
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 0.287,
"quote_asset_bal": 9408.277976127,
"total_value_mid": 10174.854976127,
"total_value_exit_net": 10174.280043377,
"total_value": 10174.854976127,
"base_cost_quote": 741.1927519555,
"unrealized_pnl_exit_net": 24.8093152945
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 0.2264,
"quote_asset_bal": 9570.5829212003,
"total_value_mid": 10176.8821212003,
"total_value_exit_net": 10176.4273968003,
"total_value": 10176.8821212003,
"base_cost_quote": 579.7906110705,
"unrealized_pnl_exit_net": 26.0538645295
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 0.193,
"quote_asset_bal": 9660.10134412,
"total_value_mid": 10182.16634412,
"total_value_exit_net": 10181.77479537,
"total_value": 10182.16634412,
"base_cost_quote": 491.8808671747,
"unrealized_pnl_exit_net": 29.7925840752
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 0.1507,
"quote_asset_bal": 9775.073920745,
"total_value_mid": 10186.032820745,
"total_value_exit_net": 10185.72460157,
"total_value": 10186.032820745,
"base_cost_quote": 381.271423263,
"unrealized_pnl_exit_net": 29.379257562
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 0.1935,
"quote_asset_bal": 9657.5697212875,
"total_value_mid": 10187.3727212875,
"total_value_exit_net": 10186.9753690375,
"total_value": 10187.3727212875,
"base_cost_quote": 500.0565353305,
"unrealized_pnl_exit_net": 29.3491124195
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 0.1795,
"quote_asset_bal": 9696.0462629225,
"total_value_mid": 10188.0557629225,
"total_value_exit_net": 10187.6867557975,
"total_value": 10188.0557629225,
"base_cost_quote": 461.844219572,
"unrealized_pnl_exit_net": 29.796273303
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 0.2082,
"quote_asset_bal": 9617.455386956,
"total_value_mid": 10186.882386956,
"total_value_exit_net": 10186.455316706,
"total_value": 10186.882386956,
"base_cost_quote": 540.992932619,
"unrealized_pnl_exit_net": 28.006997131
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 0.2035,
"quote_asset_bal": 9629.7220833398,
"total_value_mid": 10191.3820833398,
"total_value_exit_net": 10190.9608383398,
"total_value": 10191.3820833398,
"base_cost_quote": 530.4359938487,
"unrealized_pnl_exit_net": 30.8027611512
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 0.2741,
"quote_asset_bal": 9436.3177440848,
"total_value_mid": 10187.3517440848,
"total_value_exit_net": 10186.7884685848,
"total_value": 10187.3517440848,
"base_cost_quote": 726.367399274,
"unrealized_pnl_exit_net": 24.103325226
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 0.2629,
"quote_asset_bal": 9467.1330326705,
"total_value_mid": 10191.6854326705,
"total_value_exit_net": 10191.1420183705,
"total_value": 10191.6854326705,
"base_cost_quote": 696.1919576538,
"unrealized_pnl_exit_net": 27.8170280462
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 0.2146,
"quote_asset_bal": 9600.6948837688,
"total_value_mid": 10193.8492837688,
"total_value_exit_net": 10193.4044179688,
"total_value": 10193.8492837688,
"base_cost_quote": 563.218084991,
"unrealized_pnl_exit_net": 29.491449209
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 0.2248,
"quote_asset_bal": 9572.6592896588,
"total_value_mid": 10193.3320896588,
"total_value_exit_net": 10192.8665850588,
"total_value": 10193.3320896588,
"base_cost_quote": 591.3605980575,
"unrealized_pnl_exit_net": 28.8466973425
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 0.2321,
"quote_asset_bal": 9552.618370002,
"total_value_mid": 10190.893370002,
"total_value_exit_net": 10190.414663752,
"total_value": 10190.893370002,
"base_cost_quote": 611.5559642307,
"unrealized_pnl_exit_net": 26.2403295192
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 0.2395,
"quote_asset_bal": 9532.3588989045,
"total_value_mid": 10191.7023989045,
"total_value_exit_net": 10191.2078912795,
"total_value": 10191.7023989045,
"base_cost_quote": 631.9507988933,
"unrealized_pnl_exit_net": 26.8981934817
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 0.2098,
"quote_asset_bal": 9614.7397144155,
"total_value_mid": 10195.0465144155,
"total_value_exit_net": 10194.6112843155,
"total_value": 10195.0465144155,
"base_cost_quote": 550.0889765392,
"unrealized_pnl_exit_net": 29.7825933607
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 0.1762,
"quote_asset_bal": 9707.8426556773,
"total_value_mid": 10198.5596556773,
"total_value_exit_net": 10198.1916179273,
"total_value": 10198.5596556773,
"base_cost_quote": 457.8049473882,
"unrealized_pnl_exit_net": 32.5440148617
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 0.243,
"quote_asset_bal": 9523.1180574793,
"total_value_mid": 10192.3400574793,
"total_value_exit_net": 10191.8381409793,
"total_value": 10192.3400574793,
"base_cost_quote": 642.6384406173,
"unrealized_pnl_exit_net": 26.0816428827
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 0.285,
"quote_asset_bal": 9407.75373758,
"total_value_mid": 10190.07873758,
"total_value_exit_net": 10189.49199383,
"total_value": 10190.07873758,
"base_cost_quote": 758.043582607,
"unrealized_pnl_exit_net": 23.694673643
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 0.2702,
"quote_asset_bal": 9448.4549147855,
"total_value_mid": 10191.7751147855,
"total_value_exit_net": 10191.2176246355,
"total_value": 10191.7751147855,
"base_cost_quote": 717.398369543,
"unrealized_pnl_exit_net": 25.364340307
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 0.2972,
"quote_asset_bal": 9374.4416176243,
"total_value_mid": 10190.5528176243,
"total_value_exit_net": 10189.9407342243,
"total_value": 10190.5528176243,
"base_cost_quote": 791.5981106428,
"unrealized_pnl_exit_net": 23.9010059573
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 0.2972,
"quote_asset_bal": 9374.4729785893,
"total_value_mid": 10189.6925785893,
"total_value_exit_net": 10189.0811638893,
"total_value": 10189.6925785893,
"base_cost_quote": 791.6073175428,
"unrealized_pnl_exit_net": 23.0008677573
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 0.3223,
"quote_asset_bal": 9305.777701157,
"total_value_mid": 10187.590501157,
"total_value_exit_net": 10186.929141557,
"total_value": 10187.590501157,
"base_cost_quote": 860.396193535,
"unrealized_pnl_exit_net": 20.755246865
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 0.6587,
"quote_asset_bal": 8399.487717457,
"total_value_mid": 10147.677517457,
"total_value_exit_net": 10146.366375107,
"total_value": 10147.677517457,
"base_cost_quote": 1767.4933925745,
"unrealized_pnl_exit_net": -20.6147349245
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 0.5458,
"quote_asset_bal": 8702.9132463532,
"total_value_mid": 10180.9396463533,
"total_value_exit_net": 10179.8311265533,
"total_value": 10180.9396463533,
"base_cost_quote": 1465.4474849172,
"unrealized_pnl_exit_net": 11.4703952828
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 0.6136,
"quote_asset_bal": 8521.4195069458,
"total_value_mid": 10160.3451069458,
"total_value_exit_net": 10159.1159127458,
"total_value": 10160.3451069458,
"base_cost_quote": 1647.459664747,
"unrealized_pnl_exit_net": -9.763258947
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 0.6395,
"quote_asset_bal": 8452.425646862,
"total_value_mid": 10156.053646862,
"total_value_exit_net": 10154.775925862,
"total_value": 10156.053646862,
"base_cost_quote": 1716.5597449675,
"unrealized_pnl_exit_net": -14.2094659675
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 0.6941,
"quote_asset_bal": 8307.5378806118,
"total_value_mid": 10156.6202806118,
"total_value_exit_net": 10155.2334688118,
"total_value": 10156.6202806118,
"base_cost_quote": 1861.735767384,
"unrealized_pnl_exit_net": -14.040179184
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 0.9621,
"quote_asset_bal": 7605.07167034,
"total_value_mid": 10114.22847034,
"total_value_exit_net": 10112.34660274,
"total_value": 10114.22847034,
"base_cost_quote": 2562.933715717,
"unrealized_pnl_exit_net": -55.658783317
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 1.078,
"quote_asset_bal": 7312.6138002317,
"total_value_mid": 10071.2158002318,
"total_value_exit_net": 10069.1468487318,
"total_value": 10071.2158002318,
"base_cost_quote": 2848.8122829563,
"unrealized_pnl_exit_net": -92.2792344562
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 1.0749,
"quote_asset_bal": 7322.0985002387,
"total_value_mid": 10077.0672002388,
"total_value_exit_net": 10075.0009737138,
"total_value": 10077.0672002388,
"base_cost_quote": 2831.0091566183,
"unrealized_pnl_exit_net": -78.1066831432
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 1.123,
"quote_asset_bal": 7199.9458762263,
"total_value_mid": 10072.5798762263,
"total_value_exit_net": 10070.4254007263,
"total_value": 10072.5798762263,
"base_cost_quote": 2948.1149941738,
"unrealized_pnl_exit_net": -77.6354696738
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 1.0743,
"quote_asset_bal": 7325.628629987,
"total_value_mid": 10086.579629987,
"total_value_exit_net": 10084.508916737,
"total_value": 10086.579629987,
"base_cost_quote": 2818.3986818503,
"unrealized_pnl_exit_net": -59.5183951002
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 1.1149,
"quote_asset_bal": 7222.3846915585,
"total_value_mid": 10078.7584915585,
"total_value_exit_net": 10076.6162112085,
"total_value": 10078.7584915585,
"base_cost_quote": 2917.611828945,
"unrealized_pnl_exit_net": -63.380309295
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 1.0659,
"quote_asset_bal": 7349.0350086155,
"total_value_mid": 10097.9911086155,
"total_value_exit_net": 10095.9293915405,
"total_value": 10097.9911086155,
"base_cost_quote": 2787.852422325,
"unrealized_pnl_exit_net": -40.9580394
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 0.9709,
"quote_asset_bal": 7595.869077328,
"total_value_mid": 10140.597977328,
"total_value_exit_net": 10138.689430653,
"total_value": 10140.597977328,
"base_cost_quote": 2540.4074957135,
"unrealized_pnl_exit_net": 2.4128576115
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 0.8695,
"quote_asset_bal": 7863.1366449175,
"total_value_mid": 10161.2251449175,
"total_value_exit_net": 10159.5015785425,
"total_value": 10161.2251449175,
"base_cost_quote": 2275.2072966275,
"unrealized_pnl_exit_net": 21.1576369975
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 0.819,
"quote_asset_bal": 7997.3666649008,
"total_value_mid": 10168.5356649008,
"total_value_exit_net": 10166.9072881508,
"total_value": 10168.5356649008,
"base_cost_quote": 2142.1525173303,
"unrealized_pnl_exit_net": 27.3881059198
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 0.6971,
"quote_asset_bal": 8323.2022253115,
"total_value_mid": 10183.7621253115,
"total_value_exit_net": 10182.3667053865,
"total_value": 10183.7621253115,
"base_cost_quote": 1819.6945981375,
"unrealized_pnl_exit_net": 39.4698819375
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 0.5243,
"quote_asset_bal": 8790.3166482975,
"total_value_mid": 10216.9369482975,
"total_value_exit_net": 10215.8669830725,
"total_value": 10216.9369482975,
"base_cost_quote": 1357.7140924275,
"unrealized_pnl_exit_net": 67.8362423475
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 0.4516,
"quote_asset_bal": 8989.3673150663,
"total_value_mid": 10218.6225150663,
"total_value_exit_net": 10217.7005736663,
"total_value": 10218.6225150663,
"base_cost_quote": 1161.7464498447,
"unrealized_pnl_exit_net": 66.5868087553
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 0.4563,
"quote_asset_bal": 8976.9719772108,
"total_value_mid": 10222.6709772108,
"total_value_exit_net": 10221.7367029608,
"total_value": 10222.6709772108,
"base_cost_quote": 1174.5318687225,
"unrealized_pnl_exit_net": 70.2328570275
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 0.8004,
"quote_asset_bal": 8058.3071946355,
"total_value_mid": 10163.3591946355,
"total_value_exit_net": 10161.7804056355,
"total_value": 10163.3591946355,
"base_cost_quote": 2093.9098654575,
"unrealized_pnl_exit_net": 9.5633455425
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 0.7967,
"quote_asset_bal": 8069.153383377,
"total_value_mid": 10170.051283377,
"total_value_exit_net": 10168.475609952,
"total_value": 10170.051283377,
"base_cost_quote": 2084.0760666357,
"unrealized_pnl_exit_net": 15.2461599393
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 0.7562,
"quote_asset_bal": 8177.4669268655,
"total_value_mid": 10177.6159268655,
"total_value_exit_net": 10176.1158151155,
"total_value": 10177.6159268655,
"base_cost_quote": 1977.2000617048,
"unrealized_pnl_exit_net": 21.4488265453
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 0.7736,
"quote_asset_bal": 8132.0323295875,
"total_value_mid": 10172.0155295875,
"total_value_exit_net": 10170.4855421875,
"total_value": 10172.0155295875,
"base_cost_quote": 2023.0843911613,
"unrealized_pnl_exit_net": 15.3688214388
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 0.7697,
"quote_asset_bal": 8142.8165260968,
"total_value_mid": 10173.2851260968,
"total_value_exit_net": 10171.7622746468,
"total_value": 10173.2851260968,
"base_cost_quote": 2012.939108902,
"unrealized_pnl_exit_net": 16.006639648
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 0.7697,
"quote_asset_bal": 8142.9228046413,
"total_value_mid": 10172.6217046413,
"total_value_exit_net": 10171.0994304663,
"total_value": 10172.6217046413,
"base_cost_quote": 2012.968931252,
"unrealized_pnl_exit_net": 15.207694573
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 0.7273,
"quote_asset_bal": 8255.4161939468,
"total_value_mid": 10186.3976939468,
"total_value_exit_net": 10184.9494578218,
"total_value": 10186.3976939468,
"base_cost_quote": 1900.769973098,
"unrealized_pnl_exit_net": 28.763290777
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 0.79,
"quote_asset_bal": 8089.9319387678,
"total_value_mid": 10173.1619387678,
"total_value_exit_net": 10171.5995162678,
"total_value": 10173.1619387678,
"base_cost_quote": 2066.403969496,
"unrealized_pnl_exit_net": 15.263608004
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 0.7852,
"quote_asset_bal": 8102.6456367118,
"total_value_mid": 10171.6476367118,
"total_value_exit_net": 10170.0958852118,
"total_value": 10171.6476367118,
"base_cost_quote": 2053.743457228,
"unrealized_pnl_exit_net": 13.706791272
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 0.79,
"quote_asset_bal": 8090.0104023238,
"total_value_mid": 10173.2404023238,
"total_value_exit_net": 10171.6779798238,
"total_value": 10173.2404023238,
"base_cost_quote": 2066.403969496,
"unrealized_pnl_exit_net": 15.263608004
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 0.8336,
"quote_asset_bal": 7975.548753799,
"total_value_mid": 10163.748753799,
"total_value_exit_net": 10162.107603799,
"total_value": 10163.748753799,
"base_cost_quote": 2181.013994595,
"unrealized_pnl_exit_net": 5.544855405
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 0.8368,
"quote_asset_bal": 7967.4951232178,
"total_value_mid": 10165.7687232178,
"total_value_exit_net": 10164.1200180178,
"total_value": 10165.7687232178,
"base_cost_quote": 2189.3570221762,
"unrealized_pnl_exit_net": 7.2678726238
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 0.8474,
"quote_asset_bal": 7939.6745013888,
"total_value_mid": 10163.2521013888,
"total_value_exit_net": 10161.5844181888,
"total_value": 10163.2521013888,
"base_cost_quote": 2217.1776440052,
"unrealized_pnl_exit_net": 4.7322727948
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 0.8349,
"quote_asset_bal": 7972.5992142805,
"total_value_mid": 10167.5513142805,
"total_value_exit_net": 10165.9051002055,
"total_value": 10167.5513142805,
"base_cost_quote": 2184.3462889427,
"unrealized_pnl_exit_net": 8.9595969823
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 0.7516,
"quote_asset_bal": 8193.3183504705,
"total_value_mid": 10183.5551504705,
"total_value_exit_net": 10182.0624728705,
"total_value": 10183.5551504705,
"base_cost_quote": 1964.9598043918,
"unrealized_pnl_exit_net": 23.7843180083
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 0.4456,
"quote_asset_bal": 9023.9068899903,
"total_value_mid": 10219.8972899903,
"total_value_exit_net": 10219.0002971903,
"total_value": 10219.8972899903,
"base_cost_quote": 1142.0824328848,
"unrealized_pnl_exit_net": 53.0109743153
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 0.4267,
"quote_asset_bal": 9074.933693984,
"total_value_mid": 10227.450393984,
"total_value_exit_net": 10226.586006459,
"total_value": 10227.450393984,
"base_cost_quote": 1091.9387342955,
"unrealized_pnl_exit_net": 59.7135781795
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 0.5029,
"quote_asset_bal": 8870.3056646463,
"total_value_mid": 10217.0718646463,
"total_value_exit_net": 10216.0617899963,
"total_value": 10217.0718646463,
"base_cost_quote": 1296.9591633797,
"unrealized_pnl_exit_net": 48.7969619703
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 0.5717,
"quote_asset_bal": 8686.7946065678,
"total_value_mid": 10209.2317065678,
"total_value_exit_net": 10208.0898787428,
"total_value": 10209.2317065678,
"base_cost_quote": 1480.5388809817,
"unrealized_pnl_exit_net": 40.7563911933
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 0.6063,
"quote_asset_bal": 8595.1768588165,
"total_value_mid": 10201.8718588165,
"total_value_exit_net": 10200.6668375665,
"total_value": 10201.8718588165,
"base_cost_quote": 1572.4056464195,
"unrealized_pnl_exit_net": 33.0843323305
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 0.5986,
"quote_asset_bal": 8615.727566679,
"total_value_mid": 10206.806366679,
"total_value_exit_net": 10205.613057579,
"total_value": 10206.806366679,
"base_cost_quote": 1551.9775087985,
"unrealized_pnl_exit_net": 37.9079821015
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 0.5929,
"quote_asset_bal": 8631.2542178668,
"total_value_mid": 10205.9966178668,
"total_value_exit_net": 10204.8155610668,
"total_value": 10205.9966178668,
"base_cost_quote": 1536.8420186882,
"unrealized_pnl_exit_net": 36.7193245118
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 0.6092,
"quote_asset_bal": 8588.2634246892,
"total_value_mid": 10205.0802246892,
"total_value_exit_net": 10203.8676120892,
"total_value": 10205.0802246892,
"base_cost_quote": 1580.1088234725,
"unrealized_pnl_exit_net": 35.4953639275
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 0.8674,
"quote_asset_bal": 7910.800184587,
"total_value_mid": 10166.907584587,
"total_value_exit_net": 10165.215504037,
"total_value": 10166.907584587,
"base_cost_quote": 2257.7734200192,
"unrealized_pnl_exit_net": -3.3581005692
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 0.7166,
"quote_asset_bal": 8309.4746298572,
"total_value_mid": 10179.8006298572,
"total_value_exit_net": 10178.3978853572,
"total_value": 10179.8006298572,
"base_cost_quote": 1861.395932699,
"unrealized_pnl_exit_net": 7.527322801
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 0.7418,
"quote_asset_bal": 8243.6838090765,
"total_value_mid": 10194.6178090765,
"total_value_exit_net": 10193.1546085765,
"total_value": 10194.6178090765,
"base_cost_quote": 1928.339086437,
"unrealized_pnl_exit_net": 21.131713063
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 0.7447,
"quote_asset_bal": 8236.2357041977,
"total_value_mid": 10190.3285041977,
"total_value_exit_net": 10188.8629345977,
"total_value": 10190.3285041977,
"base_cost_quote": 1935.9340764105,
"unrealized_pnl_exit_net": 16.6931539895
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 0.764,
"quote_asset_bal": 8185.6844640445,
"total_value_mid": 10191.9484640445,
"total_value_exit_net": 10190.4437660445,
"total_value": 10191.9484640445,
"base_cost_quote": 1986.5130552152,
"unrealized_pnl_exit_net": 18.2462467848
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 0.7928,
"quote_asset_bal": 8110.713196135,
"total_value_mid": 10189.434796135,
"total_value_exit_net": 10187.875754935,
"total_value": 10189.434796135,
"base_cost_quote": 2062.5884910318,
"unrealized_pnl_exit_net": 14.5740677683
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 0.7581,
"quote_asset_bal": 8201.9874487147,
"total_value_mid": 10195.7904487147,
"total_value_exit_net": 10194.2950964647,
"total_value": 10195.7904487147,
"base_cost_quote": 1971.631351302,
"unrealized_pnl_exit_net": 20.676296448
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 0.7271,
"quote_asset_bal": 8283.9563586195,
"total_value_mid": 10198.4106586195,
"total_value_exit_net": 10196.9748178945,
"total_value": 10198.4106586195,
"base_cost_quote": 1890.1697078572,
"unrealized_pnl_exit_net": 22.8487514178
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 0.6846,
"quote_asset_bal": 8396.5289928135,
"total_value_mid": 10213.4573928135,
"total_value_exit_net": 10212.0946965135,
"total_value": 10213.4573928135,
"base_cost_quote": 1777.994036155,
"unrealized_pnl_exit_net": 37.571667545
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 0.7251,
"quote_asset_bal": 8289.7162503792,
"total_value_mid": 10206.1555503792,
"total_value_exit_net": 10204.7182209042,
"total_value": 10206.1555503792,
"base_cost_quote": 1884.970400299,
"unrealized_pnl_exit_net": 30.031570226
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 0.6595,
"quote_asset_bal": 8463.6898446072,
"total_value_mid": 10215.3218446072,
"total_value_exit_net": 10214.0081206072,
"total_value": 10215.3218446072,
"base_cost_quote": 1711.579434534,
"unrealized_pnl_exit_net": 38.738841466
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 0.672,
"quote_asset_bal": 8430.5252417962,
"total_value_mid": 10211.9972417962,
"total_value_exit_net": 10210.6611377962,
"total_value": 10211.9972417962,
"base_cost_quote": 1744.744037345,
"unrealized_pnl_exit_net": 35.391858655
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 0.7715,
"quote_asset_bal": 8168.4488632207,
"total_value_mid": 10190.5503632207,
"total_value_exit_net": 10189.0337870957,
"total_value": 10190.5503632207,
"base_cost_quote": 2006.8889997208,
"unrealized_pnl_exit_net": 13.6959241543
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 0.7426,
"quote_asset_bal": 8244.5653001877,
"total_value_mid": 10199.8311001877,
"total_value_exit_net": 10198.3646508377,
"total_value": 10199.8311001877,
"base_cost_quote": 1930.9623273933,
"unrealized_pnl_exit_net": 22.8370232568
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 0.7067,
"quote_asset_bal": 8340.1124410695,
"total_value_mid": 10198.0267410695,
"total_value_exit_net": 10196.6333053445,
"total_value": 10198.0267410695,
"base_cost_quote": 1836.1397627675,
"unrealized_pnl_exit_net": 20.3811015075
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 0.6749,
"quote_asset_bal": 8424.2531576352,
"total_value_mid": 10216.7875576352,
"total_value_exit_net": 10215.4431568352,
"total_value": 10216.7875576352,
"base_cost_quote": 1752.3501266368,
"unrealized_pnl_exit_net": 38.8398725633
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 0.6595,
"quote_asset_bal": 8465.2463634922,
"total_value_mid": 10211.6023634922,
"total_value_exit_net": 10210.2925964922,
"total_value": 10211.6023634922,
"base_cost_quote": 1711.6437016983,
"unrealized_pnl_exit_net": 33.4025313018
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 0.6701,
"quote_asset_bal": 8437.1682163142,
"total_value_mid": 10210.9229163142,
"total_value_exit_net": 10209.5926002892,
"total_value": 10210.9229163142,
"base_cost_quote": 1739.7345380363,
"unrealized_pnl_exit_net": 32.6898459388
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 0.6653,
"quote_asset_bal": 8449.9166425022,
"total_value_mid": 10209.6351425022,
"total_value_exit_net": 10208.3153536272,
"total_value": 10209.6351425022,
"base_cost_quote": 1727.0115309323,
"unrealized_pnl_exit_net": 31.3871801928
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 0.6653,
"quote_asset_bal": 8450.0824631092,
"total_value_mid": 10216.4539631092,
"total_value_exit_net": 10215.1291844842,
"total_value": 10216.4539631092,
"base_cost_quote": 1726.9922164573,
"unrealized_pnl_exit_net": 38.0545049178
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 0.6536,
"quote_asset_bal": 8481.764201274,
"total_value_mid": 10215.111401274,
"total_value_exit_net": 10213.811390874,
"total_value": 10215.111401274,
"base_cost_quote": 1696.1853396155,
"unrealized_pnl_exit_net": 35.8618499845
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 0.6017,
"quote_asset_bal": 8620.4891026617,
"total_value_mid": 10224.0196026617,
"total_value_exit_net": 10222.8169547867,
"total_value": 10224.0196026617,
"base_cost_quote": 1558.5108291165,
"unrealized_pnl_exit_net": 43.8170230085
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 0.5728,
"quote_asset_bal": 8697.9270172162,
"total_value_mid": 10227.3030172162,
"total_value_exit_net": 10226.1559852162,
"total_value": 10227.3030172162,
"base_cost_quote": 1481.6015223655,
"unrealized_pnl_exit_net": 46.6274456345
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 0.523,
"quote_asset_bal": 8831.8033793085,
"total_value_mid": 10236.5813793085,
"total_value_exit_net": 10235.5277958085,
"total_value": 10236.5813793085,
"base_cost_quote": 1348.6109021515,
"unrealized_pnl_exit_net": 55.1135143485
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 0.4946,
"quote_asset_bal": 8908.354151818,
"total_value_mid": 10242.290351818,
"total_value_exit_net": 10241.289899668,
"total_value": 10242.290351818,
"base_cost_quote": 1272.5542574178,
"unrealized_pnl_exit_net": 60.3814904323
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 0.4514,
"quote_asset_bal": 9025.1560336427,
"total_value_mid": 10242.5818336427,
"total_value_exit_net": 10241.6687642927,
"total_value": 10242.5818336427,
"base_cost_quote": 1156.5457222223,
"unrealized_pnl_exit_net": 59.9670084278
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 0.5671,
"quote_asset_bal": 8715.0928948805,
"total_value_mid": 10229.2498948805,
"total_value_exit_net": 10228.1142771305,
"total_value": 10229.2498948805,
"base_cost_quote": 1466.8341561412,
"unrealized_pnl_exit_net": 46.1872261088
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 0.566,
"quote_asset_bal": 8718.1362536295,
"total_value_mid": 10231.6202536295,
"total_value_exit_net": 10230.4851406295,
"total_value": 10231.6202536295,
"base_cost_quote": 1463.9163434217,
"unrealized_pnl_exit_net": 48.4325435783
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 0.4834,
"quote_asset_bal": 8940.4715116765,
"total_value_mid": 10242.2677116765,
"total_value_exit_net": 10241.2913645265,
"total_value": 10242.2677116765,
"base_cost_quote": 1242.6358374193,
"unrealized_pnl_exit_net": 58.1840154307
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 0.4531,
"quote_asset_bal": 9022.3511106265,
"total_value_mid": 10252.9707106265,
"total_value_exit_net": 10252.0477459265,
"total_value": 10252.9707106265,
"base_cost_quote": 1161.9927904618,
"unrealized_pnl_exit_net": 67.7038448382
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 0.484,
"quote_asset_bal": 8938.7700293097,
"total_value_mid": 10246.0540293097,
"total_value_exit_net": 10245.0735663097,
"total_value": 10246.0540293097,
"base_cost_quote": 1245.655045128,
"unrealized_pnl_exit_net": 60.648491872
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 0.5262,
"quote_asset_bal": 8825.2198543445,
"total_value_mid": 10243.8550543445,
"total_value_exit_net": 10242.7910779445,
"total_value": 10243.8550543445,
"base_cost_quote": 1359.5035004778,
"unrealized_pnl_exit_net": 58.0677231223
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 0.5769,
"quote_asset_bal": 8689.502456309,
"total_value_mid": 10236.748256309,
"total_value_exit_net": 10235.587821959,
"total_value": 10236.748256309,
"base_cost_quote": 1495.7971531095,
"unrealized_pnl_exit_net": 50.2882125405
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 0.4839,
"quote_asset_bal": 8940.7799621272,
"total_value_mid": 10247.7938621272,
"total_value_exit_net": 10246.8136017022,
"total_value": 10247.7938621272,
"base_cost_quote": 1245.7030140778,
"unrealized_pnl_exit_net": 60.3306254972
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 0.4025,
"quote_asset_bal": 9162.5145675189,
"total_value_mid": 10264.9620675189,
"total_value_exit_net": 10264.1352318939,
"total_value": 10264.9620675189,
"base_cost_quote": 1027.1276944445,
"unrealized_pnl_exit_net": 74.4929699305
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 0.2885,
"quote_asset_bal": 9477.2764560742,
"total_value_mid": 10271.8054560742,
"total_value_exit_net": 10271.2095593242,
"total_value": 10271.8054560742,
"base_cost_quote": 716.9743067342,
"unrealized_pnl_exit_net": 76.9587965157
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 0.3193,
"quote_asset_bal": 9392.7433334224,
"total_value_mid": 10270.4990334224,
"total_value_exit_net": 10269.8407166474,
"total_value": 10270.4990334224,
"base_cost_quote": 801.681534543,
"unrealized_pnl_exit_net": 75.415848682
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 0.2821,
"quote_asset_bal": 9495.6556020299,
"total_value_mid": 10274.2516020299,
"total_value_exit_net": 10273.6676550299,
"total_value": 10274.2516020299,
"base_cost_quote": 699.2784788097,
"unrealized_pnl_exit_net": 78.7335741902
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 0.2775,
"quote_asset_bal": 9508.3818861529,
"total_value_mid": 10276.7793861529,
"total_value_exit_net": 10276.2030880279,
"total_value": 10276.7793861529,
"base_cost_quote": 686.5649007722,
"unrealized_pnl_exit_net": 81.2563011027
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 0.2681,
"quote_asset_bal": 9534.4911482107,
"total_value_mid": 10274.9833482107,
"total_value_exit_net": 10274.4279790607,
"total_value": 10274.9833482107,
"base_cost_quote": 660.6583554247,
"unrealized_pnl_exit_net": 79.2784754252
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 0.3435,
"quote_asset_bal": 9327.9048797024,
"total_value_mid": 10269.7818797024,
"total_value_exit_net": 10269.0754719524,
"total_value": 10269.7818797024,
"base_cost_quote": 867.8302268815,
"unrealized_pnl_exit_net": 73.3403653685
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 0.2774,
"quote_asset_bal": 9510.0614802829,
"total_value_mid": 10276.5176802829,
"total_value_exit_net": 10275.9428381329,
"total_value": 10276.5176802829,
"base_cost_quote": 686.3606657107,
"unrealized_pnl_exit_net": 79.5206921392
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 0.2216,
"quote_asset_bal": 9666.4765431637,
"total_value_mid": 10278.5357431637,
"total_value_exit_net": 10278.0766987637,
"total_value": 10278.5357431637,
"base_cost_quote": 533.3402123803,
"unrealized_pnl_exit_net": 78.2599432197
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 0.2002,
"quote_asset_bal": 9725.3901018292,
"total_value_mid": 10284.7489018292,
"total_value_exit_net": 10284.3293827292,
"total_value": 10284.7489018292,
"base_cost_quote": 475.8440775965,
"unrealized_pnl_exit_net": 83.0952033035
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 0.2406,
"quote_asset_bal": 9611.6228986532,
"total_value_mid": 10286.5058986532,
"total_value_exit_net": 10285.9997364032,
"total_value": 10286.5058986532,
"base_cost_quote": 591.9676249865,
"unrealized_pnl_exit_net": 82.4092127635
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 0.2337,
"quote_asset_bal": 9631.2736789477,
"total_value_mid": 10290.0739789477,
"total_value_exit_net": 10289.5798787227,
"total_value": 10290.0739789477,
"base_cost_quote": 574.3947672205,
"unrealized_pnl_exit_net": 83.9114325545
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 0.4496,
"quote_asset_bal": 9019.4785686979,
"total_value_mid": 10286.4513686979,
"total_value_exit_net": 10285.5011390979,
"total_value": 10286.4513686979,
"base_cost_quote": 1208.566789783,
"unrealized_pnl_exit_net": 57.455780617
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 0.4505,
"quote_asset_bal": 9020.5260438374,
"total_value_mid": 10296.3420438374,
"total_value_exit_net": 10295.3851818374,
"total_value": 10296.3420438374,
"base_cost_quote": 1210.8102321038,
"unrealized_pnl_exit_net": 64.0489058962
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 0.4172,
"quote_asset_bal": 9115.6531029419,
"total_value_mid": 10306.3419029419,
"total_value_exit_net": 10305.4488863419,
"total_value": 10306.3419029419,
"base_cost_quote": 1116.8711746118,
"unrealized_pnl_exit_net": 72.9246087882
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 0.2581,
"quote_asset_bal": 9576.1523616189,
"total_value_mid": 10329.0300616189,
"total_value_exit_net": 10328.4654033439,
"total_value": 10329.0300616189,
"base_cost_quote": 663.3514437272,
"unrealized_pnl_exit_net": 88.9615979977
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 0.3808,
"quote_asset_bal": 9222.6209306866,
"total_value_mid": 10318.5633306866,
"total_value_exit_net": 10317.7413738866,
"total_value": 10318.5633306866,
"base_cost_quote": 1018.7443756675,
"unrealized_pnl_exit_net": 76.3760675325
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 0.3857,
"quote_asset_bal": 9210.6856146606,
"total_value_mid": 10320.3445146606,
"total_value_exit_net": 10319.5122704856,
"total_value": 10320.3445146606,
"base_cost_quote": 1032.423008954,
"unrealized_pnl_exit_net": 76.403646871
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 0.3946,
"quote_asset_bal": 9185.2289571101,
"total_value_mid": 10320.4931571101,
"total_value_exit_net": 10319.6417089601,
"total_value": 10320.4931571101,
"base_cost_quote": 1058.0038782275,
"unrealized_pnl_exit_net": 76.4088736225
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 0.3041,
"quote_asset_bal": 9447.2078079468,
"total_value_mid": 10329.4019079468,
"total_value_exit_net": 10328.7402623718,
"total_value": 10329.4019079468,
"base_cost_quote": 797.0292829692,
"unrealized_pnl_exit_net": 84.5031714557
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 0.2323,
"quote_asset_bal": 9656.7521233506,
"total_value_mid": 10337.6234233506,
"total_value_exit_net": 10337.1127698756,
"total_value": 10337.6234233506,
"base_cost_quote": 589.118964092,
"unrealized_pnl_exit_net": 91.241682433
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 0.26,
"quote_asset_bal": 9576.8909623893,
"total_value_mid": 10334.7909623893,
"total_value_exit_net": 10334.2225373893,
"total_value": 10334.7909623893,
"base_cost_quote": 671.836043408,
"unrealized_pnl_exit_net": 85.495531592
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 0.2724,
"quote_asset_bal": 9541.5912094888,
"total_value_mid": 10338.6336094888,
"total_value_exit_net": 10338.0358276888,
"total_value": 10338.6336094888,
"base_cost_quote": 707.88987952,
"unrealized_pnl_exit_net": 88.55473868
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 0.234,
"quote_asset_bal": 9653.9497377443,
"total_value_mid": 10343.7817377443,
"total_value_exit_net": 10343.2643637443,
"total_value": 10343.7817377443,
"base_cost_quote": 596.338378595,
"unrealized_pnl_exit_net": 92.976247405
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 0.341,
"quote_asset_bal": 9341.6143526323,
"total_value_mid": 10334.9473526323,
"total_value_exit_net": 10334.2023528823,
"total_value": 10334.9473526323,
"base_cost_quote": 910.0187915918,
"unrealized_pnl_exit_net": 82.5692086582
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 0.3524,
"quote_asset_bal": 9308.4916839918,
"total_value_mid": 10332.9184839918,
"total_value_exit_net": 10332.1501638918,
"total_value": 10332.9184839918,
"base_cost_quote": 943.1542145343,
"unrealized_pnl_exit_net": 80.5042653657
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 0.369,
"quote_asset_bal": 9260.4114094873,
"total_value_mid": 10330.5114094873,
"total_value_exit_net": 10329.7088344873,
"total_value": 10330.5114094873,
"base_cost_quote": 991.3004711648,
"unrealized_pnl_exit_net": 77.9969538352
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 0.3167,
"quote_asset_bal": 9413.1908823441,
"total_value_mid": 10335.7379823441,
"total_value_exit_net": 10335.0460720191,
"total_value": 10335.7379823441,
"base_cost_quote": 839.3346181918,
"unrealized_pnl_exit_net": 82.5205714832
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 0.2114,
"quote_asset_bal": 9722.3932849156,
"total_value_mid": 10345.6004849156,
"total_value_exit_net": 10345.1330795156,
"total_value": 10345.6004849156,
"base_cost_quote": 531.8438049158,
"unrealized_pnl_exit_net": 90.8959896842
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 0.2105,
"quote_asset_bal": 9726.8698500666,
"total_value_mid": 10347.2133500666,
"total_value_exit_net": 10346.7480924416,
"total_value": 10347.2133500666,
"base_cost_quote": 530.9481877062,
"unrealized_pnl_exit_net": 88.9300546687
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 0.2042,
"quote_asset_bal": 9745.5141481031,
"total_value_mid": 10348.5167481031,
"total_value_exit_net": 10348.0644961531,
"total_value": 10348.5167481031,
"base_cost_quote": 513.0573076022,
"unrealized_pnl_exit_net": 89.4930404477
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 0.2137,
"quote_asset_bal": 9717.6507130901,
"total_value_mid": 10348.0657130901,
"total_value_exit_net": 10347.5929018401,
"total_value": 10348.0657130901,
"base_cost_quote": 541.0412838552,
"unrealized_pnl_exit_net": 88.9009048947
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 0.2094,
"quote_asset_bal": 9730.4776979188,
"total_value_mid": 10349.2546979188,
"total_value_exit_net": 10348.7906151688,
"total_value": 10349.2546979188,
"base_cost_quote": 528.3642411987,
"unrealized_pnl_exit_net": 89.9486760512
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 0.2056,
"quote_asset_bal": 9741.4559020998,
"total_value_mid": 10350.6487020998,
"total_value_exit_net": 10350.1918074998,
"total_value": 10350.6487020998,
"base_cost_quote": 517.7934590537,
"unrealized_pnl_exit_net": 90.9424463462
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 0.1819,
"quote_asset_bal": 9812.1948780528,
"total_value_mid": 10355.7120780528,
"total_value_exit_net": 10355.3044401528,
"total_value": 10355.7120780528,
"base_cost_quote": 448.566424689,
"unrealized_pnl_exit_net": 94.543137411
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 0.4066,
"quote_asset_bal": 9146.8262332838,
"total_value_mid": 10342.2302332838,
"total_value_exit_net": 10341.3336802838,
"total_value": 10342.2302332838,
"base_cost_quote": 1115.5219954858,
"unrealized_pnl_exit_net": 78.9854515142
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 0.4547,
"quote_asset_bal": 9006.4074279753,
"total_value_mid": 10340.4972279753,
"total_value_exit_net": 10339.4966606253,
"total_value": 10340.4972279753,
"base_cost_quote": 1256.3063416135,
"unrealized_pnl_exit_net": 76.7828910365
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 0.6005,
"quote_asset_bal": 8583.6778042135,
"total_value_mid": 10317.9218042135,
"total_value_exit_net": 10316.6211212135,
"total_value": 10317.9218042135,
"base_cost_quote": 1679.1577334817,
"unrealized_pnl_exit_net": 53.7855835182
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 0.7323,
"quote_asset_bal": 8207.7087704913,
"total_value_mid": 10302.8190704913,
"total_value_exit_net": 10301.2477377663,
"total_value": 10302.8190704913,
"base_cost_quote": 2056.664426313,
"unrealized_pnl_exit_net": 36.874540962
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 0.7279,
"quote_asset_bal": 8221.9483590708,
"total_value_mid": 10300.1028590708,
"total_value_exit_net": 10298.5442431958,
"total_value": 10300.1028590708,
"base_cost_quote": 2043.434311163,
"unrealized_pnl_exit_net": 33.161572962
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 0.7,
"quote_asset_bal": 8302.3212410613,
"total_value_mid": 10315.5212410613,
"total_value_exit_net": 10314.0113410613,
"total_value": 10315.5212410613,
"base_cost_quote": 1964.49722872,
"unrealized_pnl_exit_net": 47.19287128
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 0.6374,
"quote_asset_bal": 8483.1093622278,
"total_value_mid": 10323.9205622278,
"total_value_exit_net": 10322.5399538278,
"total_value": 10323.9205622278,
"base_cost_quote": 1784.5910792292,
"unrealized_pnl_exit_net": 54.8395123707
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 0.4812,
"quote_asset_bal": 8939.2263770235,
"total_value_mid": 10348.1799770235,
"total_value_exit_net": 10347.1232618235,
"total_value": 10348.1799770235,
"base_cost_quote": 1331.9532352643,
"unrealized_pnl_exit_net": 75.9436495357
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 0.4611,
"quote_asset_bal": 8998.696047,
"total_value_mid": 10351.102347,
"total_value_exit_net": 10350.088042275,
"total_value": 10351.102347,
"base_cost_quote": 1273.222637327,
"unrealized_pnl_exit_net": 78.169357948
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 0.4933,
"quote_asset_bal": 8905.0071766345,
"total_value_mid": 10347.9096766345,
"total_value_exit_net": 10346.8274997595,
"total_value": 10347.9096766345,
"base_cost_quote": 1367.4435930843,
"unrealized_pnl_exit_net": 74.3767300407
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 0.4828,
"quote_asset_bal": 8936.3181717043,
"total_value_mid": 10349.9565717043,
"total_value_exit_net": 10348.8963429043,
"total_value": 10349.9565717043,
"base_cost_quote": 1336.748165767,
"unrealized_pnl_exit_net": 75.830005433
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 0.4638,
"quote_asset_bal": 8992.105486762,
"total_value_mid": 10353.822286762,
"total_value_exit_net": 10352.800999162,
"total_value": 10353.822286762,
"base_cost_quote": 1281.070859082,
"unrealized_pnl_exit_net": 79.624653318
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 0.4776,
"quote_asset_bal": 8951.7145483538,
"total_value_mid": 10352.5153483538,
"total_value_exit_net": 10351.4647477538,
"total_value": 10352.5153483538,
"base_cost_quote": 1321.5617955253,
"unrealized_pnl_exit_net": 78.1884038747
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 0.5957,
"quote_asset_bal": 8608.2049020508,
"total_value_mid": 10332.7564020508,
"total_value_exit_net": 10331.4629884258,
"total_value": 10332.7564020508,
"base_cost_quote": 1665.3146229297,
"unrealized_pnl_exit_net": 57.9434634453
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 0.5104,
"quote_asset_bal": 8856.616552235,
"total_value_mid": 10349.026152235,
"total_value_exit_net": 10347.906845035,
"total_value": 10349.026152235,
"base_cost_quote": 1417.7961752188,
"unrealized_pnl_exit_net": 73.4941175812
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 0.4313,
"quote_asset_bal": 9089.3840640173,
"total_value_mid": 10359.9938640173,
"total_value_exit_net": 10359.0409066673,
"total_value": 10359.9938640173,
"base_cost_quote": 1186.442733176,
"unrealized_pnl_exit_net": 83.214109474
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 0.2214,
"quote_asset_bal": 9713.3394119628,
"total_value_mid": 10378.2036119628,
"total_value_exit_net": 10377.7049638128,
"total_value": 10378.2036119628,
"base_cost_quote": 568.2752009855,
"unrealized_pnl_exit_net": 96.0903508645
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 0.2891,
"quote_asset_bal": 9509.5961585723,
"total_value_mid": 10375.7397585723,
"total_value_exit_net": 10375.0901508723,
"total_value": 10375.7397585723,
"base_cost_quote": 775.438535044,
"unrealized_pnl_exit_net": 90.055457256
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 0.2824,
"quote_asset_bal": 9529.8063854593,
"total_value_mid": 10377.5711854593,
"total_value_exit_net": 10376.9353618593,
"total_value": 10377.5711854593,
"base_cost_quote": 755.352273638,
"unrealized_pnl_exit_net": 91.776702762
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 0.2866,
"quote_asset_bal": 9517.2179932408,
"total_value_mid": 10377.3045932408,
"total_value_exit_net": 10376.6595282908,
"total_value": 10377.3045932408,
"base_cost_quote": 767.9406658565,
"unrealized_pnl_exit_net": 91.5008691935
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 0.2532,
"quote_asset_bal": 9617.6987513405,
"total_value_mid": 10380.0839513405,
"total_value_exit_net": 10379.5121624405,
"total_value": 10380.0839513405,
"base_cost_quote": 667.9034902035,
"unrealized_pnl_exit_net": 93.9099208965
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 0.1804,
"quote_asset_bal": 9838.919451353,
"total_value_mid": 10392.206251353,
"total_value_exit_net": 10391.791286253,
"total_value": 10392.206251353,
"base_cost_quote": 458.808640594,
"unrealized_pnl_exit_net": 94.063194306
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 0.2037,
"quote_asset_bal": 9767.7485984845,
"total_value_mid": 10391.8853984845,
"total_value_exit_net": 10391.4172958845,
"total_value": 10391.8853984845,
"base_cost_quote": 530.4306158183,
"unrealized_pnl_exit_net": 93.2380815817
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 0.2037,
"quote_asset_bal": 9767.9471893873,
"total_value_mid": 10390.6580893873,
"total_value_exit_net": 10390.1910562123,
"total_value": 10390.6580893873,
"base_cost_quote": 530.4281139433,
"unrealized_pnl_exit_net": 91.8157528817
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 0.2339,
"quote_asset_bal": 9677.231053628,
"total_value_mid": 10388.053153628,
"total_value_exit_net": 10387.520037053,
"total_value": 10388.053153628,
"base_cost_quote": 622.0433578813,
"unrealized_pnl_exit_net": 88.2456255437
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 0.2272,
"quote_asset_bal": 9697.6357596123,
"total_value_mid": 10390.5957596123,
"total_value_exit_net": 10390.0760396123,
"total_value": 10390.5957596123,
"base_cost_quote": 601.6665857555,
"unrealized_pnl_exit_net": 90.7736942445
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 0.2196,
"quote_asset_bal": 9720.8610260645,
"total_value_mid": 10391.5194260645,
"total_value_exit_net": 10391.0164322645,
"total_value": 10391.5194260645,
"base_cost_quote": 578.6212016708,
"unrealized_pnl_exit_net": 91.5342045292
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 0.2791,
"quote_asset_bal": 9540.4970080423,
"total_value_mid": 10383.0999080423,
"total_value_exit_net": 10382.4679558673,
"total_value": 10383.0999080423,
"base_cost_quote": 759.0955129635,
"unrealized_pnl_exit_net": 82.8754348615
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 0.2549,
"quote_asset_bal": 9613.9880695733,
"total_value_mid": 10385.8252695733,
"total_value_exit_net": 10385.2463916733,
"total_value": 10385.8252695733,
"base_cost_quote": 685.9740960008,
"unrealized_pnl_exit_net": 85.2842260992
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 0.285,
"quote_asset_bal": 9522.8057169755,
"total_value_mid": 10384.3607169755,
"total_value_exit_net": 10383.7145507255,
"total_value": 10384.3607169755,
"base_cost_quote": 777.184287377,
"unrealized_pnl_exit_net": 83.724546373
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 0.2173,
"quote_asset_bal": 9729.3003811806,
"total_value_mid": 10394.0210811806,
"total_value_exit_net": 10393.5225406556,
"total_value": 10394.0210811806,
"base_cost_quote": 571.5681958808,
"unrealized_pnl_exit_net": 92.6539635942
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 0.17,
"quote_asset_bal": 9874.4931837606,
"total_value_mid": 10400.3031837606,
"total_value_exit_net": 10399.9088262606,
"total_value": 10400.3031837606,
"base_cost_quote": 427.7060261153,
"unrealized_pnl_exit_net": 97.7096163847
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 0.1934,
"quote_asset_bal": 9801.4974751951,
"total_value_mid": 10404.7120751951,
"total_value_exit_net": 10404.2596642451,
"total_value": 10404.7120751951,
"base_cost_quote": 501.8456411543,
"unrealized_pnl_exit_net": 100.9165478957
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 0.221,
"quote_asset_bal": 9715.1392813593,
"total_value_mid": 10402.2282813593,
"total_value_exit_net": 10401.7129646093,
"total_value": 10402.2282813593,
"base_cost_quote": 589.4332326168,
"unrealized_pnl_exit_net": 97.1404506332
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 0.2,
"quote_asset_bal": 9780.5941953611,
"total_value_mid": 10410.3941953611,
"total_value_exit_net": 10409.9218453611,
"total_value": 10410.3941953611,
"base_cost_quote": 526.123120618,
"unrealized_pnl_exit_net": 103.204529382
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 0.2786,
"quote_asset_bal": 9533.1545731233,
"total_value_mid": 10405.7297731233,
"total_value_exit_net": 10405.0753417233,
"total_value": 10405.7297731233,
"base_cost_quote": 775.476167247,
"unrealized_pnl_exit_net": 96.444601353
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 0.1711,
"quote_asset_bal": 9873.5835333993,
"total_value_mid": 10419.7347333993,
"total_value_exit_net": 10419.3251199993,
"total_value": 10419.7347333993,
"base_cost_quote": 437.4941316928,
"unrealized_pnl_exit_net": 108.2474549072
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 0.3197,
"quote_asset_bal": 9407.6435717913,
"total_value_mid": 10407.3454717913,
"total_value_exit_net": 10406.5956953663,
"total_value": 10407.3454717913,
"base_cost_quote": 905.4696883212,
"unrealized_pnl_exit_net": 93.4824352537
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 0.4682,
"quote_asset_bal": 8952.1483517066,
"total_value_mid": 10382.4993517066,
"total_value_exit_net": 10381.4265884566,
"total_value": 10382.4993517066,
"base_cost_quote": 1362.5168918275,
"unrealized_pnl_exit_net": 66.7613449225
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 0.4475,
"quote_asset_bal": 9015.5690745083,
"total_value_mid": 10388.4990745083,
"total_value_exit_net": 10387.4693770083,
"total_value": 10388.4990745083,
"base_cost_quote": 1299.2786386825,
"unrealized_pnl_exit_net": 72.6216638175
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 0.6296,
"quote_asset_bal": 8465.6765666211,
"total_value_mid": 10356.9949666211,
"total_value_exit_net": 10355.5764778211,
"total_value": 10356.9949666211,
"base_cost_quote": 1849.3711358602,
"unrealized_pnl_exit_net": 40.5287753397
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 0.6003,
"quote_asset_bal": 8556.2867474298,
"total_value_mid": 10360.1882474298,
"total_value_exit_net": 10358.8353213048,
"total_value": 10360.1882474298,
"base_cost_quote": 1761.8498901198,
"unrealized_pnl_exit_net": 40.6986837552
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 0.6406,
"quote_asset_bal": 8435.2833457551,
"total_value_mid": 10357.7239457551,
"total_value_exit_net": 10356.2821153051,
"total_value": 10357.7239457551,
"base_cost_quote": 1883.701053002,
"unrealized_pnl_exit_net": 37.297716548
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 0.4189,
"quote_asset_bal": 9113.1183563536,
"total_value_mid": 10411.2894563536,
"total_value_exit_net": 10410.3158280286,
"total_value": 10411.2894563536,
"base_cost_quote": 1210.8391747945,
"unrealized_pnl_exit_net": 86.3582968805
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 0.2258,
"quote_asset_bal": 9719.3442149983,
"total_value_mid": 10445.5170149983,
"total_value_exit_net": 10444.9723853983,
"total_value": 10445.5170149983,
"base_cost_quote": 614.3436954623,
"unrealized_pnl_exit_net": 111.2844749378
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 0.2283,
"quote_asset_bal": 9711.2567212148,
"total_value_mid": 10456.6562212148,
"total_value_exit_net": 10456.0971715898,
"total_value": 10456.6562212148,
"base_cost_quote": 628.3902014465,
"unrealized_pnl_exit_net": 116.4502489285
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 0.3011,
"quote_asset_bal": 9473.0466091616,
"total_value_mid": 10449.2128091616,
"total_value_exit_net": 10448.4806845116,
"total_value": 10449.2128091616,
"base_cost_quote": 869.8275357405,
"unrealized_pnl_exit_net": 105.6065396095
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 0.3011,
"quote_asset_bal": 9473.3484943023,
"total_value_mid": 10451.0201943023,
"total_value_exit_net": 10450.2869405273,
"total_value": 10451.0201943023,
"base_cost_quote": 869.7866901293,
"unrealized_pnl_exit_net": 107.1517560957
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 0.3551,
"quote_asset_bal": 9299.0906907316,
"total_value_mid": 10448.9044907316,
"total_value_exit_net": 10448.0421303816,
"total_value": 10448.9044907316,
"base_cost_quote": 1044.548240062,
"unrealized_pnl_exit_net": 104.403199588
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 0.3035,
"quote_asset_bal": 9466.8747049051,
"total_value_mid": 10458.1057049051,
"total_value_exit_net": 10457.3622816551,
"total_value": 10458.1057049051,
"base_cost_quote": 877.4863145198,
"unrealized_pnl_exit_net": 113.0012622302
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 0.2511,
"quote_asset_bal": 9636.9022000716,
"total_value_mid": 10485.1180000716,
"total_value_exit_net": 10484.4818382216,
"total_value": 10485.1180000716,
"base_cost_quote": 717.3251676828,
"unrealized_pnl_exit_net": 130.2544704672
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 0.3154,
"quote_asset_bal": 9422.4146138206,
"total_value_mid": 10478.0584138206,
"total_value_exit_net": 10477.2666809706,
"total_value": 10478.0584138206,
"base_cost_quote": 932.825915115,
"unrealized_pnl_exit_net": 122.026152035
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 0.2846,
"quote_asset_bal": 9525.7681919526,
"total_value_mid": 10480.0319919526,
"total_value_exit_net": 10479.3162941026,
"total_value": 10480.0319919526,
"base_cost_quote": 829.948638983,
"unrealized_pnl_exit_net": 123.599463167
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 0.2922,
"quote_asset_bal": 9500.3068190221,
"total_value_mid": 10478.5924190221,
"total_value_exit_net": 10477.8587048221,
"total_value": 10478.5924190221,
"base_cost_quote": 855.422714221,
"unrealized_pnl_exit_net": 122.129171579
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 0.2495,
"quote_asset_bal": 9643.9778853086,
"total_value_mid": 10484.7928853086,
"total_value_exit_net": 10484.1622740586,
"total_value": 10484.7928853086,
"base_cost_quote": 712.1813777315,
"unrealized_pnl_exit_net": 128.0030110185
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 0.2494,
"quote_asset_bal": 9642.5350890093,
"total_value_mid": 10505.9578890093,
"total_value_exit_net": 10505.3103219093,
"total_value": 10505.9578890093,
"base_cost_quote": 723.0306696023,
"unrealized_pnl_exit_net": 139.7445632978
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 0.5895,
"quote_asset_bal": 8479.2504425211,
"total_value_mid": 10453.485942521,
"total_value_exit_net": 10452.005265896,
"total_value": 10453.485942521,
"base_cost_quote": 1893.2561829787,
"unrealized_pnl_exit_net": 79.4986403962
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 0.687,
"quote_asset_bal": 8157.9559630063,
"total_value_mid": 10449.1009630063,
"total_value_exit_net": 10447.3826042563,
"total_value": 10449.1009630063,
"base_cost_quote": 2217.3931415072,
"unrealized_pnl_exit_net": 72.0334997427
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 0.5914,
"quote_asset_bal": 8479.7489324876,
"total_value_mid": 10469.8099324876,
"total_value_exit_net": 10468.3173867376,
"total_value": 10469.8099324876,
"base_cost_quote": 1898.6743175342,
"unrealized_pnl_exit_net": 89.8941367157
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 0.7161,
"quote_asset_bal": 8065.0169030923,
"total_value_mid": 10437.4562030923,
"total_value_exit_net": 10435.6768736173,
"total_value": 10437.4562030923,
"base_cost_quote": 2314.5535311877,
"unrealized_pnl_exit_net": 56.1064393372
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 0.7199,
"quote_asset_bal": 8052.4854063386,
"total_value_mid": 10436.7942063386,
"total_value_exit_net": 10435.0059747386,
"total_value": 10436.7942063386,
"base_cost_quote": 2327.1657612713,
"unrealized_pnl_exit_net": 55.3548071287
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 0.706,
"quote_asset_bal": 8098.7945799786,
"total_value_mid": 10434.2425799786,
"total_value_exit_net": 10432.4909939786,
"total_value": 10434.2425799786,
"base_cost_quote": 2281.128476184,
"unrealized_pnl_exit_net": 52.567937816
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 0.6668,
"quote_asset_bal": 8230.3746338613,
"total_value_mid": 10456.8198338613,
"total_value_exit_net": 10455.1499999613,
"total_value": 10456.8198338613,
"base_cost_quote": 2151.1799208087,
"unrealized_pnl_exit_net": 73.5954452912
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 0.7151,
"quote_asset_bal": 8069.8793966488,
"total_value_mid": 10441.8660966488,
"total_value_exit_net": 10440.0871066238,
"total_value": 10441.8660966488,
"base_cost_quote": 2311.9551598698,
"unrealized_pnl_exit_net": 58.2525501052
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 0.7722,
"quote_asset_bal": 7882.0199436343,
"total_value_mid": 10416.3803436343,
"total_value_exit_net": 10414.4795733343,
"total_value": 10416.3803436343,
"base_cost_quote": 2500.4550778565,
"unrealized_pnl_exit_net": 32.0045518435
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 0.8568,
"quote_asset_bal": 7607.7637772593,
"total_value_mid": 10392.3637772593,
"total_value_exit_net": 10390.2753272593,
"total_value": 10392.3637772593,
"base_cost_quote": 2776.3605278635,
"unrealized_pnl_exit_net": 6.1510221365
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 0.8861,
"quote_asset_bal": 7512.5447170838,
"total_value_mid": 10395.0280170838,
"total_value_exit_net": 10392.8661546088,
"total_value": 10395.0280170838,
"base_cost_quote": 2872.3116142463,
"unrealized_pnl_exit_net": 8.0098232787
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 0.8798,
"quote_asset_bal": 7533.0943462553,
"total_value_mid": 10399.4827462553,
"total_value_exit_net": 10397.3329549553,
"total_value": 10399.4827462553,
"base_cost_quote": 2851.8428862053,
"unrealized_pnl_exit_net": 12.3957224947
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 0.8798,
"quote_asset_bal": 7533.1635906091,
"total_value_mid": 10403.9509906091,
"total_value_exit_net": 10401.7979000591,
"total_value": 10403.9509906091,
"base_cost_quote": 2851.8428862053,
"unrealized_pnl_exit_net": 16.7914232447
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 0.6656,
"quote_asset_bal": 8243.5469317171,
"total_value_mid": 10471.9757317171,
"total_value_exit_net": 10470.3044101171,
"total_value": 10471.9757317171,
"base_cost_quote": 2145.8160178965,
"unrealized_pnl_exit_net": 80.9414605035
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 0.4809,
"quote_asset_bal": 8872.8345236926,
"total_value_mid": 10512.2226236926,
"total_value_exit_net": 10510.9930826176,
"total_value": 10512.2226236926,
"base_cost_quote": 1525.1602549315,
"unrealized_pnl_exit_net": 112.9983039935
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 0.5429,
"quote_asset_bal": 8663.5956792668,
"total_value_mid": 10500.2263792668,
"total_value_exit_net": 10498.8489062418,
"total_value": 10500.2263792668,
"base_cost_quote": 1735.3343633785,
"unrealized_pnl_exit_net": 99.9188635965
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 0.6465,
"quote_asset_bal": 8318.3864913861,
"total_value_mid": 10466.059491386,
"total_value_exit_net": 10464.448736636,
"total_value": 10466.059491386,
"base_cost_quote": 2081.932311024,
"unrealized_pnl_exit_net": 64.129934226
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 0.6235,
"quote_asset_bal": 8395.8804737668,
"total_value_mid": 10475.2529737668,
"total_value_exit_net": 10473.6934443918,
"total_value": 10475.2529737668,
"base_cost_quote": 2005.4065507172,
"unrealized_pnl_exit_net": 72.4064199077
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 0.6388,
"quote_asset_bal": 8344.8708907165,
"total_value_mid": 10470.1584907165,
"total_value_exit_net": 10468.5645250165,
"total_value": 10470.1584907165,
"base_cost_quote": 2056.4414171815,
"unrealized_pnl_exit_net": 67.2522171185
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 0.706,
"quote_asset_bal": 8123.1815329468,
"total_value_mid": 10448.7455329468,
"total_value_exit_net": 10447.0013599468,
"total_value": 10448.7455329468,
"base_cost_quote": 2278.2280444905,
"unrealized_pnl_exit_net": 45.5917825095
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 0.8352,
"quote_asset_bal": 7702.5856467875,
"total_value_mid": 10412.8096467875,
"total_value_exit_net": 10410.7769787875,
"total_value": 10412.8096467875,
"base_cost_quote": 2699.412233894,
"unrealized_pnl_exit_net": 8.779098106
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 0.8043,
"quote_asset_bal": 7803.7962910283,
"total_value_mid": 10426.6185910283,
"total_value_exit_net": 10424.6514743033,
"total_value": 10426.6185910283,
"base_cost_quote": 2599.0733171047,
"unrealized_pnl_exit_net": 21.7818661702
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 0.9578,
"quote_asset_bal": 7309.6195299863,
"total_value_mid": 10370.7483299863,
"total_value_exit_net": 10368.4524833863,
"total_value": 10370.7483299863,
"base_cost_quote": 3093.7358459622,
"unrealized_pnl_exit_net": -34.9028925623
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 0.8509,
"quote_asset_bal": 7656.8927746388,
"total_value_mid": 10418.9141746388,
"total_value_exit_net": 10416.8426585888,
"total_value": 10418.9141746388,
"base_cost_quote": 2750.2834056792,
"unrealized_pnl_exit_net": 9.6664782708
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 0.9456,
"quote_asset_bal": 7352.6269069158,
"total_value_mid": 10398.4045069158,
"total_value_exit_net": 10396.1201737158,
"total_value": 10398.4045069158,
"base_cost_quote": 3055.4846540685,
"unrealized_pnl_exit_net": -11.9913872685
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 0.9274,
"quote_asset_bal": 7411.3103998825,
"total_value_mid": 10402.7874838825,
"total_value_exit_net": 10400.5438760695,
"total_value": 10402.7874838825,
"base_cost_quote": 2997.0518663215,
"unrealized_pnl_exit_net": -7.8183901345
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 0.8613,
"quote_asset_bal": 7625.709852865,
"total_value_mid": 10421.481039865,
"total_value_exit_net": 10419.3842114748,
"total_value": 10421.481039865,
"base_cost_quote": 2783.869549409,
"unrealized_pnl_exit_net": 9.8048092008
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 0.8534,
"quote_asset_bal": 7652.305985147,
"total_value_mid": 10413.874249147,
"total_value_exit_net": 10411.803072949,
"total_value": 10413.874249147,
"base_cost_quote": 2758.3917463772,
"unrealized_pnl_exit_net": 1.1053414248
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 0.7504,
"quote_asset_bal": 7991.2429427043,
"total_value_mid": 10469.8291507043,
"total_value_exit_net": 10467.9702110483,
"total_value": 10469.8291507043,
"base_cost_quote": 2422.5325387508,
"unrealized_pnl_exit_net": 54.1947295932
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 0.7207,
"quote_asset_bal": 8089.6962192628,
"total_value_mid": 10484.2003482628,
"total_value_exit_net": 10482.404470166,
"total_value": 10484.2003482628,
"base_cost_quote": 2326.4163396262,
"unrealized_pnl_exit_net": 66.291911277
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 0.7441,
"quote_asset_bal": 8013.5918905548,
"total_value_mid": 10475.6550885548,
"total_value_exit_net": 10473.8085411563,
"total_value": 10475.6550885548,
"base_cost_quote": 2404.7279693313,
"unrealized_pnl_exit_net": 55.4886812702
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 0.6154,
"quote_asset_bal": 8443.9202184758,
"total_value_mid": 10512.1565384758,
"total_value_exit_net": 10510.6053612358,
"total_value": 10512.1565384758,
"base_cost_quote": 1977.4348276472,
"unrealized_pnl_exit_net": 89.2503151127
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 0.5929,
"quote_asset_bal": 8519.8356113435,
"total_value_mid": 10512.9104643435,
"total_value_exit_net": 10511.4156582038,
"total_value": 10512.9104643435,
"base_cost_quote": 1902.6898909572,
"unrealized_pnl_exit_net": 88.890155903
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 0.6021,
"quote_asset_bal": 8489.1231997238,
"total_value_mid": 10504.7372437238,
"total_value_exit_net": 10503.2255331908,
"total_value": 10504.7372437238,
"base_cost_quote": 1933.4561163332,
"unrealized_pnl_exit_net": 80.6462171337
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 0.6066,
"quote_asset_bal": 8474.4167120748,
"total_value_mid": 10511.1247400748,
"total_value_exit_net": 10509.5972090538,
"total_value": 10511.1247400748,
"base_cost_quote": 1948.5400207832,
"unrealized_pnl_exit_net": 86.6404761957
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 0.675,
"quote_asset_bal": 8246.7414367053,
"total_value_mid": 10488.6054367053,
"total_value_exit_net": 10486.9240387053,
"total_value": 10488.6054367053,
"base_cost_quote": 2176.401161563,
"unrealized_pnl_exit_net": 63.781440437
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 0.7827,
"quote_asset_bal": 7891.5727107078,
"total_value_mid": 10455.7135647078,
"total_value_exit_net": 10453.7904590673,
"total_value": 10455.7135647078,
"base_cost_quote": 2532.2062944222,
"unrealized_pnl_exit_net": 30.0114539372
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 0.6688,
"quote_asset_bal": 8268.9280841833,
"total_value_mid": 10493.6578441833,
"total_value_exit_net": 10491.9892968633,
"total_value": 10493.6578441833,
"base_cost_quote": 2156.322289695,
"unrealized_pnl_exit_net": 66.738922985
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 0.7187,
"quote_asset_bal": 8103.7947995195,
"total_value_mid": 10477.1218745195,
"total_value_exit_net": 10475.3418792133,
"total_value": 10477.1218745195,
"base_cost_quote": 2321.827537604,
"unrealized_pnl_exit_net": 49.7195420897
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 0.7187,
"quote_asset_bal": 8103.807323702,
"total_value_mid": 10473.016247702,
"total_value_exit_net": 10471.239341009,
"total_value": 10473.016247702,
"base_cost_quote": 2321.827537604,
"unrealized_pnl_exit_net": 45.604479703
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 0.6896,
"quote_asset_bal": 8200.2952270955,
"total_value_mid": 10489.4706990955,
"total_value_exit_net": 10487.7538174915,
"total_value": 10489.4706990955,
"base_cost_quote": 2225.6241221162,
"unrealized_pnl_exit_net": 61.8344682797
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 0.5269,
"quote_asset_bal": 8747.6859719323,
"total_value_mid": 10537.5547339323,
"total_value_exit_net": 10536.2123323608,
"total_value": 10537.5547339323,
"base_cost_quote": 1683.303247287,
"unrealized_pnl_exit_net": 105.2231131415
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 0.5762,
"quote_asset_bal": 8581.1437461838,
"total_value_mid": 10522.6093121838,
"total_value_exit_net": 10521.1532130093,
"total_value": 10522.6093121838,
"base_cost_quote": 1850.0329178247,
"unrealized_pnl_exit_net": 89.9765490007
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 0.5381,
"quote_asset_bal": 8710.189178919,
"total_value_mid": 10534.993898919,
"total_value_exit_net": 10533.625295379,
"total_value": 10534.993898919,
"base_cost_quote": 1721.6258627082,
"unrealized_pnl_exit_net": 101.8102537517
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 0.5454,
"quote_asset_bal": 8686.5183159403,
"total_value_mid": 10530.8156859403,
"total_value_exit_net": 10529.4324629128,
"total_value": 10530.8156859403,
"base_cost_quote": 1747.0150903583,
"unrealized_pnl_exit_net": 95.8990566142
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 0.5971,
"quote_asset_bal": 8514.2856275555,
"total_value_mid": 10504.9453755555,
"total_value_exit_net": 10503.4523807445,
"total_value": 10504.9453755555,
"base_cost_quote": 1920.3112350608,
"unrealized_pnl_exit_net": 68.8555181282
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 0.5971,
"quote_asset_bal": 8514.2856275555,
"total_value_mid": 10504.0616675555,
"total_value_exit_net": 10502.5693355255,
"total_value": 10504.0616675555,
"base_cost_quote": 1920.3112350608,
"unrealized_pnl_exit_net": 67.9724729092
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 0.6009,
"quote_asset_bal": 8501.668845845,
"total_value_mid": 10509.125520845,
"total_value_exit_net": 10507.6199283388,
"total_value": 10509.125520845,
"base_cost_quote": 1933.0388796403,
"unrealized_pnl_exit_net": 72.9122028535
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 0.6112,
"quote_asset_bal": 8467.6277286593,
"total_value_mid": 10512.9779686593,
"total_value_exit_net": 10511.4439559793,
"total_value": 10512.9779686593,
"base_cost_quote": 1967.5352665408,
"unrealized_pnl_exit_net": 76.2809607792
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 0.6096,
"quote_asset_bal": 8473.49124349,
"total_value_mid": 10509.66497149,
"total_value_exit_net": 10508.137841194,
"total_value": 10509.66497149,
"base_cost_quote": 1962.108622608,
"unrealized_pnl_exit_net": 72.537975096
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 0.5499,
"quote_asset_bal": 8674.623457984,
"total_value_mid": 10532.955517984,
"total_value_exit_net": 10531.561768939,
"total_value": 10532.955517984,
"base_cost_quote": 1762.1648981987,
"unrealized_pnl_exit_net": 94.7734127562
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 0.4877,
"quote_asset_bal": 8887.6573482033,
"total_value_mid": 10549.9437822033,
"total_value_exit_net": 10548.6970673778,
"total_value": 10549.9437822033,
"base_cost_quote": 1552.3467775425,
"unrealized_pnl_exit_net": 108.692941632
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 0.1771,
"quote_asset_bal": 9972.0260107535,
"total_value_mid": 10585.1426687535,
"total_value_exit_net": 10584.68283126,
"total_value": 10585.1426687535,
"base_cost_quote": 486.1324711087,
"unrealized_pnl_exit_net": 126.5243493977
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 0.1983,
"quote_asset_bal": 9898.0714592493,
"total_value_mid": 10589.6625392493,
"total_value_exit_net": 10589.1438459393,
"total_value": 10589.6625392493,
"base_cost_quote": 560.7937090718,
"unrealized_pnl_exit_net": 130.2786776182
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 0.2093,
"quote_asset_bal": 9860.0764388558,
"total_value_mid": 10587.8062598558,
"total_value_exit_net": 10587.26046249,
"total_value": 10587.8062598558,
"base_cost_quote": 599.0049460218,
"unrealized_pnl_exit_net": 128.1790776125
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 0.3071,
"quote_asset_bal": 9524.4146134538,
"total_value_mid": 10578.5077244538,
"total_value_exit_net": 10577.7171546205,
"total_value": 10578.5077244538,
"base_cost_quote": 934.9321966423,
"unrealized_pnl_exit_net": 118.3703445245
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 0.3502,
"quote_asset_bal": 9377.5157632058,
"total_value_mid": 10573.0110132058,
"total_value_exit_net": 10572.1143917683,
"total_value": 10573.0110132058,
"base_cost_quote": 1082.221886121,
"unrealized_pnl_exit_net": 112.3767424415
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 0.3795,
"quote_asset_bal": 9277.8235326228,
"total_value_mid": 10566.3778326228,
"total_value_exit_net": 10565.4114168978,
"total_value": 10566.3778326228,
"base_cost_quote": 1182.1810543123,
"unrealized_pnl_exit_net": 105.4068299627
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 0.4219,
"quote_asset_bal": 9134.3447037805,
"total_value_mid": 10564.5013237805,
"total_value_exit_net": 10563.4287063155,
"total_value": 10564.5013237805,
"base_cost_quote": 1325.8521768998,
"unrealized_pnl_exit_net": 103.2318256352
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 0.4226,
"quote_asset_bal": 9132.2202840643,
"total_value_mid": 10566.8162780643,
"total_value_exit_net": 10565.7403310688,
"total_value": 10566.8162780643,
"base_cost_quote": 1328.2427574915,
"unrealized_pnl_exit_net": 105.277289513
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 0.4058,
"quote_asset_bal": 9189.4688413268,
"total_value_mid": 10567.5007133268,
"total_value_exit_net": 10566.4671894228,
"total_value": 10567.5007133268,
"base_cost_quote": 1271.386165005,
"unrealized_pnl_exit_net": 105.612183091
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 0.3002,
"quote_asset_bal": 9553.32766622,
"total_value_mid": 10574.60806622,
"total_value_exit_net": 10573.84210592,
"total_value": 10574.60806622,
"base_cost_quote": 910.9106319708,
"unrealized_pnl_exit_net": 109.6038077292
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 0.3689,
"quote_asset_bal": 9323.414933553,
"total_value_mid": 10566.143119553,
"total_value_exit_net": 10565.2110734135,
"total_value": 10566.143119553,
"base_cost_quote": 1143.429069105,
"unrealized_pnl_exit_net": 98.3670707555
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 0.4252,
"quote_asset_bal": 9135.6528228158,
"total_value_mid": 10557.7937508158,
"total_value_exit_net": 10556.7271451198,
"total_value": 10557.7937508158,
"base_cost_quote": 1332.2203854767,
"unrealized_pnl_exit_net": 88.8539368273
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 0.4643,
"quote_asset_bal": 9005.0777378673,
"total_value_mid": 10561.8709948673,
"total_value_exit_net": 10560.7033999245,
"total_value": 10561.8709948673,
"base_cost_quote": 1462.9061223237,
"unrealized_pnl_exit_net": 92.7195397335
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 0.4574,
"quote_asset_bal": 9028.238040686,
"total_value_mid": 10552.738518686,
"total_value_exit_net": 10551.5951433275,
"total_value": 10552.738518686,
"base_cost_quote": 1440.0149868388,
"unrealized_pnl_exit_net": 83.3421158028
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 0.5404,
"quote_asset_bal": 8754.2110182393,
"total_value_mid": 10535.4504782393,
"total_value_exit_net": 10534.1145486443,
"total_value": 10535.4504782393,
"base_cost_quote": 1714.1217808647,
"unrealized_pnl_exit_net": 65.7817495403
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 0.5381,
"quote_asset_bal": 8761.7899937413,
"total_value_mid": 10531.9129917413,
"total_value_exit_net": 10530.5853994928,
"total_value": 10531.9129917413,
"base_cost_quote": 1706.5579212215,
"unrealized_pnl_exit_net": 62.23748453
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 0.581,
"quote_asset_bal": 8621.1814526838,
"total_value_mid": 10525.1242626838,
"total_value_exit_net": 10523.6963055763,
"total_value": 10525.1242626838,
"base_cost_quote": 1847.222078275,
"unrealized_pnl_exit_net": 55.2927746175
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 0.5528,
"quote_asset_bal": 8713.7240450513,
"total_value_mid": 10549.0145170513,
"total_value_exit_net": 10547.6380491973,
"total_value": 10549.0145170513,
"base_cost_quote": 1755.704355423,
"unrealized_pnl_exit_net": 78.209648723
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 0.5023,
"quote_asset_bal": 8882.2129356998,
"total_value_mid": 10563.3256446998,
"total_value_exit_net": 10562.064810168,
"total_value": 10563.3256446998,
"base_cost_quote": 1588.721083827,
"unrealized_pnl_exit_net": 91.1307906413
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 0.4801,
"quote_asset_bal": 8956.8188176925,
"total_value_mid": 10565.9555846925,
"total_value_exit_net": 10564.7487321173,
"total_value": 10565.9555846925,
"base_cost_quote": 1514.4569574745,
"unrealized_pnl_exit_net": 93.4729569503
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 0.5199,
"quote_asset_bal": 8823.9858757465,
"total_value_mid": 10558.1227237466,
"total_value_exit_net": 10556.8221211106,
"total_value": 10558.1227237466,
"base_cost_quote": 1647.3980215493,
"unrealized_pnl_exit_net": 85.4382238148
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 0.5199,
"quote_asset_bal": 8823.8975880715,
"total_value_mid": 10561.7413230715,
"total_value_exit_net": 10560.4379402703,
"total_value": 10561.7413230715,
"base_cost_quote": 1647.5958378002,
"unrealized_pnl_exit_net": 88.9445143985
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 0.5176,
"quote_asset_bal": 8831.5939824433,
"total_value_mid": 10562.1585264433,
"total_value_exit_net": 10560.8606030353,
"total_value": 10562.1585264433,
"base_cost_quote": 1639.91477432,
"unrealized_pnl_exit_net": 89.351846272
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 0.5176,
"quote_asset_bal": 8831.5939824433,
"total_value_mid": 10557.6657584433,
"total_value_exit_net": 10556.3712046113,
"total_value": 10557.6657584433,
"base_cost_quote": 1639.91477432,
"unrealized_pnl_exit_net": 84.862447848
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 0.5163,
"quote_asset_bal": 8836.204046503,
"total_value_mid": 10558.534379503,
"total_value_exit_net": 10557.2426317533,
"total_value": 10558.534379503,
"base_cost_quote": 1635.8099079775,
"unrealized_pnl_exit_net": 85.2286772728
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 0.5493,
"quote_asset_bal": 8726.6316576055,
"total_value_mid": 10544.3752176055,
"total_value_exit_net": 10543.0119099356,
"total_value": 10544.3752176055,
"base_cost_quote": 1745.3948590955,
"unrealized_pnl_exit_net": 70.9853932345
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 0.5785,
"quote_asset_bal": 8629.8899027675,
"total_value_mid": 10549.6305827676,
"total_value_exit_net": 10548.1907772576,
"total_value": 10549.6305827676,
"base_cost_quote": 1842.3700089502,
"unrealized_pnl_exit_net": 75.9308655398
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 0.57,
"quote_asset_bal": 8658.1329912143,
"total_value_mid": 10551.8097912143,
"total_value_exit_net": 10550.3895336143,
"total_value": 10551.8097912143,
"base_cost_quote": 1814.312134315,
"unrealized_pnl_exit_net": 77.944408085
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 0.4793,
"quote_asset_bal": 8961.2683066006,
"total_value_mid": 10566.1995636006,
"total_value_exit_net": 10564.9958651578,
"total_value": 10566.1995636006,
"base_cost_quote": 1512.3158458443,
"unrealized_pnl_exit_net": 91.411712713
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 0.4877,
"quote_asset_bal": 8933.1235378436,
"total_value_mid": 10567.6257028436,
"total_value_exit_net": 10566.3998262198,
"total_value": 10567.6257028436,
"base_cost_quote": 1540.4606146012,
"unrealized_pnl_exit_net": 92.815673775
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 0.4816,
"quote_asset_bal": 8953.5840089726,
"total_value_mid": 10568.9570969726,
"total_value_exit_net": 10567.7455671566,
"total_value": 10568.9570969726,
"base_cost_quote": 1520.0282358018,
"unrealized_pnl_exit_net": 94.1333223823
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 0.4845,
"quote_asset_bal": 8943.9110672923,
"total_value_mid": 10566.6033122923,
"total_value_exit_net": 10565.3862931086,
"total_value": 10566.6033122923,
"base_cost_quote": 1530.1530277047,
"unrealized_pnl_exit_net": 91.3221981115
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 0.5082,
"quote_asset_bal": 8864.9180965483,
"total_value_mid": 10561.5488785483,
"total_value_exit_net": 10560.2764054618,
"total_value": 10561.5488785483,
"base_cost_quote": 1609.3251142688,
"unrealized_pnl_exit_net": 86.0331946448
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 0.4814,
"quote_asset_bal": 8955.0079045121,
"total_value_mid": 10568.3766785121,
"total_value_exit_net": 10567.1666519316,
"total_value": 10568.3766785121,
"base_cost_quote": 1519.9525801025,
"unrealized_pnl_exit_net": 92.206167317
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 0.5143,
"quote_asset_bal": 8845.081121811,
"total_value_mid": 10563.1877028111,
"total_value_exit_net": 10561.8991228753,
"total_value": 10563.1877028111,
"base_cost_quote": 1629.9621304312,
"unrealized_pnl_exit_net": 86.855870633
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 0.4768,
"quote_asset_bal": 8970.9535786543,
"total_value_mid": 10567.2036906543,
"total_value_exit_net": 10566.0065030703,
"total_value": 10567.2036906543,
"base_cost_quote": 1504.5067724285,
"unrealized_pnl_exit_net": 90.5461519875
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 0.4806,
"quote_asset_bal": 8958.1739871438,
"total_value_mid": 10571.6923671438,
"total_value_exit_net": 10570.4822283588,
"total_value": 10571.6923671438,
"base_cost_quote": 1517.286363939,
"unrealized_pnl_exit_net": 95.021877276
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 0.4806,
"quote_asset_bal": 8958.1739871438,
"total_value_mid": 10568.9673651438,
"total_value_exit_net": 10567.7592701103,
"total_value": 10568.9673651438,
"base_cost_quote": 1517.286363939,
"unrealized_pnl_exit_net": 92.2989190275
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 0.4012,
"quote_asset_bal": 9226.622499204,
"total_value_mid": 10588.8569792041,
"total_value_exit_net": 10587.8353033441,
"total_value": 10588.8569792041,
"base_cost_quote": 1250.244512649,
"unrealized_pnl_exit_net": 110.968291491
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 0.3517,
"quote_asset_bal": 9395.5739282273,
"total_value_mid": 10600.0725712273,
"total_value_exit_net": 10599.1691972451,
"total_value": 10600.0725712273,
"base_cost_quote": 1082.6830387263,
"unrealized_pnl_exit_net": 120.9122302915
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 0.3746,
"quote_asset_bal": 9317.7209849223,
"total_value_mid": 10589.0347189223,
"total_value_exit_net": 10588.0812336218,
"total_value": 10589.0347189223,
"base_cost_quote": 1161.2530280558,
"unrealized_pnl_exit_net": 109.1072206437
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 0.417,
"quote_asset_bal": 9174.526888106,
"total_value_mid": 10582.2104681061,
"total_value_exit_net": 10581.154705421,
"total_value": 10582.2104681061,
"base_cost_quote": 1304.684007671,
"unrealized_pnl_exit_net": 101.943809644
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 0.4779,
"quote_asset_bal": 8970.2396146508,
"total_value_mid": 10570.5785656508,
"total_value_exit_net": 10569.3783114376,
"total_value": 10570.5785656508,
"base_cost_quote": 1509.0542234607,
"unrealized_pnl_exit_net": 90.084473326
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 0.4779,
"quote_asset_bal": 8970.2396146508,
"total_value_mid": 10573.3312696508,
"total_value_exit_net": 10572.1289509096,
"total_value": 10573.3312696508,
"base_cost_quote": 1509.0542234607,
"unrealized_pnl_exit_net": 92.835112798
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 0.484,
"quote_asset_bal": 8949.8382540513,
"total_value_mid": 10569.0360540513,
"total_value_exit_net": 10567.8216557013,
"total_value": 10569.0360540513,
"base_cost_quote": 1529.4683085502,
"unrealized_pnl_exit_net": 88.5150930998
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 0.508,
"quote_asset_bal": 8870.096798573,
"total_value_mid": 10556.956518573,
"total_value_exit_net": 10555.691373783,
"total_value": 10556.956518573,
"base_cost_quote": 1609.2223742715,
"unrealized_pnl_exit_net": 76.3722009385
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 0.5297,
"quote_asset_bal": 8797.6684107768,
"total_value_mid": 10564.2867717768,
"total_value_exit_net": 10562.9618080061,
"total_value": 10564.2867717768,
"base_cost_quote": 1681.7332376623,
"unrealized_pnl_exit_net": 83.560159567
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 0.6322,
"quote_asset_bal": 8458.7955415725,
"total_value_mid": 10544.4296635725,
"total_value_exit_net": 10542.865437981,
"total_value": 10544.4296635725,
"base_cost_quote": 2020.6582329063,
"unrealized_pnl_exit_net": 63.4116635023
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 0.6116,
"quote_asset_bal": 8526.991723954,
"total_value_mid": 10541.675515954,
"total_value_exit_net": 10540.16450311,
"total_value": 10541.675515954,
"base_cost_quote": 1952.915192703,
"unrealized_pnl_exit_net": 60.257586453
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 0.5216,
"quote_asset_bal": 8827.9674429145,
"total_value_mid": 10583.0419069145,
"total_value_exit_net": 10581.7256010665,
"total_value": 10583.0419069145,
"base_cost_quote": 1653.3111190487,
"unrealized_pnl_exit_net": 100.4470391033
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 0.5093,
"quote_asset_bal": 8869.3446019178,
"total_value_mid": 10581.6366669178,
"total_value_exit_net": 10580.352447869,
"total_value": 10581.6366669178,
"base_cost_quote": 1612.0959588447,
"unrealized_pnl_exit_net": 98.9118871065
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 0.5062,
"quote_asset_bal": 8879.7512456715,
"total_value_mid": 10583.4584616715,
"total_value_exit_net": 10582.1806812595,
"total_value": 10583.4584616715,
"base_cost_quote": 1601.8383323905,
"unrealized_pnl_exit_net": 100.5911031975
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 0.4686,
"quote_asset_bal": 9006.6999413238,
"total_value_mid": 10589.4433013238,
"total_value_exit_net": 10588.2562438038,
"total_value": 10589.4433013238,
"base_cost_quote": 1475.7899149265,
"unrealized_pnl_exit_net": 105.7663875535
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 0.4486,
"quote_asset_bal": 9074.7499991465,
"total_value_mid": 10592.9559511465,
"total_value_exit_net": 10591.8172966825,
"total_value": 10592.9559511465,
"base_cost_quote": 1408.4961053938,
"unrealized_pnl_exit_net": 108.5711921423
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 0.454,
"quote_asset_bal": 9056.533377135,
"total_value_mid": 10586.962837135,
"total_value_exit_net": 10585.81501504,
"total_value": 10586.962837135,
"base_cost_quote": 1426.7666070005,
"unrealized_pnl_exit_net": 102.5150309045
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 0.4311,
"quote_asset_bal": 9134.218616526,
"total_value_mid": 10597.139222526,
"total_value_exit_net": 10596.0420320715,
"total_value": 10597.139222526,
"base_cost_quote": 1349.5288390883,
"unrealized_pnl_exit_net": 112.2945764573
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 0.4431,
"quote_asset_bal": 9093.598449024,
"total_value_mid": 10593.824274024,
"total_value_exit_net": 10592.6991046553,
"total_value": 10593.824274024,
"base_cost_quote": 1390.174045147,
"unrealized_pnl_exit_net": 108.9266104843
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 0.4408,
"quote_asset_bal": 9101.4048212213,
"total_value_mid": 10592.9045172213,
"total_value_exit_net": 10591.7858924493,
"total_value": 10592.9045172213,
"base_cost_quote": 1382.3957207758,
"unrealized_pnl_exit_net": 107.9853504523
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 0.4408,
"quote_asset_bal": 9101.4048212213,
"total_value_mid": 10592.4196372213,
"total_value_exit_net": 10591.3013761093,
"total_value": 10592.4196372213,
"base_cost_quote": 1382.3957207758,
"unrealized_pnl_exit_net": 107.5008341123
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 0.4896,
"quote_asset_bal": 8937.7682200263,
"total_value_mid": 10575.8278360263,
"total_value_exit_net": 10574.5992913143,
"total_value": 10575.8278360263,
"base_cost_quote": 1546.3857811458,
"unrealized_pnl_exit_net": 90.4452901423
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 0.5118,
"quote_asset_bal": 8863.482525016,
"total_value_mid": 10573.385853016,
"total_value_exit_net": 10572.10342552,
"total_value": 10573.385853016,
"base_cost_quote": 1620.7784588395,
"unrealized_pnl_exit_net": 87.8424416645
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 0.5011,
"quote_asset_bal": 8899.377605912,
"total_value_mid": 10580.021906912,
"total_value_exit_net": 10578.7614236863,
"total_value": 10580.021906912,
"base_cost_quote": 1584.966385914,
"unrealized_pnl_exit_net": 94.4174318603
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 0.5392,
"quote_asset_bal": 8771.8448033233,
"total_value_mid": 10567.2028673233,
"total_value_exit_net": 10565.8563487753,
"total_value": 10567.2028673233,
"base_cost_quote": 1712.659275808,
"unrealized_pnl_exit_net": 81.352269644
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 0.5354,
"quote_asset_bal": 8784.525953877,
"total_value_mid": 10567.573927877,
"total_value_exit_net": 10566.2366418965,
"total_value": 10567.573927877,
"base_cost_quote": 1700.0060900308,
"unrealized_pnl_exit_net": 81.7045979888
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 0.5354,
"quote_asset_bal": 8784.525953877,
"total_value_mid": 10567.134899877,
"total_value_exit_net": 10565.7979431675,
"total_value": 10567.134899877,
"base_cost_quote": 1700.0060900308,
"unrealized_pnl_exit_net": 81.2658992598
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 0.5477,
"quote_asset_bal": 8743.5148447928,
"total_value_mid": 10563.8998577928,
"total_value_exit_net": 10562.534569033,
"total_value": 10563.8998577928,
"base_cost_quote": 1741.0563726693,
"unrealized_pnl_exit_net": 77.963351571
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 0.4988,
"quote_asset_bal": 8908.2024376283,
"total_value_mid": 10569.6902736283,
"total_value_exit_net": 10568.4441577513,
"total_value": 10569.6902736283,
"base_cost_quote": 1577.4510806593,
"unrealized_pnl_exit_net": 82.7906394638
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 0.5036,
"quote_asset_bal": 8892.3158488565,
"total_value_mid": 10560.5915688565,
"total_value_exit_net": 10559.3403620665,
"total_value": 10560.5915688565,
"base_cost_quote": 1593.5196460515,
"unrealized_pnl_exit_net": 73.5048671585
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 0.5167,
"quote_asset_bal": 8848.854853737,
"total_value_mid": 10574.591517737,
"total_value_exit_net": 10573.297215239,
"total_value": 10574.591517737,
"base_cost_quote": 1637.3387027143,
"unrealized_pnl_exit_net": 87.1036587878
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 0.506,
"quote_asset_bal": 8884.3925542953,
"total_value_mid": 10570.1315542953,
"total_value_exit_net": 10568.8672500453,
"total_value": 10570.1315542953,
"base_cost_quote": 1601.883320106,
"unrealized_pnl_exit_net": 82.591375644
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 0.4683,
"quote_asset_bal": 9010.7495700453,
"total_value_mid": 10586.4573120453,
"total_value_exit_net": 10585.2755312388,
"total_value": 10586.4573120453,
"base_cost_quote": 1476.2210630453,
"unrealized_pnl_exit_net": 98.3048981483
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 0.466,
"quote_asset_bal": 9018.484483506,
"total_value_mid": 10584.542723506,
"total_value_exit_net": 10583.368179826,
"total_value": 10584.542723506,
"base_cost_quote": 1468.5322197345,
"unrealized_pnl_exit_net": 96.3514765855
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 0.466,
"quote_asset_bal": 9018.484483506,
"total_value_mid": 10584.621943506,
"total_value_exit_net": 10583.447340411,
"total_value": 10584.621943506,
"base_cost_quote": 1468.5322197345,
"unrealized_pnl_exit_net": 96.4306371705
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 0.4713,
"quote_asset_bal": 9000.5854039133,
"total_value_mid": 10576.1931469133,
"total_value_exit_net": 10575.011441106,
"total_value": 10576.1931469133,
"base_cost_quote": 1486.4889601968,
"unrealized_pnl_exit_net": 87.937076996
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 0.443,
"quote_asset_bal": 9095.8420208738,
"total_value_mid": 10592.2960208738,
"total_value_exit_net": 10591.1736803738,
"total_value": 10592.2960208738,
"base_cost_quote": 1391.8144054953,
"unrealized_pnl_exit_net": 103.5172540048
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 0.4209,
"quote_asset_bal": 9170.7029062835,
"total_value_mid": 10596.6363442835,
"total_value_exit_net": 10595.566894205,
"total_value": 10596.6363442835,
"base_cost_quote": 1317.3649172255,
"unrealized_pnl_exit_net": 107.499070696
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 0.3623,
"quote_asset_bal": 9370.0653920925,
"total_value_mid": 10607.6097320925,
"total_value_exit_net": 10606.6815738375,
"total_value": 10607.6097320925,
"base_cost_quote": 1119.6417359755,
"unrealized_pnl_exit_net": 116.9744457695
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 0.2968,
"quote_asset_bal": 9595.0045574033,
"total_value_mid": 10622.4786694033,
"total_value_exit_net": 10621.7080638193,
"total_value": 10622.4786694033,
"base_cost_quote": 898.3986330043,
"unrealized_pnl_exit_net": 128.3048734118
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 0.2893,
"quote_asset_bal": 9620.9358503165,
"total_value_mid": 10622.7007463165,
"total_value_exit_net": 10621.9494226445,
"total_value": 10622.7007463165,
"base_cost_quote": 872.866931579,
"unrealized_pnl_exit_net": 128.146640749
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 0.2818,
"quote_asset_bal": 9646.9716065178,
"total_value_mid": 10622.1123265178,
"total_value_exit_net": 10621.3809709778,
"total_value": 10622.1123265178,
"base_cost_quote": 847.2928924243,
"unrealized_pnl_exit_net": 127.1164720358
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 0.2273,
"quote_asset_bal": 9836.3755414063,
"total_value_mid": 10632.6506284063,
"total_value_exit_net": 10632.053422091,
"total_value": 10632.6506284063,
"base_cost_quote": 660.9831348268,
"unrealized_pnl_exit_net": 134.694745858
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 0.2197,
"quote_asset_bal": 9862.6301727828,
"total_value_mid": 10642.1587277828,
"total_value_exit_net": 10641.5740813665,
"total_value": 10642.1587277828,
"base_cost_quote": 640.5785958915,
"unrealized_pnl_exit_net": 138.3653126923
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 0.2089,
"quote_asset_bal": 9900.6989815158,
"total_value_mid": 10647.5143925158,
"total_value_exit_net": 10646.9542809575,
"total_value": 10647.5143925158,
"base_cost_quote": 605.7394581205,
"unrealized_pnl_exit_net": 140.5158413213
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 0.247,
"quote_asset_bal": 9765.466368597,
"total_value_mid": 10644.561598597,
"total_value_exit_net": 10643.9022771745,
"total_value": 10644.561598597,
"base_cost_quote": 741.3878291538,
"unrealized_pnl_exit_net": 137.0480794238
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 0.2128,
"quote_asset_bal": 9887.4636149453,
"total_value_mid": 10652.1902069453,
"total_value_exit_net": 10651.6166620013,
"total_value": 10652.1902069453,
"base_cost_quote": 621.2229150103,
"unrealized_pnl_exit_net": 142.9301320458
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 0.2011,
"quote_asset_bal": 9929.3207001908,
"total_value_mid": 10658.5093001908,
"total_value_exit_net": 10657.9624087408,
"total_value": 10658.5093001908,
"base_cost_quote": 582.3164650413,
"unrealized_pnl_exit_net": 146.3252435088
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 0.2179,
"quote_asset_bal": 9868.614471641,
"total_value_mid": 10653.570894641,
"total_value_exit_net": 10652.9821773238,
"total_value": 10653.570894641,
"base_cost_quote": 643.022693591,
"unrealized_pnl_exit_net": 141.3450120918
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 0.2172,
"quote_asset_bal": 9871.1176921125,
"total_value_mid": 10661.8994521125,
"total_value_exit_net": 10661.3063657925,
"total_value": 10661.8994521125,
"base_cost_quote": 642.7157495555,
"unrealized_pnl_exit_net": 147.4729241245
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 0.2534,
"quote_asset_bal": 9738.717112651,
"total_value_mid": 10661.883720651,
"total_value_exit_net": 10661.191345695,
"total_value": 10661.883720651,
"base_cost_quote": 778.6532692878,
"unrealized_pnl_exit_net": 143.8209637563
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 0.2583,
"quote_asset_bal": 9721.004172364,
"total_value_mid": 10661.799930364,
"total_value_exit_net": 10661.0943335455,
"total_value": 10661.799930364,
"base_cost_quote": 796.5889369572,
"unrealized_pnl_exit_net": 143.5012242243
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 0.2835,
"quote_asset_bal": 9629.6618238295,
"total_value_mid": 10659.3621738295,
"total_value_exit_net": 10658.589898567,
"total_value": 10659.3621738295,
"base_cost_quote": 888.162230456,
"unrealized_pnl_exit_net": 140.7658442815
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 0.2772,
"quote_asset_bal": 9652.7004149645,
"total_value_mid": 10662.2600429645,
"total_value_exit_net": 10661.5028732435,
"total_value": 10662.2600429645,
"base_cost_quote": 865.3103133627,
"unrealized_pnl_exit_net": 143.4921449163
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 0.287,
"quote_asset_bal": 9617.0898300945,
"total_value_mid": 10661.4024700945,
"total_value_exit_net": 10660.6192356145,
"total_value": 10661.4024700945,
"base_cost_quote": 900.9615577572,
"unrealized_pnl_exit_net": 142.5678477628
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 0.217,
"quote_asset_bal": 9873.4453286388,
"total_value_mid": 10664.3105086388,
"total_value_exit_net": 10663.7173597538,
"total_value": 10664.3105086388,
"base_cost_quote": 645.6553896332,
"unrealized_pnl_exit_net": 144.6166414818
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 0.2263,
"quote_asset_bal": 9839.22632614,
"total_value_mid": 10672.89063314,
"total_value_exit_net": 10672.2653849098,
"total_value": 10672.89063314,
"base_cost_quote": 681.3638729247,
"unrealized_pnl_exit_net": 151.675185845
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 0.2177,
"quote_asset_bal": 9870.8670946638,
"total_value_mid": 10677.4543026638,
"total_value_exit_net": 10676.8493622578,
"total_value": 10677.4543026638,
"base_cost_quote": 651.6151601113,
"unrealized_pnl_exit_net": 154.3671074828
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 0.2608,
"quote_asset_bal": 9712.4808771418,
"total_value_mid": 10670.1019651418,
"total_value_exit_net": 10669.3837493258,
"total_value": 10670.1019651418,
"base_cost_quote": 810.2111139332,
"unrealized_pnl_exit_net": 146.6917582508
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 0.2923,
"quote_asset_bal": 9597.7300617458,
"total_value_mid": 10663.2337137458,
"total_value_exit_net": 10662.4345860068,
"total_value": 10663.2337137458,
"base_cost_quote": 925.2670842405,
"unrealized_pnl_exit_net": 139.4374400205
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 0.2504,
"quote_asset_bal": 9752.0533006603,
"total_value_mid": 10676.0693646603,
"total_value_exit_net": 10675.3763526123,
"total_value": 10676.0693646603,
"base_cost_quote": 771.9461236985,
"unrealized_pnl_exit_net": 151.3769282535
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 0.2504,
"quote_asset_bal": 9752.0533006603,
"total_value_mid": 10675.0402206603,
"total_value_exit_net": 10674.3479804703,
"total_value": 10675.0402206603,
"base_cost_quote": 771.9461236985,
"unrealized_pnl_exit_net": 150.3485561115
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 0.249,
"quote_asset_bal": 9757.1983613963,
"total_value_mid": 10676.4142313963,
"total_value_exit_net": 10675.7248194938,
"total_value": 10676.4142313963,
"base_cost_quote": 766.857103794,
"unrealized_pnl_exit_net": 151.6693543035
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 0.2398,
"quote_asset_bal": 9789.9393911498,
"total_value_mid": 10691.0382491498,
"total_value_exit_net": 10690.3624250063,
"total_value": 10691.0382491498,
"base_cost_quote": 739.560126404,
"unrealized_pnl_exit_net": 160.8629074525
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 0.2676,
"quote_asset_bal": 9684.1236478533,
"total_value_mid": 10694.1343558533,
"total_value_exit_net": 10693.3768478223,
"total_value": 10694.1343558533,
"base_cost_quote": 848.5486004995,
"unrealized_pnl_exit_net": 160.7045994695
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 0.3267,
"quote_asset_bal": 9462.1174327078,
"total_value_mid": 10688.8367287078,
"total_value_exit_net": 10687.9166892358,
"total_value": 10688.8367287078,
"base_cost_quote": 1070.8292150212,
"unrealized_pnl_exit_net": 154.9700415068
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 0.313,
"quote_asset_bal": 9514.0411378475,
"total_value_mid": 10688.8209078475,
"total_value_exit_net": 10687.93982302,
"total_value": 10688.8209078475,
"base_cost_quote": 1019.4654650792,
"unrealized_pnl_exit_net": 154.4332200933
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 0.2567,
"quote_asset_bal": 9726.8937114893,
"total_value_mid": 10695.4202444893,
"total_value_exit_net": 10694.6938495895,
"total_value": 10695.4202444893,
"base_cost_quote": 807.518769188,
"unrealized_pnl_exit_net": 160.2813689123
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 0.2567,
"quote_asset_bal": 9726.8575610493,
"total_value_mid": 10695.8692570493,
"total_value_exit_net": 10695.1424982773,
"total_value": 10695.8692570493,
"base_cost_quote": 807.5828071805,
"unrealized_pnl_exit_net": 160.7021300475
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 0.2567,
"quote_asset_bal": 9726.8575610493,
"total_value_mid": 10696.1516270493,
"total_value_exit_net": 10695.4246564998,
"total_value": 10696.1516270493,
"base_cost_quote": 807.5828071805,
"unrealized_pnl_exit_net": 160.98428827
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 0.2358,
"quote_asset_bal": 9805.8160317538,
"total_value_mid": 10713.0871857538,
"total_value_exit_net": 10712.4067323883,
"total_value": 10713.0871857538,
"base_cost_quote": 734.9805593027,
"unrealized_pnl_exit_net": 171.6101413318
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 0.2625,
"quote_asset_bal": 9703.4028006323,
"total_value_mid": 10720.7898006323,
"total_value_exit_net": 10720.0267603823,
"total_value": 10720.7898006323,
"base_cost_quote": 840.50970985,
"unrealized_pnl_exit_net": 176.1142499
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 0.2855,
"quote_asset_bal": 9613.5065765178,
"total_value_mid": 10718.3944315178,
"total_value_exit_net": 10717.5657656266,
"total_value": 10718.3944315178,
"base_cost_quote": 932.3473064275,
"unrealized_pnl_exit_net": 171.7118826813
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 0.2989,
"quote_asset_bal": 9563.0356668306,
"total_value_mid": 10718.3947598306,
"total_value_exit_net": 10717.5282405108,
"total_value": 10718.3947598306,
"base_cost_quote": 983.4751005353,
"unrealized_pnl_exit_net": 171.017473145
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 0.2715,
"quote_asset_bal": 9669.2574705841,
"total_value_mid": 10723.6440105841,
"total_value_exit_net": 10722.8532206791,
"total_value": 10723.6440105841,
"base_cost_quote": 877.9630858302,
"unrealized_pnl_exit_net": 175.6326642648
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 0.2356,
"quote_asset_bal": 9809.1936426818,
"total_value_mid": 10728.2386146818,
"total_value_exit_net": 10727.5493309528,
"total_value": 10728.2386146818,
"base_cost_quote": 738.8810514795,
"unrealized_pnl_exit_net": 179.4746367915
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 0.2277,
"quote_asset_bal": 9840.0875904763,
"total_value_mid": 10731.3509304763,
"total_value_exit_net": 10730.6824829713,
"total_value": 10731.3509304763,
"base_cost_quote": 709.4900367385,
"unrealized_pnl_exit_net": 181.1048557565
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 0.224,
"quote_asset_bal": 9854.0472206603,
"total_value_mid": 10746.2862606603,
"total_value_exit_net": 10745.6170813803,
"total_value": 10746.2862606603,
"base_cost_quote": 701.4890815193,
"unrealized_pnl_exit_net": 190.0807792008
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 0.236,
"quote_asset_bal": 9806.2407431066,
"total_value_mid": 10750.4484231066,
"total_value_exit_net": 10749.7402673466,
"total_value": 10750.4484231066,
"base_cost_quote": 750.655685837,
"unrealized_pnl_exit_net": 192.843838403
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 0.2711,
"quote_asset_bal": 9663.7174297973,
"total_value_mid": 10756.8495607973,
"total_value_exit_net": 10756.0297116991,
"total_value": 10756.8495607973,
"base_cost_quote": 899.8742028523,
"unrealized_pnl_exit_net": 192.4380790495
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 0.3445,
"quote_asset_bal": 9370.4460205436,
"total_value_mid": 10748.5390355436,
"total_value_exit_net": 10747.5054657823,
"total_value": 10748.5390355436,
"base_cost_quote": 1194.150681805,
"unrealized_pnl_exit_net": 182.9087634338
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 0.3448,
"quote_asset_bal": 9367.4653070188,
"total_value_mid": 10740.8071550188,
"total_value_exit_net": 10739.7771486328,
"total_value": 10740.8071550188,
"base_cost_quote": 1204.433720304,
"unrealized_pnl_exit_net": 167.87812131
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 0.3563,
"quote_asset_bal": 9322.3908204488,
"total_value_mid": 10744.7938654488,
"total_value_exit_net": 10743.7270631651,
"total_value": 10744.7938654488,
"base_cost_quote": 1250.3112876928,
"unrealized_pnl_exit_net": 171.0249550235
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 0.2569,
"quote_asset_bal": 9722.4013932823,
"total_value_mid": 10759.3936572823,
"total_value_exit_net": 10758.6159130843,
"total_value": 10759.3936572823,
"base_cost_quote": 852.4227919655,
"unrealized_pnl_exit_net": 183.7917278365
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 0.2065,
"quote_asset_bal": 9926.5429047088,
"total_value_mid": 10781.8018897088,
"total_value_exit_net": 10781.1604454701,
"total_value": 10781.8018897088,
"base_cost_quote": 654.842788018,
"unrealized_pnl_exit_net": 199.7747527433
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 0.2235,
"quote_asset_bal": 9856.7781192115,
"total_value_mid": 10790.2728042116,
"total_value_exit_net": 10789.5726831978,
"total_value": 10790.2728042116,
"base_cost_quote": 731.526065374,
"unrealized_pnl_exit_net": 201.2684986123
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 0.2065,
"quote_asset_bal": 9927.838484671,
"total_value_mid": 10803.0722146711,
"total_value_exit_net": 10802.4157893736,
"total_value": 10803.0722146711,
"base_cost_quote": 665.7887903673,
"unrealized_pnl_exit_net": 208.7885143353
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 0.2041,
"quote_asset_bal": 9938.9877218146,
"total_value_mid": 10844.5283968146,
"total_value_exit_net": 10843.8492413083,
"total_value": 10844.5283968146,
"base_cost_quote": 674.6665276803,
"unrealized_pnl_exit_net": 230.1949918135
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 0.4056,
"quote_asset_bal": 9082.4070911793,
"total_value_mid": 10801.7170991793,
"total_value_exit_net": 10800.4276166733,
"total_value": 10801.7170991793,
"base_cost_quote": 1541.6150317652,
"unrealized_pnl_exit_net": 176.4054937288
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 0.417,
"quote_asset_bal": 9034.1862359958,
"total_value_mid": 10803.4380059958,
"total_value_exit_net": 10802.1110671683,
"total_value": 10803.4380059958,
"base_cost_quote": 1590.1115408882,
"unrealized_pnl_exit_net": 177.8132902843
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 0.4248,
"quote_asset_bal": 9001.2192980883,
"total_value_mid": 10803.4163060883,
"total_value_exit_net": 10802.0646583323,
"total_value": 10803.4163060883,
"base_cost_quote": 1623.2538950252,
"unrealized_pnl_exit_net": 177.5914652188
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 0.2695,
"quote_asset_bal": 9674.5486216836,
"total_value_mid": 10850.6708766836,
"total_value_exit_net": 10849.7887849923,
"total_value": 10850.6708766836,
"base_cost_quote": 955.864497102,
"unrealized_pnl_exit_net": 219.3756662068
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 0.6656,
"quote_asset_bal": 8006.343986946,
"total_value_mid": 10734.1791229461,
"total_value_exit_net": 10732.1332465941,
"total_value": 10734.1791229461,
"base_cost_quote": 2625.8502167287,
"unrealized_pnl_exit_net": 99.9390429193
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 0.7003,
"quote_asset_bal": 7872.5802184983,
"total_value_mid": 10738.0537524983,
"total_value_exit_net": 10735.9046473478,
"total_value": 10738.0537524983,
"base_cost_quote": 2766.5668360995,
"unrealized_pnl_exit_net": 96.75759275
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 0.6802,
"quote_asset_bal": 7956.7867484518,
"total_value_mid": 10757.4830404518,
"total_value_exit_net": 10755.3825182328,
"total_value": 10757.4830404518,
"base_cost_quote": 2685.3894636982,
"unrealized_pnl_exit_net": 113.2063060827
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 0.676,
"quote_asset_bal": 7976.1168262071,
"total_value_mid": 10754.8351062071,
"total_value_exit_net": 10752.7510674971,
"total_value": 10754.8351062071,
"base_cost_quote": 2667.963196793,
"unrealized_pnl_exit_net": 108.671044497
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 0.686,
"quote_asset_bal": 7935.0650258008,
"total_value_mid": 10754.7514058008,
"total_value_exit_net": 10752.6366410158,
"total_value": 10754.7514058008,
"base_cost_quote": 2709.1300277772,
"unrealized_pnl_exit_net": 108.4415874377
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 0.7422,
"quote_asset_bal": 7705.6649955163,
"total_value_mid": 10718.9673075163,
"total_value_exit_net": 10716.7073307823,
"total_value": 10718.9673075163,
"base_cost_quote": 2938.6386812655,
"unrealized_pnl_exit_net": 72.4036540005
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 0.9207,
"quote_asset_bal": 6987.5789043358,
"total_value_mid": 10663.1974443358,
"total_value_exit_net": 10660.4407304308,
"total_value": 10663.1974443358,
"base_cost_quote": 3657.374158888,
"unrealized_pnl_exit_net": 15.487667207
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 1.0005,
"quote_asset_bal": 6674.6608636998,
"total_value_mid": 10645.0050436998,
"total_value_exit_net": 10642.0272855648,
"total_value": 10645.0050436998,
"base_cost_quote": 3972.8210797727,
"unrealized_pnl_exit_net": -5.4546579078
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 1.0348,
"quote_asset_bal": 6540.9392694436,
"total_value_mid": 10634.8460734436,
"total_value_exit_net": 10631.7756433406,
"total_value": 10634.8460734436,
"base_cost_quote": 4109.473455245,
"unrealized_pnl_exit_net": -18.637081348
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 0.89,
"quote_asset_bal": 7120.9845053793,
"total_value_mid": 10711.4670053793,
"total_value_exit_net": 10708.7741435043,
"total_value": 10711.4670053793,
"base_cost_quote": 3533.2394406227,
"unrealized_pnl_exit_net": 54.5501975023
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 0.9397,
"quote_asset_bal": 6922.4323545143,
"total_value_mid": 10681.3827065143,
"total_value_exit_net": 10678.5634937503,
"total_value": 10681.3827065143,
"base_cost_quote": 3732.3667741977,
"unrealized_pnl_exit_net": 23.7643650383
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 0.9206,
"quote_asset_bal": 6998.9781320918,
"total_value_mid": 10689.1203780918,
"total_value_exit_net": 10686.3527714073,
"total_value": 10689.1203780918,
"base_cost_quote": 3656.0531879023,
"unrealized_pnl_exit_net": 31.3214514133
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 0.9467,
"quote_asset_bal": 6894.7024609496,
"total_value_mid": 10661.6690959496,
"total_value_exit_net": 10658.8438709733,
"total_value": 10661.6690959496,
"base_cost_quote": 3760.3288590445,
"unrealized_pnl_exit_net": 3.8125509793
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 0.9531,
"quote_asset_bal": 6869.9722288848,
"total_value_mid": 10674.7569598848,
"total_value_exit_net": 10671.9033713366,
"total_value": 10674.7569598848,
"base_cost_quote": 3785.872844676,
"unrealized_pnl_exit_net": 16.0582977758
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 1.0398,
"quote_asset_bal": 6528.167341863,
"total_value_mid": 10613.7287058631,
"total_value_exit_net": 10610.6645348401,
"total_value": 10613.7287058631,
"base_cost_quote": 4128.5552208438,
"unrealized_pnl_exit_net": -46.0580278667
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 0.9934,
"quote_asset_bal": 6711.9853705003,
"total_value_mid": 10657.5118865003,
"total_value_exit_net": 10654.5527416133,
"total_value": 10657.5118865003,
"base_cost_quote": 3945.808650634,
"unrealized_pnl_exit_net": -3.241279521
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 0.9704,
"quote_asset_bal": 6804.5207590338,
"total_value_mid": 10672.7874630338,
"total_value_exit_net": 10669.8862630058,
"total_value": 10672.7874630338,
"base_cost_quote": 3854.263607307,
"unrealized_pnl_exit_net": 11.101896665
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 0.9475,
"quote_asset_bal": 6896.1043874923,
"total_value_mid": 10678.5338624923,
"total_value_exit_net": 10675.697040386,
"total_value": 10678.5338624923,
"base_cost_quote": 3763.2566762617,
"unrealized_pnl_exit_net": 16.335976632
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 0.9596,
"quote_asset_bal": 6847.7899187973,
"total_value_mid": 10675.9797747973,
"total_value_exit_net": 10673.1086324053,
"total_value": 10675.9797747973,
"base_cost_quote": 3811.5711449567,
"unrealized_pnl_exit_net": 13.7475686513
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 0.9513,
"quote_asset_bal": 6880.9705306603,
"total_value_mid": 10690.6321276603,
"total_value_exit_net": 10687.7748814625,
"total_value": 10690.6321276603,
"base_cost_quote": 3778.4311886167,
"unrealized_pnl_exit_net": 28.3731621855
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 0.7455,
"quote_asset_bal": 7717.3155779258,
"total_value_mid": 10784.8020629258,
"total_value_exit_net": 10782.501448062,
"total_value": 10784.8020629258,
"base_cost_quote": 2947.4014554208,
"unrealized_pnl_exit_net": 117.7844147155
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 0.7205,
"quote_asset_bal": 7821.0499347693,
"total_value_mid": 10795.2667297693,
"total_value_exit_net": 10793.036067173,
"total_value": 10795.2667297693,
"base_cost_quote": 2846.1191636305,
"unrealized_pnl_exit_net": 125.8669687733
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 0.6124,
"quote_asset_bal": 8270.9459189938,
"total_value_mid": 10829.6511029938,
"total_value_exit_net": 10827.7320741058,
"total_value": 10829.6511029938,
"base_cost_quote": 2401.7044023555,
"unrealized_pnl_exit_net": 155.0817527565
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 0.5941,
"quote_asset_bal": 8349.5803980515,
"total_value_mid": 10830.5122930515,
"total_value_exit_net": 10828.6515941303,
"total_value": 10830.5122930515,
"base_cost_quote": 2327.8694726592,
"unrealized_pnl_exit_net": 151.2017234195
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 0.7322,
"quote_asset_bal": 7783.3504261148,
"total_value_mid": 10766.8677321148,
"total_value_exit_net": 10764.6300941353,
"total_value": 10766.8677321148,
"base_cost_quote": 2896.4192644335,
"unrealized_pnl_exit_net": 84.860403587
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 0.7033,
"quote_asset_bal": 7901.5617822015,
"total_value_mid": 10780.8368172015,
"total_value_exit_net": 10778.6773609253,
"total_value": 10780.8368172015,
"base_cost_quote": 2778.5054313355,
"unrealized_pnl_exit_net": 98.6101473883
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 0.695,
"quote_asset_bal": 7935.9231100065,
"total_value_mid": 10779.0430100065,
"total_value_exit_net": 10776.9106700815,
"total_value": 10779.0430100065,
"base_cost_quote": 2744.607597013,
"unrealized_pnl_exit_net": 96.379963062
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 0.806,
"quote_asset_bal": 7486.434973026,
"total_value_mid": 10733.494633026,
"total_value_exit_net": 10731.059338281,
"total_value": 10733.494633026,
"base_cost_quote": 3194.995006417,
"unrealized_pnl_exit_net": 49.629358838
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 0.7687,
"quote_asset_bal": 7638.6094284948,
"total_value_mid": 10766.4497284948,
"total_value_exit_net": 10764.1038482698,
"total_value": 10766.4497284948,
"base_cost_quote": 3044.235157269,
"unrealized_pnl_exit_net": 81.259262506
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 0.7317,
"quote_asset_bal": 7790.8771950998,
"total_value_mid": 10788.6008760998,
"total_value_exit_net": 10786.352583339,
"total_value": 10788.6008760998,
"base_cost_quote": 2894.713023712,
"unrealized_pnl_exit_net": 100.7623645273
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 0.7577,
"quote_asset_bal": 7686.5917295945,
"total_value_mid": 10774.1207285945,
"total_value_exit_net": 10771.8050818453,
"total_value": 10774.1207285945,
"base_cost_quote": 3000.5413204507,
"unrealized_pnl_exit_net": 84.6720318
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 0.7589,
"quote_asset_bal": 7684.0459324588,
"total_value_mid": 10769.6726204588,
"total_value_exit_net": 10767.3584004428,
"total_value": 10769.6726204588,
"base_cost_quote": 3005.2186258007,
"unrealized_pnl_exit_net": 78.0938421833
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 0.7589,
"quote_asset_bal": 7684.0459324588,
"total_value_mid": 10763.7076664588,
"total_value_exit_net": 10761.3979201583,
"total_value": 10763.7076664588,
"base_cost_quote": 3005.2186258007,
"unrealized_pnl_exit_net": 72.1333618988
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 0.7703,
"quote_asset_bal": 7637.9330751353,
"total_value_mid": 10769.7340821353,
"total_value_exit_net": 10767.38523138,
"total_value": 10769.7340821353,
"base_cost_quote": 3051.4016791322,
"unrealized_pnl_exit_net": 78.0504771125
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 0.6706,
"quote_asset_bal": 8047.53060737,
"total_value_mid": 10826.22876737,
"total_value_exit_net": 10824.14474375,
"total_value": 10826.22876737,
"base_cost_quote": 2643.8265568797,
"unrealized_pnl_exit_net": 132.7875795003
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 0.6621,
"quote_asset_bal": 8083.082895103,
"total_value_mid": 10816.595850103,
"total_value_exit_net": 10814.5457153868,
"total_value": 10816.595850103,
"base_cost_quote": 2609.594613163,
"unrealized_pnl_exit_net": 121.8682071208
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 0.6274,
"quote_asset_bal": 8227.5217025605,
"total_value_mid": 10840.7744565605,
"total_value_exit_net": 10838.814516995,
"total_value": 10840.7744565605,
"base_cost_quote": 2466.1470291038,
"unrealized_pnl_exit_net": 145.1457853308
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 0.6324,
"quote_asset_bal": 8206.7157709565,
"total_value_mid": 10837.9045069565,
"total_value_exit_net": 10835.9311154045,
"total_value": 10837.9045069565,
"base_cost_quote": 2486.97867613,
"unrealized_pnl_exit_net": 142.236668318
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 0.5137,
"quote_asset_bal": 8704.8991750915,
"total_value_mid": 10879.2988090915,
"total_value_exit_net": 10877.668009366,
"total_value": 10879.2988090915,
"base_cost_quote": 1993.2797294175,
"unrealized_pnl_exit_net": 179.489104857
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 0.4872,
"quote_asset_bal": 8817.079270851,
"total_value_mid": 10886.768206851,
"total_value_exit_net": 10885.215940149,
"total_value": 10886.768206851,
"base_cost_quote": 1882.9257089297,
"unrealized_pnl_exit_net": 185.2109603683
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 0.4938,
"quote_asset_bal": 8789.119857006,
"total_value_mid": 10882.061529006,
"total_value_exit_net": 10880.491822752,
"total_value": 10882.061529006,
"base_cost_quote": 1910.8851227747,
"unrealized_pnl_exit_net": 180.4868429713
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 0.457,
"quote_asset_bal": 8946.7345174875,
"total_value_mid": 10886.1831074875,
"total_value_exit_net": 10884.728521045,
"total_value": 10886.1831074875,
"base_cost_quote": 1756.4643519932,
"unrealized_pnl_exit_net": 181.5296515643
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 0.5296,
"quote_asset_bal": 8641.1123148675,
"total_value_mid": 10872.2111948675,
"total_value_exit_net": 10870.5378707075,
"total_value": 10872.2111948675,
"base_cost_quote": 2062.8077393447,
"unrealized_pnl_exit_net": 166.6178164953
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 0.5074,
"quote_asset_bal": 8735.24974215,
"total_value_mid": 10873.87985415,
"total_value_exit_net": 10872.275881566,
"total_value": 10873.87985415,
"base_cost_quote": 1969.5173660012,
"unrealized_pnl_exit_net": 167.5087734148
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 0.52,
"quote_asset_bal": 8682.400445565,
"total_value_mid": 10873.446445565,
"total_value_exit_net": 10871.803161065,
"total_value": 10873.446445565,
"base_cost_quote": 2022.5856653972,
"unrealized_pnl_exit_net": 166.8170501028
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 0.5014,
"quote_asset_bal": 8761.8167177415,
"total_value_mid": 10872.6706057415,
"total_value_exit_net": 10871.0874653255,
"total_value": 10872.6706057415,
"base_cost_quote": 1943.9934794327,
"unrealized_pnl_exit_net": 165.2772681513
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 0.5074,
"quote_asset_bal": 8736.515766249,
"total_value_mid": 10874.471036249,
"total_value_exit_net": 10872.8675697965,
"total_value": 10874.471036249,
"base_cost_quote": 1969.2944309252,
"unrealized_pnl_exit_net": 167.0573726223
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 0.5074,
"quote_asset_bal": 8736.515766249,
"total_value_mid": 10874.364482249,
"total_value_exit_net": 10872.761095712,
"total_value": 10874.364482249,
"base_cost_quote": 1969.2944309252,
"unrealized_pnl_exit_net": 166.9508985378
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 0.5236,
"quote_asset_bal": 8668.5150367485,
"total_value_mid": 10869.7817967485,
"total_value_exit_net": 10868.1308466785,
"total_value": 10869.7817967485,
"base_cost_quote": 2037.3481429577,
"unrealized_pnl_exit_net": 162.2676669723
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 0.5032,
"quote_asset_bal": 8754.6296460735,
"total_value_mid": 10875.9346620735,
"total_value_exit_net": 10874.3436833115,
"total_value": 10875.9346620735,
"base_cost_quote": 1951.5530368517,
"unrealized_pnl_exit_net": 168.1610003863
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 0.4978,
"quote_asset_bal": 8777.927860734,
"total_value_mid": 10888.256378734,
"total_value_exit_net": 10886.6736323455,
"total_value": 10888.256378734,
"base_cost_quote": 1928.6808155417,
"unrealized_pnl_exit_net": 180.0649560698
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 0.4424,
"quote_asset_bal": 9013.971003736,
"total_value_mid": 10909.818691736,
"total_value_exit_net": 10908.39680597,
"total_value": 10909.818691736,
"base_cost_quote": 1694.6080345232,
"unrealized_pnl_exit_net": 199.8177677108
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 0.397,
"quote_asset_bal": 9210.8838566473,
"total_value_mid": 10921.4814266473,
"total_value_exit_net": 10920.1984784698,
"total_value": 10921.4814266473,
"base_cost_quote": 1504.1712779962,
"unrealized_pnl_exit_net": 205.1433438263
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 0.3857,
"quote_asset_bal": 9259.6647245365,
"total_value_mid": 10924.6506275365,
"total_value_exit_net": 10923.4018881093,
"total_value": 10924.6506275365,
"base_cost_quote": 1455.5623906528,
"unrealized_pnl_exit_net": 208.17477292
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 0.3868,
"quote_asset_bal": 9254.9197800975,
"total_value_mid": 10924.5613200975,
"total_value_exit_net": 10923.3090889425,
"total_value": 10924.5613200975,
"base_cost_quote": 1460.3344229948,
"unrealized_pnl_exit_net": 208.0548858503
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 0.3731,
"quote_asset_bal": 9314.8962795643,
"total_value_mid": 10925.0093295643,
"total_value_exit_net": 10923.8017447768,
"total_value": 10925.0093295643,
"base_cost_quote": 1401.2729681008,
"unrealized_pnl_exit_net": 207.6324971118
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 0.3748,
"quote_asset_bal": 9308.0434052855,
"total_value_mid": 10927.9702332855,
"total_value_exit_net": 10926.7552881645,
"total_value": 10927.9702332855,
"base_cost_quote": 1408.772967885,
"unrealized_pnl_exit_net": 209.938914994
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 0.3346,
"quote_asset_bal": 9482.8613483238,
"total_value_mid": 10941.1351443238,
"total_value_exit_net": 10940.0414389768,
"total_value": 10941.1351443238,
"base_cost_quote": 1234.664448358,
"unrealized_pnl_exit_net": 222.515642295
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 0.3242,
"quote_asset_bal": 9528.9565499273,
"total_value_mid": 10938.6397479273,
"total_value_exit_net": 10937.5824855288,
"total_value": 10938.6397479273,
"base_cost_quote": 1190.2972599045,
"unrealized_pnl_exit_net": 218.328675697
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 0.3142,
"quote_asset_bal": 9572.6704749675,
"total_value_mid": 10939.8552189675,
"total_value_exit_net": 10938.8298304095,
"total_value": 10939.8552189675,
"base_cost_quote": 1146.781893839,
"unrealized_pnl_exit_net": 219.377461603
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 0.3142,
"quote_asset_bal": 9572.6704749675,
"total_value_mid": 10940.0877269675,
"total_value_exit_net": 10939.0621640285,
"total_value": 10940.0877269675,
"base_cost_quote": 1146.781893839,
"unrealized_pnl_exit_net": 219.609795222
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 0.316,
"quote_asset_bal": 9564.799229115,
"total_value_mid": 10944.850229115,
"total_value_exit_net": 10943.815190865,
"total_value": 10944.850229115,
"base_cost_quote": 1154.6805073595,
"unrealized_pnl_exit_net": 224.3354543905
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 0.2478,
"quote_asset_bal": 9865.0708407983,
"total_value_mid": 10976.4488847983,
"total_value_exit_net": 10975.6153512653,
"total_value": 10976.4488847983,
"base_cost_quote": 861.9859299438,
"unrealized_pnl_exit_net": 248.5585805233
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 0.2671,
"quote_asset_bal": 9777.8281971835,
"total_value_mid": 10988.0609681835,
"total_value_exit_net": 10987.1532936053,
"total_value": 10988.0609681835,
"base_cost_quote": 954.7199563397,
"unrealized_pnl_exit_net": 254.605140082
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 0.3062,
"quote_asset_bal": 9601.7217989508,
"total_value_mid": 10978.6542069508,
"total_value_exit_net": 10977.6215076448,
"total_value": 10978.6542069508,
"base_cost_quote": 1132.0312691615,
"unrealized_pnl_exit_net": 243.8684395325
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 0.2871,
"quote_asset_bal": 9687.8389572285,
"total_value_mid": 10984.3969122285,
"total_value_exit_net": 10983.4244937623,
"total_value": 10984.3969122285,
"base_cost_quote": 1046.2182846568,
"unrealized_pnl_exit_net": 249.367251877
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 0.2652,
"quote_asset_bal": 9786.470911102,
"total_value_mid": 10995.077479102,
"total_value_exit_net": 10994.171024176,
"total_value": 10995.077479102,
"base_cost_quote": 950.446944983,
"unrealized_pnl_exit_net": 257.253168091
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 0.2566,
"quote_asset_bal": 9825.7914507065,
"total_value_mid": 10998.8357847065,
"total_value_exit_net": 10997.956001456,
"total_value": 10998.8357847065,
"base_cost_quote": 911.5221312515,
"unrealized_pnl_exit_net": 260.642419498
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 0.2661,
"quote_asset_bal": 9782.3614477733,
"total_value_mid": 10992.9940417733,
"total_value_exit_net": 10992.0860673278,
"total_value": 10992.9940417733,
"base_cost_quote": 955.0947462215,
"unrealized_pnl_exit_net": 254.629873333
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 0.5175,
"quote_asset_bal": 8666.9647037285,
"total_value_mid": 10925.5106537285,
"total_value_exit_net": 10923.816744266,
"total_value": 10925.5106537285,
"base_cost_quote": 2071.9741820245,
"unrealized_pnl_exit_net": 184.877858513
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 0.5122,
"quote_asset_bal": 8691.0574989548,
"total_value_mid": 10924.5260869548,
"total_value_exit_net": 10922.8509855138,
"total_value": 10924.5260869548,
"base_cost_quote": 2049.3021587505,
"unrealized_pnl_exit_net": 182.4913278085
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 0.563,
"quote_asset_bal": 8471.8084222078,
"total_value_mid": 10913.5337922078,
"total_value_exit_net": 10911.7024981803,
"total_value": 10913.5337922078,
"base_cost_quote": 2269.5656455603,
"unrealized_pnl_exit_net": 170.3284304122
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 0.5428,
"quote_asset_bal": 8559.697543323,
"total_value_mid": 10927.841667323,
"total_value_exit_net": 10926.06555923,
"total_value": 10927.841667323,
"base_cost_quote": 2181.905290566,
"unrealized_pnl_exit_net": 184.462725341
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 0.5503,
"quote_asset_bal": 8528.324538518,
"total_value_mid": 10917.094293518,
"total_value_exit_net": 10915.3027162018,
"total_value": 10917.094293518,
"base_cost_quote": 2214.7098965817,
"unrealized_pnl_exit_net": 172.268281102
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 0.5349,
"quote_asset_bal": 8595.4965896232,
"total_value_mid": 10925.4086606232,
"total_value_exit_net": 10923.66122657,
"total_value": 10925.4086606232,
"base_cost_quote": 2147.8537370405,
"unrealized_pnl_exit_net": 180.3108999062
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 0.5213,
"quote_asset_bal": 8654.8607329395,
"total_value_mid": 10940.4745179395,
"total_value_exit_net": 10938.7603076008,
"total_value": 10940.4745179395,
"base_cost_quote": 2088.796883595,
"unrealized_pnl_exit_net": 195.1026910662
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 0.4053,
"quote_asset_bal": 9167.9416708158,
"total_value_mid": 10969.6825558158,
"total_value_exit_net": 10968.331250152,
"total_value": 10969.6825558158,
"base_cost_quote": 1578.883102871,
"unrealized_pnl_exit_net": 221.5064764652
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 0.3402,
"quote_asset_bal": 9460.0059880605,
"total_value_mid": 10994.2399480605,
"total_value_exit_net": 10993.0892725905,
"total_value": 10994.2399480605,
"base_cost_quote": 1289.6538334885,
"unrealized_pnl_exit_net": 243.4294510415
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 0.3834,
"quote_asset_bal": 9266.860253412,
"total_value_mid": 10983.713951412,
"total_value_exit_net": 10982.4263111385,
"total_value": 10983.713951412,
"base_cost_quote": 1483.0025693632,
"unrealized_pnl_exit_net": 232.5634883632
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 0.3744,
"quote_asset_bal": 9307.904919149,
"total_value_mid": 10986.036855149,
"total_value_exit_net": 10984.778256197,
"total_value": 10986.036855149,
"base_cost_quote": 1442.6796958728,
"unrealized_pnl_exit_net": 234.1936411752
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 0.3407,
"quote_asset_bal": 9459.4955994025,
"total_value_mid": 10995.5245144025,
"total_value_exit_net": 10994.3724927162,
"total_value": 10995.5245144025,
"base_cost_quote": 1291.8294489772,
"unrealized_pnl_exit_net": 243.0474443365
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 0.3332,
"quote_asset_bal": 9493.3771801442,
"total_value_mid": 11000.5807241442,
"total_value_exit_net": 10999.4503214862,
"total_value": 11000.5807241442,
"base_cost_quote": 1258.3317725483,
"unrealized_pnl_exit_net": 247.7413687938
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 0.2974,
"quote_asset_bal": 9655.7672190422,
"total_value_mid": 11007.2390650422,
"total_value_exit_net": 11006.2254611577,
"total_value": 11007.2390650422,
"base_cost_quote": 1097.8729246028,
"unrealized_pnl_exit_net": 252.5853175128
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 0.2664,
"quote_asset_bal": 9796.4030162063,
"total_value_mid": 11025.9216002063,
"total_value_exit_net": 11024.9994612683,
"total_value": 11025.9216002063,
"base_cost_quote": 964.1535142058,
"unrealized_pnl_exit_net": 264.4429308563
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 0.3015,
"quote_asset_bal": 9635.1253607022,
"total_value_mid": 11023.5238157022,
"total_value_exit_net": 11022.482516861,
"total_value": 11023.5238157022,
"base_cost_quote": 1126.6059912525,
"unrealized_pnl_exit_net": 260.7511649063
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 0.2586,
"quote_asset_bal": 9833.3211557947,
"total_value_mid": 11030.2279817947,
"total_value_exit_net": 11029.3303016752,
"total_value": 11030.2279817947,
"base_cost_quote": 929.5182712413,
"unrealized_pnl_exit_net": 266.4908746393
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 0.2717,
"quote_asset_bal": 9773.0032879552,
"total_value_mid": 11029.3413709552,
"total_value_exit_net": 11028.399117393,
"total_value": 11029.3413709552,
"base_cost_quote": 990.7066141058,
"unrealized_pnl_exit_net": 264.689215332
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 0.3071,
"quote_asset_bal": 9610.5294073437,
"total_value_mid": 11024.1567723437,
"total_value_exit_net": 11023.09655182,
"total_value": 11024.1567723437,
"base_cost_quote": 1153.566050143,
"unrealized_pnl_exit_net": 259.0010943333
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 0.3032,
"quote_asset_bal": 9628.501143425,
"total_value_mid": 11026.674591425,
"total_value_exit_net": 11025.625961339,
"total_value": 11026.674591425,
"base_cost_quote": 1135.649835052,
"unrealized_pnl_exit_net": 261.474982862
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 0.2646,
"quote_asset_bal": 9806.1581272785,
"total_value_mid": 11045.9678872785,
"total_value_exit_net": 11045.0380299585,
"total_value": 11045.9678872785,
"base_cost_quote": 961.9981829188,
"unrealized_pnl_exit_net": 276.8817197613
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 0.2747,
"quote_asset_bal": 9758.931016405,
"total_value_mid": 11045.617575405,
"total_value_exit_net": 11044.6525604857,
"total_value": 11045.617575405,
"base_cost_quote": 1009.2949218885,
"unrealized_pnl_exit_net": 276.4266221923
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 0.2596,
"quote_asset_bal": 9830.0746176795,
"total_value_mid": 11077.8939376795,
"total_value_exit_net": 11076.9580731895,
"total_value": 11077.8939376795,
"base_cost_quote": 948.2951223255,
"unrealized_pnl_exit_net": 298.5883331845
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 0.3717,
"quote_asset_bal": 9287.4796776465,
"total_value_mid": 11071.6582626465,
"total_value_exit_net": 11070.3201287077,
"total_value": 11071.6582626465,
"base_cost_quote": 1498.1009876905,
"unrealized_pnl_exit_net": 284.7394633707
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 0.2948,
"quote_asset_bal": 9661.5085457665,
"total_value_mid": 11129.6066497665,
"total_value_exit_net": 11128.5055761885,
"total_value": 11129.6066497665,
"base_cost_quote": 1130.89441516,
"unrealized_pnl_exit_net": 336.102615262
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 0.2921,
"quote_asset_bal": 9675.439026932,
"total_value_mid": 11138.074277932,
"total_value_exit_net": 11136.9773014937,
"total_value": 11138.074277932,
"base_cost_quote": 1120.1497416942,
"unrealized_pnl_exit_net": 341.3885328675
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 0.306,
"quote_asset_bal": 9603.526446222,
"total_value_mid": 11154.912786222,
"total_value_exit_net": 11153.749246467,
"total_value": 11154.912786222,
"base_cost_quote": 1200.5345511188,
"unrealized_pnl_exit_net": 349.6882491263
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 0.3159,
"quote_asset_bal": 9554.896037445,
"total_value_mid": 11156.619602445,
"total_value_exit_net": 11155.4183097713,
"total_value": 11156.619602445,
"base_cost_quote": 1250.689301991,
"unrealized_pnl_exit_net": 349.8329703353
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 0.3637,
"quote_asset_bal": 9313.2415026958,
"total_value_mid": 11152.8506506958,
"total_value_exit_net": 11151.4709438348,
"total_value": 11152.8506506958,
"base_cost_quote": 1495.9027332353,
"unrealized_pnl_exit_net": 342.3267079038
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 0.3027,
"quote_asset_bal": 9623.7812572258,
"total_value_mid": 11195.6993302258,
"total_value_exit_net": 11194.520391671,
"total_value": 11195.6993302258,
"base_cost_quote": 1193.3833037028,
"unrealized_pnl_exit_net": 377.3558307425
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 0.3138,
"quote_asset_bal": 9558.8551057298,
"total_value_mid": 11297.7621157298,
"total_value_exit_net": 11296.4579354723,
"total_value": 11297.7621157298,
"base_cost_quote": 1281.6879165283,
"unrealized_pnl_exit_net": 455.9149132143
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 0.4552,
"quote_asset_bal": 8794.9922402483,
"total_value_mid": 11289.2788482483,
"total_value_exit_net": 11287.4081332923,
"total_value": 11289.2788482483,
"base_cost_quote": 2061.5699486975,
"unrealized_pnl_exit_net": 430.8459443465
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 0.9866,
"quote_asset_bal": 6076.783225875,
"total_value_mid": 10935.245595875,
"total_value_exit_net": 10931.6017490975,
"total_value": 10935.245595875,
"base_cost_quote": 4797.4741220348,
"unrealized_pnl_exit_net": 57.3444011878
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 1.1082,
"quote_asset_bal": 5486.4801848845,
"total_value_mid": 10850.0352008845,
"total_value_exit_net": 10846.0125346225,
"total_value": 10850.0352008845,
"base_cost_quote": 5390.7701015405,
"unrealized_pnl_exit_net": -31.2377518025
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 1.1805,
"quote_asset_bal": 5144.0545050748,
"total_value_mid": 10756.6237050748,
"total_value_exit_net": 10752.4142781748,
"total_value": 10756.6237050748,
"base_cost_quote": 5736.2390000337,
"unrealized_pnl_exit_net": -127.8792269337
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 1.1739,
"quote_asset_bal": 5207.8463787305,
"total_value_mid": 10835.9455827305,
"total_value_exit_net": 10831.7245083275,
"total_value": 10835.9455827305,
"base_cost_quote": 5709.19953063,
"unrealized_pnl_exit_net": -85.3214010329
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 0.944,
"quote_asset_bal": 6337.0901259397,
"total_value_mid": 11022.0205259398,
"total_value_exit_net": 11018.5068281398,
"total_value": 11022.0205259398,
"base_cost_quote": 4600.0932453208,
"unrealized_pnl_exit_net": 81.3234568793
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 0.8736,
"quote_asset_bal": 6698.0029307282,
"total_value_mid": 11092.9971707282,
"total_value_exit_net": 11089.7009250482,
"total_value": 11092.9971707282,
"base_cost_quote": 4252.975256937,
"unrealized_pnl_exit_net": 138.722737383
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 1.2584,
"quote_asset_bal": 4838.8170102475,
"total_value_mid": 10753.2718422475,
"total_value_exit_net": 10748.8360011235,
"total_value": 10753.2718422475,
"base_cost_quote": 6119.6414563737,
"unrealized_pnl_exit_net": -209.6224654977
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 0.9792,
"quote_asset_bal": 6200.3562093845,
"total_value_mid": 11039.8269933845,
"total_value_exit_net": 11036.1973902965,
"total_value": 11039.8269933845,
"base_cost_quote": 4773.628025866,
"unrealized_pnl_exit_net": 62.213155046
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 0.9477,
"quote_asset_bal": 6357.4967466327,
"total_value_mid": 11089.0121976328,
"total_value_exit_net": 11085.4635610445,
"total_value": 11089.0121976328,
"base_cost_quote": 4618.2811540292,
"unrealized_pnl_exit_net": 109.6856603825
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 0.8804,
"quote_asset_bal": 6695.8541153067,
"total_value_mid": 11136.0986913068,
"total_value_exit_net": 11132.7685078748,
"total_value": 11136.0986913068,
"base_cost_quote": 4284.3617491645,
"unrealized_pnl_exit_net": 152.5526434035
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 0.8441,
"quote_asset_bal": 6881.4147598975,
"total_value_mid": 11133.0198448975,
"total_value_exit_net": 11129.8311410838,
"total_value": 11133.0198448975,
"base_cost_quote": 4104.0299206537,
"unrealized_pnl_exit_net": 144.3864605325
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 0.8371,
"quote_asset_bal": 6917.9517883637,
"total_value_mid": 11140.5353183638,
"total_value_exit_net": 11137.3683807163,
"total_value": 11140.5353183638,
"base_cost_quote": 4068.8085694375,
"unrealized_pnl_exit_net": 150.608022915
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 0.7927,
"quote_asset_bal": 7145.2915434452,
"total_value_mid": 11166.6744974453,
"total_value_exit_net": 11163.6584602298,
"total_value": 11166.6744974453,
"base_cost_quote": 3845.8611151607,
"unrealized_pnl_exit_net": 172.5058016238
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 0.9227,
"quote_asset_bal": 6499.4590894332,
"total_value_mid": 11046.5431434333,
"total_value_exit_net": 11043.1328303928,
"total_value": 11046.5431434333,
"base_cost_quote": 4494.0001801545,
"unrealized_pnl_exit_net": 49.673560805
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 0.8364,
"quote_asset_bal": 6930.6065419215,
"total_value_mid": 11150.4620059215,
"total_value_exit_net": 11147.2971143235,
"total_value": 11150.4620059215,
"base_cost_quote": 4066.3495715712,
"unrealized_pnl_exit_net": 150.3410008308
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 0.8404,
"quote_asset_bal": 6910.4683696115,
"total_value_mid": 11132.5035056115,
"total_value_exit_net": 11129.3369792595,
"total_value": 11132.5035056115,
"base_cost_quote": 4086.4877438812,
"unrealized_pnl_exit_net": 132.3808657668
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 0.8489,
"quote_asset_bal": 6867.8197622452,
"total_value_mid": 11133.4573722453,
"total_value_exit_net": 11130.2581440378,
"total_value": 11133.4573722453,
"base_cost_quote": 4129.1915627425,
"unrealized_pnl_exit_net": 133.24681905
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 0.8767,
"quote_asset_bal": 6728.9448709632,
"total_value_mid": 11111.2087239633,
"total_value_exit_net": 11107.9220260735,
"total_value": 11111.2087239633,
"base_cost_quote": 4268.3243171048,
"unrealized_pnl_exit_net": 110.6528380055
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 1.0208,
"quote_asset_bal": 6020.8748825155,
"total_value_mid": 10988.8124505155,
"total_value_exit_net": 10985.0864973395,
"total_value": 10988.8124505155,
"base_cost_quote": 4977.9848896493,
"unrealized_pnl_exit_net": -13.7732748252
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 0.9126,
"quote_asset_bal": 6556.4086522377,
"total_value_mid": 11101.1201482378,
"total_value_exit_net": 11097.7116146158,
"total_value": 11101.1201482378,
"base_cost_quote": 4445.445881722,
"unrealized_pnl_exit_net": 95.857080656
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 0.8929,
"quote_asset_bal": 6655.6050939365,
"total_value_mid": 11118.0603529365,
"total_value_exit_net": 11114.7135114923,
"total_value": 11118.0603529365,
"base_cost_quote": 4347.4372763565,
"unrealized_pnl_exit_net": 111.6711411993
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 0.7919,
"quote_asset_bal": 7168.4506466322,
"total_value_mid": 11219.8743986323,
"total_value_exit_net": 11216.8358308183,
"total_value": 11219.8743986323,
"base_cost_quote": 3839.6732097097,
"unrealized_pnl_exit_net": 208.7119744763
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 0.749,
"quote_asset_bal": 7388.641400746,
"total_value_mid": 11239.909520746,
"total_value_exit_net": 11237.021069656,
"total_value": 11239.909520746,
"base_cost_quote": 3621.7174343865,
"unrealized_pnl_exit_net": 226.6622345236
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 0.7079,
"quote_asset_bal": 7601.2841869875,
"total_value_mid": 11272.9420379875,
"total_value_exit_net": 11270.1882945993,
"total_value": 11272.9420379875,
"base_cost_quote": 3411.8668473987,
"unrealized_pnl_exit_net": 257.0372602131
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 0.6121,
"quote_asset_bal": 8102.4400137652,
"total_value_mid": 11318.9092147653,
"total_value_exit_net": 11316.4968628645,
"total_value": 11318.9092147653,
"base_cost_quote": 2917.0319643725,
"unrealized_pnl_exit_net": 297.0248847268
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 0.6941,
"quote_asset_bal": 7677.5320525102,
"total_value_mid": 11262.4891425103,
"total_value_exit_net": 11259.8004246928,
"total_value": 11262.4891425103,
"base_cost_quote": 3343.2471612037,
"unrealized_pnl_exit_net": 239.0212109788
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 0.6767,
"quote_asset_bal": 7768.6742349535,
"total_value_mid": 11270.8065119535,
"total_value_exit_net": 11268.1799127458,
"total_value": 11270.8065119535,
"base_cost_quote": 3253.4216515605,
"unrealized_pnl_exit_net": 246.0840262318
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 100-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (29,904 closed trades) via GET /backtests/059eb1f8-8f62-4501-aa0e-845a0d2a5fb0/trades (paginate through all pages).100-row audit sample from 29,904 closed trades (RFC 4180 CSV)
100-row audit sample from 29,904 closed trades (RFC 4180 CSV)
id,symbol,buy_time,sell_time,buy_price,sell_price,buy_quantity,sell_quantity,quantity,profit,profit_percentage,buy_fee_in_quote,sell_fee_in_quote,fee_buy,fee_sell,fill_type
,,2024-04-24T00:49:00Z,2024-04-25T15:52:00Z,2312.31,2335.44,0.0022,,,0.0432172125,0.8495481791,0.0038153115,0.003853476,,,TP
,,2024-04-24T00:49:00Z,2024-04-25T14:39:00Z,2312.31,2323.88,0.0033,,,0.0267064298,0.3499901614,0.0057229672,0.005751603,,,TP
,,2024-04-24T00:49:00Z,2024-07-16T05:23:00Z,2312.31,2427.93,0.0022,,,0.246542604,4.8464444646,0.0038153115,0.0040060845,,,TP
,,2024-04-24T00:49:00Z,2024-04-25T15:49:00Z,2312.31,2329.66,0.0033,,,0.0457661242,0.5997691702,0.0057229672,0.0057659085,,,TP
,,2024-04-24T00:49:00Z,2024-04-27T18:02:00Z,2312.31,2370.12,0.0022,,,0.1194559905,2.3482222323,0.0038153115,0.003910698,,,TP
,,2024-04-24T00:49:00Z,2024-04-24T15:07:00Z,2312.31,2318.1,0.0055,,,0.0127445588,0.1002111525,0.0095382788,0.0095621625,,,TP
,,2024-04-24T00:49:00Z,2024-04-24T15:14:00Z,2312.31,2320.41,0.0033,,,0.015264018,0.2000363273,0.0057229672,0.0057430147,,,TP
,,2024-04-24T00:56:00Z,2024-04-28T05:08:00Z,2315.31,2373.2,0.0022,,,0.1196219585,2.3484378982,0.0038202615,0.00391578,,,TP
,,2024-04-24T00:56:00Z,2024-04-25T15:52:00Z,2315.31,2338.47,0.0022,,,0.043273263,0.8495477927,0.0038202615,0.0038584755,,,TP
,,2024-04-24T00:56:00Z,2024-04-25T15:51:00Z,2315.31,2332.68,0.0033,,,0.0458172247,0.5996608446,0.0057303922,0.005773383,,,TP
,,2024-04-24T00:56:00Z,2024-07-16T05:23:00Z,2315.31,2431.08,0.0022,,,0.2468624565,4.8464442127,0.0038202615,0.004011282,,,TP
,,2024-04-24T00:56:00Z,2024-04-25T14:39:00Z,2315.31,2323.42,0.0033,,,0.0152821432,0.2000143609,0.0057303922,0.0057504645,,,TP
,,2024-04-24T00:56:00Z,2024-04-25T14:41:00Z,2315.31,2326.89,0.0033,,,0.026724555,0.3497738964,0.0057303922,0.0057590528,,,TP
,,2024-04-24T00:56:00Z,2024-04-24T15:14:00Z,2315.31,2321.1,0.0054,,,0.0124885395,0.0998869482,0.0093770055,0.009400455,,,TP
,,2024-04-24T01:54:00Z,2024-04-24T04:21:00Z,2309.3,2315.08,0.0055,,,0.0127144325,0.1001045771,0.0095258625,0.009549705,,,TP
,,2024-04-24T01:54:00Z,2024-04-25T14:41:00Z,2309.3,2326.62,0.0033,,,0.045682098,0.5994483177,0.0057155175,0.0057583845,,,TP
,,2024-04-24T01:54:00Z,2024-04-27T17:54:00Z,2309.3,2367.04,0.0022,,,0.119312039,2.3484495302,0.003810345,0.003905616,,,TP
,,2024-04-24T01:54:00Z,2024-04-24T15:06:00Z,2309.3,2317.39,0.0033,,,0.0152459422,0.2000598666,0.0057155175,0.0057355402,,,TP
,,2024-04-24T01:54:00Z,2024-05-20T01:52:00Z,2309.3,2424.77,0.0022,,,0.2462227845,4.8464663534,0.003810345,0.0040008705,,,TP
,,2024-04-24T01:54:00Z,2024-04-25T15:51:00Z,2309.3,2332.4,0.0022,,,0.043161195,0.8495528948,0.003810345,0.00384846,,,TP
,,2024-04-24T01:54:00Z,2024-04-24T15:14:00Z,2309.3,2320.85,0.0033,,,0.0266553787,0.3497764474,0.0057155175,0.0057441038,,,TP
,,2024-04-24T05:58:00Z,2024-04-24T06:11:00Z,2309.3,2315.08,0.0055,,,0.0127144325,0.1001045771,0.0095258625,0.009549705,,,TP
,,2024-04-24T09:56:00Z,2024-04-25T15:49:00Z,2305.3,2328.36,0.0022,,,0.043086461,0.8495534204,0.003803745,0.003841794,,,TP
,,2024-04-24T09:56:00Z,2024-04-25T14:41:00Z,2305.3,2322.59,0.0033,,,0.0456029723,0.5994483364,0.0057056175,0.0057484103,,,TP
,,2024-04-24T09:56:00Z,2024-05-20T01:11:00Z,2305.3,2420.57,0.0022,,,0.2457963145,4.8464667288,0.003803745,0.0039939405,,,TP
,,2024-09-12T19:35:00Z,2024-09-13T01:11:00Z,2553.55,2559.94,0.0049,,,0.012263436,0.1000521823,0.0093842963,0.009215784,,,TP
,,2024-09-13T01:11:00Z,2024-09-13T05:28:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-09-19T01:20:00Z,2024-09-19T02:08:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-09-19T01:47:00Z,2024-09-19T01:59:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-12T09:42:00Z,2024-11-12T09:42:00Z,2554.55,2560.94,0.0049,,,0.012256236,0.0999542972,0.0093879713,0.009219384,,,TP
,,2024-11-12T10:04:00Z,2024-11-12T10:16:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-12T10:35:00Z,2024-11-12T10:43:00Z,2554.55,2560.94,0.0049,,,0.012256236,0.0999542972,0.0093879713,0.009219384,,,TP
,,2024-11-12T10:50:00Z,2024-11-12T10:52:00Z,2554.55,2560.94,0.0049,,,0.012256236,0.0999542972,0.0093879713,0.009219384,,,TP
,,2024-11-12T11:42:00Z,2024-11-12T12:01:00Z,2554.55,2560.94,0.0049,,,0.012256236,0.0999542972,0.0093879713,0.009219384,,,TP
,,2024-11-12T22:15:00Z,2024-11-13T00:31:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-12T22:18:00Z,2024-11-12T22:35:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-14T09:35:00Z,2024-11-14T14:19:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-14T09:51:00Z,2024-11-14T09:57:00Z,2553.55,2559.94,0.0049,,,0.012263436,0.1000521823,0.0093842963,0.009215784,,,TP
,,2024-11-14T10:05:00Z,2024-11-14T13:51:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-14T14:40:00Z,2024-11-14T14:40:00Z,2552.54,2558.93,0.0049,,,0.012270708,0.100151124,0.0093805845,0.009212148,,,TP
,,2024-11-14T15:05:00Z,2024-11-14T15:11:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-14T15:19:00Z,2024-11-14T15:20:00Z,2551.54,2557.92,0.0049,,,0.012229944,0.099857537,0.0093769095,0.009208512,,,TP
,,2024-11-14T15:34:00Z,2024-11-14T15:36:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-14T22:30:00Z,2024-11-14T22:32:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-14T23:08:00Z,2024-11-15T03:00:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-15T08:08:00Z,2024-11-15T08:15:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-16T00:07:00Z,2024-11-16T00:14:00Z,2559.55,2565.95,0.0049,,,0.0122682,0.0998564201,0.0094063463,0.00923742,,,TP
,,2024-11-16T00:17:00Z,2024-11-16T01:37:00Z,2554.55,2560.94,0.0049,,,0.012256236,0.0999542972,0.0093879713,0.009219384,,,TP
,,2024-11-17T02:02:00Z,2024-11-17T02:55:00Z,2555.55,2561.94,0.0049,,,0.012249036,0.0998564888,0.0093916462,0.009222984,,,TP
,,2024-11-17T15:30:00Z,2024-11-17T15:36:00Z,2553.55,2559.94,0.0049,,,0.012263436,0.1000521823,0.0093842963,0.009215784,,,TP
,,2025-12-23T23:38:00Z,2026-01-20T09:29:00Z,4529.27,4755.74,0.0012,,,0.263407491,4.8463934034,0.004076343,0.004280166,,,TP
,,2025-12-23T23:57:00Z,2026-01-20T14:05:00Z,4534.02,4760.73,0.0012,,,0.263686725,4.8464483505,0.004080618,0.004284657,,,TP
,,2025-12-24T01:26:00Z,2026-01-20T14:03:00Z,4542.01,4769.12,0.0012,,,0.264151983,4.8464590016,0.004087809,0.004292208,,,TP
,,2026-01-22T19:12:00Z,2026-01-27T20:48:00Z,4941.3,5188.37,0.0011,,,0.2634200223,4.8463511121,0.0040765725,0.0042804053,,,TP
,,2026-01-22T21:41:00Z,2026-01-27T21:45:00Z,4957.79,5205.68,0.0011,,,0.2642941373,4.8462600776,0.0040901767,0.004294686,,,TP
,,2026-01-22T22:24:00Z,2026-01-27T21:50:00Z,4964.41,5212.64,0.0011,,,0.2646569338,4.8464412186,0.0040956383,0.004300428,,,TP
,,2026-01-22T22:46:00Z,2026-01-27T22:35:00Z,4969.96,5218.46,0.0011,,,0.2649445535,4.8462902116,0.004100217,0.0043052295,,,TP
,,2026-01-22T23:12:00Z,2026-01-27T22:35:00Z,4975.93,5224.73,0.0011,,,0.2652644555,4.8463202859,0.0041051423,0.0043104023,,,TP
,,2026-01-23T05:49:00Z,2026-01-27T22:35:00Z,4981.77,5230.86,0.0011,,,0.2655735802,4.8462800872,0.0041099603,0.0043154595,,,TP
,,2026-01-23T08:20:00Z,2026-01-27T20:55:00Z,4950.62,5198.16,0.0011,,,0.2639212565,4.8464316591,0.0040842615,0.004288482,,,TP
,,2026-01-23T16:21:00Z,2026-01-28T02:31:00Z,4999.13,5249.09,0.0011,,,0.2665012185,4.8463199597,0.0041242823,0.0043304993,,,TP
,,2026-01-23T17:56:00Z,2026-01-28T01:56:00Z,4989.85,5239.35,0.0011,,,0.26601091,4.8464001924,0.0041166263,0.0043224638,,,TP
,,2026-01-30T09:51:00Z,2026-02-23T20:11:00Z,4990.27,5239.79,0.0011,,,0.2660322005,4.8463801558,0.0041169728,0.0043228267,,,TP
,,2026-01-30T17:08:00Z,2026-02-23T14:45:00Z,4966.35,5214.67,0.0011,,,0.2647526585,4.846300301,0.0040972388,0.0043021027,,,TP
,,2026-01-30T17:09:00Z,2026-02-23T15:21:00Z,4971.35,5219.92,0.0011,,,0.2650192022,4.8463002504,0.0041013638,0.004306434,,,TP
,,2026-01-30T17:12:00Z,2026-02-23T14:43:00Z,4955.65,5203.44,0.0011,,,0.2641877507,4.8464012289,0.0040884113,0.004292838,,,TP
,,2026-01-30T17:14:00Z,2026-02-22T23:58:00Z,4944.93,5192.18,0.0011,,,0.2636118843,4.8463207265,0.0040795673,0.0042835485,,,TP
,,2026-01-30T17:27:00Z,2026-02-23T14:44:00Z,4960.62,5208.66,0.0011,,,0.264454344,4.8464312929,0.0040925115,0.0042971445,,,TP
,,2026-01-30T19:57:00Z,2026-02-23T16:31:00Z,4977.77,5226.66,0.0011,,,0.2653603452,4.8462801114,0.0041066603,0.0043119945,,,TP
,,2026-01-31T04:18:00Z,2026-02-23T14:39:00Z,4950.48,5198.01,0.0011,,,0.2639104957,4.8463711095,0.004084146,0.0042883583,,,TP
,,2026-02-02T06:21:00Z,2026-02-02T11:13:00Z,4534.48,4761.21,0.0012,,,0.263709879,4.8463822202,0.004081032,0.004285089,,,TP
,,2026-02-02T06:31:00Z,2026-02-02T11:15:00Z,4539.64,4766.63,0.0012,,,0.264012357,4.8464260933,0.004085676,0.004289967,,,TP
,,2026-02-02T06:34:00Z,2026-02-02T13:31:00Z,4529.15,4755.61,0.0012,,,0.263395716,4.8463051566,0.004076235,0.004280049,,,TP
,,2026-02-03T16:50:00Z,2026-02-23T20:46:00Z,4996.02,5245.83,0.0011,,,0.2663414737,4.8464300083,0.0041217165,0.0043278098,,,TP
,,2026-02-03T16:53:00Z,2026-02-23T16:20:00Z,4982.89,5232.04,0.0011,,,0.2656376827,4.8463602949,0.0041108843,0.004316433,,,TP
,,2026-02-24T01:06:00Z,2026-02-25T17:14:00Z,5214.8,5227.84,0.0024,,,0.012499248,0.0998699854,0.00938664,0.009410112,,,TP
,,2026-02-24T01:13:00Z,2026-02-25T17:13:00Z,5201.26,5227.27,0.0015,,,0.0272829038,0.3496960833,0.0058514175,0.0058806788,,,TP
,,2026-02-24T01:15:00Z,2026-02-25T17:14:00Z,5175.93,5227.69,0.001,,,0.043957285,0.849263514,0.0038819475,0.0039207675,,,TP
,,2026-02-25T09:03:00Z,2026-02-25T16:35:00Z,5200.23,5218.44,0.0015,,,0.0155939962,0.1999141865,0.0058502588,0.005870745,,,TP
,,2026-02-25T10:29:00Z,2026-02-25T16:48:00Z,5195.88,5221.86,0.0015,,,0.0272500425,0.349636539,0.005845365,0.0058745925,,,TP
,,2026-02-25T10:29:00Z,2026-02-25T13:41:00Z,5195.88,5208.87,0.0025,,,0.0129660937,0.0998182695,0.009742275,0.0097666313,,,TP
,,2026-02-25T11:16:00Z,2026-02-25T16:49:00Z,5181.05,5219.91,0.0015,,,0.04658892,0.5994784841,0.0058286813,0.0058723987,,,TP
,,2026-02-25T11:16:00Z,2026-02-25T13:06:00Z,5181.05,5206.96,0.0015,,,0.0271784887,0.3497166115,0.0058286813,0.00585783,,,TP
,,2026-02-25T11:16:00Z,2026-02-25T12:03:00Z,5181.05,5199.19,0.0015,,,0.01553223,0.1998594879,0.0058286813,0.0058490888,,,TP
,,2026-02-25T11:16:00Z,2026-02-25T11:52:00Z,5181.05,5194.01,0.0025,,,0.0129467625,0.0999547389,0.0097144688,0.0097387687,,,TP
,,2026-02-25T11:31:00Z,2026-02-25T15:05:00Z,5187.06,5213,0.0015,,,0.0272099325,0.3497155421,0.0058354425,0.005864625,,,TP
,,2026-02-25T11:31:00Z,2026-02-25T12:23:00Z,5187.06,5205.22,0.0015,,,0.015548685,0.1998394081,0.0058354425,0.0058558725,,,TP
,,2026-02-25T11:31:00Z,2026-02-25T12:03:00Z,5187.06,5200.03,0.0025,,,0.0129492062,0.0998577711,0.0097257375,0.0097500562,,,TP
,,2026-02-25T11:52:00Z,2026-02-25T15:02:00Z,5193.43,5211.61,0.0015,,,0.01556433,0.1997951258,0.0058426088,0.0058630613,,,TP
,,2026-02-25T12:23:00Z,2026-02-25T15:07:00Z,5203.92,5216.93,0.0025,,,0.0129859063,0.0998163404,0.00975735,0.0097817438,,,TP
,,2026-02-25T13:43:00Z,2026-02-25T16:47:00Z,5206.79,5225.02,0.0015,,,0.0156092138,0.1998571577,0.0058576387,0.0058781475,,,TP
,,2026-02-25T14:34:00Z,2026-02-25T14:57:00Z,5195.97,5208.96,0.0025,,,0.0129657562,0.0998139423,0.0097424438,0.0097668,,,TP
,,2026-02-25T14:35:00Z,2026-02-25T14:53:00Z,5190.3,5203.28,0.0025,,,0.0129620375,0.0998943221,0.0097318125,0.00975615,,,TP
,,2026-02-25T14:37:00Z,2026-02-25T14:53:00Z,5186.31,5204.47,0.0015,,,0.0155503725,0.1998899989,0.0058345988,0.0058550288,,,TP
,,2026-02-25T15:36:00Z,2026-02-25T15:50:00Z,5198.92,5211.92,0.0025,,,0.012979675,0.0998643949,0.009747975,0.00977235,,,TP
,,2026-02-25T15:44:00Z,2026-02-25T16:35:00Z,5205.15,5218.17,0.0025,,,0.013006275,0.099949281,0.0097596563,0.0097840687,,,TP
,,2026-02-25T20:58:00Z,2026-02-25T23:09:00Z,5162.73,5188.55,0.0015,,,0.02708481,0.3497479047,0.0058080713,0.0058371188,,,TP
,,2026-02-25T20:58:00Z,2026-02-25T21:18:00Z,5162.73,5180.8,0.0015,,,0.0154685287,0.199746113,0.0058080713,0.0058284,,,TP
,,2026-02-25T20:58:00Z,2026-02-25T21:13:00Z,5162.73,5175.64,0.0025,,,0.0128905563,0.0998739523,0.0096801188,0.009704325,,,TP
,,2026-02-25T21:11:00Z,2026-02-25T23:06:00Z,5172.7,5185.64,0.0025,,,0.0129281125,0.0999718716,0.0096988125,0.009723075,,,TP
Frequently Asked Questions
_null_; metrics that can’t be derived locally render as “not available”.What strategy was tested and on which trading pair?
What strategy was tested and on which trading pair?
bt.mode_name, bt.symbol, bt.config.from, bt.config.toWhat is the current status of this backtest?
What is the current status of this backtest?
bt.status, bt.error_messageWhat was the total return?
What was the total return?
bt.return_pct, bt.start_balance, bt.final_value, bt.total_profitWhat was the annualized growth rate (CAGR)?
What was the annualized growth rate (CAGR)?
derived from equity series (eqStats.cagrPct, eqStats.durationDays)Did it beat Buy & Hold of PAXGUSDT?
Did it beat Buy & Hold of PAXGUSDT?
bt.return_pct, opts.tokenReturnPct, outperformDeltaWhat was the worst drawdown?
What was the worst drawdown?
derived from equity series (eqStats.maxDrawdownPct, .maxDrawdownAbs, .underwaterDays, .recoveryDays)How many trades did it take and what was the win rate?
How many trades did it take and what was the win rate?
bt.fulfilled_trades, bt.win_rate, bt.active_orders, derived tradesPerMonthWhat was the average, best, and worst trade?
What was the average, best, and worst trade?
bt.avg_profit, bt.max_profit, bt.min_profitWhat was the profit factor and expectancy?
What was the profit factor and expectancy?
derived from trades (stats.profitFactor, .expectancy, .payoffRatio)What were the longest winning and losing streaks?
What were the longest winning and losing streaks?
derived from trades (stats.consecWinsMax, .consecLossesMax)How much was paid in fees?
How much was paid in fees?
Sum(buy_fee_in_quote + sell_fee_in_quote) over every row of GET /backtests/{id}/trades - the API summary field bt.total_fees is used only for cross-checking, not as the source of truth.Source: derived from trades[].buy_fee_in_quote + trades[].sell_fee_in_quote (analyzeTrades -> stats.totalFees / .buyFees / .sellFees)Is the risk-adjusted return any good?
Is the risk-adjusted return any good?
derived from equity series (eqStats.sharpeAnnualized, .sortinoAnnualized)How volatile was the equity curve?
How volatile was the equity curve?
derived from equity series (eqStats.volatilityAnnualizedPct)How long does the strategy hold positions?
How long does the strategy hold positions?
derived from trades (stats.medianHoldingHours, .avgHoldingHours, .minHoldingHours, .maxHoldingHours)How much of the time was capital deployed?
How much of the time was capital deployed?
derived from equity series (eqStats.timeInMarketPct)What were the best and worst months?
What were the best and worst months?
derived from trades (stats.bestMonth, .worstMonth)When did the backtest run and how long did it take?
When did the backtest run and how long did it take?
bt.created_at, bt.started_at, bt.completed_at, bt.elapsed_secWhat configuration parameters were used?
What configuration parameters were used?
bt.start_balance, bt.data_file, bt.config.timeframe, bt.config.fee_pct, bt.is_duplicateWhere can I find a one-line summary written by the engine?
Where can I find a one-line summary written by the engine?
Engine summary: Backtest PAXGUSDT (Mode: 4BasicMode.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 11,268.18 USDT
P&L: +1,268.18 USDT (+12.68%)
Result: PROFIT
Completed trades: 29904
Open orders at end: 448
Win rate: 100.0%
Avg. profit/trade: 0.036308 USDT
Best trade: 0.266501 USDT
Worst trade: 0.012230 USDT
Total profit (trades only): 1,085.748697 USDT
Max drawdown: -4.85%
Profit factor: inf (no losing trades)
Sharpe ratio: 1.23
Total fees: 392.67 USDT
Avg hold time: 99.0h
TP / SL / TSL: 29904 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 7
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0]
Investment per buy: 50.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 552.3s
bt.summary_textAre these results guaranteed for live trading?
Are these results guaranteed for live trading?
static disclaimerGlossary
| Term | Definition |
|---|---|
| Return % | Total percentage change of portfolio value over the backtest window: (final_value - start_balance) / start_balance x 100. |
| CAGR | Compound Annual Growth Rate. Annualized return assuming compounding: (final/start)^(365.25/days) - 1. |
| Win Rate | Share of closed trades with positive net P&L (after fees): wins / (wins + losses) x 100. |
| Max Drawdown | Largest peak-to-trough decline of equity, measured in % of the previous peak. The single most important risk metric. |
| Drawdown Duration | Number of days spent below the previous equity peak before recovering (or end of window if not recovered). |
| Sharpe Ratio (annualized) | Mean daily return divided by standard deviation of daily returns, scaled by 365. Risk-adjusted return - higher is better, > 1 is decent. |
| Sortino Ratio (annualized) | Like Sharpe but only penalizes downside volatility. Often more representative for asymmetric strategies. |
| Volatility (ann.) | Standard deviation of daily returns x 365, expressed as a percentage. |
| Time in Market | Fraction of the period where the strategy held base-asset exposure (not 100% cash). |
| Buy & Hold | Reference benchmark: simply buying the underlying token at the start and holding to the end of the window. |
| Outperformance (pp) | Strategy return minus Buy & Hold return, in percentage points (not percent change). |
| Fulfilled Trades | Round-trip trades that have both an entry fill and an exit fill within the window. |
| Active Orders | Open positions still pending exit at the end of the backtest - their unrealized P&L is included in final_value. |
| Lookahead Bias | Using information that wouldn’t have been available at trade time. The validator flags trades whose buy_time precedes the configured from date. |
How to Read This Report
GET /backtests/{id} * Fields used: return_pct, fulfilled_trades, win_rateCheck the headline return
Reproduce This Run
GET /backtests/{id} * Fields used: symbol, mode_name, config (replayed verbatim)X-API-Key. Payload fields are validated against ENGINE.md Section 20; non-engine keys are stripped so the replay produces the exact same run.curl -X POST https://uncoded-backtest-api-production.up.railway.app/backtests \
-H "X-API-Key: $UNCODED_API_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"PAXGUSDT","mode_name":"4BasicMode.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":0.0001,"stopLoss":false,"tickSize":0.01,"buySplits":7,"buyVolumes":[25,15,15,15,10,10,10],"canBuyDown":false,"minNotional":5,"buyPercentage":0.1,"fees_in_quote":true,"intrabar_mode":"OLHC","maker_fee_bps":7.5,"taker_fee_bps":7.5,"sellPercentages":[0.25,0.35,0.5,0.75,1,2.5,5],"triggerCoolDown":1,"investmentPerBuy":50,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":20,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0,0],"sellCancelDistancePercentage":1,"dontBuyBelowQuoteAssetBalance":1,"investmentPerFreeQuotePercent":0.01,"sellActivateDistancePercentage":0.1}'
Structured Data (JSON-LD)
Dataset markup with 35 PropertyValue KPIs. Every numeric value is finite + range-validated; invalid / null fields are omitted so the JSON stays schema.org-compliant.{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "PAXGUSDT BasicMode Backtest",
"alternateName": "PAXGUSDT-4BasicMode.json-059eb1f8-8f62-4501-aa0e-845a0d2a5fb0",
"description": "Backtest of the BasicMode strategy on PAXGUSDT: +12.68% return over 2024-04-24 to 2026-02-25.",
"identifier": "059eb1f8-8f62-4501-aa0e-845a0d2a5fb0",
"license": "https://creativecommons.org/licenses/by/4.0/",
"isAccessibleForFree": true,
"inLanguage": "en",
"creativeWorkStatus": "completed",
"creator": {
"@type": "Organization",
"name": "uncoded.ch",
"url": "https://uncoded.ch/backtesting"
},
"publisher": {
"@type": "Organization",
"name": "uncoded.ch",
"url": "https://uncoded.ch"
},
"keywords": [
"PAXGUSDT",
"BasicMode",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "PAXGUSDT",
"description": "Trading pair: PAXGUSDT"
},
{
"@type": "Thing",
"name": "BasicMode",
"description": "Trading strategy: BasicMode"
}
],
"measurementTechnique": "Historical OHLCV replay with deterministic order-fill simulation (TP / SL / Trailing-SL)",
"variableMeasured": [
{
"@type": "PropertyValue",
"name": "Return",
"value": 12.6818,
"unitText": "%",
"unitCode": "P1",
"description": "Total percentage return over the backtest window"
},
{
"@type": "PropertyValue",
"name": "Win Rate",
"value": 100,
"unitText": "%",
"unitCode": "P1",
"description": "Share of closed trades with positive net P&L",
"minValue": 0,
"maxValue": 100
},
{
"@type": "PropertyValue",
"name": "Net Profit",
"value": 1085.74869733,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 11268.17991275,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 29904,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 448,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.26650122,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.01222994,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.03630781,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 552.26,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": 6.7047897216378605,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -4.847731363910075,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -547.6219343487992,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 8,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Recovery Duration",
"value": 18,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": 1.2270697490617049,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": 1.0818290406458728,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 5.414908500115384,
"unitText": "%",
"unitCode": "P1",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Time in Market",
"value": 100,
"unitText": "%",
"unitCode": "P1",
"minValue": 0,
"maxValue": 100
},
{
"@type": "PropertyValue",
"name": "Backtest Duration",
"value": 672,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Equity Samples",
"value": 673,
"unitText": "points",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Expectancy per Trade",
"value": 0.09276180744399998,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.09276180744399998,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.02113229625,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 9.276180744399998,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 1.3247169616999996,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1772.695535,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 100,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 7.241666666666667,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 150.48248299319732,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 1352.3724850689066,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T09:59:35.838Z",
"dateModified": "2026-05-15T13:00:51.944Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:00:51 UTC