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.
ZROUSDT * LongTimeLong
ZROUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -7.45% | 160,838 closed trades | 100.0% closed WR | 597 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 | 2,168.43 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 1,211.42 USDT | Buy + sell fees across all trades. |
| Fee Drag | 55.9% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 11.8 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 160,838 | 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 ZROUSDT, 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 ate 55.9% of gross profit - over-trading risk.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="9bee9938-0373-4fcd-9191-8a01a74454a1" */}
...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 ZROUSDT, 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 LongTimeLong 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 ZROUSDT 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: ZROUSDT 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 -7.45% return on ZROUSDT a good backtest result?
Is a -7.45% return on ZROUSDT 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 ZROUSDT backtest?
What is the annualised return for this ZROUSDT backtest?
Can I run this exact LongTimeLong configuration live?
Can I run this exact LongTimeLong configuration live?
How is this backtest different from others on ZROUSDT?
How is this backtest different from others on ZROUSDT?
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 | ZROUSDT |
| Strategy | LongTimeLong |
| 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 | 615.0 days (1.68 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 615.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 | 9,254.89 USDT |
| Avg Profit / Trade | +0.0060 USDT |
| Trades / Month | 7273.7 |
| Status | completed |
| Created | 2026-05-08 13:39:13 UTC |
| Started | 2026-05-09 23:02:35 UTC |
| Completed | 2026-05-09 23:25:30 UTC |
| Compute Time | 17m 30s |
| Backtest ID | 9bee9938-0373-4fcd-9191-8a01a74454a1 |
| Engine summary: |
Backtest ZROUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 9,254.89 USDT
P&L: -745.11 USDT (-7.45%)
Result: LOSS
Completed trades: 160838
Open orders at end: 597
Win rate: 100.0%
Avg. profit/trade: 0.005950 USDT
Best trade: 0.009155 USDT
Worst trade: 0.004983 USDT
Total profit (trades only): 957.007963 USDT
Max drawdown: -17.34%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.20
Total fees: 1,211.42 USDT
Avg hold time: 11.8h
TP / SL / TSL: 160838 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 1050.5s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -7.45% over the tested window | return_pct = -7.4511 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 9,254.89 USDT | final_value - start_balance = -745.11 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 160838 of 160838 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 17.34% | max_drawdown_pct = 17.3398 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.20 | sharpe_annualized = -0.2007 | 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.01 |
stopLoss | false |
tickSize | 0.001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "ZROUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"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,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
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 | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | 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 | 25 | 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 | 25 | 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,10,15] | 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.01 | 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.001 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,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: ZROUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.01
stopLoss: false
tickSize: 0.001
buySplits: 9
buyVolumes:
- 20
- 15
- 10
- 10
- 10
- 10
- 5
- 5
- 5
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
- 10
- 15
triggerCoolDown: 1
investmentPerBuy: 25
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 25
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 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 == "3LongTimeLong.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 | ZROUSDT | 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 10,392 | ###
| ## #:::##
|#### # #::####::::::
|::::##:#:::::::::::::#
|::::::::::::::::::::::## ## #### #
|::::::::::::::::::::::::# ::#:::: # # :# ###
|::::::::::::::::::::::::: #:::::::# #: #:###:: :::#
|::::::::::::::::::::::::: :::::::::##::#:::::::### ::::
|:::::::::::::::::::::::::#:::::::::::::::::::::::: # #::::
8,781 |::::::::::::::::::::::::::::::::::::::::::::::::::##:##:::::
+------------------------------------------------------------
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 | 10,445.79 USDT @ 2024-12-15 23:59:00 UTC |
| Trough | 8,634.51 USDT @ 2025-03-10 23:59:00 UTC |
| Drawdown Duration | 85.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,445.79 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,719.94 | 7,719.94 | 83.4% |
| ZRO | 1,007.94000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 1,534.95 | 16.6% |
| Total | - | 9,254.89 | 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) | +0.63 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 | +0.63 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.38 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.38 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.75 USDT | buy + sell on matched pairs |
| Open-position buy fees | 1,210.67 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 597 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 1,211.42 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 | 192638.58% | 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/9bee9938-0373-4fcd-9191-8a01a74454a1/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.375896 + 0.376210
= 0.752106 USDT
(B) bt.total_fees = 1,211.417892 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 1,211.417892 - 0.752106
= 1,210.665786 USDT
Identity check: (A) + (C) ?= (B)
0.752106 + 1,210.665786 = 1,211.417892 USDT
vs bt.total_fees = 1,211.417892 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 597 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.1h | 32.4h | 1083.5h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-06-20 13:01:00 UTC | 2026-02-25 23:59:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +0.63 USDT | +0.13% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-06 | 22 | 22 | 100.0% | +0.13 |
| 2024-07 | 3 | 3 | 100.0% | +0.02 |
| 2025-02 | 1 | 1 | 100.0% | +0.00 |
| 2025-03 | 4 | 4 | 100.0% | +0.02 |
| 2025-04 | 8 | 8 | 100.0% | +0.04 |
| 2025-05 | 2 | 2 | 100.0% | +0.01 |
| 2025-07 | 2 | 2 | 100.0% | +0.01 |
| 2025-08 | 1 | 1 | 100.0% | +0.00 |
| 2025-09 | 2 | 2 | 100.0% | +0.01 |
| 2025-10 | 4 | 4 | 100.0% | +0.02 |
| 2025-11 | 11 | 11 | 100.0% | +0.10 |
| 2025-12 | 14 | 14 | 100.0% | +0.13 |
| 2026-02 | 26 | 26 | 100.0% | +0.14 |
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 | 2025-12-01 -> 2025-12-01 | 1.201000 | 1.205000 | +0.0092 | +0.18% |
| 2 | TP | 2025-12-01 -> 2025-12-01 | 1.202000 | 1.206000 | +0.0091 | +0.18% |
| 3 | TP | 2025-12-01 -> 2025-12-01 | 1.202000 | 1.206000 | +0.0091 | +0.18% |
| 4 | TP | 2025-12-01 -> 2025-12-01 | 1.203000 | 1.207000 | +0.0091 | +0.18% |
| 5 | TP | 2025-12-01 -> 2025-12-01 | 1.203000 | 1.207000 | +0.0091 | +0.18% |
| 6 | TP | 2025-12-01 -> 2025-12-01 | 1.203000 | 1.207000 | +0.0091 | +0.18% |
| 7 | TP | 2025-11-21 -> 2025-11-21 | 1.204000 | 1.208000 | +0.0091 | +0.18% |
| 8 | TP | 2025-11-22 -> 2025-11-22 | 1.204000 | 1.208000 | +0.0091 | +0.18% |
| 9 | TP | 2025-12-01 -> 2025-12-01 | 1.204000 | 1.208000 | +0.0091 | +0.18% |
| 10 | TP | 2025-11-22 -> 2025-11-22 | 1.205000 | 1.209000 | +0.0091 | +0.18% |
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-06-20 23:59:00 UTC |
| Deepest DD | -17.34% @ 2025-03-10 23:59:00 UTC |
| Mean | -7.26% |
| Std Dev | 5.17% |
| Last | -11.40% |
| Points | 616 |
| Across 616 points the series ranged from -17.34% (2025-03-10 23:59:00 UTC) to 0.00% (2024-06-20 23:59:00 UTC), averaging -7.26%. 0% of points were positive, 96% negative. The most recent value is -11.40%. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":0},{"timestamp":"2024-06-30T23:59:00+00:00","drawdown":0},{"timestamp":"2024-07-11T23:59:00+00:00","drawdown":-0.14011423627662653},{"timestamp":"2024-07-21T23:59:00+00:00","drawdown":0},{"timestamp":"2024-08-01T23:59:00+00:00","drawdown":-0.8699625906436054},{"timestamp":"2024-08-11T23:59:00+00:00","drawdown":-2.5629818249378946},{"timestamp":"2024-08-22T23:59:00+00:00","drawdown":-1.518287293598371},{"timestamp":"2024-09-01T23:59:00+00:00","drawdown":-1.0898392509771375},{"timestamp":"2024-09-11T23:59:00+00:00","drawdown":-1.2078344915423727},{"timestamp":"2024-09-22T23:59:00+00:00","drawdown":-0.22000906479920876},{"timestamp":"2024-10-02T23:59:00+00:00","drawdown":-0.975913487006579},{"timestamp":"2024-10-13T23:59:00+00:00","drawdown":-1.185280663110416},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-1.66180067725719},{"timestamp":"2024-11-03T23:59:00+00:00","drawdown":-3.438180790762149},{"timestamp":"2024-11-13T23:59:00+00:00","drawdown":-1.3981770321004194},{"timestamp":"2024-11-23T23:59:00+00:00","drawdown":-0.7803635651377101},{"timestamp":"2024-12-04T23:59:00+00:00","drawdown":-0.0011513340789832311},{"timestamp":"2024-12-14T23:59:00+00:00","drawdown":-0.3787086348051203},{"timestamp":"2024-12-25T23:59:00+00:00","drawdown":-0.5649599311026787},{"timestamp":"2025-01-04T23:59:00+00:00","drawdown":-0.8112726509035868},{"timestamp":"2025-01-14T23:59:00+00:00","drawdown":-3.1634654369311956},{"timestamp":"2025-01-25T23:59:00+00:00","drawdown":-4.470462416140754},{"timestamp":"2025-02-04T23:59:00+00:00","drawdown":-8.697444487523565},{"timestamp":"2025-02-15T23:59:00+00:00","drawdown":-7.605637024112292},{"timestamp":"2025-02-25T23:59:00+00:00","drawdown":-9.704971688518288},{"timestamp":"2025-03-08T23:59:00+00:00","drawdown":-12.851973943136668},{"timestamp":"2025-03-18T23:59:00+00:00","drawdown":-10.290068302057408},{"timestamp":"2025-03-28T23:59:00+00:00","drawdown":-7.169369611897805},{"timestamp":"2025-04-08T23:59:00+00:00","drawdown":-9.998531401188515},{"timestamp":"2025-04-18T23:59:00+00:00","drawdown":-9.009218016525585},{"timestamp":"2025-04-29T23:59:00+00:00","drawdown":-6.165033525620138},{"timestamp":"2025-05-09T23:59:00+00:00","drawdown":-5.7276255571467045},{"timestamp":"2025-05-20T23:59:00+00:00","drawdown":-7.000334108348867},{"timestamp":"2025-05-30T23:59:00+00:00","drawdown":-9.753924554628425},{"timestamp":"2025-06-09T23:59:00+00:00","drawdown":-10.03509339853457},{"timestamp":"2025-06-20T23:59:00+00:00","drawdown":-13.952920896107512},{"timestamp":"2025-06-30T23:59:00+00:00","drawdown":-12.009910752045027},{"timestamp":"2025-07-11T23:59:00+00:00","drawdown":-9.939505470681576},{"timestamp":"2025-07-21T23:59:00+00:00","drawdown":-8.207667740100177},{"timestamp":"2025-08-01T23:59:00+00:00","drawdown":-13.576151817455573},{"timestamp":"2025-08-11T23:59:00+00:00","drawdown":-8.082485236428868},{"timestamp":"2025-08-21T23:59:00+00:00","drawdown":-10.957226859767935},{"timestamp":"2025-09-01T23:59:00+00:00","drawdown":-11.553784152082155},{"timestamp":"2025-09-11T23:59:00+00:00","drawdown":-9.81358392064122},{"timestamp":"2025-09-22T23:59:00+00:00","drawdown":-10.592958538153843},{"timestamp":"2025-10-02T23:59:00+00:00","drawdown":-7.84078222342187},{"timestamp":"2025-10-12T23:59:00+00:00","drawdown":-10.105033174512492},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-12.08867953293962},{"timestamp":"2025-11-02T23:59:00+00:00","drawdown":-12.619144311353898},{"timestamp":"2025-11-13T23:59:00+00:00","drawdown":-13.376691162755508},{"timestamp":"2025-11-23T23:59:00+00:00","drawdown":-16.76895894008936},{"timestamp":"2025-12-04T23:59:00+00:00","drawdown":-14.79020560747813},{"timestamp":"2025-12-14T23:59:00+00:00","drawdown":-13.84734293821028},{"timestamp":"2025-12-24T23:59:00+00:00","drawdown":-16.096348140546965},{"timestamp":"2026-01-04T23:59:00+00:00","drawdown":-14.48093004190689},{"timestamp":"2026-01-14T23:59:00+00:00","drawdown":-11.59867077589612},{"timestamp":"2026-01-25T23:59:00+00:00","drawdown":-9.340745531815934},{"timestamp":"2026-02-04T23:59:00+00:00","drawdown":-10.310640865082146},{"timestamp":"2026-02-15T23:59:00+00:00","drawdown":-9.611455492735114},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-11.40074895933016}]
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 | 270.54 USDT @ 2024-12-06 23:59:00 UTC |
| Worst Unrealized | -1,911.58 USDT @ 2025-12-31 23:59:00 UTC |
| Mean | -742.59 USDT |
| Std Dev | 621.52 USDT |
| Last | -1,464.38 USDT |
| Points | 616 |
| Sum | -457,435.65 USDT |
| Across 616 points the series ranged from -1,911.58 USDT (2025-12-31 23:59:00 UTC) to 270.54 USDT (2024-12-06 23:59:00 UTC), averaging -742.59 USDT. 13% of points were positive, 87% negative. The most recent value is -1,464.38 USDT. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-8.6468120475},{"timestamp":"2024-06-30T23:59:00+00:00","pnl":-3.5018931575},{"timestamp":"2024-07-11T23:59:00+00:00","pnl":-9.6586627425},{"timestamp":"2024-07-21T23:59:00+00:00","pnl":32.7501977825},{"timestamp":"2024-08-01T23:59:00+00:00","pnl":-67.812613195},{"timestamp":"2024-08-11T23:59:00+00:00","pnl":-257.9138933025},{"timestamp":"2024-08-22T23:59:00+00:00","pnl":-164.602051305},{"timestamp":"2024-09-01T23:59:00+00:00","pnl":-114.6827710725},{"timestamp":"2024-09-11T23:59:00+00:00","pnl":-138.3774119225},{"timestamp":"2024-09-22T23:59:00+00:00","pnl":4.4632436225},{"timestamp":"2024-10-02T23:59:00+00:00","pnl":7.8784169375},{"timestamp":"2024-10-13T23:59:00+00:00","pnl":-7.4986921525},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-62.3452466275},{"timestamp":"2024-11-03T23:59:00+00:00","pnl":-253.1739533275},{"timestamp":"2024-11-13T23:59:00+00:00","pnl":-62.6156672325},{"timestamp":"2024-11-23T23:59:00+00:00","pnl":-14.62373118},{"timestamp":"2024-12-04T23:59:00+00:00","pnl":223.033558725},{"timestamp":"2024-12-14T23:59:00+00:00","pnl":217.7068568625},{"timestamp":"2024-12-25T23:59:00+00:00","pnl":181.8898223625},{"timestamp":"2025-01-04T23:59:00+00:00","pnl":145.5038626375},{"timestamp":"2025-01-14T23:59:00+00:00","pnl":-106.650774445},{"timestamp":"2025-01-25T23:59:00+00:00","pnl":-244.0861094975},{"timestamp":"2025-02-04T23:59:00+00:00","pnl":-704.8562691325},{"timestamp":"2025-02-15T23:59:00+00:00","pnl":-608.982825245},{"timestamp":"2025-02-25T23:59:00+00:00","pnl":-841.0060215025},{"timestamp":"2025-03-08T23:59:00+00:00","pnl":-1181.723474915},{"timestamp":"2025-03-18T23:59:00+00:00","pnl":-932.7944950475},{"timestamp":"2025-03-28T23:59:00+00:00","pnl":-627.7239160725},{"timestamp":"2025-04-08T23:59:00+00:00","pnl":-948.8979680775},{"timestamp":"2025-04-18T23:59:00+00:00","pnl":-849.9550655175},{"timestamp":"2025-04-29T23:59:00+00:00","pnl":-567.7631383824},{"timestamp":"2025-05-09T23:59:00+00:00","pnl":-529.2713246624},{"timestamp":"2025-05-20T23:59:00+00:00","pnl":-682.6768982124},{"timestamp":"2025-05-30T23:59:00+00:00","pnl":-981.2641175099},{"timestamp":"2025-06-09T23:59:00+00:00","pnl":-1013.5896312924},{"timestamp":"2025-06-20T23:59:00+00:00","pnl":-1437.0298203575},{"timestamp":"2025-06-30T23:59:00+00:00","pnl":-1248.8085744624},{"timestamp":"2025-07-11T23:59:00+00:00","pnl":-1041.8867076249},{"timestamp":"2025-07-21T23:59:00+00:00","pnl":-868.4594085624},{"timestamp":"2025-08-01T23:59:00+00:00","pnl":-1445.4062758124},{"timestamp":"2025-08-11T23:59:00+00:00","pnl":-882.3319545949},{"timestamp":"2025-08-21T23:59:00+00:00","pnl":-1187.8548743149},{"timestamp":"2025-09-01T23:59:00+00:00","pnl":-1260.8521711124},{"timestamp":"2025-09-11T23:59:00+00:00","pnl":-1085.0176089749},{"timestamp":"2025-09-22T23:59:00+00:00","pnl":-1173.8064583924},{"timestamp":"2025-10-02T23:59:00+00:00","pnl":-893.5220636599},{"timestamp":"2025-10-12T23:59:00+00:00","pnl":-1135.3862045324},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-1360.6554058149},{"timestamp":"2025-11-02T23:59:00+00:00","pnl":-1426.4639092774},{"timestamp":"2025-11-13T23:59:00+00:00","pnl":-1529.1561797524},{"timestamp":"2025-11-23T23:59:00+00:00","pnl":-1895.6584345874},{"timestamp":"2025-12-04T23:59:00+00:00","pnl":-1698.3712475899},{"timestamp":"2025-12-14T23:59:00+00:00","pnl":-1609.1428412174},{"timestamp":"2025-12-24T23:59:00+00:00","pnl":-1851.0153572249},{"timestamp":"2026-01-04T23:59:00+00:00","pnl":-1686.6021482399},{"timestamp":"2026-01-14T23:59:00+00:00","pnl":-1394.3345201924},{"timestamp":"2026-01-25T23:59:00+00:00","pnl":-1177.5247715499},{"timestamp":"2026-02-04T23:59:00+00:00","pnl":-1303.1646157074},{"timestamp":"2026-02-15T23:59:00+00:00","pnl":-1259.2660013174},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-1464.3822275949}]
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 | 10,445.79 USDT @ 2024-12-15 23:59:00 UTC |
| Trough Total Equity | 8,634.51 USDT @ 2025-03-10 23:59:00 UTC |
| Mean | 9,606.36 USDT |
| Std Dev | 451.00 USDT |
| Last | 9,254.89 USDT |
| Points | 616 |
| Sum | 5,917,514.80 USDT |
| Across 616 points the series ranged from 8,634.51 USDT (2025-03-10 23:59:00 UTC) to 10,445.79 USDT (2024-12-15 23:59:00 UTC), averaging 9,606.36 USDT. 100% of points were positive, 0% negative. The most recent value is 9,254.89 USDT. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T23:59:00+00:00","quote":9850.8425081075,"base":142.08111918000031,"total":9992.9236272875},{"timestamp":"2024-06-30T23:59:00+00:00","quote":9934.9820696751,"base":91.9324189350009,"total":10026.9144886101},{"timestamp":"2024-07-11T23:59:00+00:00","quote":9719.4490794876,"base":321.94260181999925,"total":10041.3916813076},{"timestamp":"2024-07-21T23:59:00+00:00","quote":9953.7414927551,"base":143.37089112499962,"total":10097.1123838801},{"timestamp":"2024-08-01T23:59:00+00:00","quote":9343.0904240576,"base":666.1808593474998,"total":10009.2712834051},{"timestamp":"2024-08-11T23:59:00+00:00","quote":8824.9305650977,"base":1013.3946635399989,"total":9838.3252286377},{"timestamp":"2024-08-22T23:59:00+00:00","quote":9088.0281670553,"base":855.7810424800009,"total":9943.8092095353},{"timestamp":"2024-09-01T23:59:00+00:00","quote":9111.5282791253,"base":875.5418107800015,"total":9987.0700899053},{"timestamp":"2024-09-11T23:59:00+00:00","quote":9042.9187405628,"base":932.2372372949994,"total":9975.1559778578},{"timestamp":"2024-09-22T23:59:00+00:00","quote":9516.8219637678,"base":602.7271953150012,"total":10119.5491590828},{"timestamp":"2024-10-02T23:59:00+00:00","quote":9445.6170837227,"base":676.5712507049993,"total":10122.1883344277},{"timestamp":"2024-10-13T23:59:00+00:00","quote":9324.0524735002,"base":776.7344619123996,"total":10100.7869354126},{"timestamp":"2024-10-23T23:59:00+00:00","quote":9129.1760139076,"base":922.9013045000011,"total":10052.0773184076},{"timestamp":"2024-11-03T23:59:00+00:00","quote":8696.6005910177,"base":1173.896117100001,"total":9870.4967081177},{"timestamp":"2024-11-13T23:59:00+00:00","quote":9337.2714167927,"base":741.7533674249989,"total":10079.0247842177},{"timestamp":"2024-11-23T23:59:00+00:00","quote":9377.5300371353,"base":764.6473040849996,"total":10142.1773412203},{"timestamp":"2024-12-04T23:59:00+00:00","quote":9961.0093614804,"base":424.19381585000156,"total":10385.2031773304},{"timestamp":"2024-12-14T23:59:00+00:00","quote":9767.991960408,"base":630.56691985,"total":10398.558880258},{"timestamp":"2024-12-25T23:59:00+00:00","quote":9691.362485573,"base":695.4147874450009,"total":10386.777273018},{"timestamp":"2025-01-04T23:59:00+00:00","quote":9591.3594087905,"base":769.6885503124995,"total":10361.047959103},{"timestamp":"2025-01-14T23:59:00+00:00","quote":8923.8992610181,"base":1191.4435366574999,"total":10115.3427976756},{"timestamp":"2025-01-25T23:59:00+00:00","quote":8663.4492801982,"base":1315.3673340500009,"total":9978.8166142482},{"timestamp":"2025-02-04T23:59:00+00:00","quote":8040.0269659332,"base":1497.2479012400008,"total":9537.2748671732},{"timestamp":"2025-02-15T23:59:00+00:00","quote":8128.4900435857,"base":1522.8327581949998,"total":9651.3228017807},{"timestamp":"2025-02-25T23:59:00+00:00","quote":7754.9851515032,"base":1677.0455218124998,"total":9432.0306733157},{"timestamp":"2025-03-08T23:59:00+00:00","quote":7410.8046347982,"base":1692.4967347051006,"total":9103.3013695033},{"timestamp":"2025-03-18T23:59:00+00:00","quote":7705.3179828083,"base":1665.5947163624996,"total":9370.9126991708},{"timestamp":"2025-03-28T23:59:00+00:00","quote":8177.6512649584,"base":1519.2431224425,"total":9696.8943874009},{"timestamp":"2025-04-08T23:59:00+00:00","quote":7867.1949288385,"base":1534.171108049999,"total":9401.3660368885},{"timestamp":"2025-04-18T23:59:00+00:00","quote":7981.917203461,"base":1522.7904499501,"total":9504.7076534111},{"timestamp":"2025-04-29T23:59:00+00:00","quote":8257.7226751835,"base":1544.0825688750992,"total":9801.8052440586},{"timestamp":"2025-05-09T23:59:00+00:00","quote":8320.1643882661,"base":1527.3315815450005,"total":9847.4959698111},{"timestamp":"2025-05-20T23:59:00+00:00","quote":8129.8295377237,"base":1584.7219464649997,"total":9714.5514841887},{"timestamp":"2025-05-30T23:59:00+00:00","quote":7764.7041143162,"base":1662.213044520001,"total":9426.9171588362},{"timestamp":"2025-06-09T23:59:00+00:00","quote":7722.4685983887,"base":1675.078248375,"total":9397.5468467637},{"timestamp":"2025-06-20T23:59:00+00:00","quote":7104.9893250638,"base":1883.3094177799994,"total":8988.2987428438},{"timestamp":"2025-06-30T23:59:00+00:00","quote":7405.4759018488,"base":1785.7856355149997,"total":9191.2615373638},{"timestamp":"2025-07-11T23:59:00+00:00","quote":7695.5739147888,"base":1711.9578479151005,"total":9407.5317627039},{"timestamp":"2025-07-21T23:59:00+00:00","quote":7883.5687866113,"base":1704.8671399375999,"total":9588.4359265489},{"timestamp":"2025-08-01T23:59:00+00:00","quote":7107.4939782688,"base":1920.1612781401,"total":9027.6552564089},{"timestamp":"2025-08-11T23:59:00+00:00","quote":7925.5387937864,"base":1675.9734364801006,"total":9601.5122302665},{"timestamp":"2025-08-21T23:59:00+00:00","quote":7619.8697663564,"base":1681.3529388251009,"total":9301.2227051815},{"timestamp":"2025-09-01T23:59:00+00:00","quote":7580.5280505715,"base":1658.3795218200994,"total":9238.9075723916},{"timestamp":"2025-09-11T23:59:00+00:00","quote":7927.3556834815,"base":1493.3295821850998,"total":9420.6852656666},{"timestamp":"2025-09-22T23:59:00+00:00","quote":7784.2520770516,"base":1555.0213386399992,"total":9339.2734156916},{"timestamp":"2025-10-02T23:59:00+00:00","quote":7951.9447380616,"base":1674.8152857451005,"total":9626.7600238067},{"timestamp":"2025-10-12T23:59:00+00:00","quote":7836.9932536017,"base":1553.2478297701,"total":9390.2410833718},{"timestamp":"2025-10-23T23:59:00+00:00","quote":7443.9951222367,"base":1739.0383922626006,"total":9183.0335144993},{"timestamp":"2025-11-02T23:59:00+00:00","quote":7344.0945179141,"base":1783.5277502001009,"total":9127.6222681142},{"timestamp":"2025-11-13T23:59:00+00:00","quote":7357.6767032891,"base":1690.8137978551003,"total":9048.4905011442},{"timestamp":"2025-11-23T23:59:00+00:00","quote":6913.8314260041,"base":1780.3098454400997,"total":8694.1412714442},{"timestamp":"2025-12-04T23:59:00+00:00","quote":7118.6628793867,"base":1782.17484564,"total":8900.8377250267},{"timestamp":"2025-12-14T23:59:00+00:00","quote":7293.2624554617,"base":1706.0647410626007,"total":8999.3271965243},{"timestamp":"2025-12-24T23:59:00+00:00","quote":7074.6976637842,"base":1689.7031314801006,"total":8764.4007952643},{"timestamp":"2026-01-04T23:59:00+00:00","quote":7234.3818745993,"base":1698.7621321300003,"total":8933.1440067293},{"timestamp":"2026-01-14T23:59:00+00:00","quote":7543.8977414368,"base":1690.321067680099,"total":9234.2188091169},{"timestamp":"2026-01-25T23:59:00+00:00","quote":7738.3113984018,"base":1731.7655809651005,"total":9470.0769793669},{"timestamp":"2026-02-04T23:59:00+00:00","quote":7637.2948883819,"base":1731.4688436851002,"total":9368.763732067},{"timestamp":"2026-02-15T23:59:00+00:00","quote":7962.3535974369,"base":1479.4455830000998,"total":9441.799180437},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7719.9448254443,"base":1534.9484845800998,"total":9254.8933100244}]
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 | 21.64% @ 2025-06-22 23:59:00 UTC |
| Min Exposure | 0.76% @ 2024-07-06 23:59:00 UTC |
| Mean | 13.99% |
| Std Dev | 5.56% |
| Last | 16.59% |
| Points | 616 |
| Across 616 points the series ranged from 0.76% (2024-07-06 23:59:00 UTC) to 21.64% (2025-06-22 23:59:00 UTC), averaging 13.99%. 100% of points were positive, 0% negative. The most recent value is 16.59%. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T23:59:00+00:00","exposure":1.421817322730476},{"timestamp":"2024-06-30T23:59:00+00:00","exposure":0.9168565169218301},{"timestamp":"2024-07-11T23:59:00+00:00","exposure":3.206155202762448},{"timestamp":"2024-07-21T23:59:00+00:00","exposure":1.4199197322383899},{"timestamp":"2024-08-01T23:59:00+00:00","exposure":6.655637962895423},{"timestamp":"2024-08-11T23:59:00+00:00","exposure":10.300479400601422},{"timestamp":"2024-08-22T23:59:00+00:00","exposure":8.606169169651574},{"timestamp":"2024-09-01T23:59:00+00:00","exposure":8.766753441181702},{"timestamp":"2024-09-11T23:59:00+00:00","exposure":9.345590578877351},{"timestamp":"2024-09-22T23:59:00+00:00","exposure":5.956067665070073},{"timestamp":"2024-10-02T23:59:00+00:00","exposure":6.684041319443125},{"timestamp":"2024-10-13T23:59:00+00:00","exposure":7.689841067622434},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":9.181199818369508},{"timestamp":"2024-11-03T23:59:00+00:00","exposure":11.892979166231468},{"timestamp":"2024-11-13T23:59:00+00:00","exposure":7.359376361356684},{"timestamp":"2024-11-23T23:59:00+00:00","exposure":7.539281540436934},{"timestamp":"2024-12-04T23:59:00+00:00","exposure":4.084598140322989},{"timestamp":"2024-12-14T23:59:00+00:00","exposure":6.063983741508178},{"timestamp":"2024-12-25T23:59:00+00:00","exposure":6.695193024418631},{"timestamp":"2025-01-04T23:59:00+00:00","exposure":7.428674718528518},{"timestamp":"2025-01-14T23:59:00+00:00","exposure":11.778577953198791},{"timestamp":"2025-01-25T23:59:00+00:00","exposure":13.181596424688882},{"timestamp":"2025-02-04T23:59:00+00:00","exposure":15.698906889990658},{"timestamp":"2025-02-15T23:59:00+00:00","exposure":15.778487461988448},{"timestamp":"2025-02-25T23:59:00+00:00","exposure":17.7803230279674},{"timestamp":"2025-03-08T23:59:00+00:00","exposure":18.592120221078076},{"timestamp":"2025-03-18T23:59:00+00:00","exposure":17.7740927680383},{"timestamp":"2025-03-28T23:59:00+00:00","exposure":15.667316377256215},{"timestamp":"2025-04-08T23:59:00+00:00","exposure":16.31859776579609},{"timestamp":"2025-04-18T23:59:00+00:00","exposure":16.021433856554157},{"timestamp":"2025-04-29T23:59:00+00:00","exposure":15.753042734766135},{"timestamp":"2025-05-09T23:59:00+00:00","exposure":15.509847236569103},{"timestamp":"2025-05-20T23:59:00+00:00","exposure":16.312867856475684},{"timestamp":"2025-05-30T23:59:00+00:00","exposure":17.632625984858123},{"timestamp":"2025-06-09T23:59:00+00:00","exposure":17.82463312701504},{"timestamp":"2025-06-20T23:59:00+00:00","exposure":20.952901896807013},{"timestamp":"2025-06-30T23:59:00+00:00","exposure":19.4291678923021},{"timestamp":"2025-07-11T23:59:00+00:00","exposure":18.197736569991147},{"timestamp":"2025-07-21T23:59:00+00:00","exposure":17.780450878511747},{"timestamp":"2025-08-01T23:59:00+00:00","exposure":21.2697674379728},{"timestamp":"2025-08-11T23:59:00+00:00","exposure":17.455307000463844},{"timestamp":"2025-08-21T23:59:00+00:00","exposure":18.076687249822083},{"timestamp":"2025-09-01T23:59:00+00:00","exposure":17.949952511439708},{"timestamp":"2025-09-11T23:59:00+00:00","exposure":15.851602511629318},{"timestamp":"2025-09-22T23:59:00+00:00","exposure":16.650346011150006},{"timestamp":"2025-10-02T23:59:00+00:00","exposure":17.397496993831055},{"timestamp":"2025-10-12T23:59:00+00:00","exposure":16.54108575040299},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":18.937515468246886},{"timestamp":"2025-11-02T23:59:00+00:00","exposure":19.539894375674947},{"timestamp":"2025-11-13T23:59:00+00:00","exposure":18.686142154222225},{"timestamp":"2025-11-23T23:59:00+00:00","exposure":20.47712119985335},{"timestamp":"2025-12-04T23:59:00+00:00","exposure":20.022551816993765},{"timestamp":"2025-12-14T23:59:00+00:00","exposure":18.95769210082186},{"timestamp":"2025-12-24T23:59:00+00:00","exposure":19.279163184699446},{"timestamp":"2026-01-04T23:59:00+00:00","exposure":19.01639703614237},{"timestamp":"2026-01-14T23:59:00+00:00","exposure":18.304970919805942},{"timestamp":"2026-01-25T23:59:00+00:00","exposure":18.286710707190824},{"timestamp":"2026-02-04T23:59:00+00:00","exposure":18.48129479195535},{"timestamp":"2026-02-15T23:59:00+00:00","exposure":15.669106647231464},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":16.58526395887813}]
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 | 433.74 USDT @ 2025-03-15 23:59:00 UTC |
| Worst Day | -356.63 USDT @ 2025-10-10 23:59:00 UTC |
| Mean | -1.20 USDT |
| Std Dev | 79.74 USDT |
| Last | -0.0648 USDT |
| Points | 615 |
| Sum | -738.03 USDT |
| Across 615 points the series ranged from -356.63 USDT (2025-10-10 23:59:00 UTC) to 433.74 USDT (2025-03-15 23:59:00 UTC), averaging -1.20 USDT. 51% of points were positive, 49% negative. The most recent value is -0.0648 USDT. | |
| Showing 60 of 615 points (down-sampled for readability). |
[{"timestamp":"2024-06-21T23:59:00+00:00","delta":-15.172168714900181},{"timestamp":"2024-07-01T23:59:00+00:00","delta":6.6048807249990205},{"timestamp":"2024-07-12T23:59:00+00:00","delta":1.8722355125009926},{"timestamp":"2024-07-22T23:59:00+00:00","delta":-1.4135503024990612},{"timestamp":"2024-08-02T23:59:00+00:00","delta":-94.5396068948994},{"timestamp":"2024-08-12T23:59:00+00:00","delta":74.65565941250134},{"timestamp":"2024-08-22T23:59:00+00:00","delta":21.262442882600226},{"timestamp":"2024-09-02T23:59:00+00:00","delta":17.161541504900015},{"timestamp":"2024-09-12T23:59:00+00:00","delta":41.59550535749986},{"timestamp":"2024-09-23T23:59:00+00:00","delta":-10.540065147501082},{"timestamp":"2024-10-03T23:59:00+00:00","delta":-30.260277612498612},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-24.520769932500116},{"timestamp":"2024-10-24T23:59:00+00:00","delta":-1.690003959900423},{"timestamp":"2024-11-03T23:59:00+00:00","delta":-25.227717215000666},{"timestamp":"2024-11-14T23:59:00+00:00","delta":-54.75042906499948},{"timestamp":"2024-11-24T23:59:00+00:00","delta":100.45596875740011},{"timestamp":"2024-12-05T23:59:00+00:00","delta":5.793959990000076},{"timestamp":"2024-12-15T23:59:00+00:00","delta":47.23293097989881},{"timestamp":"2024-12-25T23:59:00+00:00","delta":21.110349047499767},{"timestamp":"2025-01-05T23:59:00+00:00","delta":4.088420359999873},{"timestamp":"2025-01-15T23:59:00+00:00","delta":85.96614174500064},{"timestamp":"2025-01-26T23:59:00+00:00","delta":-54.36573061750096},{"timestamp":"2025-02-05T23:59:00+00:00","delta":-43.33166262499981},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-65.29798035500062},{"timestamp":"2025-02-26T23:59:00+00:00","delta":7.589143277500625},{"timestamp":"2025-03-08T23:59:00+00:00","delta":11.133447282500128},{"timestamp":"2025-03-19T23:59:00+00:00","delta":74.97984750750038},{"timestamp":"2025-03-29T23:59:00+00:00","delta":-169.11515209500067},{"timestamp":"2025-04-08T23:59:00+00:00","delta":-181.48878002499987},{"timestamp":"2025-04-19T23:59:00+00:00","delta":55.368424074998984},{"timestamp":"2025-04-29T23:59:00+00:00","delta":-40.12268234000112},{"timestamp":"2025-05-10T23:59:00+00:00","delta":66.62493188749977},{"timestamp":"2025-05-20T23:59:00+00:00","delta":-13.743733855000755},{"timestamp":"2025-05-30T23:59:00+00:00","delta":-239.82750828499957},{"timestamp":"2025-06-10T23:59:00+00:00","delta":103.74301849249969},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-97.00058059750154},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-58.04178185250021},{"timestamp":"2025-07-11T23:59:00+00:00","delta":62.344342587601204},{"timestamp":"2025-07-21T23:59:00+00:00","delta":63.18210508000084},{"timestamp":"2025-08-01T23:59:00+00:00","delta":-17.93450690750069},{"timestamp":"2025-08-11T23:59:00+00:00","delta":72.98606030009978},{"timestamp":"2025-08-22T23:59:00+00:00","delta":140.45591606999915},{"timestamp":"2025-09-01T23:59:00+00:00","delta":-53.44439738500114},{"timestamp":"2025-09-11T23:59:00+00:00","delta":11.421194040000046},{"timestamp":"2025-09-22T23:59:00+00:00","delta":-55.19229027500114},{"timestamp":"2025-10-02T23:59:00+00:00","delta":86.17732245750085},{"timestamp":"2025-10-13T23:59:00+00:00","delta":63.828479204999894},{"timestamp":"2025-10-23T23:59:00+00:00","delta":57.559409075000076},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-237.73492026250096},{"timestamp":"2025-11-13T23:59:00+00:00","delta":9.370330857500448},{"timestamp":"2025-11-23T23:59:00+00:00","delta":-16.454318612501083},{"timestamp":"2025-12-04T23:59:00+00:00","delta":-13.172733037499711},{"timestamp":"2025-12-14T23:59:00+00:00","delta":-73.04045421249975},{"timestamp":"2025-12-25T23:59:00+00:00","delta":-47.80062559250109},{"timestamp":"2026-01-04T23:59:00+00:00","delta":82.96655212750011},{"timestamp":"2026-01-14T23:59:00+00:00","delta":82.07277291009996},{"timestamp":"2026-01-25T23:59:00+00:00","delta":-55.1400367899987},{"timestamp":"2026-02-04T23:59:00+00:00","delta":-23.552202417500666},{"timestamp":"2026-02-15T23:59:00+00:00","delta":-95.62963551749999},{"timestamp":"2026-02-25T23:59:00+00:00","delta":-0.06477222750072542}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 6.29% @ 2026-01 |
| Worst Month | -5.54% @ 2025-10 |
| Mean | -0.23% |
| Std Dev | 2.76% |
| Last | -0.54% |
| Points | 21 |
| Across 21 points the series ranged from -5.54% (2025-10) to 6.29% (2026-01), averaging -0.23%. 52% of points were positive, 48% negative. The most recent value is -0.54%. | |
| Full series - 21 points. |
[{"month":"2024-06","returnPct":0.34014931555947814},{"month":"2024-07","returnPct":0.2189400395452283},{"month":"2024-08","returnPct":0.4159324739926179},{"month":"2024-09","returnPct":1.9483067411239614},{"month":"2024-10","returnPct":-2.0609235435203535},{"month":"2024-11","returnPct":3.787290623893811},{"month":"2024-12","returnPct":-1.4579898788520431},{"month":"2025-01","returnPct":-3.2437036617326775},{"month":"2025-02","returnPct":-2.828947647321772},{"month":"2025-03","returnPct":2.7377196427427433},{"month":"2025-04","returnPct":0.3547864835257005},{"month":"2025-05","returnPct":-2.8346975323600363},{"month":"2025-06","returnPct":-3.2211316261253913},{"month":"2025-07","returnPct":-0.9594644007336013},{"month":"2025-08","returnPct":2.9320649254942217},{"month":"2025-09","returnPct":1.7446302863962437},{"month":"2025-10","returnPct":-5.537102520061935},{"month":"2025-11","returnPct":-2.9555691609893153},{"month":"2025-12","returnPct":0.10671866297596122},{"month":"2026-01","returnPct":6.290246114066736},{"month":"2026-02","returnPct":-0.5389080660929909}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 957.01 USDT @ 2026-02-25 |
| Trough Cum. | 1.78 USDT @ 2024-06-20 |
| Mean | 502.74 USDT |
| Std Dev | 267.39 USDT |
| Last | 957.01 USDT |
| Points | 616 |
| Sum | 309,685.67 USDT |
| Across 616 points the series ranged from 1.78 USDT (2024-06-20) to 957.01 USDT (2026-02-25), averaging 502.74 USDT. 100% of points were positive, 0% negative. The most recent value is 957.01 USDT. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20","cumProfit":1.781678},{"timestamp":"2024-06-30","cumProfit":30.62762},{"timestamp":"2024-07-11","cumProfit":65.98889999999999},{"timestamp":"2024-07-21","cumProfit":83.46782399999998},{"timestamp":"2024-08-01","cumProfit":100.18406899999997},{"timestamp":"2024-08-11","cumProfit":119.33929399999995},{"timestamp":"2024-08-22","cumProfit":131.51143299999995},{"timestamp":"2024-09-01","cumProfit":146.348461},{"timestamp":"2024-09-11","cumProfit":158.12898799999996},{"timestamp":"2024-09-22","cumProfit":174.07910299999995},{"timestamp":"2024-10-02","cumProfit":190.38174399999994},{"timestamp":"2024-10-13","cumProfit":202.07156000000003},{"timestamp":"2024-10-23","cumProfit":211.68044900000004},{"timestamp":"2024-11-03","cumProfit":220.928545},{"timestamp":"2024-11-13","cumProfit":238.89833399999998},{"timestamp":"2024-11-23","cumProfit":254.05895400000003},{"timestamp":"2024-12-04","cumProfit":281.3826240000001},{"timestamp":"2024-12-14","cumProfit":300.06503000000004},{"timestamp":"2024-12-25","cumProfit":324.10045900000006},{"timestamp":"2025-01-04","cumProfit":334.757105},{"timestamp":"2025-01-14","cumProfit":347.30619200000007},{"timestamp":"2025-01-25","cumProfit":366.3381040000001},{"timestamp":"2025-02-04","cumProfit":386.8869760000001},{"timestamp":"2025-02-15","cumProfit":405.06146900000016},{"timestamp":"2025-02-25","cumProfit":420.4294140000002},{"timestamp":"2025-03-08","cumProfit":438.2301600000002},{"timestamp":"2025-03-18","cumProfit":461.9195320000001},{"timestamp":"2025-03-28","cumProfit":487.1024430000001},{"timestamp":"2025-04-08","cumProfit":514.705061},{"timestamp":"2025-04-18","cumProfit":531.5685070000001},{"timestamp":"2025-04-29","cumProfit":547.6917430000004},{"timestamp":"2025-05-09","cumProfit":559.2161270000004},{"timestamp":"2025-05-20","cumProfit":579.6772150000005},{"timestamp":"2025-05-30","cumProfit":592.0310890000004},{"timestamp":"2025-06-09","cumProfit":600.6443510000005},{"timestamp":"2025-06-20","cumProfit":616.1519430000004},{"timestamp":"2025-06-30","cumProfit":630.8934910000006},{"timestamp":"2025-07-11","cumProfit":641.5726780000007},{"timestamp":"2025-07-21","cumProfit":656.9959780000006},{"timestamp":"2025-08-01","cumProfit":673.9013400000006},{"timestamp":"2025-08-11","cumProfit":688.8178600000006},{"timestamp":"2025-08-21","cumProfit":698.3859040000007},{"timestamp":"2025-09-01","cumProfit":710.4933050000006},{"timestamp":"2025-09-11","cumProfit":716.4364360000004},{"timestamp":"2025-09-22","cumProfit":723.8134350000005},{"timestamp":"2025-10-02","cumProfit":739.1604930000005},{"timestamp":"2025-10-12","cumProfit":754.4601950000006},{"timestamp":"2025-10-23","cumProfit":772.5218260000004},{"timestamp":"2025-11-02","cumProfit":782.9190830000005},{"timestamp":"2025-11-13","cumProfit":806.4795880000004},{"timestamp":"2025-11-23","cumProfit":819.1011430000003},{"timestamp":"2025-12-04","cumProfit":828.9157050000006},{"timestamp":"2025-12-14","cumProfit":838.1767690000004},{"timestamp":"2025-12-24","cumProfit":845.1478520000004},{"timestamp":"2026-01-04","cumProfit":849.8512160000005},{"timestamp":"2026-01-14","cumProfit":858.6583900000006},{"timestamp":"2026-01-25","cumProfit":879.0307640000004},{"timestamp":"2026-02-04","cumProfit":904.7992430000005},{"timestamp":"2026-02-15","cumProfit":938.7976110000004},{"timestamp":"2026-02-25","cumProfit":957.0079660000005}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 5.03 USDT @ 2026-02-11 |
| Worst Day | 0.1973 USDT @ 2025-12-30 |
| Mean | 1.55 USDT |
| Std Dev | 0.8112 USDT |
| Last | 1.73 USDT |
| Points | 616 |
| Sum | 957.01 USDT |
| Across 616 points the series ranged from 0.1973 USDT (2025-12-30) to 5.03 USDT (2026-02-11), averaging 1.55 USDT. 100% of points were positive, 0% negative. The most recent value is 1.73 USDT. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"day":"2024-06-20","profit":1.781678},{"day":"2024-06-30","profit":3.379654},{"day":"2024-07-11","profit":2.058026},{"day":"2024-07-21","profit":2.4592},{"day":"2024-08-01","profit":1.385262},{"day":"2024-08-11","profit":1.248391},{"day":"2024-08-22","profit":0.760992},{"day":"2024-09-01","profit":1.496532},{"day":"2024-09-11","profit":1.475731},{"day":"2024-09-22","profit":1.53805},{"day":"2024-10-02","profit":1.824359},{"day":"2024-10-13","profit":0.790545},{"day":"2024-10-23","profit":0.782},{"day":"2024-11-03","profit":1.117466},{"day":"2024-11-13","profit":3.018136},{"day":"2024-11-23","profit":2.007578},{"day":"2024-12-04","profit":2.41506},{"day":"2024-12-14","profit":0.864952},{"day":"2024-12-25","profit":1.77109},{"day":"2025-01-04","profit":0.823213},{"day":"2025-01-14","profit":1.270861},{"day":"2025-01-25","profit":1.044143},{"day":"2025-02-04","profit":3.085217},{"day":"2025-02-15","profit":0.819516},{"day":"2025-02-25","profit":2.948975},{"day":"2025-03-08","profit":0.810637},{"day":"2025-03-18","profit":1.612673},{"day":"2025-03-28","profit":1.743213},{"day":"2025-04-08","profit":1.879743},{"day":"2025-04-18","profit":0.696318},{"day":"2025-04-29","profit":1.110085},{"day":"2025-05-09","profit":2.376056},{"day":"2025-05-20","profit":1.714462},{"day":"2025-05-30","profit":1.582024},{"day":"2025-06-09","profit":1.073981},{"day":"2025-06-20","profit":1.568463},{"day":"2025-06-30","profit":1.33816},{"day":"2025-07-11","profit":1.945702},{"day":"2025-07-21","profit":1.721898},{"day":"2025-08-01","profit":2.223134},{"day":"2025-08-11","profit":3.768615},{"day":"2025-08-21","profit":0.705694},{"day":"2025-09-01","profit":0.959997},{"day":"2025-09-11","profit":0.355048},{"day":"2025-09-22","profit":1.45686},{"day":"2025-10-02","profit":1.640348},{"day":"2025-10-12","profit":2.624307},{"day":"2025-10-23","profit":1.027828},{"day":"2025-11-02","profit":1.5442},{"day":"2025-11-13","profit":1.781698},{"day":"2025-11-23","profit":0.577525},{"day":"2025-12-04","profit":1.090401},{"day":"2025-12-14","profit":0.644103},{"day":"2025-12-24","profit":0.280117},{"day":"2026-01-04","profit":0.682597},{"day":"2026-01-14","profit":1.641195},{"day":"2026-01-25","profit":1.958911},{"day":"2026-02-04","profit":2.771188},{"day":"2026-02-15","profit":2.008885},{"day":"2026-02-25","profit":1.729271}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 846 trades @ 2026-02-11 |
| Quietest Day | 23 trades @ 2025-12-30 |
| Mean | 261 trades |
| Std Dev | 140 trades |
| Last | 310 trades |
| Points | 616 |
| Sum | 160838 trades |
| Across 616 points the series ranged from 23 trades (2025-12-30) to 846 trades (2026-02-11), averaging 261 trades. The most recent value is 310 trades. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"day":"2024-06-20","count":315},{"day":"2024-06-30","count":585},{"day":"2024-07-11","count":367},{"day":"2024-07-21","count":446},{"day":"2024-08-01","count":250},{"day":"2024-08-11","count":212},{"day":"2024-08-22","count":143},{"day":"2024-09-01","count":277},{"day":"2024-09-11","count":265},{"day":"2024-09-22","count":272},{"day":"2024-10-02","count":332},{"day":"2024-10-13","count":146},{"day":"2024-10-23","count":130},{"day":"2024-11-03","count":196},{"day":"2024-11-13","count":537},{"day":"2024-11-23","count":362},{"day":"2024-12-04","count":450},{"day":"2024-12-14","count":162},{"day":"2024-12-25","count":323},{"day":"2025-01-04","count":147},{"day":"2025-01-14","count":232},{"day":"2025-01-25","count":191},{"day":"2025-02-04","count":517},{"day":"2025-02-15","count":146},{"day":"2025-02-25","count":461},{"day":"2025-03-08","count":117},{"day":"2025-03-18","count":295},{"day":"2025-03-28","count":292},{"day":"2025-04-08","count":307},{"day":"2025-04-18","count":105},{"day":"2025-04-29","count":183},{"day":"2025-05-09","count":388},{"day":"2025-05-20","count":301},{"day":"2025-05-30","count":252},{"day":"2025-06-09","count":159},{"day":"2025-06-20","count":234},{"day":"2025-06-30","count":251},{"day":"2025-07-11","count":306},{"day":"2025-07-21","count":300},{"day":"2025-08-01","count":311},{"day":"2025-08-11","count":604},{"day":"2025-08-21","count":130},{"day":"2025-09-01","count":158},{"day":"2025-09-11","count":56},{"day":"2025-09-22","count":251},{"day":"2025-10-02","count":296},{"day":"2025-10-12","count":431},{"day":"2025-10-23","count":142},{"day":"2025-11-02","count":211},{"day":"2025-11-13","count":328},{"day":"2025-11-23","count":70},{"day":"2025-12-04","count":169},{"day":"2025-12-14","count":111},{"day":"2025-12-24","count":34},{"day":"2026-01-04","count":98},{"day":"2026-01-14","count":220},{"day":"2026-01-25","count":351},{"day":"2026-02-04","count":432},{"day":"2026-02-15","count":335},{"day":"2026-02-25","count":310}]
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 | 1,211.42 USDT @ 2026-02-25 |
| Start | 2.37 USDT @ 2024-06-20 |
| Mean | 654.16 USDT |
| Std Dev | 340.20 USDT |
| Last | 1,211.42 USDT |
| Points | 616 |
| Sum | 402,964.72 USDT |
| Across 616 points the series ranged from 2.37 USDT (2024-06-20) to 1,211.42 USDT (2026-02-25), averaging 654.16 USDT. 100% of points were positive, 0% negative. The most recent value is 1,211.42 USDT. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-06-20","cumFees":2.374001},{"index":10,"timestamp":"2024-06-30","cumFees":39.41344899999999},{"index":21,"timestamp":"2024-07-11","cumFees":86.630097},{"index":31,"timestamp":"2024-07-21","cumFees":110.14016599999998},{"index":42,"timestamp":"2024-08-01","cumFees":132.68120500000003},{"index":52,"timestamp":"2024-08-11","cumFees":157.70018000000002},{"index":63,"timestamp":"2024-08-22","cumFees":173.880481},{"index":73,"timestamp":"2024-09-01","cumFees":193.91329099999996},{"index":83,"timestamp":"2024-09-11","cumFees":209.03801399999998},{"index":94,"timestamp":"2024-09-22","cumFees":230.48696999999999},{"index":104,"timestamp":"2024-10-02","cumFees":252.52678899999998},{"index":115,"timestamp":"2024-10-13","cumFees":268.356199},{"index":125,"timestamp":"2024-10-23","cumFees":281.18632199999996},{"index":136,"timestamp":"2024-11-03","cumFees":293.28128599999997},{"index":146,"timestamp":"2024-11-13","cumFees":317.197337},{"index":156,"timestamp":"2024-11-23","cumFees":337.23885700000005},{"index":167,"timestamp":"2024-12-04","cumFees":374.7841300000001},{"index":177,"timestamp":"2024-12-14","cumFees":400.86470400000013},{"index":188,"timestamp":"2024-12-25","cumFees":434.2010550000002},{"index":198,"timestamp":"2025-01-04","cumFees":448.8182690000002},{"index":208,"timestamp":"2025-01-14","cumFees":465.9590940000002},{"index":219,"timestamp":"2025-01-25","cumFees":491.70316300000025},{"index":229,"timestamp":"2025-02-04","cumFees":518.2904910000003},{"index":240,"timestamp":"2025-02-15","cumFees":541.8036790000002},{"index":250,"timestamp":"2025-02-25","cumFees":560.7959800000001},{"index":261,"timestamp":"2025-03-08","cumFees":582.7142710000002},{"index":271,"timestamp":"2025-03-18","cumFees":610.7656010000004},{"index":281,"timestamp":"2025-03-28","cumFees":643.1118910000004},{"index":292,"timestamp":"2025-04-08","cumFees":678.2643000000004},{"index":302,"timestamp":"2025-04-18","cumFees":699.0273370000004},{"index":313,"timestamp":"2025-04-29","cumFees":719.1945440000005},{"index":323,"timestamp":"2025-05-09","cumFees":733.4981810000005},{"index":334,"timestamp":"2025-05-20","cumFees":759.4452630000005},{"index":344,"timestamp":"2025-05-30","cumFees":775.6566890000005},{"index":354,"timestamp":"2025-06-09","cumFees":786.2952870000005},{"index":365,"timestamp":"2025-06-20","cumFees":806.1606810000009},{"index":375,"timestamp":"2025-06-30","cumFees":823.571173000001},{"index":386,"timestamp":"2025-07-11","cumFees":836.8811040000011},{"index":396,"timestamp":"2025-07-21","cumFees":856.1592120000009},{"index":407,"timestamp":"2025-08-01","cumFees":877.2741950000009},{"index":417,"timestamp":"2025-08-11","cumFees":895.0468830000008},{"index":427,"timestamp":"2025-08-21","cumFees":907.1839470000009},{"index":438,"timestamp":"2025-09-01","cumFees":922.7000130000009},{"index":448,"timestamp":"2025-09-11","cumFees":930.360112000001},{"index":459,"timestamp":"2025-09-22","cumFees":939.781843000001},{"index":469,"timestamp":"2025-10-02","cumFees":959.2850780000009},{"index":479,"timestamp":"2025-10-12","cumFees":978.274368000001},{"index":490,"timestamp":"2025-10-23","cumFees":999.1241370000009},{"index":500,"timestamp":"2025-11-02","cumFees":1010.649790000001},{"index":511,"timestamp":"2025-11-13","cumFees":1037.7531450000008},{"index":521,"timestamp":"2025-11-23","cumFees":1051.3890610000008},{"index":532,"timestamp":"2025-12-04","cumFees":1061.4744530000005},{"index":542,"timestamp":"2025-12-14","cumFees":1072.5762290000007},{"index":552,"timestamp":"2025-12-24","cumFees":1079.774005000001},{"index":563,"timestamp":"2026-01-04","cumFees":1084.1810820000007},{"index":573,"timestamp":"2026-01-14","cumFees":1094.3802880000007},{"index":584,"timestamp":"2026-01-25","cumFees":1119.0464770000006},{"index":594,"timestamp":"2026-02-04","cumFees":1149.6048090000006},{"index":605,"timestamp":"2026-02-15","cumFees":1189.9481340000004},{"index":615,"timestamp":"2026-02-25","cumFees":1211.4178990000005}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 7462 trades @ 0.11% |
| Least Populated Bin | 11 trades @ 0.18% |
| Mean | 2681 trades |
| Std Dev | 2678 trades |
| Last | 11 trades |
| Points | 60 |
| Sum | 160838 trades |
| Across 60 points the series ranged from 11 trades (0.18%) to 7462 trades (0.11%), averaging 2681 trades. The most recent value is 11 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":7368,"from":0.099812},{"bin":"0.10%","count":6714,"from":0.101196},{"bin":"0.10%","count":6411,"from":0.102579},{"bin":"0.10%","count":6868,"from":0.103962},{"bin":"0.11%","count":7092,"from":0.105345},{"bin":"0.11%","count":7379,"from":0.106729},{"bin":"0.11%","count":7462,"from":0.108112},{"bin":"0.11%","count":6986,"from":0.109495},{"bin":"0.11%","count":6715,"from":0.110878},{"bin":"0.11%","count":6806,"from":0.112262},{"bin":"0.11%","count":6743,"from":0.113645},{"bin":"0.12%","count":6132,"from":0.115028},{"bin":"0.12%","count":6118,"from":0.116411},{"bin":"0.12%","count":5867,"from":0.117794},{"bin":"0.12%","count":5696,"from":0.119178},{"bin":"0.12%","count":5566,"from":0.120561},{"bin":"0.12%","count":5318,"from":0.121944},{"bin":"0.12%","count":4752,"from":0.123327},{"bin":"0.12%","count":3903,"from":0.124711},{"bin":"0.13%","count":3934,"from":0.126094},{"bin":"0.13%","count":3093,"from":0.127477},{"bin":"0.13%","count":3232,"from":0.12886},{"bin":"0.13%","count":2874,"from":0.130243},{"bin":"0.13%","count":2548,"from":0.131627},{"bin":"0.13%","count":2603,"from":0.13301},{"bin":"0.13%","count":2586,"from":0.134393},{"bin":"0.14%","count":1943,"from":0.135776},{"bin":"0.14%","count":1908,"from":0.13716},{"bin":"0.14%","count":1900,"from":0.138543},{"bin":"0.14%","count":1815,"from":0.139926},{"bin":"0.14%","count":1448,"from":0.141309},{"bin":"0.14%","count":1291,"from":0.142692},{"bin":"0.14%","count":1081,"from":0.144076},{"bin":"0.15%","count":1179,"from":0.145459},{"bin":"0.15%","count":1101,"from":0.146842},{"bin":"0.15%","count":1008,"from":0.148225},{"bin":"0.15%","count":697,"from":0.149609},{"bin":"0.15%","count":505,"from":0.150992},{"bin":"0.15%","count":511,"from":0.152375},{"bin":"0.15%","count":386,"from":0.153758},{"bin":"0.16%","count":472,"from":0.155141},{"bin":"0.16%","count":428,"from":0.156525},{"bin":"0.16%","count":421,"from":0.157908},{"bin":"0.16%","count":387,"from":0.159291},{"bin":"0.16%","count":446,"from":0.160674},{"bin":"0.16%","count":132,"from":0.162058},{"bin":"0.16%","count":118,"from":0.163441},{"bin":"0.16%","count":97,"from":0.164824},{"bin":"0.17%","count":112,"from":0.166207},{"bin":"0.17%","count":101,"from":0.167591},{"bin":"0.17%","count":121,"from":0.168974},{"bin":"0.17%","count":112,"from":0.170357},{"bin":"0.17%","count":106,"from":0.17174},{"bin":"0.17%","count":50,"from":0.173123},{"bin":"0.17%","count":63,"from":0.174507},{"bin":"0.18%","count":49,"from":0.17589},{"bin":"0.18%","count":26,"from":0.177273},{"bin":"0.18%","count":27,"from":0.178656},{"bin":"0.18%","count":20,"from":0.18004},{"bin":"0.18%","count":11,"from":0.181423}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1608 |
| Coldest Window | 100.00% @ 1608 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1608) to 100.00% (1608), 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":1608,"winRate":100},{"index":4318,"winRate":100},{"index":7027,"winRate":100},{"index":9737,"winRate":100},{"index":12446,"winRate":100},{"index":15156,"winRate":100},{"index":17866,"winRate":100},{"index":20575,"winRate":100},{"index":23126,"winRate":100},{"index":25835,"winRate":100},{"index":28545,"winRate":100},{"index":31254,"winRate":100},{"index":33964,"winRate":100},{"index":36674,"winRate":100},{"index":39383,"winRate":100},{"index":42093,"winRate":100},{"index":44803,"winRate":100},{"index":47512,"winRate":100},{"index":50222,"winRate":100},{"index":52931,"winRate":100},{"index":55641,"winRate":100},{"index":58351,"winRate":100},{"index":61060,"winRate":100},{"index":63610,"winRate":100},{"index":66320,"winRate":100},{"index":69030,"winRate":100},{"index":71739,"winRate":100},{"index":74449,"winRate":100},{"index":77159,"winRate":100},{"index":79868,"winRate":100},{"index":82578,"winRate":100},{"index":85287,"winRate":100},{"index":87997,"winRate":100},{"index":90707,"winRate":100},{"index":93416,"winRate":100},{"index":96126,"winRate":100},{"index":98836,"winRate":100},{"index":101386,"winRate":100},{"index":104095,"winRate":100},{"index":106805,"winRate":100},{"index":109515,"winRate":100},{"index":112224,"winRate":100},{"index":114934,"winRate":100},{"index":117643,"winRate":100},{"index":120353,"winRate":100},{"index":123063,"winRate":100},{"index":125772,"winRate":100},{"index":128482,"winRate":100},{"index":131192,"winRate":100},{"index":133901,"winRate":100},{"index":136611,"winRate":100},{"index":139320,"winRate":100},{"index":141871,"winRate":100},{"index":144580,"winRate":100},{"index":147290,"winRate":100},{"index":150000,"winRate":100},{"index":152709,"winRate":100},{"index":155419,"winRate":100},{"index":158128,"winRate":100},{"index":160838,"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 | 0.6289 USDT @ 2026-02-25 23:59:00 UTC |
| Trough Net | 0.0055 USDT @ 2024-06-20 13:02:00 UTC |
| Mean | 0.3080 USDT |
| Std Dev | 0.1901 USDT |
| Last | 0.6289 USDT |
| Points | 100 |
| Sum | 30.80 USDT |
| Across 100 points the series ranged from 0.0055 USDT (2024-06-20 13:02:00 UTC) to 0.6289 USDT (2026-02-25 23:59:00 UTC), averaging 0.3080 USDT. 100% of points were positive, 0% negative. The most recent value is 0.6289 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T13:02:00Z","net":0.00554265,"gross":0.01308},{"timestamp":"2024-06-20T13:07:00Z","net":0.01712919,"gross":0.03972},{"timestamp":"2024-06-20T13:08:00Z","net":0.0224939325,"gross":0.0526220325},{"timestamp":"2024-06-20T13:12:00Z","net":0.03395846,"gross":0.0791320325},{"timestamp":"2024-06-20T13:14:00Z","net":0.046157580000000004,"gross":0.1064120325},{"timestamp":"2024-06-20T13:18:00Z","net":0.051683225000000006,"gross":0.1194235775},{"timestamp":"2024-06-20T13:22:00Z","net":0.062722125,"gross":0.14544672},{"timestamp":"2024-06-20T13:24:00Z","net":0.074100165,"gross":0.17187830999999998},{"timestamp":"2024-06-20T13:25:00Z","net":0.0799705,"gross":0.18529830999999997},{"timestamp":"2024-06-20T13:27:00Z","net":0.091907905,"gross":0.21235830999999994},{"timestamp":"2024-06-20T13:31:00Z","net":0.10412376500000001,"gross":0.2396383099999999},{"timestamp":"2024-06-20T13:32:00Z","net":0.1103072025,"gross":0.2533883099999999},{"timestamp":"2024-06-20T13:34:00Z","net":0.1211447125,"gross":0.2792883099999999},{"timestamp":"2024-07-03T08:31:00Z","net":0.1319444075,"gross":0.30509987749999984},{"timestamp":"2024-07-06T08:28:00Z","net":0.137072545,"gross":0.31774987749999983},{"timestamp":"2025-02-28T06:47:00Z","net":0.147092035,"gross":0.34284787749999984},{"timestamp":"2025-03-19T16:46:00Z","net":0.15705731500000003,"gross":0.36784387749999986},{"timestamp":"2025-03-19T18:52:00Z","net":0.16702259500000005,"gross":0.3928398774999999},{"timestamp":"2025-04-08T15:20:00Z","net":0.17200523500000006,"gross":0.4053378774999999},{"timestamp":"2025-04-10T23:42:00Z","net":0.18197051500000008,"gross":0.4303338774999999},{"timestamp":"2025-04-16T22:11:00Z","net":0.1919357950000001,"gross":0.4553298774999999},{"timestamp":"2025-04-18T02:02:00Z","net":0.1969184350000001,"gross":0.46782787749999993},{"timestamp":"2025-04-18T07:06:00Z","net":0.20688371500000013,"gross":0.49282387749999995},{"timestamp":"2025-05-06T20:13:00Z","net":0.21684899500000016,"gross":0.5178198774999999},{"timestamp":"2025-07-18T05:58:00Z","net":0.22183163500000017,"gross":0.5303178774999999},{"timestamp":"2025-08-11T13:55:00Z","net":0.2317969150000002,"gross":0.5553138774999999},{"timestamp":"2025-09-28T03:43:00Z","net":0.2417621950000002,"gross":0.5803098775},{"timestamp":"2025-10-08T09:40:00Z","net":0.24674483500000022,"gross":0.5928078775},{"timestamp":"2025-10-09T05:50:00Z","net":0.2567101150000002,"gross":0.6178038775},{"timestamp":"2025-11-21T23:08:00Z","net":0.27080731500000016,"gross":0.6469418775},{"timestamp":"2025-11-21T23:09:00Z","net":0.27983136500000017,"gross":0.6634709375},{"timestamp":"2025-11-22T05:45:00Z","net":0.29792945000000015,"gross":0.6966000124999999},{"timestamp":"2025-11-22T05:55:00Z","net":0.3160212800000002,"gross":0.7297290799999999},{"timestamp":"2025-11-22T06:13:00Z","net":0.3251358400000002,"gross":0.7463690799999999},{"timestamp":"2025-11-22T08:35:00Z","net":0.34316535500000017,"gross":0.7794272225},{"timestamp":"2025-11-22T09:32:00Z","net":0.3612571850000002,"gross":0.81255629},{"timestamp":"2025-12-01T14:33:00Z","net":0.3703311600000002,"gross":0.8291562899999999},{"timestamp":"2025-12-01T18:22:00Z","net":0.3885727600000002,"gross":0.8624362899999999},{"timestamp":"2025-12-01T18:57:00Z","net":0.4068144200000002,"gross":0.8957162899999999},{"timestamp":"2025-12-01T18:57:00Z","net":0.41593522000000016,"gross":0.9123562899999998},{"timestamp":"2025-12-01T19:51:00Z","net":0.4341893000000001,"gross":0.9456362899999998},{"timestamp":"2025-12-01T20:01:00Z","net":0.4523778350000001,"gross":0.9788762899999998},{"timestamp":"2025-12-01T20:02:00Z","net":0.46139569000000014,"gross":0.9954053574999998},{"timestamp":"2025-12-31T19:02:00Z","net":0.4794813250000001,"gross":1.0285344324999997},{"timestamp":"2026-02-11T04:46:00Z","net":0.4934818200000001,"gross":1.0575614999999996},{"timestamp":"2026-02-25T21:59:00Z","net":0.5038114000000001,"gross":1.0829214999999996},{"timestamp":"2026-02-25T22:00:00Z","net":0.5089594800000001,"gross":1.0956014999999997},{"timestamp":"2026-02-25T22:02:00Z","net":0.5191995950000001,"gross":1.1208814999999996},{"timestamp":"2026-02-25T22:03:00Z","net":0.52931554,"gross":1.1460414999999995},{"timestamp":"2026-02-25T22:11:00Z","net":0.53435838,"gross":1.1586014999999994},{"timestamp":"2026-02-25T22:41:00Z","net":0.5447457000000001,"gross":1.1840414999999993},{"timestamp":"2026-02-25T22:58:00Z","net":0.5556288600000001,"gross":1.2099614999999995},{"timestamp":"2026-02-25T23:05:00Z","net":0.5610753000000002,"gross":1.2229214999999996},{"timestamp":"2026-02-25T23:11:00Z","net":0.5719125650000001,"gross":1.2488014999999997},{"timestamp":"2026-02-25T23:26:00Z","net":0.5829972550000001,"gross":1.2749214999999996},{"timestamp":"2026-02-25T23:36:00Z","net":0.5886363150000001,"gross":1.2880814999999997},{"timestamp":"2026-02-25T23:42:00Z","net":0.6001054950000001,"gross":1.3146014999999998},{"timestamp":"2026-02-25T23:50:00Z","net":0.6117430000000001,"gross":1.3412814999999998},{"timestamp":"2026-02-25T23:52:00Z","net":0.6174560600000002,"gross":1.3545214999999997},{"timestamp":"2026-02-25T23:59:00Z","net":0.6288552750000002,"gross":1.3809614999999997}]
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) | 11.10 @ 2026-01-23 23:59:00 UTC |
| Worst Sharpe (30d) | -8.28 @ 2025-06-21 23:59:00 UTC |
| Mean | -0.12 |
| Std Dev | 3.06 |
| Last | -1.74 |
| Points | 586 |
| Across 586 points the series ranged from -8.28 (2025-06-21 23:59:00 UTC) to 11.10 (2026-01-23 23:59:00 UTC), averaging -0.12. The most recent value is -1.74. | |
| Showing 60 of 586 points (down-sampled for readability). |
[{"timestamp":"2024-07-20T23:59:00+00:00","sharpe30":2.62622788554211,"sharpe90":0.5716362512683059},{"timestamp":"2024-07-30T23:59:00+00:00","sharpe30":0.9474441529960967,"sharpe90":0.9582942786599455},{"timestamp":"2024-08-09T23:59:00+00:00","sharpe30":-1.8977560586982827,"sharpe90":0.3551779988207324},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-2.401835116299809,"sharpe90":-0.02019691599976206},{"timestamp":"2024-08-29T23:59:00+00:00","sharpe30":0.10563526572106173,"sharpe90":-0.26592089467263125},{"timestamp":"2024-09-08T23:59:00+00:00","sharpe30":-0.022533246501598197,"sharpe90":0.822849764300019},{"timestamp":"2024-09-17T23:59:00+00:00","sharpe30":2.573341098353255,"sharpe90":1.0070647451721817},{"timestamp":"2024-09-27T23:59:00+00:00","sharpe30":3.598324167111186,"sharpe90":1.197359325456208},{"timestamp":"2024-10-07T23:59:00+00:00","sharpe30":6.08052020338092,"sharpe90":3.0983129030614585},{"timestamp":"2024-10-17T23:59:00+00:00","sharpe30":-0.22287007543871756,"sharpe90":1.8114820571507522},{"timestamp":"2024-10-27T23:59:00+00:00","sharpe30":-4.700379545321224,"sharpe90":0.6769270411365761},{"timestamp":"2024-11-06T23:59:00+00:00","sharpe30":-1.8356294503123243,"sharpe90":1.1223634680958705},{"timestamp":"2024-11-16T23:59:00+00:00","sharpe30":0.3971538534798757,"sharpe90":0.6478071398938009},{"timestamp":"2024-11-26T23:59:00+00:00","sharpe30":3.5496998432153246,"sharpe90":0.030383314101968987},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":7.046573880709778,"sharpe90":-1.8101896015771974},{"timestamp":"2024-12-16T23:59:00+00:00","sharpe30":5.112483587698438,"sharpe90":-1.3726609406665407},{"timestamp":"2024-12-26T23:59:00+00:00","sharpe30":1.8491784876863644,"sharpe90":-2.8868409613595456},{"timestamp":"2025-01-05T23:59:00+00:00","sharpe30":-1.1930953801598372,"sharpe90":-3.760815569612428},{"timestamp":"2025-01-14T23:59:00+00:00","sharpe30":-4.955466114781686,"sharpe90":-2.6566079440472734},{"timestamp":"2025-01-24T23:59:00+00:00","sharpe30":-5.1950965714140045,"sharpe90":-1.2226253789997528},{"timestamp":"2025-02-03T23:59:00+00:00","sharpe30":-6.340175850283977,"sharpe90":-1.0736258937970664},{"timestamp":"2025-02-13T23:59:00+00:00","sharpe30":-3.9754816296425566,"sharpe90":-1.0317608287623636},{"timestamp":"2025-02-23T23:59:00+00:00","sharpe30":-2.677251121219169,"sharpe90":-0.37001432327491224},{"timestamp":"2025-03-05T23:59:00+00:00","sharpe30":-2.821294113883587,"sharpe90":-0.2162364472360499},{"timestamp":"2025-03-15T23:59:00+00:00","sharpe30":-1.6981784265415616,"sharpe90":0.5556445044949798},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":0.617945129864907,"sharpe90":0.13122952063601134},{"timestamp":"2025-04-04T23:59:00+00:00","sharpe30":2.6212604494353107,"sharpe90":0.5123536040728777},{"timestamp":"2025-04-14T23:59:00+00:00","sharpe30":1.4769018565805945,"sharpe90":-0.01881368671826476},{"timestamp":"2025-04-24T23:59:00+00:00","sharpe30":-0.2590633181269975,"sharpe90":-1.6959042155020194},{"timestamp":"2025-05-04T23:59:00+00:00","sharpe30":-2.014473856476951,"sharpe90":-1.4510940272835426},{"timestamp":"2025-05-13T23:59:00+00:00","sharpe30":4.4245842601797944,"sharpe90":-0.37215678697498505},{"timestamp":"2025-05-23T23:59:00+00:00","sharpe30":-0.2691428014106573,"sharpe90":-0.544792152391432},{"timestamp":"2025-06-02T23:59:00+00:00","sharpe30":-0.2630507504400882,"sharpe90":-1.354772278948283},{"timestamp":"2025-06-12T23:59:00+00:00","sharpe30":-5.453075144417782,"sharpe90":-0.9465207322927215},{"timestamp":"2025-06-22T23:59:00+00:00","sharpe30":-7.438390194760369,"sharpe90":-1.005856649346997},{"timestamp":"2025-07-02T23:59:00+00:00","sharpe30":-2.2296547542339553,"sharpe90":-0.5752416186591953},{"timestamp":"2025-07-12T23:59:00+00:00","sharpe30":0.5185384035693144,"sharpe90":0.32511964625635464},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":5.43158402163444,"sharpe90":1.5158274448213584},{"timestamp":"2025-08-01T23:59:00+00:00","sharpe30":-1.6227927045789663,"sharpe90":0.5169068642971866},{"timestamp":"2025-08-11T23:59:00+00:00","sharpe30":1.943413460852093,"sharpe90":-0.2222958659072888},{"timestamp":"2025-08-21T23:59:00+00:00","sharpe30":-1.5573336422045927,"sharpe90":-0.7764851724515968},{"timestamp":"2025-08-31T23:59:00+00:00","sharpe30":1.93550233026263,"sharpe90":-0.0627804237777837},{"timestamp":"2025-09-09T23:59:00+00:00","sharpe30":-1.2567624526892553,"sharpe90":-0.9309865076483849},{"timestamp":"2025-09-19T23:59:00+00:00","sharpe30":0.04073884077612131,"sharpe90":-1.1194420817407333},{"timestamp":"2025-09-29T23:59:00+00:00","sharpe30":2.809997665054322,"sharpe90":-1.2901202845966946},{"timestamp":"2025-10-09T23:59:00+00:00","sharpe30":1.9775294662211227,"sharpe90":-1.221692071677961},{"timestamp":"2025-10-19T23:59:00+00:00","sharpe30":-1.2542539976764966,"sharpe90":-1.5329006143074801},{"timestamp":"2025-10-29T23:59:00+00:00","sharpe30":-3.0513497463286803,"sharpe90":-2.125332111229251},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-2.904158213797185,"sharpe90":-1.7697730625337649},{"timestamp":"2025-11-18T23:59:00+00:00","sharpe30":-1.9715025242432607,"sharpe90":0.4868239268516082},{"timestamp":"2025-11-28T23:59:00+00:00","sharpe30":-2.077484320295515,"sharpe90":1.2031896458694729},{"timestamp":"2025-12-08T23:59:00+00:00","sharpe30":-2.2591084915139414,"sharpe90":0.19236043001793665},{"timestamp":"2025-12-18T23:59:00+00:00","sharpe30":-1.5593112415625832,"sharpe90":1.1427377621352763},{"timestamp":"2025-12-28T23:59:00+00:00","sharpe30":-0.9747847817827011,"sharpe90":null},{"timestamp":"2026-01-06T23:59:00+00:00","sharpe30":1.3977015387669973,"sharpe90":null},{"timestamp":"2026-01-16T23:59:00+00:00","sharpe30":4.8890600678841185,"sharpe90":null},{"timestamp":"2026-01-26T23:59:00+00:00","sharpe30":6.5276261241131746,"sharpe90":null},{"timestamp":"2026-02-05T23:59:00+00:00","sharpe30":0.45894941457202376,"sharpe90":null},{"timestamp":"2026-02-15T23:59:00+00:00","sharpe30":1.1101873670681375,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-1.7378871474728326,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.13% @ 1 |
| Deepest Episode | -17.34% @ 436 |
| Mean | -3.08% |
| Std Dev | 5.21% |
| Last | -17.34% |
| Points | 9 |
| Across 9 points the series ranged from -17.34% (436) to -0.13% (1), averaging -3.08%. 0% of points were positive, 100% negative. The most recent value is -17.34%. | |
| Full series - 9 points. |
[{"start":"2024-06-21T23:59:00+00:00","end":"2024-06-30T23:59:00+00:00","depth":-0.7496889230728128,"durationDays":9},{"start":"2024-07-03T23:59:00+00:00","end":"2024-07-05T23:59:00+00:00","depth":-0.6925376063084768,"durationDays":2},{"start":"2024-07-11T23:59:00+00:00","end":"2024-07-14T23:59:00+00:00","depth":-0.14011423627662653,"durationDays":3},{"start":"2024-07-23T23:59:00+00:00","end":"2024-09-18T23:59:00+00:00","depth":-3.45446902516661,"durationDays":57},{"start":"2024-09-22T23:59:00+00:00","end":"2024-09-25T23:59:00+00:00","depth":-0.3239353947513827,"durationDays":3},{"start":"2024-09-30T23:59:00+00:00","end":"2024-11-24T23:59:00+00:00","depth":-3.7713168846901395,"durationDays":55},{"start":"2024-11-28T23:59:00+00:00","end":"2024-11-29T23:59:00+00:00","depth":-0.1260046158414394,"durationDays":1},{"start":"2024-12-07T23:59:00+00:00","end":"2024-12-15T23:59:00+00:00","depth":-1.1072612138995268,"durationDays":8},{"start":"2024-12-16T23:59:00+00:00","end":"ongoing","depth":-17.3397768606787,"durationDays":436}]
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 | 21.64% @ 2025-06-22 23:59:00 UTC |
| Min Utilization | 0.76% @ 2024-07-06 23:59:00 UTC |
| Mean | 13.99% |
| Std Dev | 5.56% |
| Last | 16.59% |
| Points | 616 |
| Across 616 points the series ranged from 0.76% (2024-07-06 23:59:00 UTC) to 21.64% (2025-06-22 23:59:00 UTC), averaging 13.99%. 100% of points were positive, 0% negative. The most recent value is 16.59%. | |
| Showing 60 of 616 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T23:59:00+00:00","exposure":1.421817322730476},{"timestamp":"2024-06-30T23:59:00+00:00","exposure":0.9168565169218301},{"timestamp":"2024-07-11T23:59:00+00:00","exposure":3.206155202762448},{"timestamp":"2024-07-21T23:59:00+00:00","exposure":1.4199197322383899},{"timestamp":"2024-08-01T23:59:00+00:00","exposure":6.655637962895423},{"timestamp":"2024-08-11T23:59:00+00:00","exposure":10.300479400601422},{"timestamp":"2024-08-22T23:59:00+00:00","exposure":8.606169169651574},{"timestamp":"2024-09-01T23:59:00+00:00","exposure":8.766753441181702},{"timestamp":"2024-09-11T23:59:00+00:00","exposure":9.345590578877351},{"timestamp":"2024-09-22T23:59:00+00:00","exposure":5.956067665070073},{"timestamp":"2024-10-02T23:59:00+00:00","exposure":6.684041319443125},{"timestamp":"2024-10-13T23:59:00+00:00","exposure":7.689841067622434},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":9.181199818369508},{"timestamp":"2024-11-03T23:59:00+00:00","exposure":11.892979166231468},{"timestamp":"2024-11-13T23:59:00+00:00","exposure":7.359376361356684},{"timestamp":"2024-11-23T23:59:00+00:00","exposure":7.539281540436934},{"timestamp":"2024-12-04T23:59:00+00:00","exposure":4.084598140322989},{"timestamp":"2024-12-14T23:59:00+00:00","exposure":6.063983741508178},{"timestamp":"2024-12-25T23:59:00+00:00","exposure":6.695193024418631},{"timestamp":"2025-01-04T23:59:00+00:00","exposure":7.428674718528518},{"timestamp":"2025-01-14T23:59:00+00:00","exposure":11.778577953198791},{"timestamp":"2025-01-25T23:59:00+00:00","exposure":13.181596424688882},{"timestamp":"2025-02-04T23:59:00+00:00","exposure":15.698906889990658},{"timestamp":"2025-02-15T23:59:00+00:00","exposure":15.778487461988448},{"timestamp":"2025-02-25T23:59:00+00:00","exposure":17.7803230279674},{"timestamp":"2025-03-08T23:59:00+00:00","exposure":18.592120221078076},{"timestamp":"2025-03-18T23:59:00+00:00","exposure":17.7740927680383},{"timestamp":"2025-03-28T23:59:00+00:00","exposure":15.667316377256215},{"timestamp":"2025-04-08T23:59:00+00:00","exposure":16.31859776579609},{"timestamp":"2025-04-18T23:59:00+00:00","exposure":16.021433856554157},{"timestamp":"2025-04-29T23:59:00+00:00","exposure":15.753042734766135},{"timestamp":"2025-05-09T23:59:00+00:00","exposure":15.509847236569103},{"timestamp":"2025-05-20T23:59:00+00:00","exposure":16.312867856475684},{"timestamp":"2025-05-30T23:59:00+00:00","exposure":17.632625984858123},{"timestamp":"2025-06-09T23:59:00+00:00","exposure":17.82463312701504},{"timestamp":"2025-06-20T23:59:00+00:00","exposure":20.952901896807013},{"timestamp":"2025-06-30T23:59:00+00:00","exposure":19.4291678923021},{"timestamp":"2025-07-11T23:59:00+00:00","exposure":18.197736569991147},{"timestamp":"2025-07-21T23:59:00+00:00","exposure":17.780450878511747},{"timestamp":"2025-08-01T23:59:00+00:00","exposure":21.2697674379728},{"timestamp":"2025-08-11T23:59:00+00:00","exposure":17.455307000463844},{"timestamp":"2025-08-21T23:59:00+00:00","exposure":18.076687249822083},{"timestamp":"2025-09-01T23:59:00+00:00","exposure":17.949952511439708},{"timestamp":"2025-09-11T23:59:00+00:00","exposure":15.851602511629318},{"timestamp":"2025-09-22T23:59:00+00:00","exposure":16.650346011150006},{"timestamp":"2025-10-02T23:59:00+00:00","exposure":17.397496993831055},{"timestamp":"2025-10-12T23:59:00+00:00","exposure":16.54108575040299},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":18.937515468246886},{"timestamp":"2025-11-02T23:59:00+00:00","exposure":19.539894375674947},{"timestamp":"2025-11-13T23:59:00+00:00","exposure":18.686142154222225},{"timestamp":"2025-11-23T23:59:00+00:00","exposure":20.47712119985335},{"timestamp":"2025-12-04T23:59:00+00:00","exposure":20.022551816993765},{"timestamp":"2025-12-14T23:59:00+00:00","exposure":18.95769210082186},{"timestamp":"2025-12-24T23:59:00+00:00","exposure":19.279163184699446},{"timestamp":"2026-01-04T23:59:00+00:00","exposure":19.01639703614237},{"timestamp":"2026-01-14T23:59:00+00:00","exposure":18.304970919805942},{"timestamp":"2026-01-25T23:59:00+00:00","exposure":18.286710707190824},{"timestamp":"2026-02-04T23:59:00+00:00","exposure":18.48129479195535},{"timestamp":"2026-02-15T23:59:00+00:00","exposure":15.669106647231464},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":16.58526395887813}]
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 | 4.81 @ 2024-07-20 15:40:00 UTC |
| Lowest Price | 1.20 @ 2025-12-01 18:30:00 UTC |
| Mean | 2.18 |
| Std Dev | 1.06 |
| Last | 1.53 |
| Points | 163 |
| Across 163 points the series ranged from 1.20 (2025-12-01 18:30:00 UTC) to 4.81 (2024-07-20 15:40:00 UTC), averaging 2.18. The most recent value is 1.53. | |
| Showing 60 of 163 points (down-sampled for readability). |
[{"timestamp":"2024-06-20T13:01:00Z","price":4.796},{"timestamp":"2024-06-20T13:07:00Z","price":4.436},{"timestamp":"2024-06-20T13:09:00Z","price":4.355},{"timestamp":"2024-06-20T13:13:00Z","price":4.049},{"timestamp":"2024-06-20T13:19:00Z","price":4.124},{"timestamp":"2024-06-20T13:22:00Z","price":4.215},{"timestamp":"2024-06-20T13:24:00Z","price":4.135},{"timestamp":"2024-06-20T13:27:00Z","price":4.064},{"timestamp":"2024-06-20T13:32:00Z","price":4.041},{"timestamp":"2024-06-20T13:38:00Z","price":3.912},{"timestamp":"2024-07-06T08:28:00Z","price":4.366},{"timestamp":"2025-02-28T06:47:00Z","price":2.406},{"timestamp":"2025-03-19T16:45:00Z","price":2.4},{"timestamp":"2025-03-19T18:35:00Z","price":2.406},{"timestamp":"2025-03-19T18:52:00Z","price":2.406},{"timestamp":"2025-04-10T18:52:00Z","price":2.4},{"timestamp":"2025-04-10T23:42:00Z","price":2.406},{"timestamp":"2025-04-16T22:07:00Z","price":2.4},{"timestamp":"2025-04-18T01:54:00Z","price":2.4},{"timestamp":"2025-04-18T05:07:00Z","price":2.406},{"timestamp":"2025-05-06T17:38:00Z","price":2.4},{"timestamp":"2025-05-06T20:13:00Z","price":2.406},{"timestamp":"2025-07-18T05:58:00Z","price":2.406},{"timestamp":"2025-08-11T13:53:00Z","price":2.4},{"timestamp":"2025-09-27T08:31:00Z","price":2.4},{"timestamp":"2025-10-08T09:40:00Z","price":2.406},{"timestamp":"2025-10-09T05:46:00Z","price":2.4},{"timestamp":"2025-10-09T06:32:00Z","price":2.406},{"timestamp":"2025-11-21T23:08:00Z","price":1.208},{"timestamp":"2025-11-22T05:36:00Z","price":1.214},{"timestamp":"2025-11-22T05:40:00Z","price":1.207},{"timestamp":"2025-11-22T05:55:00Z","price":1.213},{"timestamp":"2025-11-22T06:13:00Z","price":1.208},{"timestamp":"2025-11-22T08:35:00Z","price":1.214},{"timestamp":"2025-11-22T09:30:00Z","price":1.207},{"timestamp":"2025-12-01T14:33:00Z","price":1.211},{"timestamp":"2025-12-01T15:30:00Z","price":1.203},{"timestamp":"2025-12-01T18:16:00Z","price":1.205},{"timestamp":"2025-12-01T18:25:00Z","price":1.203},{"timestamp":"2025-12-01T18:57:00Z","price":1.209},{"timestamp":"2025-12-01T19:08:00Z","price":1.204},{"timestamp":"2025-12-01T19:56:00Z","price":1.208},{"timestamp":"2025-12-01T20:02:00Z","price":1.213},{"timestamp":"2025-12-31T18:54:00Z","price":1.209},{"timestamp":"2025-12-31T19:04:00Z","price":1.213},{"timestamp":"2026-02-25T13:00:00Z","price":1.499},{"timestamp":"2026-02-25T21:37:00Z","price":1.596},{"timestamp":"2026-02-25T21:53:00Z","price":1.582},{"timestamp":"2026-02-25T21:59:00Z","price":1.578},{"timestamp":"2026-02-25T22:03:00Z","price":1.6},{"timestamp":"2026-02-25T22:07:00Z","price":1.592},{"timestamp":"2026-02-25T22:41:00Z","price":1.564},{"timestamp":"2026-02-25T22:57:00Z","price":1.548},{"timestamp":"2026-02-25T23:02:00Z","price":1.544},{"timestamp":"2026-02-25T23:11:00Z","price":1.553},{"timestamp":"2026-02-25T23:26:00Z","price":1.536},{"timestamp":"2026-02-25T23:38:00Z","price":1.528},{"timestamp":"2026-02-25T23:44:00Z","price":1.504},{"timestamp":"2026-02-25T23:50:00Z","price":1.507},{"timestamp":"2026-02-25T23:59:00Z","price":1.525}]
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 | 29 trades @ $5.01 |
| Least Populated Bin | 0 trades @ $5.02 |
| Mean | 4 trades |
| Std Dev | 6 trades |
| Last | 2 trades |
| Points | 25 |
| Sum | 100 trades |
| Across 25 points the series ranged from 0 trades (5.02)to∗∗29trades∗∗(5.01), averaging 4 trades. The most recent value is 2 trades. | |
| Full series - 25 points. |
[{"bin":"$5.00","count":7,"from":5.00032},{"bin":"$5.00","count":6,"from":5.0018984},{"bin":"$5.00","count":5,"from":5.0034768000000005},{"bin":"$5.01","count":10,"from":5.0050552},{"bin":"$5.01","count":5,"from":5.0066336},{"bin":"$5.01","count":17,"from":5.008212},{"bin":"$5.01","count":3,"from":5.0097904},{"bin":"$5.01","count":4,"from":5.0113688000000005},{"bin":"$5.01","count":2,"from":5.0129472},{"bin":"$5.01","count":29,"from":5.0145256},{"bin":"$5.02","count":1,"from":5.016104},{"bin":"$5.02","count":1,"from":5.0176824},{"bin":"$5.02","count":2,"from":5.0192608},{"bin":"$5.02","count":0,"from":5.0208392},{"bin":"$5.02","count":0,"from":5.0224176},{"bin":"$5.02","count":0,"from":5.0239959999999995},{"bin":"$5.03","count":2,"from":5.0255744},{"bin":"$5.03","count":0,"from":5.0271528},{"bin":"$5.03","count":1,"from":5.028731199999999},{"bin":"$5.03","count":1,"from":5.0303096},{"bin":"$5.03","count":0,"from":5.0318879999999995},{"bin":"$5.03","count":0,"from":5.0334664},{"bin":"$5.04","count":1,"from":5.0350448},{"bin":"$5.04","count":1,"from":5.036623199999999},{"bin":"$5.04","count":2,"from":5.0382016}]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 36 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.12 |
| Mean | 5 trades |
| Std Dev | 9 trades |
| Last | 25 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.12) to 36 trades (0.1), averaging 5 trades. The most recent value is 25 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 36,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 14,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 8,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 7,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.13,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.13,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.18,
"TP": 25,
"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 | 96.76 @ Jan |
| Worst Indexed Value | 84.71 @ Dec |
| Mean | 90.64 |
| Std Dev | 3.49 |
| Last | 84.71 |
| Points | 12 |
| Across 12 points the series ranged from 84.71 (Dec) to 96.76 (Jan), averaging 90.64. The most recent value is 84.71. | |
| Full series - 12 points. |
[
{
"2025": 96.75629633826732,
"2026": 106.29024611406675,
"month": "Jan"
},
{
"2025": 92.35052472929041,
"2026": 105.35303313223548,
"month": "Feb"
},
{
"2025": 94.24811765261052,
"month": "Mar"
},
{
"2025": 94.67395723540552,
"month": "Apr"
},
{
"2025": 91.95489949180217,
"month": "May"
},
{
"2024": 100.34014931555947,
"2025": 89.43207993807415,
"month": "Jun"
},
{
"2024": 100.6260743667825,
"2025": 88.0146760606664,
"month": "Jul"
},
{
"2024": 100.5802052328007,
"2025": 90.41570200080888,
"month": "Aug"
},
{
"2024": 101.88858865992782,
"2025": 91.4640288751152,
"month": "Sep"
},
{
"2024": 99.56232615457633,
"2025": 87.6908682925392,
"month": "Oct"
},
{
"2024": 103.12296226159701,
"2025": 85.9780786214456,
"month": "Nov"
},
{
"2024": 102.37257124309531,
"2025": 84.71025646292624,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 154.73 USDT @ Sun |
| Worst Weekday | 111.54 USDT @ Fri |
| Mean | 136.72 USDT |
| Std Dev | 13.91 USDT |
| Last | 154.73 USDT |
| Points | 7 |
| Sum | 957.01 USDT |
| Across 7 points the series ranged from 111.54 USDT (Fri) to 154.73 USDT (Sun), averaging 136.72 USDT. 100% of points were positive, 0% negative. The most recent value is 154.73 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 142.124307
},
{
"day": "Tue",
"profit": 141.864836
},
{
"day": "Wed",
"profit": 134.605115
},
{
"day": "Thu",
"profit": 149.031146
},
{
"day": "Fri",
"profit": 111.540073
},
{
"day": "Sat",
"profit": 123.112202
},
{
"day": "Sun",
"profit": 154.730285
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 57.41 USDT @ 14:00 |
| Worst Hour (UTC) | 30.44 USDT @ 23:00 |
| Mean | 39.88 USDT |
| Std Dev | 7.41 USDT |
| Last | 30.44 USDT |
| Points | 24 |
| Sum | 957.01 USDT |
| Across 24 points the series ranged from 30.44 USDT (23:00) to 57.41 USDT (14:00), averaging 39.88 USDT. 100% of points were positive, 0% negative. The most recent value is 30.44 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":48.464846},{"hour":"1:00","profit":44.127839},{"hour":"2:00","profit":38.969697},{"hour":"3:00","profit":34.552869},{"hour":"4:00","profit":34.3918},{"hour":"5:00","profit":33.278364},{"hour":"6:00","profit":33.485199},{"hour":"7:00","profit":35.731884},{"hour":"8:00","profit":37.180708},{"hour":"9:00","profit":35.342738},{"hour":"10:00","profit":32.671224},{"hour":"11:00","profit":33.225102},{"hour":"12:00","profit":40.194777},{"hour":"13:00","profit":48.406167},{"hour":"14:00","profit":57.405895},{"hour":"15:00","profit":53.998001},{"hour":"16:00","profit":53.234312},{"hour":"17:00","profit":45.68871},{"hour":"18:00","profit":40.697319},{"hour":"19:00","profit":37.929315},{"hour":"20:00","profit":38.099202},{"hour":"21:00","profit":35.688673},{"hour":"22:00","profit":33.806422},{"hour":"23:00","profit":30.436899}]
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 | 0.18% @ 0.4166666666666667 |
| Worst Trade Return | 0.10% @ 0.016666666666666666 |
| Mean | 0.13% |
| Std Dev | 0.03% |
| Last | 0.11% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0.016666666666666666) to 0.18% (0.4166666666666667), averaging 0.13%. 100% of points were positive, 0% negative. The most recent value is 0.11%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":722.65,"profitPct":0.1000208507,"profit":0.00503685},{"hours":0,"profitPct":0.1109007833,"profit":0.00555573},{"hours":0,"profitPct":0.1203110911,"profit":0.00603081},{"hours":379.31666666666666,"profitPct":0.1023938002,"profit":0.0051281375},{"hours":0,"profitPct":0.1151169802,"profit":0.0057750275},{"hours":0,"profitPct":0.1214682638,"profit":0.00609863},{"hours":0,"profitPct":0.1113349976,"profit":0.005525645},{"hours":0,"profitPct":0.110776987,"profit":0.005509715},{"hours":0.016666666666666666,"profitPct":0.1114593245,"profit":0.005529185},{"hours":307.1166666666667,"profitPct":0.1111487289,"profit":0.005520335},{"hours":0,"profitPct":0.1166606016,"profit":0.005866675},{"hours":0,"profitPct":0.1204662894,"profit":0.00607073},{"hours":0,"profitPct":0.1218711353,"profit":0.00610979},{"hours":0,"profitPct":0.1056934493,"profit":0.00528704},{"hours":0,"profitPct":0.1104248111,"profit":0.00555047},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.1,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.13333333333333333,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.7,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.13333333333333333,"profitPct":0.0998125,"profit":0.00498264},{"hours":1.0166666666666666,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.2,"profitPct":0.0998125,"profit":0.00498264},{"hours":1083.5,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.00498264},{"hours":19.2,"profitPct":0.0998125,"profit":0.00498264},{"hours":4.466666666666667,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.00498264},{"hours":0.05,"profitPct":0.1808774834,"profit":0.00902405},{"hours":0.016666666666666666,"profitPct":0.1819767442,"profit":0.00911456},{"hours":0.2833333333333333,"profitPct":0.1806038048,"profit":0.009017855},{"hours":0.06666666666666667,"profitPct":0.1817012448,"profit":0.009086425},{"hours":0.2,"profitPct":0.1806038048,"profit":0.009017855},{"hours":0.03333333333333333,"profitPct":0.1803305785,"profit":0.00901166},{"hours":0.03333333333333333,"profitPct":0.1811516156,"profit":0.009073975},{"hours":0.03333333333333333,"profitPct":0.1811516156,"profit":0.009073975},{"hours":4.533333333333333,"profitPct":0.1811516156,"profit":0.009073975},{"hours":2.45,"profitPct":0.1822527016,"profit":0.0091208},{"hours":0.6833333333333333,"profitPct":0.1817012448,"profit":0.009086425},{"hours":0.4166666666666667,"profitPct":0.182805995,"profit":0.009155235},{"hours":0.8,"profitPct":0.1819767442,"profit":0.00911456},{"hours":0.6833333333333333,"profitPct":0.1825291181,"profit":0.00912704},{"hours":0.16666666666666666,"profitPct":0.1806038048,"profit":0.009017855},{"hours":0.05,"profitPct":0.0998125,"profit":0.00498264},{"hours":7.966666666666667,"profitPct":0.1105606258,"profit":0.00552896},{"hours":0.43333333333333335,"profitPct":0.1004385965,"profit":0.00503342},{"hours":0.11666666666666667,"profitPct":0.1026548673,"profit":0.00514808},{"hours":0.03333333333333333,"profitPct":0.1039390089,"profit":0.00520248},{"hours":0.016666666666666666,"profitPct":0.1015418502,"profit":0.005082525},{"hours":0.1,"profitPct":0.1007528231,"profit":0.00504284},{"hours":0.016666666666666666,"profitPct":0.1062179487,"profit":0.00531897},{"hours":0.13333333333333333,"profitPct":0.108538163,"profit":0.00543672},{"hours":0.21666666666666667,"profitPct":0.1080374435,"profit":0.005405405},{"hours":0.05,"profitPct":0.108873057,"profit":0.00544644},{"hours":0.06666666666666667,"profitPct":0.1109007833,"profit":0.00555573},{"hours":0.03333333333333333,"profitPct":0.1122703412,"profit":0.00562919},{"hours":0.16666666666666666,"profitPct":0.1148774023,"profit":0.00575522},{"hours":0.03333333333333333,"profitPct":0.1164666667,"profit":0.00583498},{"hours":0.05,"profitPct":0.1127876397,"profit":0.005643995}]
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": "9bee9938-0373-4fcd-9191-8a01a74454a1",
"symbol": "ZROUSDT",
"strategy": "3LongTimeLong.json",
"strategy_label": "LongTimeLong",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 615,
"start_balance_usdt": 10000,
"final_value_usdt": 9254.89331002,
"return_pct": -7.4511,
"total_profit_usdt": 957.00796331,
"avg_profit_per_trade_usdt": 0.00595014,
"fulfilled_trades": 160838,
"active_orders": 597,
"win_rate_pct": 100,
"best_trade_usdt": 0.00915523,
"worst_trade_usdt": 0.00498264,
"trades_per_month": 7273.705382340583,
"max_drawdown_pct": 17.3397768606787,
"max_drawdown_abs_usdt": 1811.2769913997,
"drawdown_duration_days": 85,
"recovery_days": null,
"cagr_pct": -4.49460562138202,
"volatility_annualized_pct": 16.16866623662905,
"sharpe_annualized": -0.20072188562804394,
"sortino_annualized": -0.19342780654092637,
"time_in_market_pct": 100,
"final_cash_usdt": 7719.9448254443,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -1464.3822275949,
"median_hold_hours": 0.11666666666666667,
"avg_hold_hours": 32.389029535864985,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 9bee9938-0373-4fcd-9191-8a01a74454a1 |
symbol | ZROUSDT |
strategy | 3LongTimeLong.json |
strategy_label | LongTimeLong |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 615 |
start_balance_usdt | 10000 |
final_value_usdt | 9254.89331002 |
return_pct | -7.4511 |
total_profit_usdt | 957.00796331 |
avg_profit_per_trade_usdt | 0.00595014 |
fulfilled_trades | 160838 |
active_orders | 597 |
win_rate_pct | 100 |
best_trade_usdt | 0.00915523 |
worst_trade_usdt | 0.00498264 |
trades_per_month | 7273.705382340583 |
max_drawdown_pct | 17.3397768606787 |
max_drawdown_abs_usdt | 1811.2769913997 |
drawdown_duration_days | 85 |
recovery_days | null |
cagr_pct | -4.49460562138202 |
volatility_annualized_pct | 16.16866623662905 |
sharpe_annualized | -0.20072188562804394 |
sortino_annualized | -0.19342780654092637 |
time_in_market_pct | 100 |
final_cash_usdt | 7719.9448254443 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -1464.3822275949 |
median_hold_hours | 0.11666666666666667 |
avg_hold_hours | 32.389029535864985 |
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 | ZROUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 3LongTimeLong.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 | 9,254.89 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -7.45% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +957.01 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)) | 160,838 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0092 USDT |
| Worst trade | GET /backtests/{id} | $.min_profit | direct API value (cross-check: min(trades[].profit)) | +0.0050 USDT |
| Avg profit / trade | GET /backtests/{id} | $.avg_profit | direct API value | +0.0060 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 7273.7 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -17.34% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -1,811.28 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -4.49% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 16.17% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.20 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | -0.19 |
| 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) | 0.75 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +0.63 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.0063 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 | 32.4h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.1h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,004 USDT |
Raw API Attachments
/trades. Full trade population: 160,838 closed trades - fetch the complete list via GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1 - backtest summary (verbatim)
GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1 - backtest summary (verbatim)
{
"id": "9bee9938-0373-4fcd-9191-8a01a74454a1",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:13.939174Z",
"started_at": "2026-05-09T23:02:35.061681Z",
"completed_at": "2026-05-09T23:25:30.398768Z",
"mode_name": "3LongTimeLong.json",
"symbol": "ZROUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 9254.89331002,
"return_pct": -7.4511,
"total_profit": 957.00796331,
"fulfilled_trades": 160838,
"active_orders": 597,
"win_rate": 100,
"avg_profit": 0.00595014,
"max_profit": 0.00915523,
"min_profit": 0.00498264,
"elapsed_sec": 1050.46,
"max_drawdown": -17.3398,
"profit_factor": null,
"sharpe_ratio": -0.2007,
"total_fees": 1211.41789238,
"avg_hold_time_hours": 11.8171,
"tp_count": 160838,
"sl_count": 0,
"tsl_count": 0,
"start_price": 3.442,
"end_price": 1.524,
"gross_profit_quote": 2168.425856,
"gross_loss_quote": 0,
"wins": 160838,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 160838,
"consecutive_losses_max": 0,
"holding_minutes_p50": 8,
"holding_minutes_p95": 908.15,
"holding_minutes_max": 261195,
"description": "ZROUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -7.45% | 160838 trades | 100% WR",
"summary_text": "Backtest ZROUSDT (Mode: 3LongTimeLong.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 9,254.89 USDT\nP&L: -745.11 USDT (-7.45%)\nResult: LOSS\nCompleted trades: 160838\nOpen orders at end: 597\nWin rate: 100.0%\nAvg. profit/trade: 0.005950 USDT\nBest trade: 0.009155 USDT\nWorst trade: 0.004983 USDT\nTotal profit (trades only): 957.007963 USDT\nMax drawdown: -17.34%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.20\nTotal fees: 1,211.42 USDT\nAvg hold time: 11.8h\nTP / SL / TSL: 160838 / 0 / 0\n\nStrategy parameters:\n Buy trigger: -0.1% from last buy\n Buy splits: 9\n Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]\n Investment per buy: 25.0 USDT\n Fees: maker 7.5 bps / taker 7.5 bps\n\nElapsed: 1050.5s",
"share_token": null,
"config_hash": "2d7d8a87625a024e3f1f8ec2ad20a75507416fb7966392c40819b5cfaecd5b61",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "ZROUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"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,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/equity - equity series (verbatim, 616 points)
GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/equity - equity series (verbatim, 616 points)
[
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 41.43,
"quote_asset_bal": 9850.8425081075,
"total_value_mid": 9993.0302681075,
"total_value_exit_net": 9992.9236272875,
"total_value": 9993.0302681075,
"base_cost_quote": 150.7279312275,
"unrealized_pnl_exit_net": -8.6468120475
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 80.11,
"quote_asset_bal": 9734.3997093726,
"total_value_mid": 9977.9341093726,
"total_value_exit_net": 9977.7514585726,
"total_value": 9977.9341093726,
"base_cost_quote": 271.08584201,
"unrealized_pnl_exit_net": -27.73409281
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 64.25,
"quote_asset_bal": 9788.4372549351,
"total_value_mid": 9986.8412549351,
"total_value_exit_net": 9986.6924519351,
"total_value": 9986.8412549351,
"base_cost_quote": 220.900130935,
"unrealized_pnl_exit_net": -22.644933935
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 130.6,
"quote_asset_bal": 9595.2679275601,
"total_value_mid": 9961.9927275601,
"total_value_exit_net": 9961.7176839601,
"total_value": 9961.9927275601,
"base_cost_quote": 416.56362858,
"unrealized_pnl_exit_net": -50.11387218
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 130.64,
"quote_asset_bal": 9598.7104691651,
"total_value_mid": 9969.9893491651,
"total_value_exit_net": 9969.7108900051,
"total_value": 9969.9893491651,
"base_cost_quote": 416.5351172125,
"unrealized_pnl_exit_net": -45.5346963725
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 157.43,
"quote_asset_bal": 9525.8261606001,
"total_value_mid": 9961.5924006001,
"total_value_exit_net": 9961.2655759201,
"total_value": 9961.5924006001,
"base_cost_quote": 491.863401085,
"unrealized_pnl_exit_net": -56.423985765
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 242.66,
"quote_asset_bal": 9301.9863651801,
"total_value_mid": 9918.8280851801,
"total_value_exit_net": 9918.3654538901,
"total_value": 9918.8280851801,
"base_cost_quote": 717.559106005,
"unrealized_pnl_exit_net": -101.180017295
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 233.01,
"quote_asset_bal": 9329.5341715551,
"total_value_mid": 9923.2436515551,
"total_value_exit_net": 9922.7983694451,
"total_value": 9923.2436515551,
"base_cost_quote": 692.5790149775,
"unrealized_pnl_exit_net": -99.3148170875
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 237.36,
"quote_asset_bal": 9321.7322880426,
"total_value_mid": 9918.4553280426,
"total_value_exit_net": 9918.0077857626,
"total_value": 9918.4553280426,
"base_cost_quote": 702.60327754,
"unrealized_pnl_exit_net": -106.32777982
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 155.6,
"quote_asset_bal": 9540.2283055151,
"total_value_mid": 9972.9519055151,
"total_value_exit_net": 9972.6273628151,
"total_value": 9972.9519055151,
"base_cost_quote": 486.8084226925,
"unrealized_pnl_exit_net": -54.4093653925
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 26.46,
"quote_asset_bal": 9934.9820696751,
"total_value_mid": 10026.9834896751,
"total_value_exit_net": 10026.9144886101,
"total_value": 10026.9834896751,
"base_cost_quote": 95.4343120925,
"unrealized_pnl_exit_net": -3.5018931575
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 35.85,
"quote_asset_bal": 9898.0363578601,
"total_value_mid": 10033.6210578601,
"total_value_exit_net": 10033.5193693351,
"total_value": 10033.6210578601,
"base_cost_quote": 135.61147238,
"unrealized_pnl_exit_net": -0.128460905
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 50.68,
"quote_asset_bal": 9840.6339187476,
"total_value_mid": 10034.7383187476,
"total_value_exit_net": 10034.5927404476,
"total_value": 10034.7383187476,
"base_cost_quote": 195.83240423,
"unrealized_pnl_exit_net": -1.87358253
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 81.78,
"quote_asset_bal": 9727.9107159851,
"total_value_mid": 10017.9843759851,
"total_value_exit_net": 10017.7668207401,
"total_value": 10017.9843759851,
"base_cost_quote": 311.3658994125,
"unrealized_pnl_exit_net": -21.5097946575
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 154.15,
"quote_asset_bal": 9489.5952578676,
"total_value_mid": 9965.4563078676,
"total_value_exit_net": 9965.0994120801,
"total_value": 9965.4563078676,
"base_cost_quote": 552.3666745325,
"unrealized_pnl_exit_net": -76.86252032
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 35.79,
"quote_asset_bal": 9901.1166325601,
"total_value_mid": 10041.3418525601,
"total_value_exit_net": 10041.2366836451,
"total_value": 10041.3418525601,
"base_cost_quote": 145.6957799425,
"unrealized_pnl_exit_net": -5.5757288575
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 18.09,
"quote_asset_bal": 9974.2250683601,
"total_value_mid": 10050.2211583601,
"total_value_exit_net": 10050.1641612926,
"total_value": 10050.2211583601,
"base_cost_quote": 70.35288512,
"unrealized_pnl_exit_net": 5.5862078125
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 39.77,
"quote_asset_bal": 9889.3055989327,
"total_value_mid": 10048.3855989327,
"total_value_exit_net": 10048.2662889327,
"total_value": 10048.3855989327,
"base_cost_quote": 155.8056366525,
"unrealized_pnl_exit_net": 3.1550533475
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 48.8,
"quote_asset_bal": 9857.7139171977,
"total_value_mid": 10046.4723171977,
"total_value_exit_net": 10046.3307483977,
"total_value": 10046.4723171977,
"base_cost_quote": 190.99814125,
"unrealized_pnl_exit_net": -2.38131005
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 47.57,
"quote_asset_bal": 9865.4702774101,
"total_value_mid": 10049.3283274101,
"total_value_exit_net": 10049.1904338726,
"total_value": 10049.3283274101,
"base_cost_quote": 185.903142865,
"unrealized_pnl_exit_net": -2.1829864025
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 41.67,
"quote_asset_bal": 9888.1347152901,
"total_value_mid": 10055.6064452901,
"total_value_exit_net": 10055.4808414926,
"total_value": 10055.6064452901,
"base_cost_quote": 160.8576027875,
"unrealized_pnl_exit_net": 6.488523415
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 85.87,
"quote_asset_bal": 9719.4490794876,
"total_value_mid": 10041.6333194876,
"total_value_exit_net": 10041.3916813076,
"total_value": 10041.6333194876,
"base_cost_quote": 331.6012645625,
"unrealized_pnl_exit_net": -9.6586627425
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 87.32,
"quote_asset_bal": 9716.3212678501,
"total_value_mid": 10043.5093078501,
"total_value_exit_net": 10043.2639168201,
"total_value": 10043.5093078501,
"base_cost_quote": 336.607326295,
"unrealized_pnl_exit_net": -9.664677325
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 91.31,
"quote_asset_bal": 9702.5162269051,
"total_value_mid": 10042.3720469051,
"total_value_exit_net": 10042.1171550401,
"total_value": 10042.3720469051,
"base_cost_quote": 351.750635265,
"unrealized_pnl_exit_net": -12.14970713
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 66.2,
"quote_asset_bal": 9799.6459581676,
"total_value_mid": 10056.1047581676,
"total_value_exit_net": 10055.9124140676,
"total_value": 10056.1047581676,
"base_cost_quote": 256.2464708225,
"unrealized_pnl_exit_net": 0.0199850775
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 33.29,
"quote_asset_bal": 9932.1579467726,
"total_value_mid": 10070.3447367726,
"total_value_exit_net": 10070.2410966801,
"total_value": 10070.3447367726,
"base_cost_quote": 125.634535285,
"unrealized_pnl_exit_net": 12.4486146225
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 53.05,
"quote_asset_bal": 9853.2053078951,
"total_value_mid": 10064.3973578951,
"total_value_exit_net": 10064.2389638576,
"total_value": 10064.3973578951,
"base_cost_quote": 206.0696664225,
"unrealized_pnl_exit_net": 4.96398954
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 52.49,
"quote_asset_bal": 9857.4180188101,
"total_value_mid": 10067.6404688101,
"total_value_exit_net": 10067.4828019726,
"total_value": 10067.6404688101,
"base_cost_quote": 201.0154185775,
"unrealized_pnl_exit_net": 9.049364585
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 70.16,
"quote_asset_bal": 9788.4039757276,
"total_value_mid": 10063.8521357276,
"total_value_exit_net": 10063.6455496076,
"total_value": 10063.8521357276,
"base_cost_quote": 271.286132115,
"unrealized_pnl_exit_net": 3.955441765
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 67.69,
"quote_asset_bal": 9799.6684916201,
"total_value_mid": 10068.0593416201,
"total_value_exit_net": 10067.8580484826,
"total_value": 10068.0593416201,
"base_cost_quote": 261.2913716625,
"unrealized_pnl_exit_net": 6.8981852
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 15.17,
"quote_asset_bal": 10016.6838970976,
"total_value_mid": 10096.9787070976,
"total_value_exit_net": 10096.9184859901,
"total_value": 10096.9787070976,
"base_cost_quote": 45.2190889,
"unrealized_pnl_exit_net": 35.0154999925
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 27.46,
"quote_asset_bal": 9953.7414927551,
"total_value_mid": 10097.2199927551,
"total_value_exit_net": 10097.1123838801,
"total_value": 10097.2199927551,
"base_cost_quote": 110.6206933425,
"unrealized_pnl_exit_net": 32.7501977825
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 40.72,
"quote_asset_bal": 9885.7005305176,
"total_value_mid": 10095.8564505176,
"total_value_exit_net": 10095.6988335776,
"total_value": 10095.8564505176,
"base_cost_quote": 181.0220347775,
"unrealized_pnl_exit_net": 28.9762682825
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 60.83,
"quote_asset_bal": 9786.8436993201,
"total_value_mid": 10084.3632293201,
"total_value_exit_net": 10084.1400896726,
"total_value": 10084.3632293201,
"base_cost_quote": 281.7375448,
"unrealized_pnl_exit_net": 15.5588455525
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 71.11,
"quote_asset_bal": 9738.3080371176,
"total_value_mid": 10080.3471371176,
"total_value_exit_net": 10080.0906077926,
"total_value": 10080.3471371176,
"base_cost_quote": 331.9518673175,
"unrealized_pnl_exit_net": 9.8307033575
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 94.84,
"quote_asset_bal": 9629.0002785376,
"total_value_mid": 10063.2726385376,
"total_value_exit_net": 10062.9469342676,
"total_value": 10063.2726385376,
"base_cost_quote": 442.5821378375,
"unrealized_pnl_exit_net": -8.6354821075
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 76.38,
"quote_asset_bal": 9715.8918733201,
"total_value_mid": 10075.9471933201,
"total_value_exit_net": 10075.6771518301,
"total_value": 10075.9471933201,
"base_cost_quote": 357.0977525975,
"unrealized_pnl_exit_net": 2.6875259125
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 96.86,
"quote_asset_bal": 9621.8013593651,
"total_value_mid": 10065.3232993651,
"total_value_exit_net": 10064.9906579101,
"total_value": 10065.3232993651,
"base_cost_quote": 452.61068361,
"unrealized_pnl_exit_net": -9.421385065
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 125.95,
"quote_asset_bal": 9491.8640797176,
"total_value_mid": 10047.5554797176,
"total_value_exit_net": 10047.1387111676,
"total_value": 10047.5554797176,
"base_cost_quote": 583.2867472075,
"unrealized_pnl_exit_net": -28.0121157575
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 132.1,
"quote_asset_bal": 9465.9928987651,
"total_value_mid": 10041.6846987651,
"total_value_exit_net": 10041.2529299151,
"total_value": 10041.6846987651,
"base_cost_quote": 608.5285843975,
"unrealized_pnl_exit_net": -33.2685532475
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 112.82,
"quote_asset_bal": 9552.8734737276,
"total_value_mid": 10056.8404137276,
"total_value_exit_net": 10056.4624385226,
"total_value": 10056.8404137276,
"base_cost_quote": 523.0187801075,
"unrealized_pnl_exit_net": -19.4298153125
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 119.5,
"quote_asset_bal": 9524.3494126101,
"total_value_mid": 10055.8854126101,
"total_value_exit_net": 10055.4867606101,
"total_value": 10055.8854126101,
"base_cost_quote": 553.142485955,
"unrealized_pnl_exit_net": -22.005137955
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 162.17,
"quote_asset_bal": 9343.0904240576,
"total_value_mid": 10009.7712940576,
"total_value_exit_net": 10009.2712834051,
"total_value": 10009.7712940576,
"base_cost_quote": 733.9934725425,
"unrealized_pnl_exit_net": -67.812613195
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 230.27,
"quote_asset_bal": 9083.3901406427,
"total_value_mid": 9915.3556506427,
"total_value_exit_net": 9914.7316765102,
"total_value": 9915.3556506427,
"base_cost_quote": 995.28942764,
"unrealized_pnl_exit_net": -163.9478917725
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 221.94,
"quote_asset_bal": 9115.4691305951,
"total_value_mid": 9921.9990905951,
"total_value_exit_net": 9921.3941931251,
"total_value": 9921.9990905951,
"base_cost_quote": 965.1696647475,
"unrealized_pnl_exit_net": -159.2446022175
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 313.76,
"quote_asset_bal": 8805.9416395376,
"total_value_mid": 9801.1883595376,
"total_value_exit_net": 9800.4419244976,
"total_value": 9801.1883595376,
"base_cost_quote": 1276.4454666375,
"unrealized_pnl_exit_net": -281.9451816775
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 330.44,
"quote_asset_bal": 8759.7649627926,
"total_value_mid": 9770.2504827926,
"total_value_exit_net": 9769.4926186526,
"total_value": 9770.2504827926,
"base_cost_quote": 1326.6484106275,
"unrealized_pnl_exit_net": -316.9207547675
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 275.88,
"quote_asset_bal": 8938.0278433852,
"total_value_mid": 9845.1212833851,
"total_value_exit_net": 9844.4409633051,
"total_value": 9845.1212833851,
"base_cost_quote": 1150.951546735,
"unrealized_pnl_exit_net": -244.538426815
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 359.79,
"quote_asset_bal": 8673.7050133752,
"total_value_mid": 9749.1173233752,
"total_value_exit_net": 9748.3107641427,
"total_value": 9749.1173233752,
"base_cost_quote": 1416.9937188275,
"unrealized_pnl_exit_net": -342.38796806
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 231.15,
"quote_asset_bal": 9097.5822916252,
"total_value_mid": 9932.9583916252,
"total_value_exit_net": 9932.3318595502,
"total_value": 9932.9583916252,
"base_cost_quote": 995.2670408625,
"unrealized_pnl_exit_net": -160.5174729375
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 256.55,
"quote_asset_bal": 9008.5184319777,
"total_value_mid": 9903.8779319777,
"total_value_exit_net": 9903.2064123527,
"total_value": 9903.8779319777,
"base_cost_quote": 1085.625869195,
"unrealized_pnl_exit_net": -190.93788882
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 252.22,
"quote_asset_bal": 9024.4338346202,
"total_value_mid": 9911.4915746202,
"total_value_exit_net": 9910.8262813152,
"total_value": 9911.4915746202,
"base_cost_quote": 1070.556895935,
"unrealized_pnl_exit_net": -184.16444924
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 311.76,
"quote_asset_bal": 8824.9305650977,
"total_value_mid": 9839.0858450977,
"total_value_exit_net": 9838.3252286377,
"total_value": 9839.0858450977,
"base_cost_quote": 1271.3085568425,
"unrealized_pnl_exit_net": -257.9138933025
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 248.1,
"quote_asset_bal": 9042.5550973752,
"total_value_mid": 9913.6341973752,
"total_value_exit_net": 9912.9808880502,
"total_value": 9913.6341973752,
"base_cost_quote": 1055.50163295,
"unrealized_pnl_exit_net": -185.075842275
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 245.38,
"quote_asset_bal": 9053.7847613202,
"total_value_mid": 9922.4299613202,
"total_value_exit_net": 9921.7784774202,
"total_value": 9922.4299613202,
"base_cost_quote": 1045.488748915,
"unrealized_pnl_exit_net": -177.495032815
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 273.12,
"quote_asset_bal": 8959.2271216352,
"total_value_mid": 9881.2802416352,
"total_value_exit_net": 9880.5887017952,
"total_value": 9881.2802416352,
"base_cost_quote": 1140.907619435,
"unrealized_pnl_exit_net": -219.546039275
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 274.24,
"quote_asset_bal": 8955.6809360127,
"total_value_mid": 9880.1439760127,
"total_value_exit_net": 9879.4506287327,
"total_value": 9880.1439760127,
"base_cost_quote": 1145.9266909175,
"unrealized_pnl_exit_net": -222.1569981975
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 283.03,
"quote_asset_bal": 8927.1669316202,
"total_value_mid": 9876.1665216202,
"total_value_exit_net": 9875.4547719277,
"total_value": 9876.1665216202,
"base_cost_quote": 1176.0187830725,
"unrealized_pnl_exit_net": -227.730942765
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 259.28,
"quote_asset_bal": 9008.6419473252,
"total_value_mid": 9908.6028273252,
"total_value_exit_net": 9907.9278566652,
"total_value": 9908.6028273252,
"base_cost_quote": 1095.675160515,
"unrealized_pnl_exit_net": -196.389251175
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 266.44,
"quote_asset_bal": 8984.2426081052,
"total_value_mid": 9902.3948481052,
"total_value_exit_net": 9901.7062339252,
"total_value": 9902.3948481052,
"base_cost_quote": 1120.7720590825,
"unrealized_pnl_exit_net": -203.3084332625
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 275.25,
"quote_asset_bal": 8955.1224600752,
"total_value_mid": 9890.9724600752,
"total_value_exit_net": 9890.2705725752,
"total_value": 9890.9724600752,
"base_cost_quote": 1150.90741366,
"unrealized_pnl_exit_net": -215.75930116
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 281.18,
"quote_asset_bal": 8935.8417848902,
"total_value_mid": 9884.8242848902,
"total_value_exit_net": 9884.1125480152,
"total_value": 9884.8242848902,
"base_cost_quote": 1170.974552735,
"unrealized_pnl_exit_net": -222.70378961
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 255.04,
"quote_asset_bal": 9027.0083645727,
"total_value_mid": 9923.2189245727,
"total_value_exit_net": 9922.5467666527,
"total_value": 9923.2189245727,
"base_cost_quote": 1080.6419040225,
"unrealized_pnl_exit_net": -185.1035019425
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 238.16,
"quote_asset_bal": 9088.0281670553,
"total_value_mid": 9944.4515270553,
"total_value_exit_net": 9943.8092095353,
"total_value": 9944.4515270553,
"base_cost_quote": 1020.383093785,
"unrealized_pnl_exit_net": -164.602051305
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 202.85,
"quote_asset_bal": 9220.0201246852,
"total_value_mid": 10011.1351246852,
"total_value_exit_net": 10010.5417884352,
"total_value": 10011.1351246852,
"base_cost_quote": 889.7616711375,
"unrealized_pnl_exit_net": -99.2400073875
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 159.98,
"quote_asset_bal": 9394.7843275752,
"total_value_mid": 10069.8999275752,
"total_value_exit_net": 10069.3935908752,
"total_value": 10069.8999275752,
"base_cost_quote": 713.852207915,
"unrealized_pnl_exit_net": -39.242944615
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 140.49,
"quote_asset_bal": 9481.0274372727,
"total_value_mid": 10091.7374672727,
"total_value_exit_net": 10091.2794347502,
"total_value": 10091.7374672727,
"base_cost_quote": 623.4518084275,
"unrealized_pnl_exit_net": -13.19981095
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 185.76,
"quote_asset_bal": 9292.7822201002,
"total_value_mid": 10043.4383801002,
"total_value_exit_net": 10042.8753879802,
"total_value": 10043.4383801002,
"base_cost_quote": 809.3079560725,
"unrealized_pnl_exit_net": -59.2147881925
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 233.77,
"quote_asset_bal": 9108.0236068078,
"total_value_mid": 9971.1024468078,
"total_value_exit_net": 9970.4551376778,
"total_value": 9971.1024468078,
"base_cost_quote": 995.21020827,
"unrealized_pnl_exit_net": -132.7786774
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 207.3,
"quote_asset_bal": 9210.3634343478,
"total_value_mid": 10008.4684343478,
"total_value_exit_net": 10007.8698555978,
"total_value": 10008.4684343478,
"base_cost_quote": 894.72938413,
"unrealized_pnl_exit_net": -97.22296288
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 159.42,
"quote_asset_bal": 9403.3149095703,
"total_value_mid": 10067.1397895703,
"total_value_exit_net": 10066.6419209103,
"total_value": 10067.1397895703,
"base_cost_quote": 698.8658865975,
"unrealized_pnl_exit_net": -35.5388752575
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 171.57,
"quote_asset_bal": 9356.0702606803,
"total_value_mid": 10050.7571906803,
"total_value_exit_net": 10050.2361754828,
"total_value": 10050.7571906803,
"base_cost_quote": 744.088708295,
"unrealized_pnl_exit_net": -49.9227934925
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 177.8,
"quote_asset_bal": 9330.9978272828,
"total_value_mid": 10051.4434272828,
"total_value_exit_net": 10050.9030930828,
"total_value": 10051.4434272828,
"base_cost_quote": 769.2585014925,
"unrealized_pnl_exit_net": -49.3532356925
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 234.78,
"quote_asset_bal": 9111.5282791253,
"total_value_mid": 9987.7272391253,
"total_value_exit_net": 9987.0700899053,
"total_value": 9987.7272391253,
"base_cost_quote": 990.2245818525,
"unrealized_pnl_exit_net": -114.6827710725
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 220.22,
"quote_asset_bal": 9168.4633680802,
"total_value_mid": 10004.8589280802,
"total_value_exit_net": 10004.2316314102,
"total_value": 10004.8589280802,
"base_cost_quote": 935.0238523325,
"unrealized_pnl_exit_net": -99.2555890025
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 301.85,
"quote_asset_bal": 8878.0509174628,
"total_value_mid": 9886.8336174627,
"total_value_exit_net": 9886.0770304377,
"total_value": 9886.8336174627,
"base_cost_quote": 1226.3088723725,
"unrealized_pnl_exit_net": -218.2827593975
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 303.3,
"quote_asset_bal": 8874.4319362603,
"total_value_mid": 9887.1506362603,
"total_value_exit_net": 9886.3910972353,
"total_value": 9887.1506362603,
"base_cost_quote": 1231.3513714125,
"unrealized_pnl_exit_net": -219.3922104375
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 327.77,
"quote_asset_bal": 8795.2112350228,
"total_value_mid": 9851.6139450228,
"total_value_exit_net": 9850.8216429903,
"total_value": 9851.6139450228,
"base_cost_quote": 1311.659027015,
"unrealized_pnl_exit_net": -256.0486190475
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 327.96,
"quote_asset_bal": 8796.7671935628,
"total_value_mid": 9845.9112335628,
"total_value_exit_net": 9845.1243755328,
"total_value": 9845.9112335628,
"base_cost_quote": 1311.6625996925,
"unrealized_pnl_exit_net": -263.3054177225
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 323.03,
"quote_asset_bal": 8812.6531195153,
"total_value_mid": 9873.4836395153,
"total_value_exit_net": 9872.6880166253,
"total_value": 9873.4836395153,
"base_cost_quote": 1296.6091380575,
"unrealized_pnl_exit_net": -236.5742409475
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 298.9,
"quote_asset_bal": 8893.9156628178,
"total_value_mid": 9902.4042628178,
"total_value_exit_net": 9901.6478963678,
"total_value": 9902.4042628178,
"base_cost_quote": 1216.26491505,
"unrealized_pnl_exit_net": -208.5326815
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 266.98,
"quote_asset_bal": 9005.5775166128,
"total_value_mid": 9959.7640366128,
"total_value_exit_net": 9959.0483967228,
"total_value": 9959.7640366128,
"base_cost_quote": 1105.7364508275,
"unrealized_pnl_exit_net": -152.2655707175
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 266.98,
"quote_asset_bal": 9006.3001922603,
"total_value_mid": 9959.6857722603,
"total_value_exit_net": 9958.9707330753,
"total_value": 9959.6857722603,
"base_cost_quote": 1105.7574665775,
"unrealized_pnl_exit_net": -153.0869257625
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 257.22,
"quote_asset_bal": 9042.9187405628,
"total_value_mid": 9975.8556805628,
"total_value_exit_net": 9975.1559778578,
"total_value": 9975.8556805628,
"base_cost_quote": 1070.6146492175,
"unrealized_pnl_exit_net": -138.3774119225
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 224.71,
"quote_asset_bal": 9164.8411555203,
"total_value_mid": 10017.3908955203,
"total_value_exit_net": 10016.7514832153,
"total_value": 10017.3908955203,
"base_cost_quote": 950.034651995,
"unrealized_pnl_exit_net": -98.1243243
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 195.02,
"quote_asset_bal": 9281.7645844303,
"total_value_mid": 10051.8985644303,
"total_value_exit_net": 10051.3209639453,
"total_value": 10051.8985644303,
"base_cost_quote": 834.542177555,
"unrealized_pnl_exit_net": -64.98579804
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 216.73,
"quote_asset_bal": 9197.1195207553,
"total_value_mid": 10036.5148107553,
"total_value_exit_net": 10035.8852642878,
"total_value": 10036.5148107553,
"base_cost_quote": 919.8848666025,
"unrealized_pnl_exit_net": -81.11912307
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 241.83,
"quote_asset_bal": 9102.5510991127,
"total_value_mid": 10000.7077191127,
"total_value_exit_net": 10000.0341016477,
"total_value": 10000.7077191127,
"base_cost_quote": 1015.28853573,
"unrealized_pnl_exit_net": -117.805533195
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 198.98,
"quote_asset_bal": 9270.1254645853,
"total_value_mid": 10047.3413445852,
"total_value_exit_net": 10046.7584326752,
"total_value": 10047.3413445852,
"base_cost_quote": 849.5361646175,
"unrealized_pnl_exit_net": -72.9031965275
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 178.94,
"quote_asset_bal": 9352.0551382703,
"total_value_mid": 10074.2569782703,
"total_value_exit_net": 10073.7153268903,
"total_value": 10074.2569782703,
"base_cost_quote": 769.150770755,
"unrealized_pnl_exit_net": -47.490582135
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 163.43,
"quote_asset_bal": 9418.3771062403,
"total_value_mid": 10109.5225762403,
"total_value_exit_net": 10109.0042171378,
"total_value": 10109.5225762403,
"base_cost_quote": 703.8582880925,
"unrealized_pnl_exit_net": -13.231177195
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 158.44,
"quote_asset_bal": 9442.5572793503,
"total_value_mid": 10119.2545193503,
"total_value_exit_net": 10118.7469964203,
"total_value": 10119.2545193503,
"base_cost_quote": 678.78514733,
"unrealized_pnl_exit_net": -2.59543026
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 155.18,
"quote_asset_bal": 9461.6064514753,
"total_value_mid": 10117.7074914752,
"total_value_exit_net": 10117.2154156952,
"total_value": 10117.7074914752,
"base_cost_quote": 658.678098345,
"unrealized_pnl_exit_net": -3.069134125
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 131.41,
"quote_asset_bal": 9565.1423197478,
"total_value_mid": 10142.2950397477,
"total_value_exit_net": 10141.8621752077,
"total_value": 10142.2950397477,
"base_cost_quote": 553.07801764,
"unrealized_pnl_exit_net": 23.64183782
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 143.58,
"quote_asset_bal": 9516.8219637678,
"total_value_mid": 10120.0015437678,
"total_value_exit_net": 10119.5491590828,
"total_value": 10120.0015437678,
"base_cost_quote": 598.2639516925,
"unrealized_pnl_exit_net": 4.4632436225
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 156.46,
"quote_asset_bal": 9463.9392994053,
"total_value_mid": 10109.4932594052,
"total_value_exit_net": 10109.0090939353,
"total_value": 10109.4932594052,
"base_cost_quote": 648.46254242,
"unrealized_pnl_exit_net": -3.39274789
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 134.36,
"quote_asset_bal": 9558.3140939353,
"total_value_mid": 10135.9277339353,
"total_value_exit_net": 10135.4945237053,
"total_value": 10135.9277339353,
"base_cost_quote": 553.08146022,
"unrealized_pnl_exit_net": 24.09896955
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 134.07,
"quote_asset_bal": 9559.8609477453,
"total_value_mid": 10152.3162777453,
"total_value_exit_net": 10151.8719362478,
"total_value": 10152.3162777453,
"base_cost_quote": 548.0451258,
"unrealized_pnl_exit_net": 43.9658627025
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 75.58,
"quote_asset_bal": 9839.1170095728,
"total_value_mid": 10218.8309295728,
"total_value_exit_net": 10218.5461441328,
"total_value": 10218.8309295728,
"base_cost_quote": 271.45832116,
"unrealized_pnl_exit_net": 107.9708134
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 74.62,
"quote_asset_bal": 9845.3810477452,
"total_value_mid": 10220.4211677452,
"total_value_exit_net": 10220.1398876552,
"total_value": 10220.4211677452,
"base_cost_quote": 266.48723564,
"unrealized_pnl_exit_net": 108.27160427
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 75.67,
"quote_asset_bal": 9841.6575431802,
"total_value_mid": 10220.3858931802,
"total_value_exit_net": 10220.1018469177,
"total_value": 10220.3858931802,
"base_cost_quote": 271.49454831,
"unrealized_pnl_exit_net": 106.9497554275
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 74.76,
"quote_asset_bal": 9847.9031034527,
"total_value_mid": 10222.2264234527,
"total_value_exit_net": 10221.9456809627,
"total_value": 10222.2264234527,
"base_cost_quote": 266.5493622,
"unrealized_pnl_exit_net": 107.49321531
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 112.48,
"quote_asset_bal": 9668.2255661877,
"total_value_mid": 10182.0342061877,
"total_value_exit_net": 10181.6488497077,
"total_value": 10182.0342061877,
"base_cost_quote": 447.609515545,
"unrealized_pnl_exit_net": 65.813767975
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 137.58,
"quote_asset_bal": 9557.2235142952,
"total_value_mid": 10158.9984342952,
"total_value_exit_net": 10158.5471031052,
"total_value": 10158.9984342952,
"base_cost_quote": 558.132025305,
"unrealized_pnl_exit_net": 43.191563505
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 164.22,
"quote_asset_bal": 9445.6170837227,
"total_value_mid": 10122.6961437227,
"total_value_exit_net": 10122.1883344277,
"total_value": 10122.6961437227,
"base_cost_quote": 668.6928337675,
"unrealized_pnl_exit_net": 7.8784169375
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 188.23,
"quote_asset_bal": 9350.8580764652,
"total_value_mid": 10092.4842764652,
"total_value_exit_net": 10091.9280568152,
"total_value": 10092.4842764652,
"base_cost_quote": 764.1695076075,
"unrealized_pnl_exit_net": -23.0995272575
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 157.23,
"quote_asset_bal": 9477.6208232227,
"total_value_mid": 10136.4145232227,
"total_value_exit_net": 10135.9204279477,
"total_value": 10136.4145232227,
"base_cost_quote": 638.580636545,
"unrealized_pnl_exit_net": 19.71896818
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 177.22,
"quote_asset_bal": 9395.1706157477,
"total_value_mid": 10123.0131557477,
"total_value_exit_net": 10122.4672738427,
"total_value": 10123.0131557477,
"base_cost_quote": 718.9561830275,
"unrealized_pnl_exit_net": 8.3404750675
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 155.84,
"quote_asset_bal": 9485.1615379702,
"total_value_mid": 10145.1439379702,
"total_value_exit_net": 10144.6489511702,
"total_value": 10145.1439379702,
"base_cost_quote": 628.537790055,
"unrealized_pnl_exit_net": 30.949623145
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 161.82,
"quote_asset_bal": 9460.6488649577,
"total_value_mid": 10144.8238249577,
"total_value_exit_net": 10144.3106937377,
"total_value": 10144.8238249577,
"base_cost_quote": 648.6023371875,
"unrealized_pnl_exit_net": 35.0594915925
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 182.28,
"quote_asset_bal": 9375.8099083877,
"total_value_mid": 10127.3503483877,
"total_value_exit_net": 10126.7866930577,
"total_value": 10127.3503483877,
"base_cost_quote": 728.9843385075,
"unrealized_pnl_exit_net": 21.9924461625
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 211.15,
"quote_asset_bal": 9261.3350859077,
"total_value_mid": 10089.0430859077,
"total_value_exit_net": 10088.4223049077,
"total_value": 10089.0430859077,
"base_cost_quote": 844.5054343975,
"unrealized_pnl_exit_net": -17.4182153975
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 208.44,
"quote_asset_bal": 9272.5642737302,
"total_value_mid": 10079.4355137302,
"total_value_exit_net": 10078.8303603002,
"total_value": 10079.4355137302,
"base_cost_quote": 834.471724755,
"unrealized_pnl_exit_net": -28.205638185
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 181.85,
"quote_asset_bal": 9378.9013277852,
"total_value_mid": 10119.0308277851,
"total_value_exit_net": 10118.4757306601,
"total_value": 10119.0308277851,
"base_cost_quote": 728.9540558125,
"unrealized_pnl_exit_net": 10.6203470625
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 179.48,
"quote_asset_bal": 9388.5568432252,
"total_value_mid": 10125.8606832251,
"total_value_exit_net": 10125.3077053451,
"total_value": 10125.8606832251,
"base_cost_quote": 718.93823958,
"unrealized_pnl_exit_net": 17.81262254
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 195.65,
"quote_asset_bal": 9324.0524735002,
"total_value_mid": 10101.3699235001,
"total_value_exit_net": 10100.7869354126,
"total_value": 10101.3699235001,
"base_cost_quote": 784.233154065,
"unrealized_pnl_exit_net": -7.4986921525
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 161.68,
"quote_asset_bal": 9464.8319314177,
"total_value_mid": 10149.5467314177,
"total_value_exit_net": 10149.0331953177,
"total_value": 10149.5467314177,
"base_cost_quote": 643.5225101725,
"unrealized_pnl_exit_net": 40.6787537275
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 170.97,
"quote_asset_bal": 9428.9148467477,
"total_value_mid": 10131.9434867477,
"total_value_exit_net": 10131.4162152677,
"total_value": 10131.9434867477,
"base_cost_quote": 678.69519992,
"unrealized_pnl_exit_net": 23.8061686
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 198.45,
"quote_asset_bal": 9319.4058613377,
"total_value_mid": 10100.1081613377,
"total_value_exit_net": 10099.5226346127,
"total_value": 10100.1081613377,
"base_cost_quote": 789.2923556225,
"unrealized_pnl_exit_net": -9.1755823475
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 232.32,
"quote_asset_bal": 9189.7877312027,
"total_value_mid": 10064.4725312026,
"total_value_exit_net": 10063.8165176026,
"total_value": 10064.4725312026,
"base_cost_quote": 919.90417107,
"unrealized_pnl_exit_net": -45.87538467
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 210.02,
"quote_asset_bal": 9275.9798691752,
"total_value_mid": 10093.3777091751,
"total_value_exit_net": 10092.7646607951,
"total_value": 10093.3777091751,
"base_cost_quote": 834.5433884625,
"unrealized_pnl_exit_net": -17.7585968425
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 220.44,
"quote_asset_bal": 9236.1986268101,
"total_value_mid": 10082.4677868101,
"total_value_exit_net": 10081.8330849401,
"total_value": 10082.4677868101,
"base_cost_quote": 874.7422750325,
"unrealized_pnl_exit_net": -29.1078169025
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 175.77,
"quote_asset_bal": 9413.1160989602,
"total_value_mid": 10128.4999989601,
"total_value_exit_net": 10127.9634610351,
"total_value": 10128.4999989601,
"base_cost_quote": 698.806291935,
"unrealized_pnl_exit_net": 16.04107014
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 216.41,
"quote_asset_bal": 9253.1035049252,
"total_value_mid": 10087.1476449251,
"total_value_exit_net": 10086.5221118201,
"total_value": 10087.1476449251,
"base_cost_quote": 859.6278477075,
"unrealized_pnl_exit_net": -26.2092408125
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 228.25,
"quote_asset_bal": 9208.7760854476,
"total_value_mid": 10075.6695854476,
"total_value_exit_net": 10075.0194153226,
"total_value": 10075.6695854476,
"base_cost_quote": 904.864479755,
"unrealized_pnl_exit_net": -38.62114988
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 249.62,
"quote_asset_bal": 9129.1760139076,
"total_value_mid": 10052.7700139076,
"total_value_exit_net": 10052.0773184076,
"total_value": 10052.7700139076,
"base_cost_quote": 985.2465511275,
"unrealized_pnl_exit_net": -62.3452466275
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 255.02,
"quote_asset_bal": 9109.8144535627,
"total_value_mid": 10051.0932735627,
"total_value_exit_net": 10050.3873144477,
"total_value": 10051.0932735627,
"base_cost_quote": 1005.3197947775,
"unrealized_pnl_exit_net": -64.7469338925
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 287.2,
"quote_asset_bal": 8995.4480862577,
"total_value_mid": 9943.2080862576,
"total_value_exit_net": 9942.4972662576,
"total_value": 9943.2080862576,
"base_cost_quote": 1120.8081060975,
"unrealized_pnl_exit_net": -173.7589260975
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 282.61,
"quote_asset_bal": 9011.5572559751,
"total_value_mid": 9992.7791759751,
"total_value_exit_net": 9992.0432595351,
"total_value": 9992.7791759751,
"base_cost_quote": 1105.684822135,
"unrealized_pnl_exit_net": -125.198818575
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 300.15,
"quote_asset_bal": 8951.8399451452,
"total_value_mid": 9972.6500951451,
"total_value_exit_net": 9971.8844875326,
"total_value": 9972.6500951451,
"base_cost_quote": 1165.9413506625,
"unrealized_pnl_exit_net": -145.896808275
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 284.18,
"quote_asset_bal": 9008.1354129277,
"total_value_mid": 9999.6394329277,
"total_value_exit_net": 9998.8958049127,
"total_value": 9999.6394329277,
"base_cost_quote": 1110.7406611725,
"unrealized_pnl_exit_net": -119.9802691875
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 268.51,
"quote_asset_bal": 9064.2789724877,
"total_value_mid": 10035.2111324877,
"total_value_exit_net": 10034.4829333677,
"total_value": 10035.2111324877,
"base_cost_quote": 1055.5500392275,
"unrealized_pnl_exit_net": -85.3460783475
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 274.11,
"quote_asset_bal": 9044.9810735527,
"total_value_mid": 10027.9395335527,
"total_value_exit_net": 10027.2023147077,
"total_value": 10027.9395335527,
"base_cost_quote": 1075.6389946525,
"unrealized_pnl_exit_net": -93.4177534975
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 326.26,
"quote_asset_bal": 8864.8603097477,
"total_value_mid": 9950.0010697477,
"total_value_exit_net": 9949.1872141777,
"total_value": 9950.0010697477,
"base_cost_quote": 1256.41276337,
"unrealized_pnl_exit_net": -172.08585894
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 341.48,
"quote_asset_bal": 8815.5467262202,
"total_value_mid": 9929.7959662202,
"total_value_exit_net": 9928.9602792902,
"total_value": 9929.7959662202,
"base_cost_quote": 1306.5918394725,
"unrealized_pnl_exit_net": -193.1782864025
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 364.99,
"quote_asset_bal": 8740.6680378302,
"total_value_mid": 9896.5913678302,
"total_value_exit_net": 9895.7244253327,
"total_value": 9896.5913678302,
"base_cost_quote": 1381.88515714,
"unrealized_pnl_exit_net": -226.8287696375
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 379.45,
"quote_asset_bal": 8696.6005910177,
"total_value_mid": 9871.3777910177,
"total_value_exit_net": 9870.4967081177,
"total_value": 9871.3777910177,
"base_cost_quote": 1427.0700704275,
"unrealized_pnl_exit_net": -253.1739533275
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 399.22,
"quote_asset_bal": 8637.2884390427,
"total_value_mid": 9837.3437590427,
"total_value_exit_net": 9836.4437175527,
"total_value": 9837.3437590427,
"base_cost_quote": 1487.3358158625,
"unrealized_pnl_exit_net": -288.1805373525
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 385.97,
"quote_asset_bal": 8678.2012673552,
"total_value_mid": 9873.1643873552,
"total_value_exit_net": 9872.2681650152,
"total_value": 9873.1643873552,
"base_cost_quote": 1447.14446494,
"unrealized_pnl_exit_net": -253.07756728
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 289.91,
"quote_asset_bal": 8996.3725782052,
"total_value_mid": 10014.8264082052,
"total_value_exit_net": 10014.0625678327,
"total_value": 10014.8264082052,
"base_cost_quote": 1130.8238322625,
"unrealized_pnl_exit_net": -113.133842635
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 261.87,
"quote_asset_bal": 9098.6324506177,
"total_value_mid": 10061.0047006177,
"total_value_exit_net": 10060.2829214302,
"total_value": 10061.0047006177,
"base_cost_quote": 1030.3698682525,
"unrealized_pnl_exit_net": -68.71939744
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 267.38,
"quote_asset_bal": 9079.6709905702,
"total_value_mid": 10051.0625305702,
"total_value_exit_net": 10050.3339869152,
"total_value": 10051.0625305702,
"base_cost_quote": 1050.4894266125,
"unrealized_pnl_exit_net": -79.8264302675
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 228.4,
"quote_asset_bal": 9226.7791425702,
"total_value_mid": 10093.5571425702,
"total_value_exit_net": 10092.9070590702,
"total_value": 10093.5571425702,
"base_cost_quote": 904.7800264625,
"unrealized_pnl_exit_net": -38.6521099625
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 208.72,
"quote_asset_bal": 9304.2783581727,
"total_value_mid": 10108.6852381727,
"total_value_exit_net": 10108.0819330127,
"total_value": 10108.6852381727,
"base_cost_quote": 829.38024901,
"unrealized_pnl_exit_net": -25.57667417
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 176.89,
"quote_asset_bal": 9432.1868742077,
"total_value_mid": 10150.3602742077,
"total_value_exit_net": 10149.8216441577,
"total_value": 10150.3602742077,
"base_cost_quote": 703.84324682,
"unrealized_pnl_exit_net": 13.79152313
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 206.67,
"quote_asset_bal": 9319.2329241327,
"total_value_mid": 10087.6319841327,
"total_value_exit_net": 10087.0556848377,
"total_value": 10087.6319841327,
"base_cost_quote": 819.3893914825,
"unrealized_pnl_exit_net": -51.5666307775
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 203.15,
"quote_asset_bal": 9337.2714167927,
"total_value_mid": 10079.5815167927,
"total_value_exit_net": 10079.0247842177,
"total_value": 10079.5815167927,
"base_cost_quote": 804.3690346575,
"unrealized_pnl_exit_net": -62.6156672325
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 251.2,
"quote_asset_bal": 9168.3247991527,
"total_value_mid": 10024.9167991527,
"total_value_exit_net": 10024.2743551527,
"total_value": 10024.9167991527,
"base_cost_quote": 975.111805765,
"unrealized_pnl_exit_net": -119.162249765
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 238.02,
"quote_asset_bal": 9214.9562982802,
"total_value_mid": 10056.8330382802,
"total_value_exit_net": 10056.2016307252,
"total_value": 10056.8330382802,
"base_cost_quote": 929.9500098025,
"unrealized_pnl_exit_net": -88.7046773575
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 203.07,
"quote_asset_bal": 9341.7427861027,
"total_value_mid": 10094.1171361027,
"total_value_exit_net": 10093.5528553402,
"total_value": 10094.1171361027,
"base_cost_quote": 804.404391155,
"unrealized_pnl_exit_net": -52.5943219175
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 229.2,
"quote_asset_bal": 9248.0071160027,
"total_value_mid": 10072.4395160027,
"total_value_exit_net": 10071.8211917027,
"total_value": 10072.4395160027,
"base_cost_quote": 899.7831416075,
"unrealized_pnl_exit_net": -75.9690659075
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 192.33,
"quote_asset_bal": 9385.2700604877,
"total_value_mid": 10119.7783304877,
"total_value_exit_net": 10119.2274492852,
"total_value": 10119.7783304877,
"base_cost_quote": 764.218994695,
"unrealized_pnl_exit_net": -30.2616058975
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 241.32,
"quote_asset_bal": 9205.3504369803,
"total_value_mid": 10073.8611169802,
"total_value_exit_net": 10073.2097339702,
"total_value": 10073.8611169802,
"base_cost_quote": 945.09525022,
"unrealized_pnl_exit_net": -77.23595323
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 275.87,
"quote_asset_bal": 9086.0341925003,
"total_value_mid": 10023.9921925003,
"total_value_exit_net": 10023.2887240003,
"total_value": 10023.9921925003,
"base_cost_quote": 1065.610709075,
"unrealized_pnl_exit_net": -128.356177575
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 238.53,
"quote_asset_bal": 9218.2312338678,
"total_value_mid": 10077.4162938678,
"total_value_exit_net": 10076.7719050728,
"total_value": 10077.4162938678,
"base_cost_quote": 935.0434670325,
"unrealized_pnl_exit_net": -76.5027958275
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 215.23,
"quote_asset_bal": 9305.1312455478,
"total_value_mid": 10105.1411555478,
"total_value_exit_net": 10104.5411481153,
"total_value": 10105.1411555478,
"base_cost_quote": 849.66224911,
"unrealized_pnl_exit_net": -50.2523465425
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 196.11,
"quote_asset_bal": 9377.5300371353,
"total_value_mid": 10142.7512571353,
"total_value_exit_net": 10142.1773412203,
"total_value": 10142.7512571353,
"base_cost_quote": 779.271035265,
"unrealized_pnl_exit_net": -14.62373118
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 120.36,
"quote_asset_bal": 9700.8181763278,
"total_value_mid": 10243.0399763277,
"total_value_exit_net": 10242.6333099777,
"total_value": 10243.0399763277,
"base_cost_quote": 457.6517816,
"unrealized_pnl_exit_net": 84.16335205
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 124.88,
"quote_asset_bal": 9689.4027739403,
"total_value_mid": 10233.3800539403,
"total_value_exit_net": 10232.9720709803,
"total_value": 10233.3800539403,
"base_cost_quote": 467.76023726,
"unrealized_pnl_exit_net": 75.80905978
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 122.47,
"quote_asset_bal": 9702.6986085878,
"total_value_mid": 10238.6273285878,
"total_value_exit_net": 10238.2253820478,
"total_value": 10238.6273285878,
"base_cost_quote": 442.64077178,
"unrealized_pnl_exit_net": 92.88600168
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 97.58,
"quote_asset_bal": 9818.8437379529,
"total_value_mid": 10296.3026779529,
"total_value_exit_net": 10295.9445837479,
"total_value": 10296.3026779529,
"base_cost_quote": 326.98909803,
"unrealized_pnl_exit_net": 150.111747765
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 108.06,
"quote_asset_bal": 9770.2871399879,
"total_value_mid": 10283.3560199879,
"total_value_exit_net": 10282.9712183279,
"total_value": 10283.3560199879,
"base_cost_quote": 377.22166422,
"unrealized_pnl_exit_net": 135.46241412
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 100.67,
"quote_asset_bal": 9806.7381965029,
"total_value_mid": 10295.2897065029,
"total_value_exit_net": 10294.9232928704,
"total_value": 10295.2897065029,
"base_cost_quote": 342.0743534925,
"unrealized_pnl_exit_net": 146.110742875
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 86.51,
"quote_asset_bal": 9878.9108768404,
"total_value_mid": 10305.3186668404,
"total_value_exit_net": 10304.9988609979,
"total_value": 10305.3186668404,
"base_cost_quote": 271.554693385,
"unrealized_pnl_exit_net": 154.5332907725
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 64.84,
"quote_asset_bal": 9973.1865848054,
"total_value_mid": 10381.6785848054,
"total_value_exit_net": 10381.3722158054,
"total_value": 10381.6785848054,
"base_cost_quote": 181.0384871075,
"unrealized_pnl_exit_net": 227.1471438925
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 56.21,
"quote_asset_bal": 10031.6900107104,
"total_value_mid": 10385.5881707104,
"total_value_exit_net": 10385.3227470904,
"total_value": 10385.5881707104,
"base_cost_quote": 125.72886598,
"unrealized_pnl_exit_net": 227.9038704
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 70.02,
"quote_asset_bal": 9948.5151774579,
"total_value_mid": 10376.1273174579,
"total_value_exit_net": 10375.8066083529,
"total_value": 10376.1273174579,
"base_cost_quote": 211.2393808025,
"unrealized_pnl_exit_net": 216.0520500925
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 68.14,
"quote_asset_bal": 9961.0093614804,
"total_value_mid": 10385.5215614804,
"total_value_exit_net": 10385.2031773304,
"total_value": 10385.5215614804,
"base_cost_quote": 201.160257125,
"unrealized_pnl_exit_net": 223.033558725
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 66.22,
"quote_asset_bal": 9973.5284938054,
"total_value_mid": 10391.3104738054,
"total_value_exit_net": 10390.9971373204,
"total_value": 10391.3104738054,
"base_cost_quote": 191.1765049225,
"unrealized_pnl_exit_net": 226.2921385925
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 55.22,
"quote_asset_bal": 10041.796226473,
"total_value_mid": 10438.3862664729,
"total_value_exit_net": 10438.0888239429,
"total_value": 10438.3862664729,
"base_cost_quote": 125.7552957875,
"unrealized_pnl_exit_net": 270.5373016825
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 77.7,
"quote_asset_bal": 9886.444780578,
"total_value_mid": 10409.6765805779,
"total_value_exit_net": 10409.2841567279,
"total_value": 10409.6765805779,
"base_cost_quote": 281.9827986025,
"unrealized_pnl_exit_net": 240.8565775475
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 87.52,
"quote_asset_bal": 9821.7827323705,
"total_value_mid": 10399.8523323704,
"total_value_exit_net": 10399.4187801704,
"total_value": 10399.8523323704,
"base_cost_quote": 347.4803849775,
"unrealized_pnl_exit_net": 230.1556628225
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 126.13,
"quote_asset_bal": 9582.0539252355,
"total_value_mid": 10323.0676752355,
"total_value_exit_net": 10322.511914923,
"total_value": 10323.0676752355,
"base_cost_quote": 589.2114273875,
"unrealized_pnl_exit_net": 151.2465623
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 100.31,
"quote_asset_bal": 9746.675108518,
"total_value_mid": 10365.888738518,
"total_value_exit_net": 10365.4243282955,
"total_value": 10365.888738518,
"base_cost_quote": 427.9722686475,
"unrealized_pnl_exit_net": 190.77695113
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 78.72,
"quote_asset_bal": 9889.712556543,
"total_value_mid": 10425.874476543,
"total_value_exit_net": 10425.472355103,
"total_value": 10425.874476543,
"base_cost_quote": 287.0287202075,
"unrealized_pnl_exit_net": 248.7310783525
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 76.61,
"quote_asset_bal": 9906.762616028,
"total_value_mid": 10426.178416028,
"total_value_exit_net": 10425.788854178,
"total_value": 10426.178416028,
"base_cost_quote": 271.8873927225,
"unrealized_pnl_exit_net": 247.1388454275
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 81.92,
"quote_asset_bal": 9872.7815201055,
"total_value_mid": 10416.4026401055,
"total_value_exit_net": 10415.9949242655,
"total_value": 10416.4026401055,
"base_cost_quote": 307.20555149,
"unrealized_pnl_exit_net": 236.00785267
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 98.14,
"quote_asset_bal": 9767.991960408,
"total_value_mid": 10399.032160408,
"total_value_exit_net": 10398.558880258,
"total_value": 10399.032160408,
"base_cost_quote": 412.8600629875,
"unrealized_pnl_exit_net": 217.7068568625
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 59.33,
"quote_asset_bal": 10031.623290773,
"total_value_mid": 10446.1026707729,
"total_value_exit_net": 10445.7918112379,
"total_value": 10446.1026707729,
"base_cost_quote": 150.985854525,
"unrealized_pnl_exit_net": 263.18266594
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 91.12,
"quote_asset_bal": 9816.754816018,
"total_value_mid": 10412.6796160179,
"total_value_exit_net": 10412.2326724179,
"total_value": 10412.6796160179,
"base_cost_quote": 367.6101109575,
"unrealized_pnl_exit_net": 227.8677454425
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 88.93,
"quote_asset_bal": 9834.4133625205,
"total_value_mid": 10418.7723925204,
"total_value_exit_net": 10418.3341232479,
"total_value": 10418.7723925204,
"base_cost_quote": 352.4257212,
"unrealized_pnl_exit_net": 231.4950395275
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 108.24,
"quote_asset_bal": 9715.757098678,
"total_value_mid": 10365.6300586779,
"total_value_exit_net": 10365.1426539579,
"total_value": 10365.6300586779,
"base_cost_quote": 473.2396537425,
"unrealized_pnl_exit_net": 176.1459015375
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 143.66,
"quote_asset_bal": 9512.0208225605,
"total_value_mid": 10289.2214225605,
"total_value_exit_net": 10288.6385221105,
"total_value": 10289.2214225605,
"base_cost_quote": 679.570115615,
"unrealized_pnl_exit_net": 97.047583935
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 139.25,
"quote_asset_bal": 9540.265304793,
"total_value_mid": 10327.167054793,
"total_value_exit_net": 10326.5768784805,
"total_value": 10327.167054793,
"base_cost_quote": 654.430635135,
"unrealized_pnl_exit_net": 131.8809385525
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 151.89,
"quote_asset_bal": 9472.4734021905,
"total_value_mid": 10306.9570621905,
"total_value_exit_net": 10306.3311994455,
"total_value": 10306.9570621905,
"base_cost_quote": 724.8364098925,
"unrealized_pnl_exit_net": 109.0213873625
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 163.91,
"quote_asset_bal": 9409.144281043,
"total_value_mid": 10274.589081043,
"total_value_exit_net": 10273.939997443,
"total_value": 10274.589081043,
"base_cost_quote": 790.2924451275,
"unrealized_pnl_exit_net": 74.5032712725
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 140.82,
"quote_asset_bal": 9537.116571428,
"total_value_mid": 10336.410891428,
"total_value_exit_net": 10335.811420688,
"total_value": 10336.410891428,
"base_cost_quote": 664.569953925,
"unrealized_pnl_exit_net": 134.124895335
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 125.05,
"quote_asset_bal": 9629.1750074955,
"total_value_mid": 10366.2197074955,
"total_value_exit_net": 10365.6669239705,
"total_value": 10366.2197074955,
"base_cost_quote": 573.941353415,
"unrealized_pnl_exit_net": 162.55056306
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 114.86,
"quote_asset_bal": 9691.362485573,
"total_value_mid": 10387.299225573,
"total_value_exit_net": 10386.777273018,
"total_value": 10387.299225573,
"base_cost_quote": 513.5249650825,
"unrealized_pnl_exit_net": 181.8898223625
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 139.71,
"quote_asset_bal": 9546.6923531355,
"total_value_mid": 10352.1205031355,
"total_value_exit_net": 10351.516432023,
"total_value": 10352.1205031355,
"base_cost_quote": 659.4369770775,
"unrealized_pnl_exit_net": 145.38710181
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 163.3,
"quote_asset_bal": 9417.4396541455,
"total_value_mid": 10309.5475541455,
"total_value_exit_net": 10308.8784732205,
"total_value": 10309.5475541455,
"base_cost_quote": 790.222162455,
"unrealized_pnl_exit_net": 101.21665662
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 153.28,
"quote_asset_bal": 9473.746294303,
"total_value_mid": 10322.917494303,
"total_value_exit_net": 10322.280615903,
"total_value": 10322.917494303,
"base_cost_quote": 734.8802971625,
"unrealized_pnl_exit_net": 113.6540244375
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 179.42,
"quote_asset_bal": 9333.625239868,
"total_value_mid": 10275.759659868,
"total_value_exit_net": 10275.053059053,
"total_value": 10275.759659868,
"base_cost_quote": 875.7023545525,
"unrealized_pnl_exit_net": 65.7254646325
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 187.24,
"quote_asset_bal": 9294.690411388,
"total_value_mid": 10248.865451388,
"total_value_exit_net": 10248.149820108,
"total_value": 10248.865451388,
"base_cost_quote": 916.06165134,
"unrealized_pnl_exit_net": 37.39775738
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 202.05,
"quote_asset_bal": 9220.520547113,
"total_value_mid": 10230.770547113,
"total_value_exit_net": 10230.012859613,
"total_value": 10230.770547113,
"base_cost_quote": 991.439402285,
"unrealized_pnl_exit_net": 18.052910215
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 180.45,
"quote_asset_bal": 9331.9755096855,
"total_value_mid": 10278.0748596855,
"total_value_exit_net": 10277.365285173,
"total_value": 10278.0748596855,
"base_cost_quote": 880.80270695,
"unrealized_pnl_exit_net": 64.5870685375
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 162.54,
"quote_asset_bal": 9428.521431118,
"total_value_mid": 10308.350451118,
"total_value_exit_net": 10307.690579353,
"total_value": 10308.350451118,
"base_cost_quote": 785.2288102475,
"unrealized_pnl_exit_net": 93.9403379875
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 133.74,
"quote_asset_bal": 9590.5088949805,
"total_value_mid": 10364.1947949805,
"total_value_exit_net": 10363.6145305555,
"total_value": 10364.1947949805,
"base_cost_quote": 624.211988135,
"unrealized_pnl_exit_net": 148.89364744
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 133.75,
"quote_asset_bal": 9591.3594087905,
"total_value_mid": 10361.6256587905,
"total_value_exit_net": 10361.047959103,
"total_value": 10361.6256587905,
"base_cost_quote": 624.184687675,
"unrealized_pnl_exit_net": 145.5038626375
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 131.13,
"quote_asset_bal": 9607.249301403,
"total_value_mid": 10365.705221403,
"total_value_exit_net": 10365.136379463,
"total_value": 10365.705221403,
"base_cost_quote": 609.12590205,
"unrealized_pnl_exit_net": 148.76117601
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 129.41,
"quote_asset_bal": 9618.4481551055,
"total_value_mid": 10381.1906951055,
"total_value_exit_net": 10380.6186382005,
"total_value": 10381.1906951055,
"base_cost_quote": 599.088759835,
"unrealized_pnl_exit_net": 163.08172326
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 179.52,
"quote_asset_bal": 9342.622776543,
"total_value_mid": 10278.999096543,
"total_value_exit_net": 10278.296814303,
"total_value": 10278.999096543,
"base_cost_quote": 875.7714063025,
"unrealized_pnl_exit_net": 59.9026314575
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 210.37,
"quote_asset_bal": 9188.177109898,
"total_value_mid": 10216.255299898,
"total_value_exit_net": 10215.4842412555,
"total_value": 10216.255299898,
"base_cost_quote": 1031.7746210275,
"unrealized_pnl_exit_net": -4.46748967
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 247.69,
"quote_asset_bal": 9013.984572253,
"total_value_mid": 10150.633982253,
"total_value_exit_net": 10149.7814951955,
"total_value": 10150.633982253,
"base_cost_quote": 1207.72183254,
"unrealized_pnl_exit_net": -71.9249095975
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 237.78,
"quote_asset_bal": 9060.7882928155,
"total_value_mid": 10172.6475728155,
"total_value_exit_net": 10171.8136783555,
"total_value": 10172.6475728155,
"base_cost_quote": 1162.452566035,
"unrealized_pnl_exit_net": -51.427180495
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 235.57,
"quote_asset_bal": 9071.643828663,
"total_value_mid": 10175.995988663,
"total_value_exit_net": 10175.167724543,
"total_value": 10175.995988663,
"base_cost_quote": 1152.3327118325,
"unrealized_pnl_exit_net": -48.8088159525
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 255.14,
"quote_asset_bal": 8981.7539384255,
"total_value_mid": 10150.2951384255,
"total_value_exit_net": 10149.4187325255,
"total_value": 10150.2951384255,
"base_cost_quote": 1242.8822631,
"unrealized_pnl_exit_net": -75.217469
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 284.49,
"quote_asset_bal": 8855.3601367681,
"total_value_mid": 10077.244686768,
"total_value_exit_net": 10076.3282733555,
"total_value": 10077.244686768,
"base_cost_quote": 1368.4297631575,
"unrealized_pnl_exit_net": -147.46162657
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 269.09,
"quote_asset_bal": 8923.8992610181,
"total_value_mid": 10116.2370510181,
"total_value_exit_net": 10115.3427976756,
"total_value": 10116.2370510181,
"base_cost_quote": 1298.0943111025,
"unrealized_pnl_exit_net": -106.650774445
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 235.64,
"quote_asset_bal": 9079.7973844106,
"total_value_mid": 10202.1507044106,
"total_value_exit_net": 10201.3089394206,
"total_value": 10202.1507044106,
"base_cost_quote": 1142.3196476625,
"unrealized_pnl_exit_net": -20.8080926525
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 248.64,
"quote_asset_bal": 9020.8981596431,
"total_value_mid": 10169.3663196431,
"total_value_exit_net": 10168.5049685231,
"total_value": 10169.3663196431,
"base_cost_quote": 1202.69570577,
"unrealized_pnl_exit_net": -55.08889689
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 204.89,
"quote_asset_bal": 9233.7016861056,
"total_value_mid": 10268.1912961056,
"total_value_exit_net": 10267.4154288981,
"total_value": 10268.1912961056,
"base_cost_quote": 991.4524420575,
"unrealized_pnl_exit_net": 42.261300735
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 249.49,
"quote_asset_bal": 9018.8323471581,
"total_value_mid": 10165.9873671581,
"total_value_exit_net": 10165.1270008931,
"total_value": 10165.9873671581,
"base_cost_quote": 1207.7242043175,
"unrealized_pnl_exit_net": -61.4295505825
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 273.5,
"quote_asset_bal": 8915.5363344256,
"total_value_mid": 10056.3048344256,
"total_value_exit_net": 10055.4492580506,
"total_value": 10056.3048344256,
"base_cost_quote": 1308.2095118175,
"unrealized_pnl_exit_net": -168.2965881925
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 296.37,
"quote_asset_bal": 8821.5048277106,
"total_value_mid": 10038.6964177106,
"total_value_exit_net": 10037.7835240181,
"total_value": 10038.6964177106,
"base_cost_quote": 1398.6775720125,
"unrealized_pnl_exit_net": -182.398875705
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 281.48,
"quote_asset_bal": 8885.9018232856,
"total_value_mid": 10084.1621832856,
"total_value_exit_net": 10083.2634880156,
"total_value": 10084.1621832856,
"base_cost_quote": 1333.346360325,
"unrealized_pnl_exit_net": -135.984695595
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 319.66,
"quote_asset_bal": 8729.6683702181,
"total_value_mid": 10009.9066702181,
"total_value_exit_net": 10008.9464914931,
"total_value": 10009.9066702181,
"base_cost_quote": 1489.065462125,
"unrealized_pnl_exit_net": -209.78734085
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 309.73,
"quote_asset_bal": 8771.6359118182,
"total_value_mid": 10021.7061918181,
"total_value_exit_net": 10020.7686391081,
"total_value": 10021.7061918181,
"base_cost_quote": 1448.85226483,
"unrealized_pnl_exit_net": -199.71953754
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 353.33,
"quote_asset_bal": 8602.0529272832,
"total_value_mid": 9946.4735772832,
"total_value_exit_net": 9945.4652617957,
"total_value": 9946.4735772832,
"base_cost_quote": 1619.8056537825,
"unrealized_pnl_exit_net": -276.39331927
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 337.7,
"quote_asset_bal": 8663.4492801982,
"total_value_mid": 9979.8038801982,
"total_value_exit_net": 9978.8166142482,
"total_value": 9979.8038801982,
"base_cost_quote": 1559.4534435475,
"unrealized_pnl_exit_net": -244.0861094975
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 357.37,
"quote_asset_bal": 8588.8895064807,
"total_value_mid": 9925.4533064807,
"total_value_exit_net": 9924.4508836307,
"total_value": 9925.4533064807,
"base_cost_quote": 1634.797319105,
"unrealized_pnl_exit_net": -299.235941955
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 353.44,
"quote_asset_bal": 8606.7041029557,
"total_value_mid": 9954.7242629557,
"total_value_exit_net": 9953.7132478357,
"total_value": 9954.7242629557,
"base_cost_quote": 1619.7528341975,
"unrealized_pnl_exit_net": -272.7436893175
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 424.7,
"quote_asset_bal": 8351.8903947757,
"total_value_mid": 9798.4185947757,
"total_value_exit_net": 9797.3336986257,
"total_value": 9798.4185947757,
"base_cost_quote": 1875.8409163175,
"unrealized_pnl_exit_net": -430.3976124675
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 400.24,
"quote_asset_bal": 8438.9554975257,
"total_value_mid": 9837.7942975257,
"total_value_exit_net": 9836.7451684257,
"total_value": 9837.7942975257,
"base_cost_quote": 1790.471907545,
"unrealized_pnl_exit_net": -392.682236645
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 377.64,
"quote_asset_bal": 8520.5890240707,
"total_value_mid": 9896.3315440707,
"total_value_exit_net": 9895.2997371807,
"total_value": 9896.3315440707,
"base_cost_quote": 1710.10353644,
"unrealized_pnl_exit_net": -335.39282333
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 353.81,
"quote_asset_bal": 8612.9024320757,
"total_value_mid": 9944.9970820757,
"total_value_exit_net": 9943.9980110882,
"total_value": 9944.9970820757,
"base_cost_quote": 1619.6691915125,
"unrealized_pnl_exit_net": -288.5736125
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 432.1,
"quote_asset_bal": 8337.9086737307,
"total_value_mid": 9768.5917737307,
"total_value_exit_net": 9767.5187614057,
"total_value": 9768.5917737307,
"base_cost_quote": 1895.918573275,
"unrealized_pnl_exit_net": -466.3084856
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 489.48,
"quote_asset_bal": 8159.7821508107,
"total_value_mid": 9597.8743908107,
"total_value_exit_net": 9596.7958216307,
"total_value": 9597.8743908107,
"base_cost_quote": 2076.584250985,
"unrealized_pnl_exit_net": -639.570580165
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 496.39,
"quote_asset_bal": 8147.3608908582,
"total_value_mid": 9631.0706008582,
"total_value_exit_net": 9629.9578185757,
"total_value": 9631.0706008582,
"base_cost_quote": 2091.68502808,
"unrealized_pnl_exit_net": -609.0881003625
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 534.56,
"quote_asset_bal": 8040.0269659332,
"total_value_mid": 9538.3986459332,
"total_value_exit_net": 9537.2748671732,
"total_value": 9538.3986459332,
"base_cost_quote": 2202.1041703725,
"unrealized_pnl_exit_net": -704.8562691325
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 570.63,
"quote_asset_bal": 7941.8532856932,
"total_value_mid": 9495.1081456932,
"total_value_exit_net": 9493.9432045482,
"total_value": 9495.1081456932,
"base_cost_quote": 2302.3953724025,
"unrealized_pnl_exit_net": -750.3054535475
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 613.93,
"quote_asset_bal": 7828.2086875557,
"total_value_mid": 9415.8316675557,
"total_value_exit_net": 9414.6409503207,
"total_value": 9415.8316675557,
"base_cost_quote": 2417.807016265,
"unrealized_pnl_exit_net": -831.3747535
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 569.07,
"quote_asset_bal": 7950.7075678757,
"total_value_mid": 9468.9863278757,
"total_value_exit_net": 9467.8476188057,
"total_value": 9468.9863278757,
"base_cost_quote": 2297.3904014875,
"unrealized_pnl_exit_net": -780.2503505575
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 565.19,
"quote_asset_bal": 7962.0741058782,
"total_value_mid": 9505.0428058782,
"total_value_exit_net": 9503.8855793532,
"total_value": 9505.0428058782,
"base_cost_quote": 2287.3991736825,
"unrealized_pnl_exit_net": -745.5877002075
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 564.87,
"quote_asset_bal": 7963.3370128782,
"total_value_mid": 9506.5618528782,
"total_value_exit_net": 9505.4044342482,
"total_value": 9506.5618528782,
"base_cost_quote": 2287.450922465,
"unrealized_pnl_exit_net": -745.383501095
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 523.46,
"quote_asset_bal": 8080.8434220557,
"total_value_mid": 9599.4008820557,
"total_value_exit_net": 9598.2619639607,
"total_value": 9599.4008820557,
"base_cost_quote": 2171.9836369025,
"unrealized_pnl_exit_net": -654.5650949975
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 523.57,
"quote_asset_bal": 8082.5046842832,
"total_value_mid": 9597.1926942832,
"total_value_exit_net": 9596.0566782757,
"total_value": 9597.1926942832,
"base_cost_quote": 2171.890597175,
"unrealized_pnl_exit_net": -658.3386031825
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 489.66,
"quote_asset_bal": 8185.0992597182,
"total_value_mid": 9681.0105597182,
"total_value_exit_net": 9679.8886262432,
"total_value": 9681.0105597182,
"base_cost_quote": 2071.4881217525,
"unrealized_pnl_exit_net": -576.6987552275
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 517.92,
"quote_asset_bal": 8101.2692319932,
"total_value_mid": 9627.5794719932,
"total_value_exit_net": 9626.4347393132,
"total_value": 9627.5794719932,
"base_cost_quote": 2156.8676283925,
"unrealized_pnl_exit_net": -631.7021210725
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 474.63,
"quote_asset_bal": 8233.0916241157,
"total_value_mid": 9717.7342641157,
"total_value_exit_net": 9716.6207821357,
"total_value": 9717.7342641157,
"base_cost_quote": 2026.3944868725,
"unrealized_pnl_exit_net": -542.8653288525
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 509.18,
"quote_asset_bal": 8128.4900435857,
"total_value_mid": 9652.4657835857,
"total_value_exit_net": 9651.3228017807,
"total_value": 9652.4657835857,
"base_cost_quote": 2131.81558344,
"unrealized_pnl_exit_net": -608.982825245
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 548.48,
"quote_asset_bal": 8014.0733371332,
"total_value_mid": 9601.9229371332,
"total_value_exit_net": 9600.7320499332,
"total_value": 9601.9229371332,
"base_cost_quote": 2247.2284081875,
"unrealized_pnl_exit_net": -660.5696953875
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 517.55,
"quote_asset_bal": 8106.2441552657,
"total_value_mid": 9637.1570552657,
"total_value_exit_net": 9636.0088705907,
"total_value": 9637.1570552657,
"base_cost_quote": 2156.93829135,
"unrealized_pnl_exit_net": -627.173576025
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 540.01,
"quote_asset_bal": 8042.8260902482,
"total_value_mid": 9600.2149302482,
"total_value_exit_net": 9599.0468886182,
"total_value": 9600.2149302482,
"base_cost_quote": 2222.2561730475,
"unrealized_pnl_exit_net": -666.0353746775
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 524.46,
"quote_asset_bal": 8089.6429902507,
"total_value_mid": 9627.8841702507,
"total_value_exit_net": 9626.7304893657,
"total_value": 9627.8841702507,
"base_cost_quote": 2177.04215795,
"unrealized_pnl_exit_net": -639.954658835
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 492.38,
"quote_asset_bal": 8186.2497688932,
"total_value_mid": 9689.4859088932,
"total_value_exit_net": 9688.3584817882,
"total_value": 9689.4859088932,
"base_cost_quote": 2081.6575431025,
"unrealized_pnl_exit_net": -579.5488302075
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 543.6,
"quote_asset_bal": 8037.1861334482,
"total_value_mid": 9606.5593334482,
"total_value_exit_net": 9605.3823035482,
"total_value": 9606.5593334482,
"base_cost_quote": 2232.1863551025,
"unrealized_pnl_exit_net": -663.9901850025
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 526.04,
"quote_asset_bal": 8088.2896230657,
"total_value_mid": 9632.7430630657,
"total_value_exit_net": 9631.5847229857,
"total_value": 9632.7430630657,
"base_cost_quote": 2182.02112938,
"unrealized_pnl_exit_net": -638.72602946
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 522.67,
"quote_asset_bal": 8099.1210973032,
"total_value_mid": 9635.7708973032,
"total_value_exit_net": 9634.6184099532,
"total_value": 9635.7708973032,
"base_cost_quote": 2172.0254682525,
"unrealized_pnl_exit_net": -636.5281556025
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 650.83,
"quote_asset_bal": 7749.6796905882,
"total_value_mid": 9367.6430705882,
"total_value_exit_net": 9366.4295980532,
"total_value": 9367.6430705882,
"base_cost_quote": 2523.04490553,
"unrealized_pnl_exit_net": -906.294998065
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 649.75,
"quote_asset_bal": 7754.9851515032,
"total_value_mid": 9433.2894015032,
"total_value_exit_net": 9432.0306733157,
"total_value": 9433.2894015032,
"base_cost_quote": 2518.051543315,
"unrealized_pnl_exit_net": -841.0060215025
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 647.54,
"quote_asset_bal": 7761.8079000082,
"total_value_mid": 9440.8791200082,
"total_value_exit_net": 9439.6198165932,
"total_value": 9440.8791200082,
"base_cost_quote": 2513.05309729,
"unrealized_pnl_exit_net": -835.241180705
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 620.83,
"quote_asset_bal": 7833.4657773382,
"total_value_mid": 9473.0778073382,
"total_value_exit_net": 9471.8480983157,
"total_value": 9473.0778073382,
"base_cost_quote": 2442.82694715,
"unrealized_pnl_exit_net": -804.4446261725
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 615.84,
"quote_asset_bal": 7849.9873231632,
"total_value_mid": 9492.4326031632,
"total_value_exit_net": 9491.2007692032,
"total_value": 9492.4326031632,
"base_cost_quote": 2427.7909085725,
"unrealized_pnl_exit_net": -786.5774625325
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 650.32,
"quote_asset_bal": 7760.6385774557,
"total_value_mid": 9429.3596974557,
"total_value_exit_net": 9428.1081566157,
"total_value": 9429.3596974557,
"base_cost_quote": 2518.103542285,
"unrealized_pnl_exit_net": -850.633963125
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 577.17,
"quote_asset_bal": 7957.8408724857,
"total_value_mid": 9567.5680024857,
"total_value_exit_net": 9566.3607071382,
"total_value": 9567.5680024857,
"base_cost_quote": 2322.445909035,
"unrealized_pnl_exit_net": -713.9260743825
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 710.34,
"quote_asset_bal": 7617.6292271082,
"total_value_mid": 9281.2455071082,
"total_value_exit_net": 9279.9977948983,
"total_value": 9281.2455071082,
"base_cost_quote": 2663.5612638175,
"unrealized_pnl_exit_net": -1001.1926960275
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 744.13,
"quote_asset_bal": 7543.9999674408,
"total_value_mid": 9184.0624874408,
"total_value_exit_net": 9182.8324405508,
"total_value": 9184.0624874408,
"base_cost_quote": 2738.764534,
"unrealized_pnl_exit_net": -1099.93206089
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 739.34,
"quote_asset_bal": 7555.3404966633,
"total_value_mid": 9221.0735166633,
"total_value_exit_net": 9219.8242168983,
"total_value": 9221.0735166633,
"base_cost_quote": 2728.7626382,
"unrealized_pnl_exit_net": -1064.278917965
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 786.77,
"quote_asset_bal": 7450.8485375108,
"total_value_mid": 9153.4188175108,
"total_value_exit_net": 9152.1418898008,
"total_value": 9153.4188175108,
"base_cost_quote": 2834.133146855,
"unrealized_pnl_exit_net": -1132.839794565
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 811.74,
"quote_asset_bal": 7400.1482494508,
"total_value_mid": 9093.4378894508,
"total_value_exit_net": 9092.1679222208,
"total_value": 9093.4378894508,
"base_cost_quote": 2884.23439463,
"unrealized_pnl_exit_net": -1192.21472186
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 806.94,
"quote_asset_bal": 7410.8046347982,
"total_value_mid": 9104.5716947983,
"total_value_exit_net": 9103.3013695033,
"total_value": 9104.5716947983,
"base_cost_quote": 2874.22020962,
"unrealized_pnl_exit_net": -1181.723474915
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 1029.89,
"quote_asset_bal": 6986.1103215782,
"total_value_mid": 8799.7466115782,
"total_value_exit_net": 8798.3863843607,
"total_value": 8799.7466115782,
"base_cost_quote": 3300.437933345,
"unrealized_pnl_exit_net": -1488.1618705625
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 1117.32,
"quote_asset_bal": 6843.6776757982,
"total_value_mid": 8635.8589557982,
"total_value_exit_net": 8634.5148198382,
"total_value": 8635.8589557982,
"base_cost_quote": 3445.878532045,
"unrealized_pnl_exit_net": -1655.041388005
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 1101.29,
"quote_asset_bal": 6871.7167637807,
"total_value_mid": 8714.1749337807,
"total_value_exit_net": 8712.7930901532,
"total_value": 8714.1749337807,
"base_cost_quote": 3420.792211405,
"unrealized_pnl_exit_net": -1579.7158850325
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 989.39,
"quote_asset_bal": 7070.0048230632,
"total_value_mid": 8858.8219430632,
"total_value_exit_net": 8857.4803302232,
"total_value": 8858.8219430632,
"base_cost_quote": 3225.25336718,
"unrealized_pnl_exit_net": -1437.77786002
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 1037.91,
"quote_asset_bal": 6986.6883608282,
"total_value_mid": 8775.0072908282,
"total_value_exit_net": 8773.6660516307,
"total_value": 8775.0072908282,
"base_cost_quote": 3310.4591736425,
"unrealized_pnl_exit_net": -1523.48148284
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 1011.77,
"quote_asset_bal": 7033.0624589857,
"total_value_mid": 8825.9188989857,
"total_value_exit_net": 8824.5742566557,
"total_value": 8825.9188989857,
"base_cost_quote": 3265.3816308225,
"unrealized_pnl_exit_net": -1473.8698331525
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 743.8,
"quote_asset_bal": 7573.3797528882,
"total_value_mid": 9259.5743528882,
"total_value_exit_net": 9258.3097069382,
"total_value": 9259.5743528882,
"base_cost_quote": 2728.80362892,
"unrealized_pnl_exit_net": -1043.87367487
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 745.39,
"quote_asset_bal": 7574.6446541107,
"total_value_mid": 9267.4253441108,
"total_value_exit_net": 9266.1557585933,
"total_value": 9267.4253441108,
"base_cost_quote": 2728.8099636675,
"unrealized_pnl_exit_net": -1037.298859185
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 674.13,
"quote_asset_bal": 7745.1028147583,
"total_value_mid": 9381.8904547583,
"total_value_exit_net": 9380.6628640283,
"total_value": 9381.8904547583,
"base_cost_quote": 2558.272726595,
"unrealized_pnl_exit_net": -922.712677325
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 691.35,
"quote_asset_bal": 7705.3179828083,
"total_value_mid": 9372.1628328083,
"total_value_exit_net": 9370.9126991708,
"total_value": 9372.1628328083,
"base_cost_quote": 2598.38921141,
"unrealized_pnl_exit_net": -932.7944950475
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 661.59,
"quote_asset_bal": 7779.9361517783,
"total_value_mid": 9447.1429517783,
"total_value_exit_net": 9445.8925466783,
"total_value": 9447.1429517783,
"base_cost_quote": 2523.1784155875,
"unrealized_pnl_exit_net": -857.2220206875
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 629.22,
"quote_asset_bal": 7867.4165290308,
"total_value_mid": 9527.2988890308,
"total_value_exit_net": 9526.0539772608,
"total_value": 9527.2988890308,
"base_cost_quote": 2437.8107778425,
"unrealized_pnl_exit_net": -779.1733296125
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 457.06,
"quote_asset_bal": 8378.6691554458,
"total_value_mid": 9838.0617354458,
"total_value_exit_net": 9836.9671910108,
"total_value": 9838.0617354458,
"base_cost_quote": 1931.0304374375,
"unrealized_pnl_exit_net": -472.7324018725
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 416.45,
"quote_asset_bal": 8522.0927972408,
"total_value_mid": 9905.1232472409,
"total_value_exit_net": 9904.0859744034,
"total_value": 9905.1232472409,
"base_cost_quote": 1790.5957503575,
"unrealized_pnl_exit_net": -408.602573195
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 512.44,
"quote_asset_bal": 8232.5210552733,
"total_value_mid": 9700.1492152734,
"total_value_exit_net": 9699.0484941534,
"total_value": 9700.1492152734,
"base_cost_quote": 2081.694480785,
"unrealized_pnl_exit_net": -615.167041905
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 511,
"quote_asset_bal": 8239.6465190609,
"total_value_mid": 9691.9085190609,
"total_value_exit_net": 9690.8193225609,
"total_value": 9691.9085190609,
"base_cost_quote": 2076.62546187,
"unrealized_pnl_exit_net": -625.45265837
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 461.37,
"quote_asset_bal": 8387.0019953158,
"total_value_mid": 9786.3372053159,
"total_value_exit_net": 9785.2877039084,
"total_value": 9786.3372053159,
"base_cost_quote": 1931.071598285,
"unrealized_pnl_exit_net": -532.7858896925
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 477.92,
"quote_asset_bal": 8339.1857616234,
"total_value_mid": 9764.8211216234,
"total_value_exit_net": 9763.7518951034,
"total_value": 9764.8211216234,
"base_cost_quote": 1981.2860208775,
"unrealized_pnl_exit_net": -556.7198873975
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 454.57,
"quote_asset_bal": 8411.8173813309,
"total_value_mid": 9835.0760513309,
"total_value_exit_net": 9834.0086073284,
"total_value": 9835.0760513309,
"base_cost_quote": 1911.0577091175,
"unrealized_pnl_exit_net": -488.86648312
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 534.03,
"quote_asset_bal": 8177.6512649584,
"total_value_mid": 9698.0346749584,
"total_value_exit_net": 9696.8943874009,
"total_value": 9698.0346749584,
"base_cost_quote": 2146.967038515,
"unrealized_pnl_exit_net": -627.7239160725
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 626.05,
"quote_asset_bal": 7933.1746363934,
"total_value_mid": 9528.9760863934,
"total_value_exit_net": 9527.7792353059,
"total_value": 9528.9760863934,
"base_cost_quote": 2392.8072705075,
"unrealized_pnl_exit_net": -798.202671595
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 532.3,
"quote_asset_bal": 8187.0448698709,
"total_value_mid": 9698.2445698709,
"total_value_exit_net": 9697.1111700959,
"total_value": 9698.2445698709,
"base_cost_quote": 2141.929703345,
"unrealized_pnl_exit_net": -631.86340312
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 529.21,
"quote_asset_bal": 8200.2585356334,
"total_value_mid": 9687.3386356334,
"total_value_exit_net": 9686.2233255584,
"total_value": 9687.3386356334,
"base_cost_quote": 2131.89156038,
"unrealized_pnl_exit_net": -645.926770455
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 523.79,
"quote_asset_bal": 8217.5162002184,
"total_value_mid": 9696.6991602184,
"total_value_exit_net": 9695.5897729984,
"total_value": 9696.6991602184,
"base_cost_quote": 2116.85465115,
"unrealized_pnl_exit_net": -638.78107837
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 527.54,
"quote_asset_bal": 8215.5395525609,
"total_value_mid": 9649.3932725609,
"total_value_exit_net": 9648.3178822709,
"total_value": 9649.3932725609,
"base_cost_quote": 2121.8834499225,
"unrealized_pnl_exit_net": -689.1051202125
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 496.26,
"quote_asset_bal": 8303.5875375409,
"total_value_mid": 9705.0257775409,
"total_value_exit_net": 9703.9746988609,
"total_value": 9705.0257775409,
"base_cost_quote": 2036.572864935,
"unrealized_pnl_exit_net": -636.185703615
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 466.73,
"quote_asset_bal": 8391.9160631634,
"total_value_mid": 9811.2419931635,
"total_value_exit_net": 9810.177498716,
"total_value": 9811.2419931635,
"base_cost_quote": 1951.2184470975,
"unrealized_pnl_exit_net": -532.957011545
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 476.57,
"quote_asset_bal": 8362.8866450309,
"total_value_mid": 9799.268625031,
"total_value_exit_net": 9798.191338546,
"total_value": 9799.268625031,
"base_cost_quote": 1981.30978869,
"unrealized_pnl_exit_net": -546.005095175
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 591.02,
"quote_asset_bal": 8059.071433521,
"total_value_mid": 9549.032853521,
"total_value_exit_net": 9547.915382456,
"total_value": 9549.032853521,
"base_cost_quote": 2287.37404485,
"unrealized_pnl_exit_net": -798.530095915
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 549.93,
"quote_asset_bal": 8172.243259646,
"total_value_mid": 9583.913569646,
"total_value_exit_net": 9582.8548169135,
"total_value": 9583.913569646,
"base_cost_quote": 2177.0599412775,
"unrealized_pnl_exit_net": -766.44838401
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 676.95,
"quote_asset_bal": 7867.1949288385,
"total_value_mid": 9402.5175288385,
"total_value_exit_net": 9401.3660368885,
"total_value": 9402.5175288385,
"base_cost_quote": 2483.0690761275,
"unrealized_pnl_exit_net": -948.8979680775
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 532.27,
"quote_asset_bal": 8223.8348797285,
"total_value_mid": 9618.9145497285,
"total_value_exit_net": 9617.868239976,
"total_value": 9618.9145497285,
"base_cost_quote": 2126.87576135,
"unrealized_pnl_exit_net": -732.8424011025
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 612.69,
"quote_asset_bal": 8022.828605311,
"total_value_mid": 9500.024195311,
"total_value_exit_net": 9498.9162986185,
"total_value": 9500.024195311,
"base_cost_quote": 2327.54178808,
"unrealized_pnl_exit_net": -851.4540947725
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 564.55,
"quote_asset_bal": 8144.193211061,
"total_value_mid": 9583.231161061,
"total_value_exit_net": 9582.1518825985,
"total_value": 9583.231161061,
"base_cost_quote": 2207.1798943125,
"unrealized_pnl_exit_net": -769.221222775
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 553.93,
"quote_asset_bal": 8170.8055441885,
"total_value_mid": 9642.0436241885,
"total_value_exit_net": 9640.9401956285,
"total_value": 9642.0436241885,
"base_cost_quote": 2182.10086914,
"unrealized_pnl_exit_net": -711.9662177
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 637.49,
"quote_asset_bal": 7961.017984601,
"total_value_mid": 9499.281354601,
"total_value_exit_net": 9498.1276570735,
"total_value": 9499.281354601,
"base_cost_quote": 2392.765048865,
"unrealized_pnl_exit_net": -855.6553763925
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 615.32,
"quote_asset_bal": 8017.007220786,
"total_value_mid": 9547.9233807861,
"total_value_exit_net": 9546.7751936661,
"total_value": 9547.9233807861,
"base_cost_quote": 2337.6679470075,
"unrealized_pnl_exit_net": -807.8999741275
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 631.76,
"quote_asset_bal": 7978.295779566,
"total_value_mid": 9515.3678595661,
"total_value_exit_net": 9514.2150555061,
"total_value": 9515.3678595661,
"base_cost_quote": 2377.720734085,
"unrealized_pnl_exit_net": -841.801458145
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 662.39,
"quote_asset_bal": 7906.9539945885,
"total_value_mid": 9475.4935145886,
"total_value_exit_net": 9474.3171099486,
"total_value": 9475.4935145886,
"base_cost_quote": 2447.97044188,
"unrealized_pnl_exit_net": -880.60732652
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 619.68,
"quote_asset_bal": 8012.7214433035,
"total_value_mid": 9520.4028833036,
"total_value_exit_net": 9519.2721222236,
"total_value": 9520.4028833036,
"base_cost_quote": 2342.67104652,
"unrealized_pnl_exit_net": -836.1203676
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 632.6,
"quote_asset_bal": 7981.917203461,
"total_value_mid": 9505.8506034611,
"total_value_exit_net": 9504.7076534111,
"total_value": 9505.8506034611,
"base_cost_quote": 2372.7455154675,
"unrealized_pnl_exit_net": -849.9550655175
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 612.17,
"quote_asset_bal": 8032.022317981,
"total_value_mid": 9561.2229779811,
"total_value_exit_net": 9560.0760774861,
"total_value": 9561.2229779811,
"base_cost_quote": 2322.5673700625,
"unrealized_pnl_exit_net": -794.5136105574
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 588.29,
"quote_asset_bal": 8093.2469954035,
"total_value_mid": 9603.3874254036,
"total_value_exit_net": 9602.2548200811,
"total_value": 9603.3874254036,
"base_cost_quote": 2262.3466984075,
"unrealized_pnl_exit_net": -753.3388737299
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 627.75,
"quote_asset_bal": 7993.944737771,
"total_value_mid": 9559.5532377711,
"total_value_exit_net": 9558.3790313961,
"total_value": 9559.5532377711,
"base_cost_quote": 2362.773732235,
"unrealized_pnl_exit_net": -798.3394386099
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 485.71,
"quote_asset_bal": 8382.2703481961,
"total_value_mid": 9693.2016381961,
"total_value_exit_net": 9692.2184397286,
"total_value": 9693.2016381961,
"base_cost_quote": 1976.327794995,
"unrealized_pnl_exit_net": -666.3797034624
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 478.05,
"quote_asset_bal": 8404.160886821,
"total_value_mid": 9728.3593868211,
"total_value_exit_net": 9727.3662379461,
"total_value": 9728.3593868211,
"base_cost_quote": 1956.2218168125,
"unrealized_pnl_exit_net": -633.0164656874
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 483.6,
"quote_asset_bal": 8390.666332141,
"total_value_mid": 9744.2627321411,
"total_value_exit_net": 9743.2475348411,
"total_value": 9744.2627321411,
"base_cost_quote": 1971.2791213275,
"unrealized_pnl_exit_net": -618.6979186274
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 486.9,
"quote_asset_bal": 8382.358422266,
"total_value_mid": 9780.2483222661,
"total_value_exit_net": 9779.1999048411,
"total_value": 9780.2483222661,
"base_cost_quote": 1981.33812993,
"unrealized_pnl_exit_net": -584.4966473549
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 511.05,
"quote_asset_bal": 8308.692606096,
"total_value_mid": 9832.1326560961,
"total_value_exit_net": 9830.9900760586,
"total_value": 9832.1326560961,
"base_cost_quote": 2056.597992525,
"unrealized_pnl_exit_net": -534.3005225624
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 542.16,
"quote_asset_bal": 8219.5743753585,
"total_value_mid": 9768.5254953586,
"total_value_exit_net": 9767.3637820186,
"total_value": 9768.5254953586,
"base_cost_quote": 2146.927528905,
"unrealized_pnl_exit_net": -599.1381222449
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 506.24,
"quote_asset_bal": 8326.8762679985,
"total_value_mid": 9843.0650679986,
"total_value_exit_net": 9841.9279263986,
"total_value": 9843.0650679986,
"base_cost_quote": 2041.5820289925,
"unrealized_pnl_exit_net": -526.5303705924
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 530.1,
"quote_asset_bal": 8257.7226751835,
"total_value_mid": 9802.9641751836,
"total_value_exit_net": 9801.8052440586,
"total_value": 9802.9641751836,
"base_cost_quote": 2111.8457072575,
"unrealized_pnl_exit_net": -567.7631383824
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 570.7,
"quote_asset_bal": 8143.491780561,
"total_value_mid": 9731.1791805611,
"total_value_exit_net": 9729.9884150111,
"total_value": 9731.1791805611,
"base_cost_quote": 2227.2989322825,
"unrealized_pnl_exit_net": -640.8022978324
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 588.49,
"quote_asset_bal": 8094.415751986,
"total_value_mid": 9727.4755019861,
"total_value_exit_net": 9726.2507071736,
"total_value": 9727.4755019861,
"base_cost_quote": 2277.45953454,
"unrealized_pnl_exit_net": -645.6245793524
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 603.02,
"quote_asset_bal": 8055.117131066,
"total_value_mid": 9695.3315310661,
"total_value_exit_net": 9694.1013702661,
"total_value": 9695.3315310661,
"base_cost_quote": 2317.601198225,
"unrealized_pnl_exit_net": -678.6169590249
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 697.1,
"quote_asset_bal": 7809.7662151135,
"total_value_mid": 9553.9104151136,
"total_value_exit_net": 9552.6023069636,
"total_value": 9553.9104151136,
"base_cost_quote": 2563.435275605,
"unrealized_pnl_exit_net": -820.5991837549
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 715.53,
"quote_asset_bal": 7764.904347651,
"total_value_mid": 9515.8062576511,
"total_value_exit_net": 9514.4930812186,
"total_value": 9515.8062576511,
"base_cost_quote": 2608.56527774,
"unrealized_pnl_exit_net": -858.9765441724
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 701.39,
"quote_asset_bal": 7800.723598236,
"total_value_mid": 9549.2888682361,
"total_value_exit_net": 9547.9774442836,
"total_value": 9549.2888682361,
"base_cost_quote": 2573.505782825,
"unrealized_pnl_exit_net": -826.2519367774
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 722.67,
"quote_asset_bal": 7749.929085146,
"total_value_mid": 9514.6892251461,
"total_value_exit_net": 9513.3656550411,
"total_value": 9514.6892251461,
"base_cost_quote": 2623.65790873,
"unrealized_pnl_exit_net": -860.2213388349
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 717.08,
"quote_asset_bal": 7764.3224171935,
"total_value_mid": 9523.3196571936,
"total_value_exit_net": 9522.0004092636,
"total_value": 9523.3196571936,
"base_cost_quote": 2608.5917876075,
"unrealized_pnl_exit_net": -850.9137955374
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 603.04,
"quote_asset_bal": 8061.816997666,
"total_value_mid": 9702.0857976661,
"total_value_exit_net": 9700.8555960661,
"total_value": 9702.0857976661,
"base_cost_quote": 2312.5742408325,
"unrealized_pnl_exit_net": -673.5356424324
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 512.74,
"quote_asset_bal": 8320.1643882661,
"total_value_mid": 9848.6423282661,
"total_value_exit_net": 9847.4959698111,
"total_value": 9848.6423282661,
"base_cost_quote": 2056.6029062075,
"unrealized_pnl_exit_net": -529.2713246624
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 462.09,
"quote_asset_bal": 8477.637083191,
"total_value_mid": 9915.1990731911,
"total_value_exit_net": 9914.1209016986,
"total_value": 9915.1990731911,
"base_cost_quote": 1900.99471753,
"unrealized_pnl_exit_net": -464.5108990224
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 488.52,
"quote_asset_bal": 8399.114814956,
"total_value_mid": 9865.6518549561,
"total_value_exit_net": 9864.5519521761,
"total_value": 9865.6518549561,
"base_cost_quote": 1981.22940845,
"unrealized_pnl_exit_net": -515.7922712299
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 479.97,
"quote_asset_bal": 8426.3769086411,
"total_value_mid": 9880.2060386411,
"total_value_exit_net": 9879.1156667936,
"total_value": 9880.2060386411,
"base_cost_quote": 1956.1868105775,
"unrealized_pnl_exit_net": -503.4480524249
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 452.33,
"quote_asset_bal": 8514.0847156861,
"total_value_mid": 9975.1106156861,
"total_value_exit_net": 9974.0148462611,
"total_value": 9975.1106156861,
"base_cost_quote": 1870.89636068,
"unrealized_pnl_exit_net": -410.9662301049
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 474.39,
"quote_asset_bal": 8445.6224892411,
"total_value_mid": 9928.5656292411,
"total_value_exit_net": 9927.4534218861,
"total_value": 9928.5656292411,
"base_cost_quote": 1941.169445995,
"unrealized_pnl_exit_net": -459.3385133499
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 539.39,
"quote_asset_bal": 8257.2525013511,
"total_value_mid": 9793.4352213512,
"total_value_exit_net": 9792.2830843112,
"total_value": 9793.4352213512,
"base_cost_quote": 2131.9516954475,
"unrealized_pnl_exit_net": -596.9211124874
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 568.17,
"quote_asset_bal": 8178.8080994286,
"total_value_mid": 9724.7986694287,
"total_value_exit_net": 9723.6391765012,
"total_value": 9724.7986694287,
"base_cost_quote": 2212.2303793375,
"unrealized_pnl_exit_net": -667.3993022649
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 627.18,
"quote_asset_bal": 8024.6788531611,
"total_value_mid": 9639.0401731612,
"total_value_exit_net": 9637.8294021712,
"total_value": 9639.0401731612,
"base_cost_quote": 2367.7523333875,
"unrealized_pnl_exit_net": -754.6017843774
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 571.67,
"quote_asset_bal": 8171.6364603261,
"total_value_mid": 9732.2955603262,
"total_value_exit_net": 9731.1250660012,
"total_value": 9732.2955603262,
"base_cost_quote": 2222.287566575,
"unrealized_pnl_exit_net": -662.7989608999
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 569.67,
"quote_asset_bal": 8178.2472166012,
"total_value_mid": 9729.4586266012,
"total_value_exit_net": 9728.2952180437,
"total_value": 9729.4586266012,
"base_cost_quote": 2217.26670375,
"unrealized_pnl_exit_net": -667.2187023074
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 587.81,
"quote_asset_bal": 8129.8295377237,
"total_value_mid": 9715.7409177237,
"total_value_exit_net": 9714.5514841887,
"total_value": 9715.7409177237,
"base_cost_quote": 2267.3988446775,
"unrealized_pnl_exit_net": -682.6768982124
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 574.95,
"quote_asset_bal": 8166.4335523512,
"total_value_mid": 9730.8725023512,
"total_value_exit_net": 9729.6991731387,
"total_value": 9730.8725023512,
"base_cost_quote": 2232.2737205775,
"unrealized_pnl_exit_net": -669.0080997899
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 510.97,
"quote_asset_bal": 8348.7562376287,
"total_value_mid": 9855.6067676288,
"total_value_exit_net": 9854.4766297313,
"total_value": 9855.6067676288,
"base_cost_quote": 2051.589999345,
"unrealized_pnl_exit_net": -545.8696072424
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 581.86,
"quote_asset_bal": 8154.5525286162,
"total_value_mid": 9694.1540886162,
"total_value_exit_net": 9692.9993874462,
"total_value": 9694.1540886162,
"base_cost_quote": 2247.34840812,
"unrealized_pnl_exit_net": -708.9015492899
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 578.06,
"quote_asset_bal": 8165.5793093912,
"total_value_mid": 9708.4214493912,
"total_value_exit_net": 9707.2643177862,
"total_value": 9708.4214493912,
"base_cost_quote": 2237.3047910525,
"unrealized_pnl_exit_net": -695.6197826574
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 565.09,
"quote_asset_bal": 8201.8388578162,
"total_value_mid": 9733.7978478162,
"total_value_exit_net": 9732.6488785737,
"total_value": 9733.7978478162,
"base_cost_quote": 2202.2157339825,
"unrealized_pnl_exit_net": -671.4057132249
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 554.21,
"quote_asset_bal": 8232.9222428562,
"total_value_mid": 9730.9518728562,
"total_value_exit_net": 9729.8283506337,
"total_value": 9730.9518728562,
"base_cost_quote": 2172.0905970625,
"unrealized_pnl_exit_net": -675.1844892849
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 576.1,
"quote_asset_bal": 8173.6546626086,
"total_value_mid": 9738.9183626087,
"total_value_exit_net": 9737.7444148337,
"total_value": 9738.9183626087,
"base_cost_quote": 2232.30289244,
"unrealized_pnl_exit_net": -668.2131402149
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 579.85,
"quote_asset_bal": 8164.6507023011,
"total_value_mid": 9733.7248023012,
"total_value_exit_net": 9732.5479967262,
"total_value": 9733.7248023012,
"base_cost_quote": 2242.3646430975,
"unrealized_pnl_exit_net": -674.4673486724
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 613.94,
"quote_asset_bal": 8075.3787273911,
"total_value_mid": 9667.9390873912,
"total_value_exit_net": 9666.7446671212,
"total_value": 9667.9390873912,
"base_cost_quote": 2332.6215050125,
"unrealized_pnl_exit_net": -741.2555652824
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 743.28,
"quote_asset_bal": 7764.7041143162,
"total_value_mid": 9428.1647543162,
"total_value_exit_net": 9426.9171588362,
"total_value": 9428.1647543162,
"base_cost_quote": 2643.47716203,
"unrealized_pnl_exit_net": -981.2641175099
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 732.21,
"quote_asset_bal": 7791.1341275962,
"total_value_mid": 9451.7864075962,
"total_value_exit_net": 9450.5409183862,
"total_value": 9451.7864075962,
"base_cost_quote": 2618.4058026025,
"unrealized_pnl_exit_net": -958.9990118124
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 725.71,
"quote_asset_bal": 7806.8168587287,
"total_value_mid": 9498.4468687287,
"total_value_exit_net": 9497.1781462212,
"total_value": 9498.4468687287,
"base_cost_quote": 2603.38279379,
"unrealized_pnl_exit_net": -913.0215062974
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 706.42,
"quote_asset_bal": 7852.5308833087,
"total_value_mid": 9518.2692433087,
"total_value_exit_net": 9517.0199395387,
"total_value": 9518.2692433087,
"base_cost_quote": 2558.2754186125,
"unrealized_pnl_exit_net": -893.7863623824
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 730.4,
"quote_asset_bal": 7796.6743969412,
"total_value_mid": 9489.7415969412,
"total_value_exit_net": 9488.4717965412,
"total_value": 9489.7415969412,
"base_cost_quote": 2613.4283723275,
"unrealized_pnl_exit_net": -921.6309727274
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 772.43,
"quote_asset_bal": 7702.0260763187,
"total_value_mid": 9422.2276863187,
"total_value_exit_net": 9420.9375351112,
"total_value": 9422.2276863187,
"base_cost_quote": 2708.705426565,
"unrealized_pnl_exit_net": -989.7939677724
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 821.52,
"quote_asset_bal": 7597.5105124712,
"total_value_mid": 9316.1303524712,
"total_value_exit_net": 9314.8413875912,
"total_value": 9316.1303524712,
"base_cost_quote": 2814.0181319,
"unrealized_pnl_exit_net": -1096.6872567799
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 831.22,
"quote_asset_bal": 7577.4780626337,
"total_value_mid": 9316.3903026337,
"total_value_exit_net": 9315.0861184537,
"total_value": 9316.3903026337,
"base_cost_quote": 2834.109969485,
"unrealized_pnl_exit_net": -1096.5019136649
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 812.49,
"quote_asset_bal": 7617.5083463487,
"total_value_mid": 9356.2369463487,
"total_value_exit_net": 9354.9328998987,
"total_value": 9356.2369463487,
"base_cost_quote": 2793.9849682875,
"unrealized_pnl_exit_net": -1056.5604147374
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 783.88,
"quote_asset_bal": 7682.3082946062,
"total_value_mid": 9336.2950946062,
"total_value_exit_net": 9335.0546045062,
"total_value": 9336.2950946062,
"base_cost_quote": 2728.77412681,
"unrealized_pnl_exit_net": -1076.0278169099
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 765.45,
"quote_asset_bal": 7722.4685983887,
"total_value_mid": 9398.8040983887,
"total_value_exit_net": 9397.5468467637,
"total_value": 9398.8040983887,
"base_cost_quote": 2688.6678796675,
"unrealized_pnl_exit_net": -1013.5896312924
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 728.12,
"quote_asset_bal": 7808.9529505962,
"total_value_mid": 9502.5600705962,
"total_value_exit_net": 9501.2898652562,
"total_value": 9502.5600705962,
"base_cost_quote": 2603.4701092275,
"unrealized_pnl_exit_net": -911.1331945674
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 756.92,
"quote_asset_bal": 7744.5503437862,
"total_value_mid": 9437.7803837863,
"total_value_exit_net": 9436.5104612563,
"total_value": 9437.7803837863,
"base_cost_quote": 2668.63233427,
"unrealized_pnl_exit_net": -976.6722167999
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 843.89,
"quote_asset_bal": 7559.3894118737,
"total_value_mid": 9287.6761318737,
"total_value_exit_net": 9286.3799168337,
"total_value": 9287.6761318737,
"base_cost_quote": 2854.1436735025,
"unrealized_pnl_exit_net": -1127.1531685424
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 858.9,
"quote_asset_bal": 7531.6042524537,
"total_value_mid": 9251.1220524538,
"total_value_exit_net": 9249.8324141038,
"total_value": 9251.1220524538,
"base_cost_quote": 2884.2236365675,
"unrealized_pnl_exit_net": -1165.9954749174
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 909.22,
"quote_asset_bal": 7432.3372495237,
"total_value_mid": 9199.8609295238,
"total_value_exit_net": 9198.5352867638,
"total_value": 9199.8609295238,
"base_cost_quote": 2984.5211032925,
"unrealized_pnl_exit_net": -1218.3230660524
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 904.08,
"quote_asset_bal": 7443.2983847087,
"total_value_mid": 9208.0625447088,
"total_value_exit_net": 9206.7389715888,
"total_value": 9208.0625447088,
"base_cost_quote": 2974.4957499125,
"unrealized_pnl_exit_net": -1211.0551630324
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 927.61,
"quote_asset_bal": 7399.2776285113,
"total_value_mid": 9171.9403385113,
"total_value_exit_net": 9170.6108414788,
"total_value": 9171.9403385113,
"base_cost_quote": 3019.56573707,
"unrealized_pnl_exit_net": -1248.2325241024
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 1013.51,
"quote_asset_bal": 7240.3727340388,
"total_value_mid": 9080.9068940388,
"total_value_exit_net": 9079.5264934188,
"total_value": 9080.9068940388,
"base_cost_quote": 3179.9385965725,
"unrealized_pnl_exit_net": -1340.7848371924
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 943.49,
"quote_asset_bal": 7372.8513896863,
"total_value_mid": 9163.5954096863,
"total_value_exit_net": 9162.2523516713,
"total_value": 9163.5954096863,
"base_cost_quote": 3049.6199008,
"unrealized_pnl_exit_net": -1260.2189388149
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 1024.17,
"quote_asset_bal": 7223.7313173638,
"total_value_mid": 9086.6965473638,
"total_value_exit_net": 9085.2993234413,
"total_value": 9086.6965473638,
"base_cost_quote": 3200.02878292,
"unrealized_pnl_exit_net": -1338.4607768424
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 1091.96,
"quote_asset_bal": 7104.9893250638,
"total_value_mid": 8989.7122850638,
"total_value_exit_net": 8988.2987428438,
"total_value": 8989.7122850638,
"base_cost_quote": 3320.3392381375,
"unrealized_pnl_exit_net": -1437.0298203575
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 1142.34,
"quote_asset_bal": 7020.9581302288,
"total_value_mid": 8885.2570102288,
"total_value_exit_net": 8883.8587860688,
"total_value": 8885.2570102288,
"base_cost_quote": 3405.547826685,
"unrealized_pnl_exit_net": -1542.647170845
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 1188.98,
"quote_asset_bal": 6947.7953457737,
"total_value_mid": 8867.9980457738,
"total_value_exit_net": 8866.5578937488,
"total_value": 8867.9980457738,
"base_cost_quote": 3480.7240966325,
"unrealized_pnl_exit_net": -1561.9615486575
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 1055.53,
"quote_asset_bal": 7175.4142366837,
"total_value_mid": 9069.0350566838,
"total_value_exit_net": 9067.6148410688,
"total_value": 9069.0350566838,
"base_cost_quote": 3255.135522,
"unrealized_pnl_exit_net": -1362.9349176149
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 978.91,
"quote_asset_bal": 7317.4876208087,
"total_value_mid": 9137.2813108088,
"total_value_exit_net": 9135.9164655413,
"total_value": 9137.2813108088,
"base_cost_quote": 3114.7823660225,
"unrealized_pnl_exit_net": -1296.3535212899
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 1044.78,
"quote_asset_bal": 7198.3252452087,
"total_value_mid": 9064.3023252088,
"total_value_exit_net": 9062.9028423988,
"total_value": 9064.3023252088,
"base_cost_quote": 3235.0629688675,
"unrealized_pnl_exit_net": -1370.4853716774
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 1149.12,
"quote_asset_bal": 7019.1994815162,
"total_value_mid": 8946.2737215163,
"total_value_exit_net": 8944.8284158363,
"total_value": 8946.2737215163,
"base_cost_quote": 3415.541836575,
"unrealized_pnl_exit_net": -1489.912902255
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 1025.06,
"quote_asset_bal": 7236.4211294012,
"total_value_mid": 9031.3011894013,
"total_value_exit_net": 9029.9550293563,
"total_value": 9031.3011894013,
"base_cost_quote": 3200.00132234,
"unrealized_pnl_exit_net": -1406.4674223849
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 1008.87,
"quote_asset_bal": 7267.2539079737,
"total_value_mid": 9108.4416579738,
"total_value_exit_net": 9107.0607671613,
"total_value": 9108.4416579738,
"base_cost_quote": 3169.91893746,
"unrealized_pnl_exit_net": -1330.1120782724
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 880.34,
"quote_asset_bal": 7514.4152078537,
"total_value_mid": 9273.3345278538,
"total_value_exit_net": 9272.0153383638,
"total_value": 9273.3345278538,
"base_cost_quote": 2924.3167438625,
"unrealized_pnl_exit_net": -1166.7166133524
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 937.14,
"quote_asset_bal": 7405.4759018488,
"total_value_mid": 9192.6018818488,
"total_value_exit_net": 9191.2615373638,
"total_value": 9192.6018818488,
"base_cost_quote": 3034.5942099775,
"unrealized_pnl_exit_net": -1248.8085744624
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 980.15,
"quote_asset_bal": 7326.1992880738,
"total_value_mid": 9134.5760380738,
"total_value_exit_net": 9133.2197555113,
"total_value": 9134.5760380738,
"base_cost_quote": 3114.8113477425,
"unrealized_pnl_exit_net": -1307.7908803049
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 926.56,
"quote_asset_bal": 7427.7445245613,
"total_value_mid": 9215.0787645613,
"total_value_exit_net": 9213.7382638813,
"total_value": 9215.0787645613,
"base_cost_quote": 3014.5644289,
"unrealized_pnl_exit_net": -1228.5706895799
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 931.91,
"quote_asset_bal": 7418.6342536438,
"total_value_mid": 9204.1738136438,
"total_value_exit_net": 9202.8346589738,
"total_value": 9204.1738136438,
"base_cost_quote": 3024.610898105,
"unrealized_pnl_exit_net": -1240.4104927749
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 1029.65,
"quote_asset_bal": 7239.0958831213,
"total_value_mid": 9067.7542831213,
"total_value_exit_net": 9066.3827893213,
"total_value": 9067.7542831213,
"base_cost_quote": 3205.0225354275,
"unrealized_pnl_exit_net": -1377.7356292275
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 1032.34,
"quote_asset_bal": 7234.6766102938,
"total_value_mid": 9071.2094702938,
"total_value_exit_net": 9069.8320706488,
"total_value": 9071.2094702938,
"base_cost_quote": 3210.019650455,
"unrealized_pnl_exit_net": -1374.8641901
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 996.3,
"quote_asset_bal": 7300.5198061013,
"total_value_mid": 9114.7821061013,
"total_value_exit_net": 9113.4214093763,
"total_value": 9114.7821061013,
"base_cost_quote": 3144.8863671025,
"unrealized_pnl_exit_net": -1331.9847638275
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 1029.47,
"quote_asset_bal": 7241.1301526963,
"total_value_mid": 9082.8519826963,
"total_value_exit_net": 9081.4706913238,
"total_value": 9082.8519826963,
"base_cost_quote": 3205.0278794325,
"unrealized_pnl_exit_net": -1364.687340805
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 999.03,
"quote_asset_bal": 7296.9493554313,
"total_value_mid": 9119.1800754313,
"total_value_exit_net": 9117.8134023913,
"total_value": 9119.1800754313,
"base_cost_quote": 3149.918648485,
"unrealized_pnl_exit_net": -1329.0546015249
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 939.62,
"quote_asset_bal": 7408.0122980488,
"total_value_mid": 9197.9883980488,
"total_value_exit_net": 9196.6459159738,
"total_value": 9197.9883980488,
"base_cost_quote": 3039.63333649,
"unrealized_pnl_exit_net": -1250.9997185649
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 853.15,
"quote_asset_bal": 7579.6389253538,
"total_value_mid": 9346.5125753538,
"total_value_exit_net": 9345.1874201163,
"total_value": 9346.5125753538,
"base_cost_quote": 2869.1646708075,
"unrealized_pnl_exit_net": -1103.6161760449
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 799.46,
"quote_asset_bal": 7695.5739147888,
"total_value_mid": 9408.8166947889,
"total_value_exit_net": 9407.5317627039,
"total_value": 9408.8166947889,
"base_cost_quote": 2753.84455554,
"unrealized_pnl_exit_net": -1041.8867076249
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 833.27,
"quote_asset_bal": 7625.9360053938,
"total_value_mid": 9358.3043353938,
"total_value_exit_net": 9357.0050591463,
"total_value": 9358.3043353938,
"base_cost_quote": 2824.0565050375,
"unrealized_pnl_exit_net": -1092.9874512849
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 796.16,
"quote_asset_bal": 7706.3545785538,
"total_value_mid": 9414.9139385538,
"total_value_exit_net": 9413.6325190338,
"total_value": 9414.9139385538,
"base_cost_quote": 2743.818101335,
"unrealized_pnl_exit_net": -1036.5401608549
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 809.65,
"quote_asset_bal": 7677.1157138138,
"total_value_mid": 9435.6755138138,
"total_value_exit_net": 9434.3565939638,
"total_value": 9435.6755138138,
"base_cost_quote": 2773.931349345,
"unrealized_pnl_exit_net": -1016.6904691949
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 784.98,
"quote_asset_bal": 7732.7378145912,
"total_value_mid": 9466.7586345913,
"total_value_exit_net": 9465.4581189763,
"total_value": 9466.7586345913,
"base_cost_quote": 2718.778415645,
"unrealized_pnl_exit_net": -986.0581112599
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 782.58,
"quote_asset_bal": 7738.9259006838,
"total_value_mid": 9482.5141406838,
"total_value_exit_net": 9481.2064495038,
"total_value": 9482.5141406838,
"base_cost_quote": 2713.7602848675,
"unrealized_pnl_exit_net": -971.4797360474
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 771.42,
"quote_asset_bal": 7765.8898045913,
"total_value_mid": 9500.8133845913,
"total_value_exit_net": 9499.5121919063,
"total_value": 9500.8133845913,
"base_cost_quote": 2688.64881538,
"unrealized_pnl_exit_net": -955.0264280649
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 763.78,
"quote_asset_bal": 7786.0388548038,
"total_value_mid": 9503.7800748039,
"total_value_exit_net": 9502.4917688889,
"total_value": 9503.7800748039,
"base_cost_quote": 2668.659494625,
"unrealized_pnl_exit_net": -952.2065805399
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 763.75,
"quote_asset_bal": 7787.2500905113,
"total_value_mid": 9501.1050905114,
"total_value_exit_net": 9499.8196992614,
"total_value": 9501.1050905114,
"base_cost_quote": 2668.6403302625,
"unrealized_pnl_exit_net": -956.0707215124
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 752.57,
"quote_asset_bal": 7813.6891384588,
"total_value_mid": 9526.5384584589,
"total_value_exit_net": 9525.2538214689,
"total_value": 9526.5384584589,
"base_cost_quote": 2643.5925985425,
"unrealized_pnl_exit_net": -932.0279155324
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 723.25,
"quote_asset_bal": 7883.5687866113,
"total_value_mid": 9589.7155366114,
"total_value_exit_net": 9588.4359265489,
"total_value": 9589.7155366114,
"base_cost_quote": 2573.3265485,
"unrealized_pnl_exit_net": -868.4594085624
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 758.41,
"quote_asset_bal": 7804.7118881963,
"total_value_mid": 9525.5441781964,
"total_value_exit_net": 9524.2535539789,
"total_value": 9525.5441781964,
"base_cost_quote": 2653.579833355,
"unrealized_pnl_exit_net": -934.0381675724
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 881.16,
"quote_asset_bal": 7545.0074404338,
"total_value_mid": 9309.9709204339,
"total_value_exit_net": 9308.6471978239,
"total_value": 9309.9709204339,
"base_cost_quote": 2914.36741746,
"unrealized_pnl_exit_net": -1150.7276600699
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 950.05,
"quote_asset_bal": 7411.7957159363,
"total_value_mid": 9228.2913159364,
"total_value_exit_net": 9226.9289442364,
"total_value": 9228.2913159364,
"base_cost_quote": 3049.6929255275,
"unrealized_pnl_exit_net": -1234.5596972274
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 921.56,
"quote_asset_bal": 7468.7710465438,
"total_value_mid": 9277.7933265439,
"total_value_exit_net": 9276.4365598339,
"total_value": 9277.7933265439,
"base_cost_quote": 2994.5690936375,
"unrealized_pnl_exit_net": -1186.9035803474
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 919.05,
"quote_asset_bal": 7474.4279906938,
"total_value_mid": 9279.4421906939,
"total_value_exit_net": 9278.0884300439,
"total_value": 9279.4421906939,
"base_cost_quote": 2989.57217876,
"unrealized_pnl_exit_net": -1185.9117394099
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 883.63,
"quote_asset_bal": 7545.4421716589,
"total_value_mid": 9328.6075116589,
"total_value_exit_net": 9327.2701376539,
"total_value": 9328.6075116589,
"base_cost_quote": 2919.4067841525,
"unrealized_pnl_exit_net": -1137.5788181574
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 993.13,
"quote_asset_bal": 7336.2578853913,
"total_value_mid": 9184.4728153914,
"total_value_exit_net": 9183.0866541939,
"total_value": 9184.4728153914,
"base_cost_quote": 3129.95006327,
"unrealized_pnl_exit_net": -1283.1212944674
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 1001.3,
"quote_asset_bal": 7322.8281448163,
"total_value_mid": 9167.2227448164,
"total_value_exit_net": 9165.8394488664,
"total_value": 9167.2227448164,
"base_cost_quote": 3144.9792967475,
"unrealized_pnl_exit_net": -1301.9679926974
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 1020.31,
"quote_asset_bal": 7289.5044494163,
"total_value_mid": 9144.4280294164,
"total_value_exit_net": 9143.0368367314,
"total_value": 9144.4280294164,
"base_cost_quote": 3180.0536828225,
"unrealized_pnl_exit_net": -1326.5212955074
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 1107.57,
"quote_asset_bal": 7135.3576926813,
"total_value_mid": 9047.0235126814,
"total_value_exit_net": 9045.5897633164,
"total_value": 9047.0235126814,
"base_cost_quote": 3335.4807057275,
"unrealized_pnl_exit_net": -1425.2486350924
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 1125.06,
"quote_asset_bal": 7107.4939782688,
"total_value_mid": 9029.0964582689,
"total_value_exit_net": 9027.6552564089,
"total_value": 9029.0964582689,
"base_cost_quote": 3365.5675539525,
"unrealized_pnl_exit_net": -1445.4062758124
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 1157.63,
"quote_asset_bal": 7053.9561301963,
"total_value_mid": 9001.0897901964,
"total_value_exit_net": 8999.6294399514,
"total_value": 9001.0897901964,
"base_cost_quote": 3420.6781158975,
"unrealized_pnl_exit_net": -1475.0048061424
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 1096.07,
"quote_asset_bal": 7159.9890233863,
"total_value_mid": 9068.2468933864,
"total_value_exit_net": 9066.8156999839,
"total_value": 9068.2468933864,
"base_cost_quote": 3315.4321405725,
"unrealized_pnl_exit_net": -1408.6054639749
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 1034.17,
"quote_asset_bal": 7271.2316561688,
"total_value_mid": 9148.2502061689,
"total_value_exit_net": 9146.8424422564,
"total_value": 9148.2502061689,
"base_cost_quote": 3205.1195281175,
"unrealized_pnl_exit_net": -1329.5087420299
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 1073.59,
"quote_asset_bal": 7202.2248393863,
"total_value_mid": 9089.5960593864,
"total_value_exit_net": 9088.1805309714,
"total_value": 9089.5960593864,
"base_cost_quote": 3275.3431563675,
"unrealized_pnl_exit_net": -1389.3874647824
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 1050.83,
"quote_asset_bal": 7243.7784803313,
"total_value_mid": 9135.2724803314,
"total_value_exit_net": 9133.8538598314,
"total_value": 9135.2724803314,
"base_cost_quote": 3235.184750135,
"unrealized_pnl_exit_net": -1345.1093706349
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 1017.81,
"quote_asset_bal": 7304.7264108888,
"total_value_mid": 9182.5858608889,
"total_value_exit_net": 9181.1774663014,
"total_value": 9182.5858608889,
"base_cost_quote": 3175.0329000575,
"unrealized_pnl_exit_net": -1298.5818446449
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 1001.53,
"quote_asset_bal": 7335.8074692088,
"total_value_mid": 9201.6578592089,
"total_value_exit_net": 9200.2584714164,
"total_value": 9201.6578592089,
"base_cost_quote": 3144.937435375,
"unrealized_pnl_exit_net": -1280.4864331674
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 927.66,
"quote_asset_bal": 7477.1250072438,
"total_value_mid": 9287.9173272439,
"total_value_exit_net": 9286.5592330039,
"total_value": 9287.9173272439,
"base_cost_quote": 3004.5631435575,
"unrealized_pnl_exit_net": -1195.1289177974
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 750.31,
"quote_asset_bal": 7860.3384997789,
"total_value_mid": 9529.7782497789,
"total_value_exit_net": 9528.5261699664,
"total_value": 9529.7782497789,
"base_cost_quote": 2623.4437982675,
"unrealized_pnl_exit_net": -955.2561280799
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 725.76,
"quote_asset_bal": 7925.5387937864,
"total_value_mid": 9602.7701537865,
"total_value_exit_net": 9601.5122302665,
"total_value": 9602.7701537865,
"base_cost_quote": 2558.305391075,
"unrealized_pnl_exit_net": -882.3319545949
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 743.28,
"quote_asset_bal": 7886.7848339714,
"total_value_mid": 9577.7468339715,
"total_value_exit_net": 9576.4786124715,
"total_value": 9577.7468339715,
"base_cost_quote": 2598.42287664,
"unrealized_pnl_exit_net": -908.7290981399
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 713.42,
"quote_asset_bal": 7957.5292706964,
"total_value_mid": 9641.2004706965,
"total_value_exit_net": 9639.9377172965,
"total_value": 9641.2004706965,
"base_cost_quote": 2528.19484509,
"unrealized_pnl_exit_net": -845.7863984899
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 773.74,
"quote_asset_bal": 7822.1222803389,
"total_value_mid": 9452.392460339,
"total_value_exit_net": 9451.169757704,
"total_value": 9452.392460339,
"base_cost_quote": 2663.589575035,
"unrealized_pnl_exit_net": -1034.5420976699
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 778.94,
"quote_asset_bal": 7812.0381243139,
"total_value_mid": 9457.159404314,
"total_value_exit_net": 9455.925563354,
"total_value": 9457.159404314,
"base_cost_quote": 2673.59801574,
"unrealized_pnl_exit_net": -1029.7105766999
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 786.21,
"quote_asset_bal": 7796.9620514014,
"total_value_mid": 9446.4306314015,
"total_value_exit_net": 9445.1935299665,
"total_value": 9446.4306314015,
"base_cost_quote": 2688.6413197625,
"unrealized_pnl_exit_net": -1040.4098411974
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 788.32,
"quote_asset_bal": 7791.8147937089,
"total_value_mid": 9474.089673709,
"total_value_exit_net": 9472.827967549,
"total_value": 9474.089673709,
"base_cost_quote": 2693.69659838,
"unrealized_pnl_exit_net": -1012.6834245399
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 831.72,
"quote_asset_bal": 7702.2554967889,
"total_value_mid": 9389.815376789,
"total_value_exit_net": 9388.549706879,
"total_value": 9389.815376789,
"base_cost_quote": 2783.9343960075,
"unrealized_pnl_exit_net": -1097.6401859174
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 900.44,
"quote_asset_bal": 7567.9373940064,
"total_value_mid": 9294.0808740065,
"total_value_exit_net": 9292.7862663965,
"total_value": 9294.0808740065,
"base_cost_quote": 2919.3020656725,
"unrealized_pnl_exit_net": -1194.4531932824
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 817,
"quote_asset_bal": 7734.4919535589,
"total_value_mid": 9379.112953559,
"total_value_exit_net": 9377.879487809,
"total_value": 9379.112953559,
"base_cost_quote": 2753.8799320525,
"unrealized_pnl_exit_net": -1110.4923978024
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 875.45,
"quote_asset_bal": 7619.8697663564,
"total_value_mid": 9302.4846663565,
"total_value_exit_net": 9301.2227051815,
"total_value": 9302.4846663565,
"base_cost_quote": 2869.20781314,
"unrealized_pnl_exit_net": -1187.8548743149
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 802.17,
"quote_asset_bal": 7766.4007227264,
"total_value_mid": 9442.9360227265,
"total_value_exit_net": 9441.6786212515,
"total_value": 9442.9360227265,
"base_cost_quote": 2723.8092959775,
"unrealized_pnl_exit_net": -1048.5313974524
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 802.25,
"quote_asset_bal": 7767.1884592089,
"total_value_mid": 9450.308959209,
"total_value_exit_net": 9449.046618834,
"total_value": 9450.308959209,
"base_cost_quote": 2723.78314638,
"unrealized_pnl_exit_net": -1041.9249867549
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 781.55,
"quote_asset_bal": 7812.7094439089,
"total_value_mid": 9454.745993909,
"total_value_exit_net": 9453.5144664965,
"total_value": 9454.745993909,
"base_cost_quote": 2678.5992338425,
"unrealized_pnl_exit_net": -1037.7942112549
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 910.3,
"quote_asset_bal": 7558.1830575039,
"total_value_mid": 9273.188257504,
"total_value_exit_net": 9271.902003604,
"total_value": 9273.188257504,
"base_cost_quote": 2934.37257008,
"unrealized_pnl_exit_net": -1220.6536239799
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 853.05,
"quote_asset_bal": 7669.7696789339,
"total_value_mid": 9340.894628934,
"total_value_exit_net": 9339.6412852215,
"total_value": 9340.894628934,
"base_cost_quote": 2824.0772605925,
"unrealized_pnl_exit_net": -1154.2056543049
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 876.12,
"quote_asset_bal": 7625.6331811014,
"total_value_mid": 9317.4209011015,
"total_value_exit_net": 9316.1520603115,
"total_value": 9317.4209011015,
"base_cost_quote": 2869.1574654075,
"unrealized_pnl_exit_net": -1178.6385861974
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 822.86,
"quote_asset_bal": 7731.8116854814,
"total_value_mid": 9390.6974454815,
"total_value_exit_net": 9389.4532811615,
"total_value": 9390.6974454815,
"base_cost_quote": 2763.917964935,
"unrealized_pnl_exit_net": -1106.2763692549
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 796.86,
"quote_asset_bal": 7799.1134505615,
"total_value_mid": 9349.0061505616,
"total_value_exit_net": 9347.8437310366,
"total_value": 9349.0061505616,
"base_cost_quote": 2698.6769608525,
"unrealized_pnl_exit_net": -1149.9466803774
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 799.3,
"quote_asset_bal": 7794.7471195815,
"total_value_mid": 9349.3856195816,
"total_value_exit_net": 9348.2196407066,
"total_value": 9349.3856195816,
"base_cost_quote": 2703.70217694,
"unrealized_pnl_exit_net": -1150.2296558149
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 854.41,
"quote_asset_bal": 7689.827195454,
"total_value_mid": 9293.5547654541,
"total_value_exit_net": 9292.3519697766,
"total_value": 9293.5547654541,
"base_cost_quote": 2808.97255055,
"unrealized_pnl_exit_net": -1206.4477762274
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 913.89,
"quote_asset_bal": 7580.5280505715,
"total_value_mid": 9240.1522905716,
"total_value_exit_net": 9238.9075723916,
"total_value": 9240.1522905716,
"base_cost_quote": 2919.2316929325,
"unrealized_pnl_exit_net": -1260.8521711124
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 870.3,
"quote_asset_bal": 7661.554624159,
"total_value_mid": 9290.7562241591,
"total_value_exit_net": 9289.5343229591,
"total_value": 9290.7562241591,
"base_cost_quote": 2839.02995671,
"unrealized_pnl_exit_net": -1211.0502579099
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 846.36,
"quote_asset_bal": 7707.145259294,
"total_value_mid": 9308.4583792941,
"total_value_exit_net": 9307.2573944541,
"total_value": 9308.4583792941,
"base_cost_quote": 2793.934740645,
"unrealized_pnl_exit_net": -1193.8226054849
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 914.13,
"quote_asset_bal": 7582.301004479,
"total_value_mid": 9231.3915244791,
"total_value_exit_net": 9230.1547065891,
"total_value": 9231.3915244791,
"base_cost_quote": 2919.256941855,
"unrealized_pnl_exit_net": -1271.4032397449
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 892.05,
"quote_asset_bal": 7623.098488489,
"total_value_mid": 9259.1181884891,
"total_value_exit_net": 9257.8911737141,
"total_value": 9259.1181884891,
"base_cost_quote": 2879.153046475,
"unrealized_pnl_exit_net": -1244.3603612499
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 892.03,
"quote_asset_bal": 7623.4786965915,
"total_value_mid": 9260.3537465916,
"total_value_exit_net": 9259.1260903041,
"total_value": 9260.3537465916,
"base_cost_quote": 2879.1515953875,
"unrealized_pnl_exit_net": -1243.5042016749
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 846.25,
"quote_asset_bal": 7709.0703860815,
"total_value_mid": 9302.5591360816,
"total_value_exit_net": 9301.3640195191,
"total_value": 9302.5591360816,
"base_cost_quote": 2793.95541614,
"unrealized_pnl_exit_net": -1201.6617827024
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 770.98,
"quote_asset_bal": 7855.4317137015,
"total_value_mid": 9375.8042737016,
"total_value_exit_net": 9374.6639942816,
"total_value": 9375.8042737016,
"base_cost_quote": 2648.5519552725,
"unrealized_pnl_exit_net": -1129.3196746924
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 765.85,
"quote_asset_bal": 7866.271385379,
"total_value_mid": 9384.1860853791,
"total_value_exit_net": 9383.0476493541,
"total_value": 9384.1860853791,
"base_cost_quote": 2638.53517832,
"unrealized_pnl_exit_net": -1121.7589143449
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 745.76,
"quote_asset_bal": 7906.9395007465,
"total_value_mid": 9410.3916607466,
"total_value_exit_net": 9409.2640716266,
"total_value": 9410.3916607466,
"base_cost_quote": 2598.408325735,
"unrealized_pnl_exit_net": -1096.0837548549
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 735.82,
"quote_asset_bal": 7927.3556834815,
"total_value_mid": 9421.8061034816,
"total_value_exit_net": 9420.6852656666,
"total_value": 9421.8061034816,
"base_cost_quote": 2578.34719116,
"unrealized_pnl_exit_net": -1085.0176089749
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 735.81,
"quote_asset_bal": 7927.7907451365,
"total_value_mid": 9420.7492351366,
"total_value_exit_net": 9419.6295162691,
"total_value": 9420.7492351366,
"base_cost_quote": 2578.3389750025,
"unrealized_pnl_exit_net": -1086.5002038699
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 728.42,
"quote_asset_bal": 7943.3373649215,
"total_value_mid": 9458.4509649216,
"total_value_exit_net": 9457.3146297216,
"total_value": 9458.4509649216,
"base_cost_quote": 2563.2988433575,
"unrealized_pnl_exit_net": -1049.3215785574
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 770.42,
"quote_asset_bal": 7858.6542220965,
"total_value_mid": 9389.4787620966,
"total_value_exit_net": 9388.3306436916,
"total_value": 9389.4787620966,
"base_cost_quote": 2648.53763454,
"unrealized_pnl_exit_net": -1118.8612129449
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 832.84,
"quote_asset_bal": 7739.0641363915,
"total_value_mid": 9309.8003763916,
"total_value_exit_net": 9308.6223242116,
"total_value": 9309.8003763916,
"base_cost_quote": 2768.8519526525,
"unrealized_pnl_exit_net": -1199.2937648324
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 803.8,
"quote_asset_bal": 7794.8053645665,
"total_value_mid": 9344.5317645666,
"total_value_exit_net": 9343.3694697666,
"total_value": 9344.5317645666,
"base_cost_quote": 2713.70983706,
"unrealized_pnl_exit_net": -1165.1457318599
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 762.77,
"quote_asset_bal": 7875.8591571265,
"total_value_mid": 9399.8736171266,
"total_value_exit_net": 9398.7306062816,
"total_value": 9399.8736171266,
"base_cost_quote": 2633.5213507675,
"unrealized_pnl_exit_net": -1110.6499016124
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 730.57,
"quote_asset_bal": 7941.749566934,
"total_value_mid": 9456.9517469341,
"total_value_exit_net": 9455.8153452991,
"total_value": 9456.9517469341,
"base_cost_quote": 2568.2870417025,
"unrealized_pnl_exit_net": -1054.2212633374
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 780.31,
"quote_asset_bal": 7841.969717139,
"total_value_mid": 9383.0819671391,
"total_value_exit_net": 9381.9261329516,
"total_value": 9383.0819671391,
"base_cost_quote": 2668.6548011075,
"unrealized_pnl_exit_net": -1128.6983852949
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 747.68,
"quote_asset_bal": 7907.8375618266,
"total_value_mid": 9429.3663618266,
"total_value_exit_net": 9428.2252152266,
"total_value": 9429.3663618266,
"base_cost_quote": 2603.44540071,
"unrealized_pnl_exit_net": -1083.0577473099
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 767.62,
"quote_asset_bal": 7868.0475788166,
"total_value_mid": 9395.6113788166,
"total_value_exit_net": 9394.4657059666,
"total_value": 9395.6113788166,
"base_cost_quote": 2643.57543568,
"unrealized_pnl_exit_net": -1117.1573085299
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 811.36,
"quote_asset_bal": 7784.2520770516,
"total_value_mid": 9340.4405570516,
"total_value_exit_net": 9339.2734156916,
"total_value": 9340.4405570516,
"base_cost_quote": 2728.8277970325,
"unrealized_pnl_exit_net": -1173.8064583924
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 733.19,
"quote_asset_bal": 7941.3446973366,
"total_value_mid": 9458.3148073367,
"total_value_exit_net": 9457.1770797542,
"total_value": 9458.3148073367,
"base_cost_quote": 2573.31429932,
"unrealized_pnl_exit_net": -1057.4819169024
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 739.53,
"quote_asset_bal": 7927.0094292666,
"total_value_mid": 9522.9151692667,
"total_value_exit_net": 9521.7182399617,
"total_value": 9522.9151692667,
"base_cost_quote": 2588.379809985,
"unrealized_pnl_exit_net": -993.6709992899
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 747.29,
"quote_asset_bal": 7912.4220914916,
"total_value_mid": 9520.5901714917,
"total_value_exit_net": 9519.3840454317,
"total_value": 9520.5901714917,
"base_cost_quote": 2603.4357634875,
"unrealized_pnl_exit_net": -996.4738095474
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 687.69,
"quote_asset_bal": 8049.1081321916,
"total_value_mid": 9672.0565321917,
"total_value_exit_net": 9670.8393208917,
"total_value": 9672.0565321917,
"base_cost_quote": 2468.0375109025,
"unrealized_pnl_exit_net": -846.3063222024
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 724.74,
"quote_asset_bal": 7963.7928923666,
"total_value_mid": 9621.2732723667,
"total_value_exit_net": 9620.0301620817,
"total_value": 9621.2732723667,
"base_cost_quote": 2553.279504485,
"unrealized_pnl_exit_net": -897.0422347699
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 725.16,
"quote_asset_bal": 7963.7035530316,
"total_value_mid": 9625.7702730317,
"total_value_exit_net": 9624.5237229917,
"total_value": 9625.7702730317,
"base_cost_quote": 2553.2807554225,
"unrealized_pnl_exit_net": -892.4605854624
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 740.6,
"quote_asset_bal": 7929.5891648391,
"total_value_mid": 9601.1233648392,
"total_value_exit_net": 9599.8697141892,
"total_value": 9601.1233648392,
"base_cost_quote": 2588.400425435,
"unrealized_pnl_exit_net": -918.1198760849
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 835.49,
"quote_asset_bal": 7729.5307236491,
"total_value_mid": 9401.3462136492,
"total_value_exit_net": 9400.0923520317,
"total_value": 9401.3462136492,
"base_cost_quote": 2789.0097596775,
"unrealized_pnl_exit_net": -1118.4481312949
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 775.12,
"quote_asset_bal": 7855.9611158491,
"total_value_mid": 9541.8471158492,
"total_value_exit_net": 9540.5827013492,
"total_value": 9541.8471158492,
"base_cost_quote": 2663.6263926275,
"unrealized_pnl_exit_net": -979.0048071274
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 733.19,
"quote_asset_bal": 7951.9447380616,
"total_value_mid": 9628.0170780617,
"total_value_exit_net": 9626.7600238067,
"total_value": 9628.0170780617,
"base_cost_quote": 2568.337349405,
"unrealized_pnl_exit_net": -893.5220636599
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 678.22,
"quote_asset_bal": 8082.2507262941,
"total_value_mid": 9721.5084662942,
"total_value_exit_net": 9720.2790229893,
"total_value": 9721.5084662942,
"base_cost_quote": 2437.96206122,
"unrealized_pnl_exit_net": -799.9337645249
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 727.19,
"quote_asset_bal": 7967.0561124791,
"total_value_mid": 9648.3193924792,
"total_value_exit_net": 9647.0584450192,
"total_value": 9648.3193924792,
"base_cost_quote": 2553.319414395,
"unrealized_pnl_exit_net": -873.3170818549
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 744.7,
"quote_asset_bal": 7927.5005958641,
"total_value_mid": 9621.6930958643,
"total_value_exit_net": 9620.4224514893,
"total_value": 9621.6930958643,
"base_cost_quote": 2593.4090891175,
"unrealized_pnl_exit_net": -900.4872334924
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 684.97,
"quote_asset_bal": 8068.1255788441,
"total_value_mid": 9727.1229188443,
"total_value_exit_net": 9725.8786708393,
"total_value": 9727.1229188443,
"base_cost_quote": 2452.97319113,
"unrealized_pnl_exit_net": -795.2200991349
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 693.8500000001,
"quote_asset_bal": 8047.2549308817,
"total_value_mid": 9725.6780808818,
"total_value_exit_net": 9724.4192635193,
"total_value": 9725.6780808818,
"base_cost_quote": 2473.0465848925,
"unrealized_pnl_exit_net": -795.8822522549
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 688.8500000001,
"quote_asset_bal": 8061.1640543117,
"total_value_mid": 9735.7584043118,
"total_value_exit_net": 9734.5024585493,
"total_value": 9735.7584043118,
"base_cost_quote": 2457.951061735,
"unrealized_pnl_exit_net": -784.6126574974
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 749.1900000001,
"quote_asset_bal": 7920.6720349891,
"total_value_mid": 9625.0792849893,
"total_value_exit_net": 9623.8009795518,
"total_value": 9625.0792849893,
"base_cost_quote": 2598.34858096,
"unrealized_pnl_exit_net": -895.2196363974
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 754.0300000001,
"quote_asset_bal": 7911.6869043141,
"total_value_mid": 9268.1868743142,
"total_value_exit_net": 9267.1694993367,
"total_value": 9268.1868743142,
"base_cost_quote": 2608.44102462,
"unrealized_pnl_exit_net": -1252.9584295974
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 913.3700000001,
"quote_asset_bal": 7623.7860575016,
"total_value_mid": 9203.0027875017,
"total_value_exit_net": 9201.8183749542,
"total_value": 9203.0027875017,
"base_cost_quote": 2899.216923105,
"unrealized_pnl_exit_net": -1321.1846056524
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 794.6900000001,
"quote_asset_bal": 7836.9932536017,
"total_value_mid": 9391.4068936018,
"total_value_exit_net": 9390.2410833718,
"total_value": 9391.4068936018,
"base_cost_quote": 2688.6340343025,
"unrealized_pnl_exit_net": -1135.3862045324
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 771.5200000001,
"quote_asset_bal": 7884.4329536167,
"total_value_mid": 9455.2476736168,
"total_value_exit_net": 9454.0695625768,
"total_value": 9455.2476736168,
"base_cost_quote": 2643.528780715,
"unrealized_pnl_exit_net": -1073.8921717549
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 850.7500000001,
"quote_asset_bal": 7731.0115456617,
"total_value_mid": 9363.6007956618,
"total_value_exit_net": 9362.3763537243,
"total_value": 9363.6007956618,
"base_cost_quote": 2798.95892596,
"unrealized_pnl_exit_net": -1167.5941178974
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 909.3500000001,
"quote_asset_bal": 7622.1522896267,
"total_value_mid": 9301.7217396268,
"total_value_exit_net": 9300.4620625393,
"total_value": 9301.7217396268,
"base_cost_quote": 2909.23513113,
"unrealized_pnl_exit_net": -1230.9253582174
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 1016.8600000001,
"quote_asset_bal": 7433.3573085367,
"total_value_mid": 9182.3565085368,
"total_value_exit_net": 9181.0447591368,
"total_value": 9182.3565085368,
"base_cost_quote": 3099.758736745,
"unrealized_pnl_exit_net": -1352.0712861449
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 1016.9800000001,
"quote_asset_bal": 7435.7838031067,
"total_value_mid": 9166.6837631068,
"total_value_exit_net": 9165.3855881368,
"total_value": 9166.6837631068,
"base_cost_quote": 3099.743645435,
"unrealized_pnl_exit_net": -1370.1418604049
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 1034.4200000001,
"quote_asset_bal": 7406.4522412792,
"total_value_mid": 9171.1727612793,
"total_value_exit_net": 9169.8492208893,
"total_value": 9171.1727612793,
"base_cost_quote": 3129.8105687275,
"unrealized_pnl_exit_net": -1366.4135891174
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 1028.8500000001,
"quote_asset_bal": 7417.7069905317,
"total_value_mid": 9169.8385405318,
"total_value_exit_net": 9168.5244418693,
"total_value": 9169.8385405318,
"base_cost_quote": 3119.80574073,
"unrealized_pnl_exit_net": -1368.9882893924
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 999.6200000001,
"quote_asset_bal": 7469.3249541742,
"total_value_mid": 9198.6675541743,
"total_value_exit_net": 9197.3705472243,
"total_value": 9198.6675541743,
"base_cost_quote": 3069.653254555,
"unrealized_pnl_exit_net": -1341.6076615049
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 1056.0700000001,
"quote_asset_bal": 7376.0281592817,
"total_value_mid": 9130.1604292818,
"total_value_exit_net": 9128.8448300793,
"total_value": 9130.1604292818,
"base_cost_quote": 3164.870854235,
"unrealized_pnl_exit_net": -1412.0541834374
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 1065.2400000001,
"quote_asset_bal": 7362.7596935042,
"total_value_mid": 9126.7971335043,
"total_value_exit_net": 9125.4741054243,
"total_value": 9126.7971335043,
"base_cost_quote": 3179.901398695,
"unrealized_pnl_exit_net": -1417.1869867749
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 1017.1500000001,
"quote_asset_bal": 7443.9951222367,
"total_value_mid": 9184.3387722368,
"total_value_exit_net": 9183.0335144993,
"total_value": 9184.3387722368,
"base_cost_quote": 3099.6937980775,
"unrealized_pnl_exit_net": -1360.6554058149
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 1023.3300000001,
"quote_asset_bal": 7434.8651582667,
"total_value_mid": 9165.3161882668,
"total_value_exit_net": 9164.0183499943,
"total_value": 9165.3161882668,
"base_cost_quote": 3109.7333420925,
"unrealized_pnl_exit_net": -1380.5801503649
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 999.6600000001,
"quote_asset_bal": 7475.5409407917,
"total_value_mid": 9196.9554607918,
"total_value_exit_net": 9195.6643999018,
"total_value": 9196.9554607918,
"base_cost_quote": 3069.624232805,
"unrealized_pnl_exit_net": -1349.5007736949
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 962.3500000001,
"quote_asset_bal": 7541.3964787317,
"total_value_mid": 9235.1324787318,
"total_value_exit_net": 9233.8621767318,
"total_value": 9235.1324787318,
"base_cost_quote": 3004.46746185,
"unrealized_pnl_exit_net": -1312.0017638499
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 1040.5400000001,
"quote_asset_bal": 7406.9510365842,
"total_value_mid": 9167.5447165843,
"total_value_exit_net": 9166.2242713243,
"total_value": 9167.5447165843,
"base_cost_quote": 3139.834611125,
"unrealized_pnl_exit_net": -1380.5613763849
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 1058.7400000001,
"quote_asset_bal": 7377.9943069242,
"total_value_mid": 9134.4439669243,
"total_value_exit_net": 9133.1266296793,
"total_value": 9134.4439669243,
"base_cost_quote": 3169.9056975375,
"unrealized_pnl_exit_net": -1414.7733747824
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 1088.9600000001,
"quote_asset_bal": 7329.1249031792,
"total_value_mid": 9111.7524231793,
"total_value_exit_net": 9110.4154525393,
"total_value": 9111.7524231793,
"base_cost_quote": 3220.0254191575,
"unrealized_pnl_exit_net": -1438.7348697974
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 1152.1800000001,
"quote_asset_bal": 7230.4699604742,
"total_value_mid": 9003.6749804742,
"total_value_exit_net": 9002.3450767092,
"total_value": 9003.6749804742,
"base_cost_quote": 3320.2370415475,
"unrealized_pnl_exit_net": -1548.3619253124
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 1155.3700000001,
"quote_asset_bal": 7226.2939842066,
"total_value_mid": 9013.6513742067,
"total_value_exit_net": 9012.3108561642,
"total_value": 9013.6513742067,
"base_cost_quote": 3325.224229135,
"unrealized_pnl_exit_net": -1539.2073571774
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 1098.3700000001,
"quote_asset_bal": 7317.4947299216,
"total_value_mid": 9106.7394599217,
"total_value_exit_net": 9105.3975263742,
"total_value": 9106.7394599217,
"base_cost_quote": 3235.047247085,
"unrealized_pnl_exit_net": -1447.1444506324
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 1083.0500000001,
"quote_asset_bal": 7344.0945179141,
"total_value_mid": 9128.9609179142,
"total_value_exit_net": 9127.6222681142,
"total_value": 9128.9609179142,
"base_cost_quote": 3209.9916594775,
"unrealized_pnl_exit_net": -1426.4639092774
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 1239.7300000001,
"quote_asset_bal": 7110.9702570616,
"total_value_mid": 8891.2225370617,
"total_value_exit_net": 8889.8873478517,
"total_value": 8891.2225370617,
"base_cost_quote": 3445.56099407,
"unrealized_pnl_exit_net": -1666.6439032799
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 1268.3300000001,
"quote_asset_bal": 7073.8369222516,
"total_value_mid": 8857.1089022517,
"total_value_exit_net": 8855.7714482667,
"total_value": 8857.1089022517,
"base_cost_quote": 3485.654261485,
"unrealized_pnl_exit_net": -1703.7197354699
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 1198.6800000001,
"quote_asset_bal": 7175.7848075266,
"total_value_mid": 8941.4404475267,
"total_value_exit_net": 8940.1162057967,
"total_value": 8941.4404475267,
"base_cost_quote": 3385.417540285,
"unrealized_pnl_exit_net": -1621.0861420149
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 1110.4200000001,
"quote_asset_bal": 7313.3176421041,
"total_value_mid": 9046.6832621042,
"total_value_exit_net": 9045.3832378892,
"total_value": 9046.6832621042,
"base_cost_quote": 3250.1139486425,
"unrealized_pnl_exit_net": -1518.0483528574
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 1010.7800000001,
"quote_asset_bal": 7487.9319061916,
"total_value_mid": 9190.0854261917,
"total_value_exit_net": 9188.8088110517,
"total_value": 9190.0854261917,
"base_cost_quote": 3079.6082251875,
"unrealized_pnl_exit_net": -1378.7313203274
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 1047.1500000001,
"quote_asset_bal": 7429.4207102066,
"total_value_mid": 9148.8410102067,
"total_value_exit_net": 9147.5514449817,
"total_value": 9148.8410102067,
"base_cost_quote": 3139.7941307875,
"unrealized_pnl_exit_net": -1421.6633960124
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 993.2100000001,
"quote_asset_bal": 7521.3293219241,
"total_value_mid": 9210.7795319242,
"total_value_exit_net": 9209.5124442667,
"total_value": 9210.7795319242,
"base_cost_quote": 3049.549067715,
"unrealized_pnl_exit_net": -1361.3659453724
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 1062.8200000001,
"quote_asset_bal": 7407.9406846866,
"total_value_mid": 9127.5834446867,
"total_value_exit_net": 9126.2937126167,
"total_value": 9127.5834446867,
"base_cost_quote": 3164.854041635,
"unrealized_pnl_exit_net": -1446.5010137049
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 1149.3500000001,
"quote_asset_bal": 7274.1546090566,
"total_value_mid": 9007.3744090567,
"total_value_exit_net": 9006.0744942067,
"total_value": 9007.3744090567,
"base_cost_quote": 3300.113810435,
"unrealized_pnl_exit_net": -1568.1939252849
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 1107.2000000001,
"quote_asset_bal": 7340.8428342866,
"total_value_mid": 9040.3948342867,
"total_value_exit_net": 9039.1201702867,
"total_value": 9040.3948342867,
"base_cost_quote": 3235.022148275,
"unrealized_pnl_exit_net": -1536.7448122749
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 1097.3300000001,
"quote_asset_bal": 7357.6767032891,
"total_value_mid": 9049.7595632892,
"total_value_exit_net": 9048.4905011442,
"total_value": 9049.7595632892,
"base_cost_quote": 3219.9699776075,
"unrealized_pnl_exit_net": -1529.1561797524
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 1194.4100000001,
"quote_asset_bal": 7214.3263794891,
"total_value_mid": 8950.9985194892,
"total_value_exit_net": 8949.6960153842,
"total_value": 8950.9985194892,
"base_cost_quote": 3365.2923677175,
"unrealized_pnl_exit_net": -1629.9227318224
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 1170.2900000001,
"quote_asset_bal": 7250.4282027291,
"total_value_mid": 8975.4356627292,
"total_value_exit_net": 8974.1419071342,
"total_value": 8975.4356627292,
"base_cost_quote": 3330.2466231075,
"unrealized_pnl_exit_net": -1606.5329187024
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 1235.5100000001,
"quote_asset_bal": 7156.4445116116,
"total_value_mid": 8926.9303416117,
"total_value_exit_net": 8925.6024772392,
"total_value": 8926.9303416117,
"base_cost_quote": 3425.43575145,
"unrealized_pnl_exit_net": -1656.2777858224
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 1264.4700000001,
"quote_asset_bal": 7117.6342796991,
"total_value_mid": 8871.4541696992,
"total_value_exit_net": 8870.1388047817,
"total_value": 8871.4541696992,
"base_cost_quote": 3465.5251059325,
"unrealized_pnl_exit_net": -1713.0205808499
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 1232.2500000001,
"quote_asset_bal": 7163.8372042591,
"total_value_mid": 8929.6514542592,
"total_value_exit_net": 8928.3270935717,
"total_value": 8929.6514542592,
"base_cost_quote": 3420.4138778675,
"unrealized_pnl_exit_net": -1655.9239885549
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 1271.0900000001,
"quote_asset_bal": 7109.7077817216,
"total_value_mid": 8894.3181417217,
"total_value_exit_net": 8892.9796839517,
"total_value": 8894.3181417217,
"base_cost_quote": 3475.53818011,
"unrealized_pnl_exit_net": -1692.2662778799
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 1326.2700000001,
"quote_asset_bal": 7035.5820207141,
"total_value_mid": 8814.1100907142,
"total_value_exit_net": 8812.7761946617,
"total_value": 8814.1100907142,
"base_cost_quote": 3550.6814853525,
"unrealized_pnl_exit_net": -1773.4873114049
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 1438.9700000001,
"quote_asset_bal": 6892.1043381291,
"total_value_mid": 8680.7440481292,
"total_value_exit_net": 8679.4025683467,
"total_value": 8680.7440481292,
"base_cost_quote": 3695.9940480975,
"unrealized_pnl_exit_net": -1908.6958178799
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 1403.1700000001,
"quote_asset_bal": 6938.3189152166,
"total_value_mid": 8711.9257952167,
"total_value_exit_net": 8710.5955900567,
"total_value": 8711.9257952167,
"base_cost_quote": 3650.903265355,
"unrealized_pnl_exit_net": -1878.6265905149
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 1423.0400000001,
"quote_asset_bal": 6913.8314260041,
"total_value_mid": 8695.4775060042,
"total_value_exit_net": 8694.1412714442,
"total_value": 8695.4775060042,
"base_cost_quote": 3675.9682800275,
"unrealized_pnl_exit_net": -1895.6584345874
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 1383.3900000001,
"quote_asset_bal": 6964.8492038616,
"total_value_mid": 8772.9399338617,
"total_value_exit_net": 8771.5838658142,
"total_value": 8772.9399338617,
"base_cost_quote": 3625.8557638075,
"unrealized_pnl_exit_net": -1819.1211018549
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 1326.9100000001,
"quote_asset_bal": 7040.9864143166,
"total_value_mid": 8825.6803643167,
"total_value_exit_net": 8824.3418438542,
"total_value": 8825.6803643167,
"base_cost_quote": 3550.6814853525,
"unrealized_pnl_exit_net": -1767.3260558149
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 1357.1000000001,
"quote_asset_bal": 7001.5903957216,
"total_value_mid": 8787.5339957217,
"total_value_exit_net": 8786.1945380217,
"total_value": 8787.5339957217,
"base_cost_quote": 3590.7423084525,
"unrealized_pnl_exit_net": -1806.1381661524
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 1312.0900000001,
"quote_asset_bal": 7062.1572596866,
"total_value_mid": 8833.4787596867,
"total_value_exit_net": 8832.1502685617,
"total_value": 8833.4787596867,
"base_cost_quote": 3530.6268156225,
"unrealized_pnl_exit_net": -1760.6338067474
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 1319.5300000001,
"quote_asset_bal": 7052.5082115866,
"total_value_mid": 8844.4299515867,
"total_value_exit_net": 8843.0860102817,
"total_value": 8844.4299515867,
"base_cost_quote": 3540.6753864025,
"unrealized_pnl_exit_net": -1750.0975877074
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 1353.3200000001,
"quote_asset_bal": 7007.7511771466,
"total_value_mid": 8794.1335771467,
"total_value_exit_net": 8792.7937903467,
"total_value": 8794.1335771467,
"base_cost_quote": 3585.7834921275,
"unrealized_pnl_exit_net": -1800.7408789274
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 1315.9000000001,
"quote_asset_bal": 7058.5187276991,
"total_value_mid": 8837.6155276992,
"total_value_exit_net": 8836.2812050992,
"total_value": 8837.6155276992,
"base_cost_quote": 3535.63798118,
"unrealized_pnl_exit_net": -1757.8755037799
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 1371.1300000001,
"quote_asset_bal": 6989.5548281367,
"total_value_mid": 8697.9828081367,
"total_value_exit_net": 8696.7014871517,
"total_value": 8697.9828081367,
"base_cost_quote": 3605.8090800625,
"unrealized_pnl_exit_net": -1898.6624210474
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 1229.8900000001,
"quote_asset_bal": 7181.9145516942,
"total_value_mid": 8939.4273616942,
"total_value_exit_net": 8938.1092270867,
"total_value": 8939.4273616942,
"base_cost_quote": 3415.4158121275,
"unrealized_pnl_exit_net": -1659.2211367349
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 1251.0200000001,
"quote_asset_bal": 7152.6452934492,
"total_value_mid": 8915.3324734492,
"total_value_exit_net": 8914.0104580642,
"total_value": 8915.3324734492,
"base_cost_quote": 3445.4732783325,
"unrealized_pnl_exit_net": -1684.1081137174
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 1275.7600000001,
"quote_asset_bal": 7118.6628793867,
"total_value_mid": 8902.1753593868,
"total_value_exit_net": 8900.8377250267,
"total_value": 8902.1753593868,
"base_cost_quote": 3480.54609323,
"unrealized_pnl_exit_net": -1698.3712475899
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 1300.9700000001,
"quote_asset_bal": 7084.2794819017,
"total_value_mid": 8869.2103219018,
"total_value_exit_net": 8867.8716237718,
"total_value": 8869.2103219018,
"base_cost_quote": 3515.610832075,
"unrealized_pnl_exit_net": -1732.0186902049
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 1268.4400000001,
"quote_asset_bal": 7130.1052800492,
"total_value_mid": 8905.9212800493,
"total_value_exit_net": 8904.5894180493,
"total_value": 8905.9212800493,
"base_cost_quote": 3470.5237320925,
"unrealized_pnl_exit_net": -1696.0395940924
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 1315.4000000001,
"quote_asset_bal": 7065.7696266292,
"total_value_mid": 8859.9752266293,
"total_value_exit_net": 8858.6295724293,
"total_value": 8859.9752266293,
"base_cost_quote": 3535.6345285925,
"unrealized_pnl_exit_net": -1742.7745827924
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 1297.2300000001,
"quote_asset_bal": 7091.4231582617,
"total_value_mid": 8881.6005582618,
"total_value_exit_net": 8880.2579252118,
"total_value": 8881.6005582618,
"base_cost_quote": 3510.611325255,
"unrealized_pnl_exit_net": -1721.7765583049
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 1179.4400000001,
"quote_asset_bal": 7263.2048803167,
"total_value_mid": 8987.5461603168,
"total_value_exit_net": 8986.2529043568,
"total_value": 8987.5461603168,
"base_cost_quote": 3340.310575415,
"unrealized_pnl_exit_net": -1617.2625513749
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 1162.5200000001,
"quote_asset_bal": 7289.3929142792,
"total_value_mid": 9006.4349542793,
"total_value_exit_net": 9005.1471727493,
"total_value": 9006.4349542793,
"base_cost_quote": 3315.2374146375,
"unrealized_pnl_exit_net": -1599.4831561674
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 1189.9500000001,
"quote_asset_bal": 7250.1143890567,
"total_value_mid": 8969.5921390568,
"total_value_exit_net": 8968.3025307443,
"total_value": 8969.5921390568,
"base_cost_quote": 3355.3210048,
"unrealized_pnl_exit_net": -1637.1328631124
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 1145.4000000001,
"quote_asset_bal": 7316.1780089142,
"total_value_mid": 9006.7884089143,
"total_value_exit_net": 9005.5204511143,
"total_value": 9006.7884089143,
"base_cost_quote": 3290.1684870325,
"unrealized_pnl_exit_net": -1600.8260448324
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 1095.6900000001,
"quote_asset_bal": 7392.8397820817,
"total_value_mid": 9073.6282420818,
"total_value_exit_net": 9072.3676507368,
"total_value": 9073.6282420818,
"base_cost_quote": 3214.98615254,
"unrealized_pnl_exit_net": -1535.4582838849
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 1162.2500000001,
"quote_asset_bal": 7293.2624554617,
"total_value_mid": 9000.6077054618,
"total_value_exit_net": 8999.3271965243,
"total_value": 9000.6077054618,
"base_cost_quote": 3315.20758228,
"unrealized_pnl_exit_net": -1609.1428412174
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 1159.3400000001,
"quote_asset_bal": 7299.2902600142,
"total_value_mid": 8978.0145800143,
"total_value_exit_net": 8976.7555367743,
"total_value": 8978.0145800143,
"base_cost_quote": 3310.2050632025,
"unrealized_pnl_exit_net": -1632.7397864424
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 1194.4300000001,
"quote_asset_bal": 7249.8978642917,
"total_value_mid": 8942.4051742918,
"total_value_exit_net": 8941.1357938093,
"total_value": 8942.4051742918,
"base_cost_quote": 3360.306881405,
"unrealized_pnl_exit_net": -1669.0689518874
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 1283.1100000001,
"quote_asset_bal": 7130.4944699192,
"total_value_mid": 8820.3503399193,
"total_value_exit_net": 8819.0829480168,
"total_value": 8820.3503399193,
"base_cost_quote": 3480.6006040825,
"unrealized_pnl_exit_net": -1792.0121259849
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 1345.3000000001,
"quote_asset_bal": 7051.4594289467,
"total_value_mid": 8743.8468289468,
"total_value_exit_net": 8742.5775383968,
"total_value": 8743.8468289468,
"base_cost_quote": 3560.7620401025,
"unrealized_pnl_exit_net": -1869.6439306524
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 1238.0700000001,
"quote_asset_bal": 7192.8568868642,
"total_value_mid": 8867.9655968643,
"total_value_exit_net": 8866.7092653318,
"total_value": 8867.9655968643,
"base_cost_quote": 3420.460803035,
"unrealized_pnl_exit_net": -1746.6084245674
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 1252.8600000001,
"quote_asset_bal": 7173.0536563592,
"total_value_mid": 8853.1389163593,
"total_value_exit_net": 8851.8788524143,
"total_value": 8853.1389163593,
"base_cost_quote": 3440.51337119,
"unrealized_pnl_exit_net": -1761.6881751349
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 1310.0400000001,
"quote_asset_bal": 7098.2600087792,
"total_value_mid": 8779.0413287793,
"total_value_exit_net": 8777.7807427893,
"total_value": 8779.0413287793,
"base_cost_quote": 3515.66213052,
"unrealized_pnl_exit_net": -1836.1413965099
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 1298.3400000001,
"quote_asset_bal": 7114.0220560842,
"total_value_mid": 8810.9524360843,
"total_value_exit_net": 8809.6797382993,
"total_value": 8810.9524360843,
"base_cost_quote": 3500.625521515,
"unrealized_pnl_exit_net": -1804.9678392999
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 1302.1900000001,
"quote_asset_bal": 7109.4940647367,
"total_value_mid": 8799.7366847368,
"total_value_exit_net": 8798.4690027718,
"total_value": 8799.7366847368,
"base_cost_quote": 3505.6419710325,
"unrealized_pnl_exit_net": -1816.6670329974
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 1329.3800000001,
"quote_asset_bal": 7074.6976637842,
"total_value_mid": 8765.6690237843,
"total_value_exit_net": 8764.4007952643,
"total_value": 8765.6690237843,
"base_cost_quote": 3540.718488705,
"unrealized_pnl_exit_net": -1851.0153572249
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 1361.5600000001,
"quote_asset_bal": 7034.9741757918,
"total_value_mid": 8717.8623357918,
"total_value_exit_net": 8716.6001696718,
"total_value": 8717.8623357918,
"base_cost_quote": 3580.7818837325,
"unrealized_pnl_exit_net": -1899.1558898524
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 1369.3700000001,
"quote_asset_bal": 7025.4992632218,
"total_value_mid": 8730.3649132218,
"total_value_exit_net": 8729.0862639843,
"total_value": 8730.3649132218,
"base_cost_quote": 3590.795458285,
"unrealized_pnl_exit_net": -1887.2084575224
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 1345.3900000001,
"quote_asset_bal": 7055.7502667443,
"total_value_mid": 8752.2870567443,
"total_value_exit_net": 8751.0146541518,
"total_value": 8752.2870567443,
"base_cost_quote": 3560.7514321525,
"unrealized_pnl_exit_net": -1865.4870447449
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 1361.4600000001,
"quote_asset_bal": 7035.8651161493,
"total_value_mid": 8732.2442761493,
"total_value_exit_net": 8730.9719917793,
"total_value": 8732.2442761493,
"base_cost_quote": 3580.799967285,
"unrealized_pnl_exit_net": -1885.6930916549
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 1357.5500000001,
"quote_asset_bal": 7041.3269881668,
"total_value_mid": 8727.4040881668,
"total_value_exit_net": 8726.1395303418,
"total_value": 8727.4040881668,
"base_cost_quote": 3575.7736303575,
"unrealized_pnl_exit_net": -1890.9610881824
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 1357.5700000001,
"quote_asset_bal": 7041.4993232293,
"total_value_mid": 8737.1042532293,
"total_value_exit_net": 8735.8325495318,
"total_value": 8737.1042532293,
"base_cost_quote": 3575.7736303575,
"unrealized_pnl_exit_net": -1881.4404040549
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 1381.8500000001,
"quote_asset_bal": 7011.7241881643,
"total_value_mid": 8707.2541381643,
"total_value_exit_net": 8705.9824907018,
"total_value": 8707.2541381643,
"base_cost_quote": 3605.83378858,
"unrealized_pnl_exit_net": -1911.5754860424
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 1321.9600000001,
"quote_asset_bal": 7087.2036212268,
"total_value_mid": 8785.9222212268,
"total_value_exit_net": 8784.6481822768,
"total_value": 8785.9222212268,
"base_cost_quote": 3530.6999104025,
"unrealized_pnl_exit_net": -1833.2553493524
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 1256.9000000001,
"quote_asset_bal": 7173.1445085793,
"total_value_mid": 8861.1612085793,
"total_value_exit_net": 8859.8951960543,
"total_value": 8861.1612085793,
"base_cost_quote": 3445.526308075,
"unrealized_pnl_exit_net": -1758.7756205999
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 1264.3600000001,
"quote_asset_bal": 7163.5227950518,
"total_value_mid": 8851.4433950519,
"total_value_exit_net": 8850.1774546018,
"total_value": 8851.4433950519,
"base_cost_quote": 3455.5407632875,
"unrealized_pnl_exit_net": -1768.8861037374
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 1212.5800000001,
"quote_asset_bal": 7234.3818745993,
"total_value_mid": 8934.4190345993,
"total_value_exit_net": 8933.1440067293,
"total_value": 8934.4190345993,
"base_cost_quote": 3385.36428037,
"unrealized_pnl_exit_net": -1686.6021482399
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 1191.3700000001,
"quote_asset_bal": 7265.0793147493,
"total_value_mid": 8959.2074547493,
"total_value_exit_net": 8957.9368586443,
"total_value": 8959.2074547493,
"base_cost_quote": 3355.305172935,
"unrealized_pnl_exit_net": -1662.4476290399
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 1183.7000000001,
"quote_asset_bal": 7276.1259621718,
"total_value_mid": 8983.0213621719,
"total_value_exit_net": 8981.7411906219,
"total_value": 8983.0213621719,
"base_cost_quote": 3345.2456239275,
"unrealized_pnl_exit_net": -1639.6303954774
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 1225.9700000001,
"quote_asset_bal": 7216.8002651593,
"total_value_mid": 8945.4179651594,
"total_value_exit_net": 8944.1215018844,
"total_value": 8945.4179651594,
"base_cost_quote": 3405.37583779,
"unrealized_pnl_exit_net": -1678.0546010649
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 1183.8300000001,
"quote_asset_bal": 7277.8588176968,
"total_value_mid": 8981.3901876969,
"total_value_exit_net": 8980.1125391694,
"total_value": 8981.3901876969,
"base_cost_quote": 3345.2335148525,
"unrealized_pnl_exit_net": -1642.9797933799
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 1190.7800000001,
"quote_asset_bal": 7268.9318668943,
"total_value_mid": 8988.4181868944,
"total_value_exit_net": 8987.1285721544,
"total_value": 8988.4181868944,
"base_cost_quote": 3355.263701855,
"unrealized_pnl_exit_net": -1637.0669965949
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 1152.9000000001,
"quote_asset_bal": 7324.5789333118,
"total_value_mid": 9022.8006333119,
"total_value_exit_net": 9021.5269670369,
"total_value": 9022.8006333119,
"base_cost_quote": 3300.1794896575,
"unrealized_pnl_exit_net": -1603.2314559324
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 1146.1200000001,
"quote_asset_bal": 7335.0264116518,
"total_value_mid": 9038.1607316519,
"total_value_exit_net": 9036.8833809119,
"total_value": 9038.1607316519,
"base_cost_quote": 3290.1575188125,
"unrealized_pnl_exit_net": -1588.3005495524
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 1190.1000000001,
"quote_asset_bal": 7270.7808259668,
"total_value_mid": 9009.5169259669,
"total_value_exit_net": 9008.2128738919,
"total_value": 9009.5169259669,
"base_cost_quote": 3355.2965364625,
"unrealized_pnl_exit_net": -1617.8644885374
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 1070.7300000001,
"quote_asset_bal": 7452.0321086843,
"total_value_mid": 9153.4220786843,
"total_value_exit_net": 9152.1460362068,
"total_value": 9153.4220786843,
"base_cost_quote": 3174.8800254875,
"unrealized_pnl_exit_net": -1474.7660979649
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 1015.3600000001,
"quote_asset_bal": 7543.8977414368,
"total_value_mid": 9235.4875014369,
"total_value_exit_net": 9234.2188091169,
"total_value": 9235.4875014369,
"base_cost_quote": 3084.6555878725,
"unrealized_pnl_exit_net": -1394.3345201924
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 1042.9200000001,
"quote_asset_bal": 7499.5344280343,
"total_value_mid": 9203.6657080343,
"total_value_exit_net": 9202.3876095743,
"total_value": 9203.6657080343,
"base_cost_quote": 3129.7705387275,
"unrealized_pnl_exit_net": -1426.9173571874
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 1036.6800000001,
"quote_asset_bal": 7510.2812872892,
"total_value_mid": 9221.8399672893,
"total_value_exit_net": 9220.5562982793,
"total_value": 9221.8399672893,
"base_cost_quote": 3119.7419429175,
"unrealized_pnl_exit_net": -1409.4669319274
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 954.0000000001,
"quote_asset_bal": 7651.9009099568,
"total_value_mid": 9331.8949099569,
"total_value_exit_net": 9330.6349144569,
"total_value": 9331.8949099569,
"base_cost_quote": 2979.411263785,
"unrealized_pnl_exit_net": -1300.6772592849
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 991.4300000001,
"quote_asset_bal": 7587.5274827093,
"total_value_mid": 9296.7528027094,
"total_value_exit_net": 9295.4708837194,
"total_value": 9296.7528027094,
"base_cost_quote": 3044.58436698,
"unrealized_pnl_exit_net": -1336.6409659699
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 942.5200000001,
"quote_asset_bal": 7674.6514057743,
"total_value_mid": 9343.8543257744,
"total_value_exit_net": 9342.6024235844,
"total_value": 9343.8543257744,
"base_cost_quote": 2959.3607671825,
"unrealized_pnl_exit_net": -1291.4097493724
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 940.5300000001,
"quote_asset_bal": 7682.3685350917,
"total_value_mid": 9385.6683650918,
"total_value_exit_net": 9384.3908902193,
"total_value": 9385.6683650918,
"base_cost_quote": 2954.3400044325,
"unrealized_pnl_exit_net": -1252.3176493049
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 832.7300000001,
"quote_asset_bal": 7890.9730175468,
"total_value_mid": 9505.6364875469,
"total_value_exit_net": 9504.4254899444,
"total_value": 9505.6364875469,
"base_cost_quote": 2748.8217412525,
"unrealized_pnl_exit_net": -1135.3692688549
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 782.1400000001,
"quote_asset_bal": 7998.2294333643,
"total_value_mid": 9709.5517533644,
"total_value_exit_net": 9708.2682616244,
"total_value": 9709.5517533644,
"base_cost_quote": 2643.5067341925,
"unrealized_pnl_exit_net": -933.4679059324
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 760.4800000001,
"quote_asset_bal": 8051.0922009243,
"total_value_mid": 9784.2261209244,
"total_value_exit_net": 9782.9262704844,
"total_value": 9784.2261209244,
"base_cost_quote": 2593.358100905,
"unrealized_pnl_exit_net": -861.5240313449
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 891.0800000001,
"quote_asset_bal": 7776.4484569968,
"total_value_mid": 9526.5295769969,
"total_value_exit_net": 9525.2170161569,
"total_value": 9526.5295769969,
"base_cost_quote": 2869.194383075,
"unrealized_pnl_exit_net": -1120.4258239149
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 912.6200000001,
"quote_asset_bal": 7738.3113984018,
"total_value_mid": 9471.3767784019,
"total_value_exit_net": 9470.0769793669,
"total_value": 9471.3767784019,
"base_cost_quote": 2909.290352515,
"unrealized_pnl_exit_net": -1177.5247715499
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 851.7200000001,
"quote_asset_bal": 7860.7463934068,
"total_value_mid": 9570.1484334069,
"total_value_exit_net": 9568.8663818769,
"total_value": 9570.1484334069,
"base_cost_quote": 2788.9949685925,
"unrealized_pnl_exit_net": -1080.8749801224
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 869.3600000001,
"quote_asset_bal": 7827.2421344293,
"total_value_mid": 9565.0927744294,
"total_value_exit_net": 9563.7893864494,
"total_value": 9565.0927744294,
"base_cost_quote": 2824.0933526525,
"unrealized_pnl_exit_net": -1087.5461006324
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 865.5900000001,
"quote_asset_bal": 7839.0128000468,
"total_value_mid": 9564.1336700469,
"total_value_exit_net": 9562.8398293944,
"total_value": 9564.1336700469,
"base_cost_quote": 2814.01561001,
"unrealized_pnl_exit_net": -1090.1885806624
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 801.6400000001,
"quote_asset_bal": 7971.6155757343,
"total_value_mid": 9677.5054957344,
"total_value_exit_net": 9676.2260782944,
"total_value": 9677.5054957344,
"base_cost_quote": 2683.639200985,
"unrealized_pnl_exit_net": -979.0286984249
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 912.7100000001,
"quote_asset_bal": 7752.9555422018,
"total_value_mid": 9485.2791222019,
"total_value_exit_net": 9483.9798795169,
"total_value": 9485.2791222019,
"base_cost_quote": 2904.3052064575,
"unrealized_pnl_exit_net": -1173.2808691424
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 995.6200000001,
"quote_asset_bal": 7605.1497840118,
"total_value_mid": 9338.5242040119,
"total_value_exit_net": 9337.2241731969,
"total_value": 9338.5242040119,
"base_cost_quote": 3054.73945759,
"unrealized_pnl_exit_net": -1322.6650684049
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 988.7200000001,
"quote_asset_bal": 7623.4995763719,
"total_value_mid": 9306.301016372,
"total_value_exit_net": 9305.038915292,
"total_value": 9306.301016372,
"base_cost_quote": 3039.66624115,
"unrealized_pnl_exit_net": -1358.1269022299
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 958.5400000001,
"quote_asset_bal": 7676.7091571419,
"total_value_mid": 9396.329917142,
"total_value_exit_net": 9395.040201572,
"total_value": 9396.329917142,
"base_cost_quote": 2989.5163068875,
"unrealized_pnl_exit_net": -1271.1852624574
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 966.4900000001,
"quote_asset_bal": 7664.5621124419,
"total_value_mid": 9393.612722442,
"total_value_exit_net": 9392.3159344845,
"total_value": 9393.612722442,
"base_cost_quote": 3004.5950474675,
"unrealized_pnl_exit_net": -1276.8412254249
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 983.4100000001,
"quote_asset_bal": 7637.2948883819,
"total_value_mid": 9370.063308382,
"total_value_exit_net": 9368.763732067,
"total_value": 9370.063308382,
"base_cost_quote": 3034.6334593925,
"unrealized_pnl_exit_net": -1303.1646157074
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 1135.9100000001,
"quote_asset_bal": 7395.2033785419,
"total_value_mid": 9062.719258542,
"total_value_exit_net": 9061.468621632,
"total_value": 9062.719258542,
"base_cost_quote": 3280.228787845,
"unrealized_pnl_exit_net": -1613.9635447549
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 1036.2800000001,
"quote_asset_bal": 7553.9240393144,
"total_value_mid": 9226.4799593144,
"total_value_exit_net": 9225.2255423744,
"total_value": 9226.4799593144,
"base_cost_quote": 3124.87113693,
"unrealized_pnl_exit_net": -1453.5696338699
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 1002.4900000001,
"quote_asset_bal": 7611.7010858944,
"total_value_mid": 9304.9066958945,
"total_value_exit_net": 9303.636791687,
"total_value": 9304.9066958945,
"base_cost_quote": 3069.7529893,
"unrealized_pnl_exit_net": -1377.8172835074
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 991.1000000001,
"quote_asset_bal": 7634.4436798444,
"total_value_mid": 9341.1178798445,
"total_value_exit_net": 9339.8378741945,
"total_value": 9341.1178798445,
"base_cost_quote": 3049.7174839325,
"unrealized_pnl_exit_net": -1344.3232895824
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 917.5200000001,
"quote_asset_bal": 7767.5632874344,
"total_value_mid": 9454.8825674345,
"total_value_exit_net": 9453.6170779745,
"total_value": 9454.8825674345,
"base_cost_quote": 2919.3959360225,
"unrealized_pnl_exit_net": -1233.3421454824
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 863.1300000001,
"quote_asset_bal": 7876.5540528194,
"total_value_mid": 9432.7774428195,
"total_value_exit_net": 9431.610275277,
"total_value": 9432.7774428195,
"base_cost_quote": 2814.0918171225,
"unrealized_pnl_exit_net": -1259.0355946649
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 726.2000000001,
"quote_asset_bal": 8169.9159104243,
"total_value_mid": 9710.1861104245,
"total_value_exit_net": 9709.0309077745,
"total_value": 9710.1861104245,
"base_cost_quote": 2523.15590872,
"unrealized_pnl_exit_net": -984.0409113699
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 773.2400000001,
"quote_asset_bal": 8086.3137083969,
"total_value_mid": 9588.719028397,
"total_value_exit_net": 9587.592224407,
"total_value": 9588.719028397,
"base_cost_quote": 2608.3637567125,
"unrealized_pnl_exit_net": -1107.0852407024
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 813.0400000001,
"quote_asset_bal": 8013.3089139544,
"total_value_mid": 9536.9458739545,
"total_value_exit_net": 9535.8031462345,
"total_value": 9536.9458739545,
"base_cost_quote": 2683.5956183225,
"unrealized_pnl_exit_net": -1161.1013860424
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 802.9000000001,
"quote_asset_bal": 8035.5272875544,
"total_value_mid": 9538.5560875545,
"total_value_exit_net": 9537.4288159545,
"total_value": 9538.5560875545,
"base_cost_quote": 2663.529009645,
"unrealized_pnl_exit_net": -1161.6274812449
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 847.0000000001,
"quote_asset_bal": 7962.3535974369,
"total_value_mid": 9442.909597437,
"total_value_exit_net": 9441.799180437,
"total_value": 9442.909597437,
"base_cost_quote": 2738.7115843175,
"unrealized_pnl_exit_net": -1259.2660013174
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 873.4300000001,
"quote_asset_bal": 7919.0599847968,
"total_value_mid": 9416.9924347969,
"total_value_exit_net": 9415.8689854594,
"total_value": 9416.9924347969,
"base_cost_quote": 2783.82154143,
"unrealized_pnl_exit_net": -1287.0125407674
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 973.5100000001,
"quote_asset_bal": 7755.0855714493,
"total_value_mid": 9299.0724314494,
"total_value_exit_net": 9297.9144413044,
"total_value": 9299.0724314494,
"base_cost_quote": 2949.21497354,
"unrealized_pnl_exit_net": -1406.3861036849
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 1074.2100000001,
"quote_asset_bal": 7600.6214675968,
"total_value_mid": 9209.7880475969,
"total_value_exit_net": 9208.5811726619,
"total_value": 9209.7880475969,
"base_cost_quote": 3104.5862246475,
"unrealized_pnl_exit_net": -1496.6265195824
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 1060.9700000001,
"quote_asset_bal": 7622.0333530018,
"total_value_mid": 9223.0370830019,
"total_value_exit_net": 9221.8363302044,
"total_value": 9223.0370830019,
"base_cost_quote": 3084.5233287525,
"unrealized_pnl_exit_net": -1484.7203515499
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 909.0700000001,
"quote_asset_bal": 7865.4787386568,
"total_value_mid": 9389.0800586569,
"total_value_exit_net": 9387.9373576669,
"total_value": 9389.0800586569,
"base_cost_quote": 2843.9752328875,
"unrealized_pnl_exit_net": -1321.5166138774
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 879.3500000001,
"quote_asset_bal": 7918.6833737043,
"total_value_mid": 9420.6131737044,
"total_value_exit_net": 9419.4867263544,
"total_value": 9420.6131737044,
"base_cost_quote": 2793.83948926,
"unrealized_pnl_exit_net": -1293.0361366099
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 940.5000000001,
"quote_asset_bal": 7820.4359200893,
"total_value_mid": 9337.4624200894,
"total_value_exit_net": 9336.3246502144,
"total_value": 9337.4624200894,
"base_cost_quote": 2894.0768809625,
"unrealized_pnl_exit_net": -1378.1881508374
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 1034.4700000001,
"quote_asset_bal": 7676.6431598793,
"total_value_mid": 9219.0379298794,
"total_value_exit_net": 9217.8811338019,
"total_value": 9219.0379298794,
"base_cost_quote": 3039.40236339,
"unrealized_pnl_exit_net": -1498.1643894674
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 1001.2200000001,
"quote_asset_bal": 7728.2422585418,
"total_value_mid": 9256.1039785419,
"total_value_exit_net": 9254.9580822519,
"total_value": 9256.1039785419,
"base_cost_quote": 2989.3040077825,
"unrealized_pnl_exit_net": -1462.5881840724
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 1007.9400000001,
"quote_asset_bal": 7719.9448254443,
"total_value_mid": 9256.0453854444,
"total_value_exit_net": 9254.8933100244,
"total_value": 9256.0453854444,
"base_cost_quote": 2999.330712175,
"unrealized_pnl_exit_net": -1464.3822275949
}
]
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 (160,838 closed trades) via GET /backtests/9bee9938-0373-4fcd-9191-8a01a74454a1/trades (paginate through all pages).100-row audit sample from 160,838 closed trades (RFC 4180 CSV)
100-row audit sample from 160,838 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-06-20T13:01:00Z,2024-07-20T15:40:00Z,4.796,4.808,1.05,,,0.00503685,0.1000208507,0.00377685,0.0037863,,,TP
,,2024-06-20T13:02:00Z,2024-06-20T13:02:00Z,4.604,4.616,1.09,,,0.00554265,0.110447437,0.00376377,0.00377358,,,TP
,,2024-06-20T13:06:00Z,2024-06-20T13:06:00Z,4.596,4.608,1.09,,,0.00555573,0.1109007833,0.00375723,0.00376704,,,TP
,,2024-06-20T13:07:00Z,2024-06-20T13:07:00Z,4.436,4.448,1.13,,,0.00603081,0.1203110911,0.00375951,0.00376968,,,TP
,,2024-06-20T13:08:00Z,2024-06-20T13:08:00Z,4.271,4.282,1.18,,,0.0053647425,0.1073577616,0.003779835,0.003757455,,,TP
,,2024-06-20T13:09:00Z,2024-07-06T08:28:00Z,4.355,4.366,1.15,,,0.0051281375,0.1023938002,0.0037561875,0.003765675,,,TP
,,2024-06-20T13:11:00Z,2024-06-20T13:11:00Z,4.167,4.178,1.2,,,0.0056895,0.1137808975,0.0037503,0.0037602,,,TP
,,2024-06-20T13:12:00Z,2024-06-20T13:12:00Z,4.146,4.157,1.21,,,0.0057750275,0.1151169802,0.003762495,0.0037724775,,,TP
,,2024-06-20T13:13:00Z,2024-06-20T13:13:00Z,4.049,4.06,1.24,,,0.00609863,0.1214682638,0.00376557,0.0037758,,,TP
,,2024-06-20T13:13:00Z,2024-06-20T13:14:00Z,4.048,4.059,1.24,,,0.00610049,0.1215353261,0.00376464,0.00377487,,,TP
,,2024-06-20T13:18:00Z,2024-06-20T13:18:00Z,4.206,4.217,1.19,,,0.005525645,0.1113349976,0.003753855,0.003732045,,,TP
,,2024-06-20T13:19:00Z,2024-06-20T13:24:00Z,4.124,4.135,1.22,,,0.005863015,0.1165312803,0.00377346,0.003783525,,,TP
,,2024-06-20T13:20:00Z,2024-06-20T13:20:00Z,4.215,4.226,1.19,,,0.005509715,0.110776987,0.0037618875,0.00374001,,,TP
,,2024-06-20T13:21:00Z,2024-06-20T13:22:00Z,4.204,4.215,1.19,,,0.005529185,0.1114593245,0.00375207,0.003730275,,,TP
,,2024-06-20T13:23:00Z,2024-06-20T13:23:00Z,4.212,4.223,1.19,,,0.005515025,0.1109627255,0.00375921,0.003737355,,,TP
,,2024-06-20T13:24:00Z,2024-07-03T08:31:00Z,4.209,4.22,1.19,,,0.005520335,0.1111487289,0.0037565325,0.0037347,,,TP
,,2024-06-20T13:25:00Z,2024-06-20T13:25:00Z,4.12,4.131,1.22,,,0.005870335,0.1167900485,0.0037698,0.003779865,,,TP
,,2024-06-20T13:26:00Z,2024-06-20T13:26:00Z,4.122,4.133,1.22,,,0.005866675,0.1166606016,0.00377163,0.003781695,,,TP
,,2024-06-20T13:27:00Z,2024-06-20T13:27:00Z,4.064,4.075,1.24,,,0.00607073,0.1204662894,0.00377952,0.00378975,,,TP
,,2024-06-20T13:28:00Z,2024-06-20T13:28:00Z,4.045,4.056,1.24,,,0.00610607,0.121736712,0.00376185,0.00377208,,,TP
,,2024-06-20T13:31:00Z,2024-06-20T13:31:00Z,4.043,4.054,1.24,,,0.00610979,0.1218711353,0.00375999,0.00377022,,,TP
,,2024-06-20T13:31:00Z,2024-06-20T13:32:00Z,4.03,4.041,1.25,,,0.0061834375,0.122748139,0.003778125,0.0037884375,,,TP
,,2024-06-20T13:33:00Z,2024-06-20T13:33:00Z,3.908,3.918,1.28,,,0.00528704,0.1056934493,0.00375168,0.00376128,,,TP
,,2024-06-20T13:34:00Z,2024-06-20T13:34:00Z,3.837,3.847,1.31,,,0.00555047,0.1104248111,0.0037698525,0.0037796775,,,TP
,,2024-06-20T13:38:00Z,2024-06-20T13:38:00Z,3.912,3.922,1.28,,,0.00527936,0.1054320041,0.00375552,0.00376512,,,TP
,,2025-02-28T06:46:00Z,2025-02-28T06:47:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-03-19T13:24:00Z,2025-03-19T13:26:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-03-19T16:45:00Z,2025-03-19T16:46:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-03-19T18:33:00Z,2025-03-19T18:35:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-03-19T18:46:00Z,2025-03-19T18:52:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-08T15:12:00Z,2025-04-08T15:20:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-10T18:52:00Z,2025-04-10T19:00:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-10T23:00:00Z,2025-04-10T23:42:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-16T22:04:00Z,2025-04-16T22:05:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-16T22:07:00Z,2025-04-16T22:11:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-18T01:54:00Z,2025-04-18T02:02:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-18T05:04:00Z,2025-04-18T05:07:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-04-18T06:05:00Z,2025-04-18T07:06:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-05-06T17:38:00Z,2025-05-06T18:17:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-05-06T20:01:00Z,2025-05-06T20:13:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-06-03T02:28:00Z,2025-07-18T05:58:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-07-21T11:47:00Z,2025-07-21T12:21:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-08-11T13:53:00Z,2025-08-11T13:55:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-09-27T08:30:00Z,2025-09-27T08:30:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-09-27T08:31:00Z,2025-09-28T03:43:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-10-08T05:12:00Z,2025-10-08T09:40:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-10-08T10:45:00Z,2025-10-08T10:45:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-10-09T05:46:00Z,2025-10-09T05:50:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-10-09T05:54:00Z,2025-10-09T06:32:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2025-11-21T23:06:00Z,2025-11-21T23:09:00Z,1.208,1.212,4.14,,,0.00902405,0.1808774834,0.00375084,0.00375417,,,TP
,,2025-11-21T23:07:00Z,2025-11-21T23:08:00Z,1.204,1.208,4.16,,,0.00911456,0.1819767442,0.00375648,0.00376896,,,TP
,,2025-11-22T05:33:00Z,2025-11-22T05:36:00Z,1.21,1.214,4.14,,,0.00901166,0.1803305785,0.00375705,0.003760365,,,TP
,,2025-11-22T05:38:00Z,2025-11-22T05:55:00Z,1.209,1.213,4.14,,,0.009017855,0.1806038048,0.003753945,0.0037572675,,,TP
,,2025-11-22T05:40:00Z,2025-11-22T05:55:00Z,1.207,1.211,4.15,,,0.009073975,0.1811516156,0.0037567875,0.0037692375,,,TP
,,2025-11-22T05:41:00Z,2025-11-22T05:45:00Z,1.205,1.209,4.15,,,0.009086425,0.1817012448,0.0037505625,0.0037630125,,,TP
,,2025-11-22T06:04:00Z,2025-11-22T06:16:00Z,1.209,1.213,4.14,,,0.009017855,0.1806038048,0.003753945,0.0037572675,,,TP
,,2025-11-22T06:05:00Z,2025-11-22T06:13:00Z,1.204,1.208,4.16,,,0.00911456,0.1819767442,0.00375648,0.00376896,,,TP
,,2025-11-22T08:33:00Z,2025-11-22T08:35:00Z,1.21,1.214,4.14,,,0.00901166,0.1803305785,0.00375705,0.003760365,,,TP
,,2025-11-22T09:21:00Z,2025-11-22T09:32:00Z,1.209,1.213,4.14,,,0.009017855,0.1806038048,0.003753945,0.0037572675,,,TP
,,2025-11-22T09:30:00Z,2025-11-22T09:32:00Z,1.207,1.211,4.15,,,0.009073975,0.1811516156,0.0037567875,0.0037692375,,,TP
,,2025-12-01T14:31:00Z,2025-12-01T14:33:00Z,1.207,1.211,4.15,,,0.009073975,0.1811516156,0.0037567875,0.0037692375,,,TP
,,2025-12-01T15:28:00Z,2025-12-01T20:02:00Z,1.209,1.213,4.14,,,0.009017855,0.1806038048,0.003753945,0.0037572675,,,TP
,,2025-12-01T15:29:00Z,2025-12-01T20:01:00Z,1.207,1.211,4.15,,,0.009073975,0.1811516156,0.0037567875,0.0037692375,,,TP
,,2025-12-01T15:30:00Z,2025-12-01T15:52:00Z,1.203,1.207,4.16,,,0.0091208,0.1822527016,0.00375336,0.00376584,,,TP
,,2025-12-01T15:55:00Z,2025-12-01T18:22:00Z,1.203,1.207,4.16,,,0.0091208,0.1822527016,0.00375336,0.00376584,,,TP
,,2025-12-01T18:16:00Z,2025-12-01T18:57:00Z,1.205,1.209,4.15,,,0.009086425,0.1817012448,0.0037505625,0.0037630125,,,TP
,,2025-12-01T18:25:00Z,2025-12-01T18:57:00Z,1.203,1.207,4.16,,,0.0091208,0.1822527016,0.00375336,0.00376584,,,TP
,,2025-12-01T18:30:00Z,2025-12-01T18:55:00Z,1.201,1.205,4.17,,,0.009155235,0.182805995,0.0037561275,0.0037686375,,,TP
,,2025-12-01T18:58:00Z,2025-12-01T18:59:00Z,1.202,1.206,4.16,,,0.00912704,0.1825291181,0.00375024,0.00376272,,,TP
,,2025-12-01T19:08:00Z,2025-12-01T19:56:00Z,1.204,1.208,4.16,,,0.00911456,0.1819767442,0.00375648,0.00376896,,,TP
,,2025-12-01T19:10:00Z,2025-12-01T19:51:00Z,1.202,1.206,4.16,,,0.00912704,0.1825291181,0.00375024,0.00376272,,,TP
,,2025-12-31T18:00:00Z,2025-12-31T18:07:00Z,1.21,1.214,4.14,,,0.00901166,0.1803305785,0.00375705,0.003760365,,,TP
,,2025-12-31T18:54:00Z,2025-12-31T19:04:00Z,1.209,1.213,4.14,,,0.009017855,0.1806038048,0.003753945,0.0037572675,,,TP
,,2025-12-31T18:58:00Z,2025-12-31T19:02:00Z,1.207,1.211,4.15,,,0.009073975,0.1811516156,0.0037567875,0.0037692375,,,TP
,,2026-02-11T04:43:00Z,2026-02-11T04:46:00Z,2.4,2.406,2.09,,,0.00498264,0.0998125,0.003762,0.00375336,,,TP
,,2026-02-25T13:00:00Z,2026-02-25T23:42:00Z,1.499,1.503,3.34,,,0.00583999,0.1166444296,0.003754995,0.003765015,,,TP
,,2026-02-25T15:22:00Z,2026-02-25T23:20:00Z,1.534,1.538,3.26,,,0.00552896,0.1105606258,0.00375063,0.00376041,,,TP
,,2026-02-25T21:37:00Z,2026-02-25T22:03:00Z,1.596,1.6,3.14,,,0.00503342,0.1004385965,0.00375858,0.003768,,,TP
,,2026-02-25T21:41:00Z,2026-02-25T21:52:00Z,1.583,1.587,3.16,,,0.0051271,0.1024952622,0.00375171,0.00376119,,,TP
,,2026-02-25T21:53:00Z,2026-02-25T22:00:00Z,1.582,1.586,3.17,,,0.00514808,0.1026548673,0.003761205,0.003770715,,,TP
,,2026-02-25T21:56:00Z,2026-02-25T22:00:00Z,1.58,1.584,3.17,,,0.00515759,0.1029746835,0.00375645,0.00376596,,,TP
,,2026-02-25T21:57:00Z,2026-02-25T21:59:00Z,1.574,1.578,3.18,,,0.00520248,0.1039390089,0.00375399,0.00376353,,,TP
,,2026-02-25T22:02:00Z,2026-02-25T22:03:00Z,1.589,1.593,3.15,,,0.005082525,0.1015418502,0.0037540125,0.0037634625,,,TP
,,2026-02-25T22:02:00Z,2026-02-25T22:02:00Z,1.589,1.593,3.15,,,0.005082525,0.1015418502,0.0037540125,0.0037634625,,,TP
,,2026-02-25T22:05:00Z,2026-02-25T22:11:00Z,1.594,1.598,3.14,,,0.00504284,0.1007528231,0.00375387,0.00376329,,,TP
,,2026-02-25T22:07:00Z,2026-02-25T22:11:00Z,1.592,1.596,3.15,,,0.00506835,0.1010678392,0.0037611,0.00377055,,,TP
,,2026-02-25T22:40:00Z,2026-02-25T22:41:00Z,1.56,1.564,3.21,,,0.00531897,0.1062179487,0.0037557,0.00376533,,,TP
,,2026-02-25T22:50:00Z,2026-02-25T22:58:00Z,1.546,1.55,3.24,,,0.00543672,0.108538163,0.00375678,0.0037665,,,TP
,,2026-02-25T22:53:00Z,2026-02-25T22:57:00Z,1.544,1.548,3.24,,,0.00544644,0.108873057,0.00375192,0.00376164,,,TP
,,2026-02-25T22:58:00Z,2026-02-25T23:11:00Z,1.549,1.553,3.23,,,0.005405405,0.1080374435,0.0037524525,0.0037621425,,,TP
,,2026-02-25T23:00:00Z,2026-02-25T23:11:00Z,1.547,1.551,3.24,,,0.00543186,0.1083710407,0.00375921,0.00376893,,,TP
,,2026-02-25T23:02:00Z,2026-02-25T23:05:00Z,1.544,1.548,3.24,,,0.00544644,0.108873057,0.00375192,0.00376164,,,TP
,,2026-02-25T23:22:00Z,2026-02-25T23:26:00Z,1.532,1.536,3.27,,,0.00555573,0.1109007833,0.00375723,0.00376704,,,TP
,,2026-02-25T23:33:00Z,2026-02-25T23:36:00Z,1.522,1.526,3.29,,,0.00563906,0.1126149803,0.003755535,0.003765405,,,TP
,,2026-02-25T23:36:00Z,2026-02-25T23:38:00Z,1.524,1.528,3.29,,,0.00562919,0.1122703412,0.00376047,0.00377034,,,TP
,,2026-02-25T23:40:00Z,2026-02-25T23:52:00Z,1.514,1.518,3.31,,,0.00571306,0.114002642,0.003758505,0.003768435,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:52:00Z,1.509,1.513,3.32,,,0.00575522,0.1148774023,0.00375741,0.00376737,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:44:00Z,1.5,1.504,3.34,,,0.00583498,0.1164666667,0.0037575,0.00376752,,,TP
,,2026-02-25T23:49:00Z,2026-02-25T23:50:00Z,1.503,1.507,3.33,,,0.005802525,0.1159347971,0.0037537425,0.0037637325,,,TP
,,2026-02-25T23:56:00Z,2026-02-25T23:59:00Z,1.521,1.525,3.29,,,0.005643995,0.1127876397,0.0037530675,0.0037629375,,,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 ZROUSDT?
Did it beat Buy & Hold of ZROUSDT?
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 ZROUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 9,254.89 USDT
P&L: -745.11 USDT (-7.45%)
Result: LOSS
Completed trades: 160838
Open orders at end: 597
Win rate: 100.0%
Avg. profit/trade: 0.005950 USDT
Best trade: 0.009155 USDT
Worst trade: 0.004983 USDT
Total profit (trades only): 957.007963 USDT
Max drawdown: -17.34%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.20
Total fees: 1,211.42 USDT
Avg hold time: 11.8h
TP / SL / TSL: 160838 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 1050.5s
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":"ZROUSDT","mode_name":"3LongTimeLong.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.01,"stopLoss":false,"tickSize":0.001,"buySplits":9,"buyVolumes":[20,15,10,10,10,10,5,5,5],"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,10,15],"triggerCoolDown":1,"investmentPerBuy":25,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":25,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0,0,0,0],"sellCancelDistancePercentage":1,"dontBuyBelowQuoteAssetBalance":1,"investmentPerFreeQuotePercent":0.01,"sellActivateDistancePercentage":0.1}'
Structured Data (JSON-LD)
Dataset markup with 34 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": "ZROUSDT LongTimeLong Backtest",
"alternateName": "ZROUSDT-3LongTimeLong.json-9bee9938-0373-4fcd-9191-8a01a74454a1",
"description": "Backtest of the LongTimeLong strategy on ZROUSDT: -7.45% return over 2024-04-24 to 2026-02-25.",
"identifier": "9bee9938-0373-4fcd-9191-8a01a74454a1",
"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": [
"ZROUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "ZROUSDT",
"description": "Trading pair: ZROUSDT"
},
{
"@type": "Thing",
"name": "LongTimeLong",
"description": "Trading strategy: LongTimeLong"
}
],
"measurementTechnique": "Historical OHLCV replay with deterministic order-fill simulation (TP / SL / Trailing-SL)",
"variableMeasured": [
{
"@type": "PropertyValue",
"name": "Return",
"value": -7.4511,
"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": 957.00796331,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 9254.89331002,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 160838,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 597,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.00915523,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00498264,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00595014,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 1050.46,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -4.49460562138202,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -17.3397768606787,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -1811.2769913997,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 85,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.20072188562804394,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.19342780654092637,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 16.16866623662905,
"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": 615,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Equity Samples",
"value": 616,
"unitText": "points",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Expectancy per Trade",
"value": 0.006288552750000002,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.006288552750000002,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.0055290725,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.6288552750000003,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7521062250000005,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1003.7728199999996,
"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": 0.11666666666666667,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 32.389029535864985,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 7273.705382340583,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:13.939Z",
"dateModified": "2026-05-15T13:01:03.077Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:03 UTC