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.
QKCUSDT * LongTimeLong
QKCUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | +1.21% | 114,623 closed trades | 100.0% closed WR | 221 open orders
Headline Performance
GET /backtests/{id} + /equity + /trades * Fields used: return_pct, final_value, total_profit, win_rate, fulfilled_trades, active_orders, unrealized_pnl_exit_net, max_profit, min_profitfinal_value - start_balance.Return
Final Value
Portfolio PnL
Realized Profit
Unrealized PnL
Win Rate (closed)
Closed Trades
Open Orders
Best Closed Trade
Worst Closed Trade
TL;DR
Performance KPI Metrics
GET /backtests/{id} + /equity + /trades * Fields used: server aggregates from /daily-stats and /extras (Total Fees, Gross Profit/Loss, fill-type counts) plus <AnalyticsCharts> KPI strip * Transform: bt.* + dailyStats.totals + extras.deep_dive.fill_type_breakdownMax Drawdown
Profit Factor
Sharpe Ratio
Total Fees
Avg Hold Time
TP / SL / TSL
Trade Economics
| Metric | Value | Interpretation |
|---|---|---|
| Profit Factor | inf (no losing trades) | Sum of winning trades / sum of losing trades. >1 = profitable edge, >2 = strong, inf = no losses. |
| Gross Profit | 1,472.65 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 861.47 USDT | Buy + sell fees across all trades. |
| Fee Drag | 58.5% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 15.1 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 114,623 | 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 QKCUSDT, 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 58.5% 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="2630fcca-cbc1-4150-90a8-6ff91549dd06" */}
...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 QKCUSDT, 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 QKCUSDT 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: QKCUSDT 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 1.21% return on QKCUSDT a good backtest result?
Is a 1.21% return on QKCUSDT 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 QKCUSDT backtest?
What is the annualised return for this QKCUSDT 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 QKCUSDT?
How is this backtest different from others on QKCUSDT?
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 | QKCUSDT |
| 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 | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 10,120.73 USDT |
| Avg Profit / Trade | +0.0053 USDT |
| Trades / Month | 5183.7 |
| Status | completed |
| Created | 2026-05-08 13:39:11 UTC |
| Started | 2026-05-08 22:48:58 UTC |
| Completed | 2026-05-08 22:58:44 UTC |
| Compute Time | 7m 53s |
| Backtest ID | 2630fcca-cbc1-4150-90a8-6ff91549dd06 |
| Engine summary: |
Backtest QKCUSDT (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: 10,120.73 USDT
P&L: +120.73 USDT (+1.21%)
Result: PROFIT
Completed trades: 114623
Open orders at end: 221
Win rate: 100.0%
Avg. profit/trade: 0.005332 USDT
Best trade: 0.006552 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 611.172644 USDT
Max drawdown: -4.92%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.14
Total fees: 861.47 USDT
Avg hold time: 15.1h
TP / SL / TSL: 114623 / 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: 472.7s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned +1.21% over the tested window | return_pct = 1.2073 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 10,120.73 USDT | final_value - start_balance = +120.73 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 114623 of 114623 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 4.92% | max_drawdown_pct = 4.9228 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = 0.14 | sharpe_annualized = 0.1412 | 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 | 1 |
stopLoss | false |
tickSize | 0.000001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "QKCUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 1,
"stopLoss": false,
"tickSize": 0.000001,
"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 | 1 | 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.000001 | 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: QKCUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 1
stopLoss: false
tickSize: 0.000001
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 | QKCUSDT | 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,369 | ## ## ######
| ::##::## #### #::::::##
| ## ## #::::::::# ::::###:::::::::### ##
| ::#::###::::::::::####:::::::::::::::::::####::###
| #::::::::::::::::::::::::::::::::::::::::::::::::::
|#### #:::::::::::::::::::::::::::::::::::::::::::::::::::
|::::# ::::::::::::::::::::::::::::::::::::::::::::::::::::
|::::: ::::::::::::::::::::::::::::::::::::::::::::::::::::
|:::::# #::::::::::::::::::::::::::::::::::::::::::::::::::::
9,629 |::::::#:::::::::::::::::::::::::::::::::::::::::::::::::::::
+------------------------------------------------------------
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,015.81 USDT @ 2024-05-21 23:59:00 UTC |
| Trough | 9,522.75 USDT @ 2024-07-05 23:59:00 UTC |
| Drawdown Duration | 45.0 days |
| Recovery | 2024-07-28 23:59:00 UTC (23.0 days to recover) |
| All-time Peak | 10,450.01 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) | 9,509.55 | 9,509.55 | 94.0% |
| QKC | 184,451.00000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 611.18 | 6.0% |
| Total | - | 10,120.73 | 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.56 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.56 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 | 860.72 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 221 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 861.47 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 | 153959.61% | 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/2630fcca-cbc1-4150-90a8-6ff91549dd06/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.375227 + 0.376211
= 0.751438 USDT
(B) bt.total_fees = 861.474763 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 861.474763 - 0.751438
= 860.723325 USDT
Identity check: (A) + (C) ?= (B)
0.751438 + 860.723325 = 861.474763 USDT
vs bt.total_fees = 861.474763 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 221 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.1h | 11.9h | 191.8h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:02:00 UTC | 2026-02-25 23:52:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +0.56 USDT | +0.11% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 25 | 25 | 100.0% | +0.13 |
| 2024-06 | 1 | 1 | 100.0% | +0.00 |
| 2024-08 | 3 | 3 | 100.0% | +0.01 |
| 2024-11 | 3 | 3 | 100.0% | +0.01 |
| 2024-12 | 4 | 4 | 100.0% | +0.02 |
| 2025-01 | 1 | 1 | 100.0% | +0.00 |
| 2025-02 | 4 | 4 | 100.0% | +0.02 |
| 2025-03 | 1 | 1 | 100.0% | +0.00 |
| 2025-05 | 1 | 1 | 100.0% | +0.00 |
| 2025-07 | 1 | 1 | 100.0% | +0.00 |
| 2025-12 | 3 | 3 | 100.0% | +0.01 |
| 2026-01 | 3 | 3 | 100.0% | +0.01 |
| 2026-02 | 50 | 50 | 100.0% | +0.31 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2026-02-05 -> 2026-02-05 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 2 | TP | 2026-02-05 -> 2026-02-05 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 3 | TP | 2026-02-06 -> 2026-02-06 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 4 | TP | 2026-02-12 -> 2026-02-12 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 5 | TP | 2026-02-25 -> 2026-02-25 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 6 | TP | 2026-02-25 -> 2026-02-25 | 0.003201 | 0.003210 | +0.0066 | +0.13% |
| 7 | TP | 2026-02-06 -> 2026-02-06 | 0.003202 | 0.003211 | +0.0065 | +0.13% |
| 8 | TP | 2026-02-10 -> 2026-02-12 | 0.003202 | 0.003211 | +0.0065 | +0.13% |
| 9 | TP | 2026-02-05 -> 2026-02-06 | 0.003203 | 0.003212 | +0.0065 | +0.13% |
| 10 | TP | 2026-02-06 -> 2026-02-06 | 0.003203 | 0.003212 | +0.0065 | +0.13% |
Top 10 Losers
Top 10 Losers
Charts Catalogue
GET /backtests/{id} + /equity + /trades * Fields used: every chart from the live <AnalyticsCharts> UI, with the exact transform + API fields it consumesX-API-Key.- Equity & Balance
- Trade Analysis
- Risk & Recovery
- Deep Dive
- Advanced
Drawdown
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: computeDrawdown(equity)drawdown).| Stat | Value |
|---|---|
| Shallowest DD | 0.00% @ 2024-04-24 23:59:00 UTC |
| Deepest DD | -4.92% @ 2024-07-05 23:59:00 UTC |
| Mean | -1.73% |
| Std Dev | 1.05% |
| Last | -3.15% |
| Points | 673 |
| Across 673 points the series ranged from -4.92% (2024-07-05 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -1.73%. 0% of points were positive, 97% negative. The most recent value is -3.15%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-05T23:59:00+00:00","drawdown":-0.02345547002100213},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.1767007403706596},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.13097962425370985},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.8086366469231802},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-2.7675099558488516},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-2.7959967163572066},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-3.403061064398299},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-2.567733551117515},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-2.993809031524707},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-0.5733866881173106},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-1.0981303900270634},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-1.6853055276668047},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-1.0731213671233042},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-0.7086284049789487},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-0.9773969264305096},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-1.315469021823967},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-2.082410110162258},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-0.5192948813319662},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":0},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":0},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-2.9925497020318175},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-1.6570236287745856},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-0.3108540752681098},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-0.8873143873462755},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-1.6286753922091897},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-1.2827775412083517},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-2.1937816301568502},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-3.1666055991661044},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-2.6005306853706553},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-3.3142483937553973},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-2.4128407303234045},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-1.695730902644231},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-1.7134453704716175},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-1.3731323317925628},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-1.679797110178574},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-1.8850378323295158},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-2.3890103339912656},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-2.6139628167330455},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-1.1945365578334386},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-0.9617728680520375},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-0.7897104245717889},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-0.8449436676273424},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-0.9693807631406441},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-1.0191741053345618},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-1.0967603099794239},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-1.4186667886494688},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-2.4095405677515562},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-2.2081090737166265},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-3.0576049925097153},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-2.99022722254336},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-3.019829364256501},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-3.1193290417742436},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-3.633145185372863},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-3.375586785246059},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-2.37616558324887},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-2.7707493064449427},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-2.645472604924654},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-2.9413838587869536},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-3.151030526108894}]
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 | 241.09 USDT @ 2024-11-27 23:59:00 UTC |
| Worst Unrealized | -573.28 USDT @ 2026-02-05 23:59:00 UTC |
| Mean | -149.04 USDT |
| Std Dev | 179.40 USDT |
| Last | -490.45 USDT |
| Points | 673 |
| Sum | -100,307.15 USDT |
| Across 673 points the series ranged from -573.28 USDT (2026-02-05 23:59:00 UTC) to 241.09 USDT (2024-11-27 23:59:00 UTC), averaging -149.04 USDT. 22% of points were positive, 78% negative. The most recent value is -490.45 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-10.1975416057},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-16.457406558},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":-38.915803363},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":-29.2686892933},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-105.5024729438},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-312.9327376508},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-326.9615051875},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-393.0985509115},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-316.072598771},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-227.0325979477},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":94.402315358},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":32.2274119385},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-34.3659930867},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":23.199047067},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":54.5330706847},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":21.0609927067},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-16.9024940738},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-104.1946123593},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":44.4022375647},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":162.8488981327},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":227.9978554072},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-102.889158912},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":17.5777641035},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":141.871451377},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":68.421933341},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-28.0018803223},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-3.262474251},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-107.4680628245},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-219.4136513987},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-169.6919985892},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-249.7584082852},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-169.9848121415},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-108.3276496208},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-122.2553122133},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-97.139641727},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-137.489896826},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-165.380051634},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-224.1695723495},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-256.797351229},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-121.0428082235},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-109.886933682},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-88.9719613793},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-101.6249432688},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-122.0887460048},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-132.0332214467},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-143.7816749988},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-183.0110636053},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-293.963948664},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-286.2817559075},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-382.9382775805},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-389.2501035928},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-403.7452959065},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-424.267415864},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-485.4969194478},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-465.158116554},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-370.1516433175},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-417.5058320567},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-416.7746425313},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-458.415457402},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-490.4452329513}]
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,450.01 USDT @ 2025-07-30 23:59:00 UTC |
| Trough Total Equity | 9,522.75 USDT @ 2024-07-05 23:59:00 UTC |
| Mean | 10,168.45 USDT |
| Std Dev | 163.55 USDT |
| Last | 10,120.73 USDT |
| Points | 673 |
| Sum | 6,843,365.95 USDT |
| Across 673 points the series ranged from 9,522.75 USDT (2024-07-05 23:59:00 UTC) to 10,450.01 USDT (2025-07-30 23:59:00 UTC), averaging 10,168.45 USDT. 100% of points were positive, 0% negative. The most recent value is 10,120.73 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9817.266256269,"base":175.20802235480005,"total":9992.4742786238},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9716.1053455672,"base":284.19767576199956,"total":10000.3030213292},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9542.8717604113,"base":442.1026741249989,"total":9984.9744345363},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9631.0833871166,"base":371.60460935850097,"total":10002.6879964751},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9373.9632349246,"base":560.8519443256992,"total":9934.8151792503},{"timestamp":"2024-06-20T23:59:00+00:00","quote":8739.1567845593,"base":999.4614313074999,"total":9738.6182158668},{"timestamp":"2024-07-01T23:59:00+00:00","quote":8690.2257340444,"base":1045.5393029655006,"total":9735.7650370099},{"timestamp":"2024-07-13T23:59:00+00:00","quote":8470.1993562487,"base":1204.763289344999,"total":9674.9626455937},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8717.2253671005,"base":1041.4020672212991,"total":9758.6274343218},{"timestamp":"2024-08-05T23:59:00+00:00","quote":9105.5115538487,"base":759.5076457219984,"total":9865.0191995707},{"timestamp":"2024-08-16T23:59:00+00:00","quote":9647.3138493707,"base":565.1578934400004,"total":10212.4717428107},{"timestamp":"2024-08-27T23:59:00+00:00","quote":9430.1561335651,"base":728.4172610120004,"total":10158.5733945771},{"timestamp":"2024-09-08T23:59:00+00:00","quote":9301.2783275949,"base":796.9841572419991,"total":10098.2624848369},{"timestamp":"2024-09-19T23:59:00+00:00","quote":9431.7991207952,"base":729.3430421550001,"total":10161.1421629502},{"timestamp":"2024-09-30T23:59:00+00:00","quote":9528.0293034777,"base":670.5512670814987,"total":10198.5805705592},{"timestamp":"2024-10-12T23:59:00+00:00","quote":9443.7239801574,"base":727.2503908215003,"total":10170.9743709789},{"timestamp":"2024-10-23T23:59:00+00:00","quote":9306.7197448602,"base":829.5300025371998,"total":10136.2497473974},{"timestamp":"2024-11-04T23:59:00+00:00","quote":9154.9949488435,"base":902.4794693722997,"total":10057.4744182158},{"timestamp":"2024-11-15T23:59:00+00:00","quote":9557.5799780528,"base":660.4477324199997,"total":10218.0277104728},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9897.5593610758,"base":453.3090830099991,"total":10350.8684440858},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9758.9053609793,"base":673.8128420642988,"total":10432.7182030436},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9061.2279383306,"base":1059.2859872139998,"total":10120.5139255446},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9566.047761227,"base":693.7978360686993,"total":10259.8455972957},{"timestamp":"2025-01-11T23:59:00+00:00","quote":9737.4664004197,"base":662.8212729285005,"total":10400.2876733482},{"timestamp":"2025-01-22T23:59:00+00:00","quote":9595.5311786087,"base":744.6160148279996,"total":10340.1471934367},{"timestamp":"2025-02-03T23:59:00+00:00","quote":9664.7009911903,"base":598.1020977417993,"total":10262.8030889321},{"timestamp":"2025-02-14T23:59:00+00:00","quote":9706.0731510714,"base":592.8164859260014,"total":10298.8896369974},{"timestamp":"2025-02-26T23:59:00+00:00","quote":9499.8874216482,"base":703.9597259309994,"total":10203.8471475792},{"timestamp":"2025-03-09T23:59:00+00:00","quote":9300.0452903243,"base":802.3098739564994,"total":10102.3551642808},{"timestamp":"2025-03-20T23:59:00+00:00","quote":9504.6818872514,"base":656.7302776038014,"total":10161.4121648552},{"timestamp":"2025-04-01T23:59:00+00:00","quote":9244.88257267,"base":842.0694349042005,"total":10086.9520075742},{"timestamp":"2025-04-12T23:59:00+00:00","quote":9719.8515368917,"base":461.1417920690001,"total":10180.9933289607},{"timestamp":"2025-04-23T23:59:00+00:00","quote":9773.0797999093,"base":482.72757657950024,"total":10255.8073764888},{"timestamp":"2025-05-05T23:59:00+00:00","quote":9654.9659821362,"base":598.9932938429993,"total":10253.9592759792},{"timestamp":"2025-05-16T23:59:00+00:00","quote":9760.4890766588,"base":528.9740996540004,"total":10289.4631763128},{"timestamp":"2025-05-28T23:59:00+00:00","quote":9623.6336050306,"base":633.8360991251993,"total":10257.4697041558},{"timestamp":"2025-06-08T23:59:00+00:00","quote":9529.9582139329,"base":706.0993040430003,"total":10236.0575179759},{"timestamp":"2025-06-19T23:59:00+00:00","quote":9370.9084967137,"base":812.5709903429997,"total":10183.4794870567},{"timestamp":"2025-07-01T23:59:00+00:00","quote":9380.0822299295,"base":779.9285985120005,"total":10160.0108284415},{"timestamp":"2025-07-12T23:59:00+00:00","quote":9762.9677748435,"base":545.1277952889996,"total":10308.0955701325},{"timestamp":"2025-07-24T23:59:00+00:00","quote":9811.1539452792,"base":521.2252046872,"total":10332.3791499664},{"timestamp":"2025-08-04T23:59:00+00:00","quote":9935.543572521,"base":431.9420353236983,"total":10367.4856078447},{"timestamp":"2025-08-15T23:59:00+00:00","quote":9862.298887447,"base":499.41484073780157,"total":10361.7137281848},{"timestamp":"2025-08-27T23:59:00+00:00","quote":9799.6736350929,"base":549.0364036324991,"total":10348.7100387254},{"timestamp":"2025-09-07T23:59:00+00:00","quote":9874.5110639549,"base":468.99556531800044,"total":10343.5066292729},{"timestamp":"2025-09-19T23:59:00+00:00","quote":9752.9828176844,"base":582.4160451112002,"total":10335.3988627956},{"timestamp":"2025-09-30T23:59:00+00:00","quote":9763.6004555028,"base":538.1591466983009,"total":10301.7596022011},{"timestamp":"2025-10-11T23:59:00+00:00","quote":9565.727589181,"base":632.4855997599989,"total":10198.213188941},{"timestamp":"2025-10-23T23:59:00+00:00","quote":9468.9462208811,"base":750.3165801949999,"total":10219.2628010761},{"timestamp":"2025-11-03T23:59:00+00:00","quote":9266.5941324622,"base":863.8962565012007,"total":10130.4903889634},{"timestamp":"2025-11-14T23:59:00+00:00","quote":9370.0612685564,"base":767.4701043957011,"total":10137.5313729521},{"timestamp":"2025-11-26T23:59:00+00:00","quote":9451.5504161158,"base":682.8875299398987,"total":10134.4379460557},{"timestamp":"2025-12-07T23:59:00+00:00","quote":9406.6127738177,"base":717.4274455600007,"total":10124.0402193777},{"timestamp":"2025-12-19T23:59:00+00:00","quote":9334.0530292708,"base":736.2933495119996,"total":10070.3463787828},{"timestamp":"2025-12-30T23:59:00+00:00","quote":9490.8153182953,"base":606.4459401630011,"total":10097.2612584583},{"timestamp":"2026-01-10T23:59:00+00:00","quote":9685.466742504,"base":516.2341357983987,"total":10201.7008783024},{"timestamp":"2026-01-22T23:59:00+00:00","quote":9556.418942029,"base":604.0478960460005,"total":10160.466838075},{"timestamp":"2026-02-02T23:59:00+00:00","quote":9693.9419966387,"base":479.61626981100017,"total":10173.5582664497},{"timestamp":"2026-02-14T23:59:00+00:00","quote":9599.5374987888,"base":543.0980107699997,"total":10142.6355095588},{"timestamp":"2026-02-25T23:59:00+00:00","quote":9509.5466245954,"base":611.1807863630002,"total":10120.7274109584}]
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 | 14.25% @ 2024-07-07 23:59:00 UTC |
| Min Exposure | 1.75% @ 2024-04-24 23:59:00 UTC |
| Mean | 6.54% |
| Std Dev | 1.83% |
| Last | 6.04% |
| Points | 673 |
| Across 673 points the series ranged from 1.75% (2024-04-24 23:59:00 UTC) to 14.25% (2024-07-07 23:59:00 UTC), averaging 6.54%. 100% of points were positive, 0% negative. The most recent value is 6.04%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.7533997833710746},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.841890642272009},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":4.427679580188429},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":3.71504749012918},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":5.645318349727187},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":10.26286696072664},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":10.739159162027315},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":12.45238181765682},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.67160391387228},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":7.698998150505883},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":5.533997132847452},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":7.1704680639591345},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":7.892289970068761},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":7.177766342196729},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":6.574946998185373},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":7.1502529088715665},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":8.183796011440931},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":8.973221624484133},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":6.463553937547896},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":4.379430435800847},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":6.458650841999387},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":10.466721304936085},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":6.762263910205152},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":6.37310518464838},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":7.201212912139557},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":5.82786293918882},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":5.756120385991772},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":6.898963849120472},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":7.941810210684835},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":6.462982378327331},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":8.348105892363703},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":4.529438112460433},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":4.7068705452302275},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":5.841580580939049},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":5.140930003731806},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":6.179263672291438},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":6.898156861692057},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":7.97930600612281},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":7.676454402279785},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":5.288346344677832},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":5.044580702295414},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":4.1663142989739335},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":4.819809288683087},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":5.3053607800197025},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":4.534202781779129},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":5.635157896109137},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":5.223953649465053},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":6.201925651504029},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":7.342179125836658},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":8.527684478555619},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":7.570581793151186},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":6.738287150948288},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":7.086374905809088},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":7.311499742087274},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":6.006043863181136},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":5.060275163491188},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":5.945080139255129},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":4.714341405923588},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":5.354604434499927},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":6.03890176610461}]
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 | 372.25 USDT @ 2024-07-28 23:59:00 UTC |
| Worst Day | -142.57 USDT @ 2024-06-17 23:59:00 UTC |
| Mean | 0.1909 USDT |
| Std Dev | 33.14 USDT |
| Last | 21.56 USDT |
| Points | 672 |
| Sum | 128.25 USDT |
| Across 672 points the series ranged from -142.57 USDT (2024-06-17 23:59:00 UTC) to 372.25 USDT (2024-07-28 23:59:00 UTC), averaging 0.1909 USDT. 52% of points were positive, 48% negative. The most recent value is 21.56 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":0.49016102550012874},{"timestamp":"2024-05-06T23:59:00+00:00","delta":-21.66286583120018},{"timestamp":"2024-05-18T23:59:00+00:00","delta":0.7909003825006948},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-8.472081888499815},{"timestamp":"2024-06-09T23:59:00+00:00","delta":2.6715993151992734},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-10.471352872000352},{"timestamp":"2024-07-02T23:59:00+00:00","delta":-40.568290366800284},{"timestamp":"2024-07-14T23:59:00+00:00","delta":18.40948512219984},{"timestamp":"2024-07-25T23:59:00+00:00","delta":-23.969928851998702},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-75.03262473080031},{"timestamp":"2024-08-17T23:59:00+00:00","delta":-6.279460278799888},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-6.99287847980122},{"timestamp":"2024-09-08T23:59:00+00:00","delta":14.903365092999593},{"timestamp":"2024-09-20T23:59:00+00:00","delta":20.394759595999858},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-38.64281482399929},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-15.641193711200685},{"timestamp":"2024-10-24T23:59:00+00:00","delta":10.63344822200088},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-1.0544597034004255},{"timestamp":"2024-11-16T23:59:00+00:00","delta":36.16487253730156},{"timestamp":"2024-11-27T23:59:00+00:00","delta":81.7929268937005},{"timestamp":"2024-12-08T23:59:00+00:00","delta":22.040674669598957},{"timestamp":"2024-12-20T23:59:00+00:00","delta":64.17319045850127},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-3.0170837010009564},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-14.728054820599937},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-18.59737263329953},{"timestamp":"2025-02-03T23:59:00+00:00","delta":21.90746831929937},{"timestamp":"2025-02-15T23:59:00+00:00","delta":2.679230647499935},{"timestamp":"2025-02-26T23:59:00+00:00","delta":1.2643417554991174},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-54.079159623499436},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-14.708959171301103},{"timestamp":"2025-04-01T23:59:00+00:00","delta":5.955957415000739},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-16.832776122499126},{"timestamp":"2025-04-24T23:59:00+00:00","delta":9.826471449499877},{"timestamp":"2025-05-05T23:59:00+00:00","delta":3.9147617777998676},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-13.044362919999912},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-11.134903916799885},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-4.448724890800804},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-18.494073060599476},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-27.43169499529904},{"timestamp":"2025-07-13T23:59:00+00:00","delta":8.862026227299793},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-1.1342456274996948},{"timestamp":"2025-08-04T23:59:00+00:00","delta":4.60142723269928},{"timestamp":"2025-08-16T23:59:00+00:00","delta":7.3372970757991425},{"timestamp":"2025-08-27T23:59:00+00:00","delta":-0.8473555675009266},{"timestamp":"2025-09-07T23:59:00+00:00","delta":5.794962370500798},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-18.484004794299835},{"timestamp":"2025-09-30T23:59:00+00:00","delta":7.147285205499429},{"timestamp":"2025-10-12T23:59:00+00:00","delta":34.59034143750068},{"timestamp":"2025-10-23T23:59:00+00:00","delta":20.82535234450006},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-74.06048219549848},{"timestamp":"2025-11-15T23:59:00+00:00","delta":11.171426451799562},{"timestamp":"2025-11-26T23:59:00+00:00","delta":-5.699001920800583},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-12.28784657739925},{"timestamp":"2025-12-19T23:59:00+00:00","delta":33.60371517800013},{"timestamp":"2025-12-30T23:59:00+00:00","delta":15.73948553900118},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-3.914931173700097},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-7.866252114799863},{"timestamp":"2026-02-02T23:59:00+00:00","delta":77.41825603459984},{"timestamp":"2026-02-14T23:59:00+00:00","delta":31.2676140270014},{"timestamp":"2026-02-25T23:59:00+00:00","delta":21.561976781998965}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 3.63% @ 2024-07 |
| Worst Month | -2.03% @ 2024-06 |
| Mean | 0.14% |
| Std Dev | 1.39% |
| Last | 0.24% |
| Points | 23 |
| Across 23 points the series ranged from -2.03% (2024-06) to 3.63% (2024-07), averaging 0.14%. 43% of points were positive, 57% negative. The most recent value is 0.24%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.339170429766351},{"month":"2024-05","returnPct":0.24511471828062115},{"month":"2024-06","returnPct":-2.02759955768509},{"month":"2024-07","returnPct":3.6284380373316245},{"month":"2024-08","returnPct":0.9748112393765215},{"month":"2024-09","returnPct":0.5407498654809684},{"month":"2024-10","returnPct":-0.514994408582516},{"month":"2024-11","returnPct":2.8986983898839074},{"month":"2024-12","returnPct":-1.2942938096344585},{"month":"2025-01","returnPct":0.8271835228829405},{"month":"2025-02","returnPct":-1.2000705385337662},{"month":"2025-03","returnPct":-1.4100158518045418},{"month":"2025-04","returnPct":1.8796583062012273},{"month":"2025-05","returnPct":-0.5560406375655693},{"month":"2025-06","returnPct":-0.44695799984664664},{"month":"2025-07","returnPct":2.3515351429487485},{"month":"2025-08","returnPct":-0.2909472897079714},{"month":"2025-09","returnPct":-0.31909317350170247},{"month":"2025-10","returnPct":-1.252295325474578},{"month":"2025-11","returnPct":-0.6665295573023311},{"month":"2025-12","returnPct":-0.10448760180365856},{"month":"2026-01","returnPct":0.03895540729406429},{"month":"2026-02","returnPct":0.24353268197484945}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 611.17 USDT @ 2026-02-25 |
| Trough Cum. | 2.67 USDT @ 2024-04-24 |
| Mean | 317.49 USDT |
| Std Dev | 180.89 USDT |
| Last | 611.17 USDT |
| Points | 673 |
| Sum | 213,673.11 USDT |
| Across 673 points the series ranged from 2.67 USDT (2024-04-24) to 611.17 USDT (2026-02-25), averaging 317.49 USDT. 100% of points were positive, 0% negative. The most recent value is 611.17 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":2.67182},{"timestamp":"2024-05-05","cumProfit":16.760427},{"timestamp":"2024-05-17","cumProfit":23.890237000000003},{"timestamp":"2024-05-28","cumProfit":31.956686},{"timestamp":"2024-06-09","cumProfit":40.317652},{"timestamp":"2024-06-20","cumProfit":51.550954000000004},{"timestamp":"2024-07-01","cumProfit":62.726544},{"timestamp":"2024-07-13","cumProfit":68.06119799999999},{"timestamp":"2024-07-24","cumProfit":74.700036},{"timestamp":"2024-08-05","cumProfit":92.05179999999999},{"timestamp":"2024-08-16","cumProfit":118.06943100000001},{"timestamp":"2024-08-27","cumProfit":126.34598800000003},{"timestamp":"2024-09-08","cumProfit":132.62848300000007},{"timestamp":"2024-09-19","cumProfit":137.94312100000005},{"timestamp":"2024-09-30","cumProfit":144.04750500000006},{"timestamp":"2024-10-12","cumProfit":149.91338400000006},{"timestamp":"2024-10-23","cumProfit":153.15224800000007},{"timestamp":"2024-11-04","cumProfit":161.66903800000006},{"timestamp":"2024-11-15","cumProfit":173.62548200000003},{"timestamp":"2024-11-26","cumProfit":188.01955500000008},{"timestamp":"2024-12-08","cumProfit":204.72035700000006},{"timestamp":"2024-12-19","cumProfit":223.40309300000004},{"timestamp":"2024-12-31","cumProfit":242.26784200000006},{"timestamp":"2025-01-11","cumProfit":258.4162300000001},{"timestamp":"2025-01-22","cumProfit":271.72526900000014},{"timestamp":"2025-02-03","cumProfit":290.8049790000002},{"timestamp":"2025-02-14","cumProfit":302.1521220000002},{"timestamp":"2025-02-26","cumProfit":311.31522100000024},{"timestamp":"2025-03-09","cumProfit":321.76882600000016},{"timestamp":"2025-03-20","cumProfit":331.1041730000002},{"timestamp":"2025-04-01","cumProfit":336.7104270000002},{"timestamp":"2025-04-12","cumProfit":350.97815300000025},{"timestamp":"2025-04-23","cumProfit":364.1350380000003},{"timestamp":"2025-05-05","cumProfit":376.21460000000025},{"timestamp":"2025-05-16","cumProfit":386.6028290000002},{"timestamp":"2025-05-28","cumProfit":394.9596110000003},{"timestamp":"2025-06-08","cumProfit":401.4375800000003},{"timestamp":"2025-06-19","cumProfit":407.64907000000034},{"timestamp":"2025-07-01","cumProfit":416.80819100000036},{"timestamp":"2025-07-12","cumProfit":429.1383900000003},{"timestamp":"2025-07-24","cumProfit":442.26609500000023},{"timestamp":"2025-08-04","cumProfit":456.45758100000023},{"timestamp":"2025-08-15","cumProfit":463.3386840000003},{"timestamp":"2025-08-27","cumProfit":470.79879900000026},{"timestamp":"2025-09-07","cumProfit":475.5398650000003},{"timestamp":"2025-09-19","cumProfit":479.1805520000004},{"timestamp":"2025-09-30","cumProfit":484.7706800000004},{"timestamp":"2025-10-11","cumProfit":492.1771510000005},{"timestamp":"2025-10-23","cumProfit":505.54457100000053},{"timestamp":"2025-11-03","cumProfit":513.4286820000005},{"timestamp":"2025-11-14","cumProfit":526.7814920000008},{"timestamp":"2025-11-26","cumProfit":538.1832580000007},{"timestamp":"2025-12-07","cumProfit":548.3076520000008},{"timestamp":"2025-12-19","cumProfit":555.8433130000009},{"timestamp":"2025-12-30","cumProfit":562.4193910000009},{"timestamp":"2026-01-10","cumProfit":571.8525390000009},{"timestamp":"2026-01-22","cumProfit":577.972689000001},{"timestamp":"2026-02-02","cumProfit":590.3329290000008},{"timestamp":"2026-02-14","cumProfit":601.050988000001},{"timestamp":"2026-02-25","cumProfit":611.172664000001}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 4.68 USDT @ 2025-07-30 |
| Worst Day | 0.1182 USDT @ 2025-09-13 |
| Mean | 0.9081 USDT |
| Std Dev | 0.6293 USDT |
| Last | 0.8992 USDT |
| Points | 673 |
| Sum | 611.17 USDT |
| Across 673 points the series ranged from 0.1182 USDT (2025-09-13) to 4.68 USDT (2025-07-30), averaging 0.9081 USDT. 100% of points were positive, 0% negative. The most recent value is 0.8992 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":2.67182},{"day":"2024-05-05","profit":0.954144},{"day":"2024-05-17","profit":0.441483},{"day":"2024-05-28","profit":0.681576},{"day":"2024-06-09","profit":0.53279},{"day":"2024-06-20","profit":1.122862},{"day":"2024-07-01","profit":0.381699},{"day":"2024-07-13","profit":0.223091},{"day":"2024-07-24","profit":0.295088},{"day":"2024-08-05","profit":2.346086},{"day":"2024-08-16","profit":1.434272},{"day":"2024-08-27","profit":0.217214},{"day":"2024-09-08","profit":0.255011},{"day":"2024-09-19","profit":0.591141},{"day":"2024-09-30","profit":0.329569},{"day":"2024-10-12","profit":0.368916},{"day":"2024-10-23","profit":0.219267},{"day":"2024-11-04","profit":1.159627},{"day":"2024-11-15","profit":0.888533},{"day":"2024-11-26","profit":3.085464},{"day":"2024-12-08","profit":1.063221},{"day":"2024-12-19","profit":1.716143},{"day":"2024-12-31","profit":1.014495},{"day":"2025-01-11","profit":2.154244},{"day":"2025-01-22","profit":0.931662},{"day":"2025-02-03","profit":2.797099},{"day":"2025-02-14","profit":0.621716},{"day":"2025-02-26","profit":0.967569},{"day":"2025-03-09","profit":0.678621},{"day":"2025-03-20","profit":0.476812},{"day":"2025-04-01","profit":0.543862},{"day":"2025-04-12","profit":0.880551},{"day":"2025-04-23","profit":1.451774},{"day":"2025-05-05","profit":0.807929},{"day":"2025-05-16","profit":0.883934},{"day":"2025-05-28","profit":0.59416},{"day":"2025-06-08","profit":0.454382},{"day":"2025-06-19","profit":0.536599},{"day":"2025-07-01","profit":0.780476},{"day":"2025-07-12","profit":1.352062},{"day":"2025-07-24","profit":1.029541},{"day":"2025-08-04","profit":0.326755},{"day":"2025-08-15","profit":0.779315},{"day":"2025-08-27","profit":0.473027},{"day":"2025-09-07","profit":0.366502},{"day":"2025-09-19","profit":0.235157},{"day":"2025-09-30","profit":1.147368},{"day":"2025-10-11","profit":2.115053},{"day":"2025-10-23","profit":0.715622},{"day":"2025-11-03","profit":1.379194},{"day":"2025-11-14","profit":1.327051},{"day":"2025-11-26","profit":0.881998},{"day":"2025-12-07","profit":0.892867},{"day":"2025-12-19","profit":0.513425},{"day":"2025-12-30","profit":0.90801},{"day":"2026-01-10","profit":0.926607},{"day":"2026-01-22","profit":0.437317},{"day":"2026-02-02","profit":3.717001},{"day":"2026-02-14","profit":1.602133},{"day":"2026-02-25","profit":0.899168}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 888 trades @ 2025-07-30 |
| Quietest Day | 22 trades @ 2025-09-13 |
| Mean | 170 trades |
| Std Dev | 119 trades |
| Last | 152 trades |
| Points | 673 |
| Sum | 114623 trades |
| Across 673 points the series ranged from 22 trades (2025-09-13) to 888 trades (2025-07-30), averaging 170 trades. The most recent value is 152 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":516},{"day":"2024-05-05","count":184},{"day":"2024-05-17","count":84},{"day":"2024-05-28","count":132},{"day":"2024-06-09","count":104},{"day":"2024-06-20","count":212},{"day":"2024-07-01","count":72},{"day":"2024-07-13","count":41},{"day":"2024-07-24","count":57},{"day":"2024-08-05","count":430},{"day":"2024-08-16","count":272},{"day":"2024-08-27","count":41},{"day":"2024-09-08","count":48},{"day":"2024-09-19","count":113},{"day":"2024-09-30","count":64},{"day":"2024-10-12","count":69},{"day":"2024-10-23","count":41},{"day":"2024-11-04","count":220},{"day":"2024-11-15","count":168},{"day":"2024-11-26","count":590},{"day":"2024-12-08","count":206},{"day":"2024-12-19","count":327},{"day":"2024-12-31","count":193},{"day":"2025-01-11","count":414},{"day":"2025-01-22","count":179},{"day":"2025-02-03","count":526},{"day":"2025-02-14","count":118},{"day":"2025-02-26","count":184},{"day":"2025-03-09","count":130},{"day":"2025-03-20","count":86},{"day":"2025-04-01","count":100},{"day":"2025-04-12","count":164},{"day":"2025-04-23","count":275},{"day":"2025-05-05","count":153},{"day":"2025-05-16","count":167},{"day":"2025-05-28","count":112},{"day":"2025-06-08","count":87},{"day":"2025-06-19","count":96},{"day":"2025-07-01","count":148},{"day":"2025-07-12","count":253},{"day":"2025-07-24","count":196},{"day":"2025-08-04","count":61},{"day":"2025-08-15","count":145},{"day":"2025-08-27","count":88},{"day":"2025-09-07","count":72},{"day":"2025-09-19","count":43},{"day":"2025-09-30","count":210},{"day":"2025-10-11","count":375},{"day":"2025-10-23","count":126},{"day":"2025-11-03","count":257},{"day":"2025-11-14","count":239},{"day":"2025-11-26","count":156},{"day":"2025-12-07","count":166},{"day":"2025-12-19","count":91},{"day":"2025-12-30","count":172},{"day":"2026-01-10","count":156},{"day":"2026-01-22","count":73},{"day":"2026-02-02","count":670},{"day":"2026-02-14","count":290},{"day":"2026-02-25","count":152}]
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 | 861.47 USDT @ 2026-02-25 |
| Start | 3.88 USDT @ 2024-04-24 |
| Mean | 452.10 USDT |
| Std Dev | 256.09 USDT |
| Last | 861.47 USDT |
| Points | 673 |
| Sum | 304,263.04 USDT |
| Across 673 points the series ranged from 3.88 USDT (2024-04-24) to 861.47 USDT (2026-02-25), averaging 452.10 USDT. 100% of points were positive, 0% negative. The most recent value is 861.47 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":3.880404},{"index":11,"timestamp":"2024-05-05","cumFees":24.28662},{"index":23,"timestamp":"2024-05-17","cumFees":34.548792},{"index":34,"timestamp":"2024-05-28","cumFees":46.20293099999999},{"index":46,"timestamp":"2024-06-09","cumFees":58.30736599999998},{"index":57,"timestamp":"2024-06-20","cumFees":74.30170999999997},{"index":68,"timestamp":"2024-07-01","cumFees":90.14419299999997},{"index":80,"timestamp":"2024-07-13","cumFees":97.65151999999998},{"index":91,"timestamp":"2024-07-24","cumFees":107.098624},{"index":103,"timestamp":"2024-08-05","cumFees":131.79042300000003},{"index":114,"timestamp":"2024-08-16","cumFees":168.91618500000007},{"index":125,"timestamp":"2024-08-27","cumFees":180.7255000000001},{"index":137,"timestamp":"2024-09-08","cumFees":189.69216100000006},{"index":148,"timestamp":"2024-09-19","cumFees":197.2455370000001},{"index":159,"timestamp":"2024-09-30","cumFees":206.00240000000008},{"index":171,"timestamp":"2024-10-12","cumFees":214.32305600000007},{"index":182,"timestamp":"2024-10-23","cumFees":218.9153300000001},{"index":194,"timestamp":"2024-11-04","cumFees":231.0083030000001},{"index":205,"timestamp":"2024-11-15","cumFees":248.12249700000012},{"index":216,"timestamp":"2024-11-26","cumFees":268.7564940000001},{"index":228,"timestamp":"2024-12-08","cumFees":293.0065790000001},{"index":239,"timestamp":"2024-12-19","cumFees":319.92763000000014},{"index":251,"timestamp":"2024-12-31","cumFees":347.0431500000002},{"index":262,"timestamp":"2025-01-11","cumFees":370.2883280000001},{"index":273,"timestamp":"2025-01-22","cumFees":389.42034100000006},{"index":285,"timestamp":"2025-02-03","cumFees":416.72159},{"index":296,"timestamp":"2025-02-14","cumFees":432.8433610000001},{"index":308,"timestamp":"2025-02-26","cumFees":445.87615300000004},{"index":319,"timestamp":"2025-03-09","cumFees":460.606293},{"index":330,"timestamp":"2025-03-20","cumFees":473.71195100000006},{"index":342,"timestamp":"2025-04-01","cumFees":481.58778700000016},{"index":353,"timestamp":"2025-04-12","cumFees":501.53874800000017},{"index":364,"timestamp":"2025-04-23","cumFees":520.0782820000001},{"index":376,"timestamp":"2025-05-05","cumFees":537.213299},{"index":387,"timestamp":"2025-05-16","cumFees":551.8385650000002},{"index":399,"timestamp":"2025-05-28","cumFees":563.6601430000002},{"index":410,"timestamp":"2025-06-08","cumFees":572.8134040000003},{"index":421,"timestamp":"2025-06-19","cumFees":581.4554030000004},{"index":433,"timestamp":"2025-07-01","cumFees":594.1999140000004},{"index":444,"timestamp":"2025-07-12","cumFees":611.4766010000003},{"index":456,"timestamp":"2025-07-24","cumFees":630.1295410000004},{"index":467,"timestamp":"2025-08-04","cumFees":650.2567570000003},{"index":478,"timestamp":"2025-08-15","cumFees":659.9512260000004},{"index":490,"timestamp":"2025-08-27","cumFees":670.4421330000002},{"index":501,"timestamp":"2025-09-07","cumFees":677.1677490000003},{"index":513,"timestamp":"2025-09-19","cumFees":682.2101270000003},{"index":524,"timestamp":"2025-09-30","cumFees":690.0102470000003},{"index":535,"timestamp":"2025-10-11","cumFees":700.1995910000003},{"index":547,"timestamp":"2025-10-23","cumFees":718.5108870000003},{"index":558,"timestamp":"2025-11-03","cumFees":729.3454870000002},{"index":569,"timestamp":"2025-11-14","cumFees":747.8661410000002},{"index":581,"timestamp":"2025-11-26","cumFees":763.32806},{"index":592,"timestamp":"2025-12-07","cumFees":777.0470629999999},{"index":604,"timestamp":"2025-12-19","cumFees":787.4071329999999},{"index":615,"timestamp":"2025-12-30","cumFees":796.632576},{"index":626,"timestamp":"2026-01-10","cumFees":809.2470400000001},{"index":638,"timestamp":"2026-01-22","cumFees":817.4062170000001},{"index":649,"timestamp":"2026-02-02","cumFees":833.9116150000002},{"index":661,"timestamp":"2026-02-14","cumFees":848.1099750000003},{"index":672,"timestamp":"2026-02-25","cumFees":861.4747440000004}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 5181 trades @ 0.10% |
| Least Populated Bin | 35 trades @ 0.13% |
| Mean | 1910 trades |
| Std Dev | 2034 trades |
| Last | 35 trades |
| Points | 60 |
| Sum | 114623 trades |
| Across 60 points the series ranged from 35 trades (0.13%) to 5181 trades (0.10%), averaging 1910 trades. The most recent value is 35 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":5181,"from":0.099812},{"bin":"0.10%","count":5080,"from":0.100331},{"bin":"0.10%","count":5038,"from":0.10085},{"bin":"0.10%","count":5059,"from":0.101369},{"bin":"0.10%","count":5085,"from":0.101888},{"bin":"0.10%","count":4964,"from":0.102407},{"bin":"0.10%","count":5047,"from":0.102926},{"bin":"0.10%","count":4974,"from":0.103445},{"bin":"0.10%","count":5012,"from":0.103964},{"bin":"0.10%","count":4977,"from":0.104483},{"bin":"0.11%","count":5003,"from":0.105002},{"bin":"0.11%","count":5003,"from":0.105521},{"bin":"0.11%","count":4784,"from":0.10604},{"bin":"0.11%","count":4757,"from":0.106559},{"bin":"0.11%","count":4492,"from":0.107078},{"bin":"0.11%","count":4239,"from":0.107597},{"bin":"0.11%","count":3968,"from":0.108116},{"bin":"0.11%","count":3657,"from":0.108635},{"bin":"0.11%","count":3320,"from":0.109154},{"bin":"0.11%","count":3018,"from":0.109673},{"bin":"0.11%","count":2509,"from":0.110192},{"bin":"0.11%","count":2363,"from":0.110711},{"bin":"0.11%","count":2052,"from":0.11123},{"bin":"0.11%","count":1912,"from":0.111749},{"bin":"0.11%","count":1703,"from":0.112268},{"bin":"0.11%","count":1330,"from":0.112787},{"bin":"0.11%","count":1224,"from":0.113306},{"bin":"0.11%","count":1009,"from":0.113825},{"bin":"0.11%","count":804,"from":0.114344},{"bin":"0.11%","count":654,"from":0.114863},{"bin":"0.12%","count":525,"from":0.115382},{"bin":"0.12%","count":449,"from":0.115901},{"bin":"0.12%","count":391,"from":0.11642},{"bin":"0.12%","count":356,"from":0.116939},{"bin":"0.12%","count":361,"from":0.117458},{"bin":"0.12%","count":327,"from":0.117977},{"bin":"0.12%","count":345,"from":0.118496},{"bin":"0.12%","count":273,"from":0.119015},{"bin":"0.12%","count":288,"from":0.119534},{"bin":"0.12%","count":338,"from":0.120053},{"bin":"0.12%","count":342,"from":0.120572},{"bin":"0.12%","count":386,"from":0.121091},{"bin":"0.12%","count":365,"from":0.12161},{"bin":"0.12%","count":300,"from":0.122129},{"bin":"0.12%","count":140,"from":0.122648},{"bin":"0.12%","count":149,"from":0.123167},{"bin":"0.12%","count":145,"from":0.123686},{"bin":"0.12%","count":140,"from":0.124205},{"bin":"0.12%","count":98,"from":0.124724},{"bin":"0.13%","count":77,"from":0.125242},{"bin":"0.13%","count":68,"from":0.125761},{"bin":"0.13%","count":84,"from":0.12628},{"bin":"0.13%","count":78,"from":0.126799},{"bin":"0.13%","count":56,"from":0.127318},{"bin":"0.13%","count":45,"from":0.127837},{"bin":"0.13%","count":43,"from":0.128356},{"bin":"0.13%","count":72,"from":0.128875},{"bin":"0.13%","count":72,"from":0.129394},{"bin":"0.13%","count":57,"from":0.129913},{"bin":"0.13%","count":35,"from":0.130432}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1146 |
| Coldest Window | 100.00% @ 1146 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1146) to 100.00% (1146), 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":1146,"winRate":100},{"index":3077,"winRate":100},{"index":5008,"winRate":100},{"index":6939,"winRate":100},{"index":8870,"winRate":100},{"index":10801,"winRate":100},{"index":12732,"winRate":100},{"index":14663,"winRate":100},{"index":16481,"winRate":100},{"index":18412,"winRate":100},{"index":20343,"winRate":100},{"index":22274,"winRate":100},{"index":24205,"winRate":100},{"index":26136,"winRate":100},{"index":28067,"winRate":100},{"index":29998,"winRate":100},{"index":31929,"winRate":100},{"index":33860,"winRate":100},{"index":35791,"winRate":100},{"index":37722,"winRate":100},{"index":39653,"winRate":100},{"index":41584,"winRate":100},{"index":43515,"winRate":100},{"index":45333,"winRate":100},{"index":47264,"winRate":100},{"index":49195,"winRate":100},{"index":51126,"winRate":100},{"index":53057,"winRate":100},{"index":54988,"winRate":100},{"index":56919,"winRate":100},{"index":58850,"winRate":100},{"index":60781,"winRate":100},{"index":62712,"winRate":100},{"index":64643,"winRate":100},{"index":66574,"winRate":100},{"index":68505,"winRate":100},{"index":70436,"winRate":100},{"index":72254,"winRate":100},{"index":74185,"winRate":100},{"index":76116,"winRate":100},{"index":78047,"winRate":100},{"index":79978,"winRate":100},{"index":81909,"winRate":100},{"index":83840,"winRate":100},{"index":85771,"winRate":100},{"index":87702,"winRate":100},{"index":89633,"winRate":100},{"index":91564,"winRate":100},{"index":93495,"winRate":100},{"index":95426,"winRate":100},{"index":97357,"winRate":100},{"index":99288,"winRate":100},{"index":101106,"winRate":100},{"index":103037,"winRate":100},{"index":104968,"winRate":100},{"index":106899,"winRate":100},{"index":108830,"winRate":100},{"index":110761,"winRate":100},{"index":112692,"winRate":100},{"index":114623,"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.5595 USDT @ 2026-02-25 23:52:00 UTC |
| Trough Net | 0.0052 USDT @ 2024-04-24 00:02:00 UTC |
| Mean | 0.2725 USDT |
| Std Dev | 0.1635 USDT |
| Last | 0.5595 USDT |
| Points | 100 |
| Sum | 27.25 USDT |
| Across 100 points the series ranged from 0.0052 USDT (2024-04-24 00:02:00 UTC) to 0.5595 USDT (2026-02-25 23:52:00 UTC), averaging 0.2725 USDT. 100% of points were positive, 0% negative. The most recent value is 0.5595 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:02:00Z","net":0.0052220625,"gross":0.012750000000000001},{"timestamp":"2024-04-24T00:10:00Z","net":0.015365268000000001,"gross":0.037944000000000006},{"timestamp":"2024-04-24T00:13:00Z","net":0.020681905200000003,"gross":0.050788999900000006},{"timestamp":"2024-04-24T00:16:00Z","net":0.0309481864,"gross":0.0760939998},{"timestamp":"2024-04-24T00:18:00Z","net":0.0413007757,"gross":0.1014689998},{"timestamp":"2024-04-24T00:22:00Z","net":0.046410279400000004,"gross":0.1141039997},{"timestamp":"2024-04-24T00:25:00Z","net":0.056784016900000005,"gross":0.1395139997},{"timestamp":"2024-04-24T00:28:00Z","net":0.0671153106,"gross":0.1648889996},{"timestamp":"2024-04-24T00:29:00Z","net":0.0721874406,"gross":0.1774889996},{"timestamp":"2024-04-24T00:31:00Z","net":0.08244090130000001,"gross":0.2027939996},{"timestamp":"2024-04-24T00:36:00Z","net":0.0927285223,"gross":0.2281379996},{"timestamp":"2024-04-24T00:37:00Z","net":0.0979197403,"gross":0.2408459996},{"timestamp":"2024-04-24T00:41:00Z","net":0.1081488988,"gross":0.2660999996},{"timestamp":"2024-04-24T00:49:00Z","net":0.1185293416,"gross":0.2915169997},{"timestamp":"2024-04-24T00:49:00Z","net":0.1236180716,"gross":0.3041329997},{"timestamp":"2024-06-12T19:27:00Z","net":0.1339389566,"gross":0.32947699970000005},{"timestamp":"2024-08-09T16:52:00Z","net":0.1439202066,"gross":0.3544769997000001},{"timestamp":"2024-11-05T00:03:00Z","net":0.1539014566,"gross":0.3794769997000001},{"timestamp":"2024-11-06T00:36:00Z","net":0.15889208159999998,"gross":0.3919769997000001},{"timestamp":"2024-12-22T18:27:00Z","net":0.16887333159999998,"gross":0.41697699970000013},{"timestamp":"2024-12-28T13:28:00Z","net":0.17885458159999998,"gross":0.44197699970000015},{"timestamp":"2024-12-31T00:18:00Z","net":0.18384520659999998,"gross":0.45447699970000016},{"timestamp":"2025-02-01T12:47:00Z","net":0.19382645659999997,"gross":0.4794769997000002},{"timestamp":"2025-02-08T05:16:00Z","net":0.20380770659999997,"gross":0.5044769997000002},{"timestamp":"2025-02-27T05:05:00Z","net":0.20879833159999997,"gross":0.5169769997000001},{"timestamp":"2025-05-09T17:37:00Z","net":0.21877958159999997,"gross":0.5419769997},{"timestamp":"2025-12-16T12:17:00Z","net":0.22876083159999996,"gross":0.5669769996999999},{"timestamp":"2025-12-21T06:22:00Z","net":0.23375145659999996,"gross":0.5794769996999999},{"timestamp":"2026-01-24T21:00:00Z","net":0.24373270659999996,"gross":0.6044769996999998},{"timestamp":"2026-01-28T15:21:00Z","net":0.25371395659999996,"gross":0.6294769996999997},{"timestamp":"2026-02-05T12:27:00Z","net":0.26026566179999994,"gross":0.6435439995999997},{"timestamp":"2026-02-05T12:37:00Z","net":0.2733513226999999,"gross":0.6716599994999998},{"timestamp":"2026-02-06T17:09:00Z","net":0.2864393206999999,"gross":0.6997759994999998},{"timestamp":"2026-02-06T18:46:00Z","net":0.29299102589999987,"gross":0.7138429993999998},{"timestamp":"2026-02-06T23:59:00Z","net":0.3060612833999999,"gross":0.7419409993999999},{"timestamp":"2026-02-09T04:21:00Z","net":0.3191404080999999,"gross":0.7700479992999999},{"timestamp":"2026-02-12T09:24:00Z","net":0.32568557859999986,"gross":0.7841059992999999},{"timestamp":"2026-02-12T15:09:00Z","net":0.3387558314999998,"gross":0.8122039991999999},{"timestamp":"2026-02-12T22:59:00Z","net":0.3518414923999998,"gross":0.8403199990999999},{"timestamp":"2026-02-13T01:02:00Z","net":0.3583843198999998,"gross":0.8543779990999999},{"timestamp":"2026-02-22T13:15:00Z","net":0.3714634445999998,"gross":0.8824849989999999},{"timestamp":"2026-02-23T10:16:00Z","net":0.38453135599999977,"gross":0.9105829989999998},{"timestamp":"2026-02-25T01:21:00Z","net":0.39108306119999975,"gross":0.9246499988999999},{"timestamp":"2026-02-25T05:09:00Z","net":0.4041687220999997,"gross":0.9527659987999999},{"timestamp":"2026-02-25T08:07:00Z","net":0.4172413164999997,"gross":0.9808639985999998},{"timestamp":"2026-02-25T23:02:00Z","net":0.4286848261999997,"gross":1.0073329985},{"timestamp":"2026-02-25T23:03:00Z","net":0.4342479999999997,"gross":1.0204099986},{"timestamp":"2026-02-25T23:04:00Z","net":0.4452839380999997,"gross":1.0464739986},{"timestamp":"2026-02-25T23:10:00Z","net":0.4564707326999997,"gross":1.0726819987},{"timestamp":"2026-02-25T23:11:00Z","net":0.4620792941999997,"gross":1.0858039987},{"timestamp":"2026-02-25T23:17:00Z","net":0.4732756105999997,"gross":1.1120299985},{"timestamp":"2026-02-25T23:20:00Z","net":0.4845464951999997,"gross":1.1383279987000001},{"timestamp":"2026-02-25T23:21:00Z","net":0.4902028189999997,"gross":1.1514949988},{"timestamp":"2026-02-25T23:24:00Z","net":0.5014326342999997,"gross":1.1777479989000001},{"timestamp":"2026-02-25T23:28:00Z","net":0.5127887944999998,"gross":1.2041269989},{"timestamp":"2026-02-25T23:29:00Z","net":0.5184699109999998,"gross":1.2173209989},{"timestamp":"2026-02-25T23:31:00Z","net":0.5298509044999998,"gross":1.2437269989},{"timestamp":"2026-02-25T23:34:00Z","net":0.5415005748999998,"gross":1.2704029987999998},{"timestamp":"2026-02-25T23:36:00Z","net":0.5473639593999998,"gross":1.2837769987999998},{"timestamp":"2026-02-25T23:52:00Z","net":0.5595459386999998,"gross":1.3109839987999998}]
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) | 9.80 @ 2026-01-17 23:59:00 UTC |
| Worst Sharpe (30d) | -7.61 @ 2024-07-05 23:59:00 UTC |
| Mean | -0.19 |
| Std Dev | 2.91 |
| Last | -0.81 |
| Points | 643 |
| Across 643 points the series ranged from -7.61 (2024-07-05 23:59:00 UTC) to 9.80 (2026-01-17 23:59:00 UTC), averaging -0.19. The most recent value is -0.81. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":0.23028672003079176,"sharpe90":-1.606816543722234},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":-0.27259949754809637,"sharpe90":0.029023542700130793},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-2.094971607476509,"sharpe90":1.073573392622408},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-5.790154919317761,"sharpe90":0.8336392398952603},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-6.0595562243862195,"sharpe90":0.5648218646248518},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":0.21982889583356285,"sharpe90":1.3597447561944735},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":3.499113046665711,"sharpe90":1.6463325224893541},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":3.8089318630095694,"sharpe90":2.1833946556036343},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":2.8654765197376153,"sharpe90":1.3108360375853865},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":0.5202751556825975,"sharpe90":0.3345928150707059},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":-1.2192248987181,"sharpe90":-0.1580124641618755},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":0.4136198651322282,"sharpe90":0.2817918037689815},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":-0.7200977979770729,"sharpe90":2.164047994853959},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":1.1011607583803753,"sharpe90":1.1198565764553723},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-2.623602197573965,"sharpe90":0.06480653843002046},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-3.9570326041832886,"sharpe90":0.5746573813990855},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":0.7536213933889023,"sharpe90":0.8707857946554902},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":4.9527437988028815,"sharpe90":0.9572087031885418},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":6.669828277449452,"sharpe90":0.5768510179803329},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":0.8579941759418882,"sharpe90":0.4939667364048734},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-1.3837692459395188,"sharpe90":-1.0352992426809198},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":0.6312749596893977,"sharpe90":-1.0612678265292215},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":3.22224899600417,"sharpe90":0.27244685110072914},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":1.2813886474656797,"sharpe90":-1.123454992656464},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-2.226174014402441,"sharpe90":-1.2240179394852901},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":-0.6087159692269729,"sharpe90":-0.5957923549863384},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-3.231875324728427,"sharpe90":-0.48582330510050936},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-3.597668915825759,"sharpe90":0.13188717652819787},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-2.0680599623539373,"sharpe90":0.05598344312144733},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-3.9585400410638463,"sharpe90":0.6058419338541405},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":1.1497805395730192,"sharpe90":0.5874191350755401},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":1.7315194185733653,"sharpe90":0.10798847575305791},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":4.548261662411415,"sharpe90":1.7972017061313188},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":2.24739449001064,"sharpe90":1.0165272274813095},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":-1.711624596475685,"sharpe90":0.3246763699696891},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-1.9286334846317548,"sharpe90":0.4363786541373982},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-4.3728270213899085,"sharpe90":0.35994430060112487},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-2.1385946365435666,"sharpe90":1.0348480443369952},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":0.866344913997635,"sharpe90":0.8883483313667755},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":7.416178041408001,"sharpe90":2.131291659529755},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":1.9000360349507897,"sharpe90":0.5874882273640382},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":1.3342826178354577,"sharpe90":-0.7434041869782705},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.4549599716983498,"sharpe90":-1.1118426867827709},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":-0.7710927310676677,"sharpe90":-2.5488276089240234},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":-1.5156333496900292,"sharpe90":-2.4394493034486846},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-3.334687163095785,"sharpe90":-2.2382050548284225},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-2.3757193258326725,"sharpe90":-2.143504178047097},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-4.407405186047741,"sharpe90":-2.8211226827945444},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-2.4175065355940215,"sharpe90":-2.0023195292870755},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-2.3793682644020175,"sharpe90":-1.038802618897519},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-2.469955945343148,"sharpe90":-0.44550740158833824},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":-1.234544255674335,"sharpe90":-0.7417336379299697},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-3.610497891348773,"sharpe90":-1.4849093137822322},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-1.1404790930670188,"sharpe90":0.012346526012158526},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-0.6157483615351811,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":3.2457867659783752,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":4.222771298611231,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-0.1623279643906247,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-1.2514680190150897,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-0.8071003502470311,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.34% @ 5 |
| Deepest Episode | -4.92% @ 66 |
| Mean | -2.30% |
| Std Dev | 1.72% |
| Last | -4.11% |
| Points | 9 |
| Across 9 points the series ranged from -4.92% (66) to -0.34% (5), averaging -2.30%. 0% of points were positive, 100% negative. The most recent value is -4.11%. | |
| Full series - 9 points. |
[{"start":"2024-04-28T23:59:00+00:00","end":"2024-05-03T23:59:00+00:00","depth":-0.3440588544895009,"durationDays":5},{"start":"2024-05-06T23:59:00+00:00","end":"2024-05-20T23:59:00+00:00","depth":-0.7165599362629378,"durationDays":14},{"start":"2024-05-23T23:59:00+00:00","end":"2024-07-28T23:59:00+00:00","depth":-4.922785834385151,"durationDays":66},{"start":"2024-07-29T23:59:00+00:00","end":"2024-08-09T23:59:00+00:00","depth":-2.993809031524707,"durationDays":11},{"start":"2024-08-11T23:59:00+00:00","end":"2024-08-14T23:59:00+00:00","depth":-0.7916207214227441,"durationDays":3},{"start":"2024-08-15T23:59:00+00:00","end":"2024-11-23T23:59:00+00:00","depth":-2.082410110162258,"durationDays":100},{"start":"2024-11-28T23:59:00+00:00","end":"2024-12-08T23:59:00+00:00","depth":-0.471722113773342,"durationDays":10},{"start":"2024-12-09T23:59:00+00:00","end":"2025-07-30T23:59:00+00:00","depth":-4.283146170175841,"durationDays":233},{"start":"2025-07-31T23:59:00+00:00","end":"ongoing","depth":-4.110625226568632,"durationDays":209}]
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 | 14.25% @ 2024-07-07 23:59:00 UTC |
| Min Utilization | 1.75% @ 2024-04-24 23:59:00 UTC |
| Mean | 6.54% |
| Std Dev | 1.83% |
| Last | 6.04% |
| Points | 673 |
| Across 673 points the series ranged from 1.75% (2024-04-24 23:59:00 UTC) to 14.25% (2024-07-07 23:59:00 UTC), averaging 6.54%. 100% of points were positive, 0% negative. The most recent value is 6.04%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.7533997833710746},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.841890642272009},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":4.427679580188429},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":3.71504749012918},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":5.645318349727187},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":10.26286696072664},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":10.739159162027315},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":12.45238181765682},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.67160391387228},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":7.698998150505883},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":5.533997132847452},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":7.1704680639591345},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":7.892289970068761},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":7.177766342196729},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":6.574946998185373},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":7.1502529088715665},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":8.183796011440931},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":8.973221624484133},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":6.463553937547896},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":4.379430435800847},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":6.458650841999387},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":10.466721304936085},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":6.762263910205152},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":6.37310518464838},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":7.201212912139557},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":5.82786293918882},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":5.756120385991772},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":6.898963849120472},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":7.941810210684835},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":6.462982378327331},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":8.348105892363703},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":4.529438112460433},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":4.7068705452302275},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":5.841580580939049},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":5.140930003731806},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":6.179263672291438},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":6.898156861692057},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":7.97930600612281},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":7.676454402279785},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":5.288346344677832},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":5.044580702295414},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":4.1663142989739335},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":4.819809288683087},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":5.3053607800197025},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":4.534202781779129},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":5.635157896109137},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":5.223953649465053},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":6.201925651504029},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":7.342179125836658},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":8.527684478555619},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":7.570581793151186},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":6.738287150948288},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":7.086374905809088},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":7.311499742087274},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":6.006043863181136},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":5.060275163491188},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":5.945080139255129},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":4.714341405923588},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":5.354604434499927},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":6.03890176610461}]
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 | 0.0152 @ 2024-04-24 00:49:00 UTC |
| Lowest Price | 0.0032 @ 2026-02-05 12:23:00 UTC |
| Mean | 0.0068 |
| Std Dev | 0.0043 |
| Last | 0.0033 |
| Points | 162 |
| Across 162 points the series ranged from 0.0032 (2026-02-05 12:23:00 UTC) to 0.0152 (2024-04-24 00:49:00 UTC), averaging 0.0068. The most recent value is 0.0033. | |
| Showing 60 of 162 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:02:00Z","price":0.013366},{"timestamp":"2024-04-24T00:09:00Z","price":0.01354},{"timestamp":"2024-04-24T00:12:00Z","price":0.013658},{"timestamp":"2024-04-24T00:16:00Z","price":0.013856},{"timestamp":"2024-04-24T00:22:00Z","price":0.01388},{"timestamp":"2024-04-24T00:25:00Z","price":0.01386},{"timestamp":"2024-04-24T00:27:00Z","price":0.013919},{"timestamp":"2024-04-24T00:30:00Z","price":0.013844},{"timestamp":"2024-04-24T00:36:00Z","price":0.014161},{"timestamp":"2024-04-24T00:41:00Z","price":0.014627},{"timestamp":"2024-04-24T00:45:00Z","price":0.014801},{"timestamp":"2024-04-24T00:50:00Z","price":0.014839},{"timestamp":"2024-08-09T04:44:00Z","price":0.01},{"timestamp":"2024-08-09T16:49:00Z","price":0.01},{"timestamp":"2024-08-17T23:35:00Z","price":0.010025},{"timestamp":"2024-11-05T07:47:00Z","price":0.008},{"timestamp":"2024-11-19T08:44:00Z","price":0.010025},{"timestamp":"2024-12-22T18:27:00Z","price":0.010025},{"timestamp":"2024-12-28T13:24:00Z","price":0.01},{"timestamp":"2024-12-31T00:18:00Z","price":0.010025},{"timestamp":"2025-02-01T09:16:00Z","price":0.01},{"timestamp":"2025-02-03T11:31:00Z","price":0.008},{"timestamp":"2025-02-08T05:16:00Z","price":0.00802},{"timestamp":"2025-03-03T17:57:00Z","price":0.008},{"timestamp":"2025-05-09T17:21:00Z","price":0.008},{"timestamp":"2025-07-30T22:48:00Z","price":0.010025},{"timestamp":"2025-12-21T06:22:00Z","price":0.00401},{"timestamp":"2026-01-24T20:56:00Z","price":0.004},{"timestamp":"2026-01-26T13:12:00Z","price":0.004},{"timestamp":"2026-01-28T15:21:00Z","price":0.00401},{"timestamp":"2026-02-05T12:31:00Z","price":0.003201},{"timestamp":"2026-02-05T16:36:00Z","price":0.003203},{"timestamp":"2026-02-06T17:07:00Z","price":0.003202},{"timestamp":"2026-02-06T18:21:00Z","price":0.003201},{"timestamp":"2026-02-06T21:14:00Z","price":0.003203},{"timestamp":"2026-02-08T00:07:00Z","price":0.003212},{"timestamp":"2026-02-09T04:21:00Z","price":0.003213},{"timestamp":"2026-02-12T13:44:00Z","price":0.003205},{"timestamp":"2026-02-12T15:09:00Z","price":0.003213},{"timestamp":"2026-02-12T22:42:00Z","price":0.003201},{"timestamp":"2026-02-13T00:57:00Z","price":0.003203},{"timestamp":"2026-02-18T00:03:00Z","price":0.003457},{"timestamp":"2026-02-22T09:27:00Z","price":0.003212},{"timestamp":"2026-02-22T13:15:00Z","price":0.003213},{"timestamp":"2026-02-23T01:10:00Z","price":0.003205},{"timestamp":"2026-02-25T01:21:00Z","price":0.00321},{"timestamp":"2026-02-25T05:02:00Z","price":0.003205},{"timestamp":"2026-02-25T05:26:00Z","price":0.003204},{"timestamp":"2026-02-25T08:07:00Z","price":0.003213},{"timestamp":"2026-02-25T22:59:00Z","price":0.003394},{"timestamp":"2026-02-25T23:02:00Z","price":0.003418},{"timestamp":"2026-02-25T23:06:00Z","price":0.003451},{"timestamp":"2026-02-25T23:10:00Z","price":0.003427},{"timestamp":"2026-02-25T23:17:00Z","price":0.003434},{"timestamp":"2026-02-25T23:20:00Z","price":0.003424},{"timestamp":"2026-02-25T23:24:00Z","price":0.003438},{"timestamp":"2026-02-25T23:29:00Z","price":0.003421},{"timestamp":"2026-02-25T23:32:00Z","price":0.003405},{"timestamp":"2026-02-25T23:36:00Z","price":0.003365},{"timestamp":"2026-02-25T23:52:00Z","price":0.003324}]
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.00 |
| Least Populated Bin | 1 trades @ $5.01 |
| Mean | 8 trades |
| Std Dev | 9 trades |
| Last | 2 trades |
| Points | 12 |
| Sum | 100 trades |
| Across 12 points the series ranged from 1 trades (5.01)to∗∗29trades∗∗(5.00), averaging 8 trades. The most recent value is 2 trades. | |
| Full series - 12 points. |
[
{
"bin": "$5.00",
"count": 29,
"from": 5
},
{
"bin": "$5.00",
"count": 13,
"from": 5.001
},
{
"bin": "$5.00",
"count": 15,
"from": 5.002
},
{
"bin": "$5.00",
"count": 25,
"from": 5.003
},
{
"bin": "$5.00",
"count": 2,
"from": 5.005
},
{
"bin": "$5.01",
"count": 1,
"from": 5.006
},
{
"bin": "$5.01",
"count": 1,
"from": 5.007
},
{
"bin": "$5.01",
"count": 2,
"from": 5.009
},
{
"bin": "$5.01",
"count": 1,
"from": 5.01
},
{
"bin": "$5.01",
"count": 4,
"from": 5.011
},
{
"bin": "$5.01",
"count": 5,
"from": 5.012
},
{
"bin": "$5.01",
"count": 2,
"from": 5.013
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 32 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.11 |
| Mean | 5 trades |
| Std Dev | 8 trades |
| Last | 25 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.11) to 32 trades (0.1), averaging 5 trades. The most recent value is 25 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 32,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 6,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 7,
"SL": 0,
"TSL": 0
},
{
"bin": 0.1,
"TP": 2,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 10,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"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.13,
"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 | 101.27 @ Jul |
| Worst Indexed Value | 98.17 @ Mar |
| Mean | 99.67 |
| Std Dev | 0.9394 |
| Last | 98.38 |
| Points | 12 |
| Across 12 points the series ranged from 98.17 (Mar) to 101.27 (Jul), averaging 99.67. The most recent value is 98.38. | |
| Full series - 12 points. |
[
{
"2025": 100.82718352288293,
"2026": 100.03895540729405,
"month": "Jan"
},
{
"2025": 99.55206893837509,
"2026": 100.03417391801479,
"month": "Feb"
},
{
"2025": 98.17055404179294,
"month": "Mar"
},
{
"2024": 99.66082957023364,
"2025": 100.07491540572046,
"month": "Apr"
},
{
"2024": 100.01163136561169,
"2025": 99.48846176942364,
"month": "May"
},
{
"2024": 97.8310181197409,
"2025": 99.20714895815459,
"month": "Jun"
},
{
"2024": 100.96619673488414,
"2025": 101.26662337854506,
"month": "Jul"
},
{
"2024": 101.89472038303184,
"2025": 100.6778900235746,
"month": "Aug"
},
{
"2024": 102.06261518607367,
"2025": 100.32038924739699,
"month": "Sep"
},
{
"2024": 101.15227082445648,
"2025": 99.25634083718377,
"month": "Oct"
},
{
"2024": 104.04096801265035,
"2025": 98.80863069239273,
"month": "Nov"
},
{
"2024": 102.67572686420488,
"2025": 98.375504951677,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 96.12 USDT @ Tue |
| Worst Weekday | 73.29 USDT @ Fri |
| Mean | 87.31 USDT |
| Std Dev | 7.57 USDT |
| Last | 95.14 USDT |
| Points | 7 |
| Sum | 611.17 USDT |
| Across 7 points the series ranged from 73.29 USDT (Fri) to 96.12 USDT (Tue), averaging 87.31 USDT. 100% of points were positive, 0% negative. The most recent value is 95.14 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 92.116025
},
{
"day": "Tue",
"profit": 96.121909
},
{
"day": "Wed",
"profit": 88.798281
},
{
"day": "Thu",
"profit": 82.564196
},
{
"day": "Fri",
"profit": 73.291301
},
{
"day": "Sat",
"profit": 83.137126
},
{
"day": "Sun",
"profit": 95.143808
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 36.15 USDT @ 0:00 |
| Worst Hour (UTC) | 20.97 USDT @ 22:00 |
| Mean | 25.47 USDT |
| Std Dev | 3.45 USDT |
| Last | 23.42 USDT |
| Points | 24 |
| Sum | 611.17 USDT |
| Across 24 points the series ranged from 20.97 USDT (22:00) to 36.15 USDT (0:00), averaging 25.47 USDT. 100% of points were positive, 0% negative. The most recent value is 23.42 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":36.154774},{"hour":"1:00","profit":28.722795},{"hour":"2:00","profit":24.415514},{"hour":"3:00","profit":23.701761},{"hour":"4:00","profit":23.324349},{"hour":"5:00","profit":22.6452},{"hour":"6:00","profit":24.123214},{"hour":"7:00","profit":25.663981},{"hour":"8:00","profit":25.138768},{"hour":"9:00","profit":26.670765},{"hour":"10:00","profit":24.229791},{"hour":"11:00","profit":26.125334},{"hour":"12:00","profit":28.447808},{"hour":"13:00","profit":28.64206},{"hour":"14:00","profit":30.67592},{"hour":"15:00","profit":28.284577},{"hour":"16:00","profit":27.92443},{"hour":"17:00","profit":24.664383},{"hour":"18:00","profit":22.138351},{"hour":"19:00","profit":21.600335},{"hour":"20:00","profit":21.374927},{"hour":"21:00","profit":22.116787},{"hour":"22:00","profit":20.967002},{"hour":"23:00","profit":23.41982}]
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.13% @ 0.06666666666666667 |
| Worst Trade Return | 0.10% @ 0.05 |
| Mean | 0.11% |
| Std Dev | 0.01% |
| Last | 0.12% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0.05) to 0.13% (0.06666666666666667), averaging 0.11%. 100% of points were positive, 0% negative. The most recent value is 0.12%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":0,"profitPct":0.1041859943,"profit":0.0052220625},{"hours":0.016666666666666666,"profitPct":0.1015511624,"profit":0.0050884505},{"hours":0.016666666666666666,"profitPct":0.1060678723,"profit":0.0053166372},{"hours":0.016666666666666666,"profitPct":0.1030478981,"profit":0.0051556945},{"hours":0,"profitPct":0.1059554303,"profit":0.0052988565},{"hours":0,"profitPct":0.1019722622,"profit":0.0051095037},{"hours":0.03333333333333333,"profitPct":0.1042620865,"profit":0.005220215},{"hours":0.06666666666666667,"profitPct":0.1032677964,"profit":0.0051764707},{"hours":0.016666666666666666,"profitPct":0.1012662548,"profit":0.00507429},{"hours":0,"profitPct":0.1011940674,"profit":0.00507213},{"hours":0,"profitPct":0.1040286703,"profit":0.005214951},{"hours":0,"profitPct":0.1037240796,"profit":0.005191218},{"hours":0,"profitPct":0.102767143,"profit":0.0051408585},{"hours":0.08333333333333333,"profitPct":0.1065468549,"profit":0.00533026},{"hours":0.016666666666666666,"profitPct":0.1012173338,"profit":0.005063969},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":11.516666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":16.816666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.2833333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":3.816666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":3.5166666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":22.733333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.26666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":93.98333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.1309512652,"profit":0.0065517052},{"hours":0.016666666666666666,"profitPct":0.1309512652,"profit":0.0065517052},{"hours":0.03333333333333333,"profitPct":0.1308635228,"profit":0.0065451705},{"hours":0.7833333333333333,"profitPct":0.1305131004,"profit":0.00652743},{"hours":2.75,"profitPct":0.1307758352,"profit":0.0065428275},{"hours":11.483333333333333,"profitPct":0.1306882022,"profit":0.0065362972},{"hours":57.266666666666666,"profitPct":0.1308635228,"profit":0.0065451705},{"hours":0.21666666666666667,"profitPct":0.1306882022,"profit":0.0065362972},{"hours":0.08333333333333333,"profitPct":0.1309512652,"profit":0.0065517052},{"hours":0.08333333333333333,"profitPct":0.1307758352,"profit":0.0065428275},{"hours":191.01666666666668,"profitPct":0.1101460804,"profit":0.0055098143},{"hours":0.016666666666666666,"profitPct":0.1307758352,"profit":0.0065428275},{"hours":0.13333333333333333,"profitPct":0.1306882022,"profit":0.0065362972},{"hours":9.1,"profitPct":0.130600624,"profit":0.0065339557},{"hours":1.2666666666666666,"profitPct":0.1309512652,"profit":0.0065517052},{"hours":1.3666666666666667,"profitPct":0.1306882022,"profit":0.0065362972},{"hours":1.2666666666666666,"profitPct":0.1306882022,"profit":0.0065362972},{"hours":0.6,"profitPct":0.1138090349,"profit":0.0056915932},{"hours":0,"profitPct":0.1105983773,"profit":0.0055304708},{"hours":0.05,"profitPct":0.1131143944,"profit":0.0056563238},{"hours":0,"profitPct":0.1118884683,"profit":0.0055981582},{"hours":0,"profitPct":0.1126533294,"profit":0.0056354423},{"hours":0,"profitPct":0.1126533294,"profit":0.0056354423},{"hours":0,"profitPct":0.1131143944,"profit":0.0056563238},{"hours":0,"profitPct":0.1135770809,"profit":0.0056811165},{"hours":0.016666666666666666,"profitPct":0.1135770809,"profit":0.0056811165},{"hours":0,"profitPct":0.1135770809,"profit":0.0056811165},{"hours":0,"profitPct":0.1141189427,"profit":0.0057081667},{"hours":0,"profitPct":0.1172585438,"profit":0.0058633845},{"hours":0.08333333333333333,"profitPct":0.1212895928,"profit":0.0060673118}]
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": "2630fcca-cbc1-4150-90a8-6ff91549dd06",
"symbol": "QKCUSDT",
"strategy": "3LongTimeLong.json",
"strategy_label": "LongTimeLong",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 672,
"start_balance_usdt": 10000,
"final_value_usdt": 10120.72741096,
"return_pct": 1.2073,
"total_profit_usdt": 611.17264396,
"avg_profit_per_trade_usdt": 0.00533202,
"fulfilled_trades": 114623,
"active_orders": 221,
"win_rate_pct": 100,
"best_trade_usdt": 0.00655171,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 5183.6875119065435,
"max_drawdown_pct": 4.922785834385151,
"max_drawdown_abs_usdt": 493.05671157640063,
"drawdown_duration_days": 45,
"recovery_days": 23,
"cagr_pct": 0.6543882542715096,
"volatility_annualized_pct": 6.301370194563509,
"sharpe_annualized": 0.1412385820691181,
"sortino_annualized": 0.16145643551299682,
"time_in_market_pct": 100,
"final_cash_usdt": 9509.5466245954,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -490.4452329513,
"median_hold_hours": 0.08333333333333333,
"avg_hold_hours": 11.861415525114156,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 2630fcca-cbc1-4150-90a8-6ff91549dd06 |
symbol | QKCUSDT |
strategy | 3LongTimeLong.json |
strategy_label | LongTimeLong |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 672 |
start_balance_usdt | 10000 |
final_value_usdt | 10120.72741096 |
return_pct | 1.2073 |
total_profit_usdt | 611.17264396 |
avg_profit_per_trade_usdt | 0.00533202 |
fulfilled_trades | 114623 |
active_orders | 221 |
win_rate_pct | 100 |
best_trade_usdt | 0.00655171 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 5183.6875119065435 |
max_drawdown_pct | 4.922785834385151 |
max_drawdown_abs_usdt | 493.05671157640063 |
drawdown_duration_days | 45 |
recovery_days | 23 |
cagr_pct | 0.6543882542715096 |
volatility_annualized_pct | 6.301370194563509 |
sharpe_annualized | 0.1412385820691181 |
sortino_annualized | 0.16145643551299682 |
time_in_market_pct | 100 |
final_cash_usdt | 9509.5466245954 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -490.4452329513 |
median_hold_hours | 0.08333333333333333 |
avg_hold_hours | 11.861415525114156 |
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 | QKCUSDT |
| 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 | 10,120.73 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | +1.21% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +611.17 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)) | 114,623 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0066 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.0053 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 5183.7 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -4.92% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -493.06 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | +0.65% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 6.30% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | 0.14 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | 0.16 |
| 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.56 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.0056 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 | 11.9h |
| 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,002 USDT |
Raw API Attachments
/trades. Full trade population: 114,623 closed trades - fetch the complete list via GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06 - backtest summary (verbatim)
GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06 - backtest summary (verbatim)
{
"id": "2630fcca-cbc1-4150-90a8-6ff91549dd06",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:11.553125Z",
"started_at": "2026-05-08T22:48:58.641083Z",
"completed_at": "2026-05-08T22:58:44.309319Z",
"mode_name": "3LongTimeLong.json",
"symbol": "QKCUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 10120.72741096,
"return_pct": 1.2073,
"total_profit": 611.17264396,
"fulfilled_trades": 114623,
"active_orders": 221,
"win_rate": 100,
"avg_profit": 0.00533202,
"max_profit": 0.00655171,
"min_profit": 0.00499063,
"elapsed_sec": 472.74,
"max_drawdown": -4.9228,
"profit_factor": null,
"sharpe_ratio": 0.1412,
"total_fees": 861.47476343,
"avg_hold_time_hours": 15.0658,
"tp_count": 114623,
"sl_count": 0,
"tsl_count": 0,
"start_price": 0.013065,
"end_price": 0.003316,
"gross_profit_quote": 1472.647407,
"gross_loss_quote": 0,
"wins": 114623,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 114623,
"consecutive_losses_max": 0,
"holding_minutes_p50": 9,
"holding_minutes_p95": 831,
"holding_minutes_max": 351806,
"description": "QKCUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | +1.21% | 114623 trades | 100% WR",
"summary_text": "Backtest QKCUSDT (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: 10,120.73 USDT\nP&L: +120.73 USDT (+1.21%)\nResult: PROFIT\nCompleted trades: 114623\nOpen orders at end: 221\nWin rate: 100.0%\nAvg. profit/trade: 0.005332 USDT\nBest trade: 0.006552 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 611.172644 USDT\nMax drawdown: -4.92%\nProfit factor: inf (no losing trades)\nSharpe ratio: 0.14\nTotal fees: 861.47 USDT\nAvg hold time: 15.1h\nTP / SL / TSL: 114623 / 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: 472.7s",
"share_token": null,
"config_hash": "4e6dab3482575a1b271966611265b9e303d1dd47edd7b4ad23c23c4887587905",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "QKCUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 1,
"stopLoss": false,
"tickSize": 0.000001,
"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/2630fcca-cbc1-4150-90a8-6ff91549dd06/equity - equity series (verbatim, 673 points)
GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 13497,
"quote_asset_bal": 9817.266256269,
"total_value_mid": 9992.605783269,
"total_value_exit_net": 9992.4742786238,
"total_value": 9992.605783269,
"base_cost_quote": 185.4055639605,
"unrealized_pnl_exit_net": -10.1975416057
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 16606,
"quote_asset_bal": 9778.7915478808,
"total_value_mid": 9993.1251898808,
"total_value_exit_net": 9992.9644396493,
"total_value": 9993.1251898808,
"base_cost_quote": 225.4999912448,
"unrealized_pnl_exit_net": -11.3270994763
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 19359,
"quote_asset_bal": 9745.134965261,
"total_value_mid": 9987.664517261,
"total_value_exit_net": 9987.482620097,
"total_value": 9987.664517261,
"base_cost_quote": 260.553804902,
"unrealized_pnl_exit_net": -18.206150066
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 20545,
"quote_asset_bal": 9731.2319723385,
"total_value_mid": 9988.4964623385,
"total_value_exit_net": 9988.303513971,
"total_value": 9988.4964623385,
"base_cost_quote": 275.5862738042,
"unrealized_pnl_exit_net": -18.5147321717
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 30289,
"quote_asset_bal": 9611.6736221098,
"total_value_mid": 9976.9589621098,
"total_value_exit_net": 9976.6849981048,
"total_value": 9976.9589621098,
"base_cost_quote": 395.8367040367,
"unrealized_pnl_exit_net": -30.8253280418
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 29066,
"quote_asset_bal": 9627.5974331245,
"total_value_mid": 9982.6676891245,
"total_value_exit_net": 9982.4013864325,
"total_value": 9982.6676891245,
"base_cost_quote": 380.810493825,
"unrealized_pnl_exit_net": -26.006540517
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 40126,
"quote_asset_bal": 9498.1614778122,
"total_value_mid": 9958.9283358122,
"total_value_exit_net": 9958.5827606687,
"total_value": 9958.9283358122,
"base_cost_quote": 511.0690235067,
"unrealized_pnl_exit_net": -50.6477406502
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 39344,
"quote_asset_bal": 9509.6927794725,
"total_value_mid": 9969.5454514725,
"total_value_exit_net": 9969.2005619685,
"total_value": 9969.5454514725,
"base_cost_quote": 501.0455815593,
"unrealized_pnl_exit_net": -41.5377990633
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 26209,
"quote_asset_bal": 9667.2079719687,
"total_value_mid": 9988.4254759687,
"total_value_exit_net": 9988.1845628407,
"total_value": 9988.4254759687,
"base_cost_quote": 345.7381763003,
"unrealized_pnl_exit_net": -24.7615854283
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 19441,
"quote_asset_bal": 9754.2826895552,
"total_value_mid": 10001.1250665552,
"total_value_exit_net": 10000.9399347725,
"total_value": 10001.1250665552,
"base_cost_quote": 260.5551829348,
"unrealized_pnl_exit_net": -13.8979377175
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 19044,
"quote_asset_bal": 9760.2296248482,
"total_value_mid": 10002.8311408482,
"total_value_exit_net": 10002.6491897112,
"total_value": 10002.8311408482,
"base_cost_quote": 255.57665884,
"unrealized_pnl_exit_net": -13.157093977
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 22601,
"quote_asset_bal": 9716.1053455672,
"total_value_mid": 10000.5163295672,
"total_value_exit_net": 10000.3030213292,
"total_value": 10000.5163295672,
"base_cost_quote": 300.65508232,
"unrealized_pnl_exit_net": -16.457406558
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 35039,
"quote_asset_bal": 9566.6454704327,
"total_value_mid": 9978.9493834327,
"total_value_exit_net": 9978.640155498,
"total_value": 9978.9493834327,
"base_cost_quote": 450.94227324,
"unrealized_pnl_exit_net": -38.9475881748
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 44145,
"quote_asset_bal": 9462.417539281,
"total_value_mid": 9963.065984281,
"total_value_exit_net": 9962.6904979473,
"total_value": 9963.065984281,
"base_cost_quote": 556.1453744335,
"unrealized_pnl_exit_net": -55.8724157672
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 41507,
"quote_asset_bal": 9493.1711275123,
"total_value_mid": 9968.3432635123,
"total_value_exit_net": 9967.9868844103,
"total_value": 9968.3432635123,
"base_cost_quote": 526.0811601712,
"unrealized_pnl_exit_net": -51.2654032733
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 38524,
"quote_asset_bal": 9528.679162906,
"total_value_mid": 9983.647602906,
"total_value_exit_net": 9983.306376576,
"total_value": 9983.647602906,
"base_cost_quote": 491.0009287155,
"unrealized_pnl_exit_net": -36.3737150455
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 41091,
"quote_asset_bal": 9499.0827776425,
"total_value_mid": 9967.1503586425,
"total_value_exit_net": 9966.7993079568,
"total_value": 9967.1503586425,
"base_cost_quote": 521.0805925562,
"unrealized_pnl_exit_net": -53.364062242
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 44590,
"quote_asset_bal": 9459.5021640028,
"total_value_mid": 9964.6622740028,
"total_value_exit_net": 9964.2834039203,
"total_value": 9964.6622740028,
"base_cost_quote": 561.164069634,
"unrealized_pnl_exit_net": -56.3828297165
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 44585,
"quote_asset_bal": 9459.8313294138,
"total_value_mid": 9967.2086294138,
"total_value_exit_net": 9966.8280964388,
"total_value": 9967.2086294138,
"base_cost_quote": 561.174401377,
"unrealized_pnl_exit_net": -54.177634352
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 42826,
"quote_asset_bal": 9480.6100208088,
"total_value_mid": 9965.4859928088,
"total_value_exit_net": 9965.1223358298,
"total_value": 9965.4859928088,
"base_cost_quote": 541.139274293,
"unrealized_pnl_exit_net": -56.626959272
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 59330,
"quote_asset_bal": 9300.8878924828,
"total_value_mid": 9931.4471324828,
"total_value_exit_net": 9930.9742130528,
"total_value": 9931.4471324828,
"base_cost_quote": 721.4733815115,
"unrealized_pnl_exit_net": -91.3870609415
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 41987,
"quote_asset_bal": 9491.9189537153,
"total_value_mid": 9972.7540777153,
"total_value_exit_net": 9972.3934513723,
"total_value": 9972.7540777153,
"base_cost_quote": 531.1283327137,
"unrealized_pnl_exit_net": -50.6538350567
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 45058,
"quote_asset_bal": 9457.267186251,
"total_value_mid": 9966.692934251,
"total_value_exit_net": 9966.31086494,
"total_value": 9966.692934251,
"base_cost_quote": 566.1815689382,
"unrealized_pnl_exit_net": -57.1378902492
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 37654,
"quote_asset_bal": 9542.8717604113,
"total_value_mid": 9985.3062604113,
"total_value_exit_net": 9984.9744345363,
"total_value": 9985.3062604113,
"base_cost_quote": 481.018477488,
"unrealized_pnl_exit_net": -38.915803363
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 36378,
"quote_asset_bal": 9558.2445581623,
"total_value_mid": 9986.0862161623,
"total_value_exit_net": 9985.7653349188,
"total_value": 9986.0862161623,
"base_cost_quote": 465.9857734095,
"unrealized_pnl_exit_net": -38.464996653
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 46368,
"quote_asset_bal": 9443.42905676,
"total_value_mid": 9965.99641676,
"total_value_exit_net": 9965.60449124,
"total_value": 9965.99641676,
"base_cost_quote": 581.2028704712,
"unrealized_pnl_exit_net": -59.0274359912
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 25633,
"quote_asset_bal": 9689.7034682803,
"total_value_mid": 10007.1169072803,
"total_value_exit_net": 10006.878847201,
"total_value": 10007.1169072803,
"base_cost_quote": 335.7325597117,
"unrealized_pnl_exit_net": -18.557180791
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 22035,
"quote_asset_bal": 9735.9078240975,
"total_value_mid": 10016.0167440975,
"total_value_exit_net": 10015.8066624075,
"total_value": 10016.0167440975,
"base_cost_quote": 290.6424154478,
"unrealized_pnl_exit_net": -10.7435771378
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 26834,
"quote_asset_bal": 9676.731455422,
"total_value_mid": 10009.660893422,
"total_value_exit_net": 10009.4111963435,
"total_value": 10009.660893422,
"base_cost_quote": 350.779783672,
"unrealized_pnl_exit_net": -18.1000427505
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 33394,
"quote_asset_bal": 9597.5854463773,
"total_value_mid": 9992.8702243773,
"total_value_exit_net": 9992.5737607938,
"total_value": 9992.8702243773,
"base_cost_quote": 430.9422154382,
"unrealized_pnl_exit_net": -35.9539010217
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 32152,
"quote_asset_bal": 9613.4124528883,
"total_value_mid": 9998.8506288883,
"total_value_exit_net": 9998.5615502563,
"total_value": 9998.8506288883,
"base_cost_quote": 415.9129139097,
"unrealized_pnl_exit_net": -30.7638165417
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 28836,
"quote_asset_bal": 9653.839952582,
"total_value_mid": 10007.052116582,
"total_value_exit_net": 10006.787207459,
"total_value": 10007.052116582,
"base_cost_quote": 375.8331225942,
"unrealized_pnl_exit_net": -22.8858677173
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 22769,
"quote_asset_bal": 9729.8898999276,
"total_value_mid": 10014.6390139275,
"total_value_exit_net": 10014.425452092,
"total_value": 10014.6390139275,
"base_cost_quote": 300.6645354045,
"unrealized_pnl_exit_net": -16.12898324
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 30015,
"quote_asset_bal": 9640.4216893158,
"total_value_mid": 10008.8858293158,
"total_value_exit_net": 10008.6094812108,
"total_value": 10008.8858293158,
"base_cost_quote": 390.853420375,
"unrealized_pnl_exit_net": -22.66562848
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 30831,
"quote_asset_bal": 9631.0833871166,
"total_value_mid": 10002.9669091166,
"total_value_exit_net": 10002.6879964751,
"total_value": 10002.9669091166,
"base_cost_quote": 400.8732986517,
"unrealized_pnl_exit_net": -29.2686892933
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 36309,
"quote_asset_bal": 9566.6715575286,
"total_value_mid": 9994.5368135286,
"total_value_exit_net": 9994.2159145866,
"total_value": 9994.5368135286,
"base_cost_quote": 465.9591694715,
"unrealized_pnl_exit_net": -38.4148124135
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 35032,
"quote_asset_bal": 9582.7725545033,
"total_value_mid": 9995.4845465033,
"total_value_exit_net": 9995.1750125093,
"total_value": 9995.4845465033,
"base_cost_quote": 450.9333455492,
"unrealized_pnl_exit_net": -38.5308875433
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 36736,
"quote_asset_bal": 9563.6704884168,
"total_value_mid": 9993.9592564168,
"total_value_exit_net": 9993.6365398408,
"total_value": 9993.9592564168,
"base_cost_quote": 471.0101278512,
"unrealized_pnl_exit_net": -41.0440764273
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 45443,
"quote_asset_bal": 9463.7074957736,
"total_value_mid": 9978.4403567736,
"total_value_exit_net": 9978.0543071278,
"total_value": 9978.4403567736,
"base_cost_quote": 571.171789799,
"unrealized_pnl_exit_net": -56.8249784447
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 50857,
"quote_asset_bal": 9403.9285731221,
"total_value_mid": 9965.1864251221,
"total_value_exit_net": 9964.7654817331,
"total_value": 9965.1864251221,
"base_cost_quote": 631.2708993507,
"unrealized_pnl_exit_net": -70.4339907397
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 45062,
"quote_asset_bal": 9469.4973760683,
"total_value_mid": 9971.2176840683,
"total_value_exit_net": 9970.8413938373,
"total_value": 9971.2176840683,
"base_cost_quote": 566.1584796342,
"unrealized_pnl_exit_net": -64.8144618653
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 37621,
"quote_asset_bal": 9555.3331902496,
"total_value_mid": 9993.5049772496,
"total_value_exit_net": 9993.1763484093,
"total_value": 9993.5049772496,
"base_cost_quote": 481.0286100817,
"unrealized_pnl_exit_net": -43.185451922
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 31693,
"quote_asset_bal": 9626.5961905921,
"total_value_mid": 10004.8204525921,
"total_value_exit_net": 10004.5367843956,
"total_value": 10004.8204525921,
"base_cost_quote": 410.853769395,
"unrealized_pnl_exit_net": -32.9131755915
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 39797,
"quote_asset_bal": 9531.8709909956,
"total_value_mid": 9994.5907099956,
"total_value_exit_net": 9994.2436702063,
"total_value": 9994.5907099956,
"base_cost_quote": 506.0416457992,
"unrealized_pnl_exit_net": -43.6689665885
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 53869,
"quote_asset_bal": 9377.3291961441,
"total_value_mid": 9930.6715641441,
"total_value_exit_net": 9930.2565573681,
"total_value": 9930.6715641441,
"base_cost_quote": 661.3393918192,
"unrealized_pnl_exit_net": -108.4120305953
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 55295,
"quote_asset_bal": 9363.4190085113,
"total_value_mid": 9932.5704435113,
"total_value_exit_net": 9932.1435799351,
"total_value": 9932.5704435113,
"base_cost_quote": 676.3658532193,
"unrealized_pnl_exit_net": -107.6412817955
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 54329,
"quote_asset_bal": 9373.9632349246,
"total_value_mid": 9935.2361339246,
"total_value_exit_net": 9934.8151792503,
"total_value": 9935.2361339246,
"base_cost_quote": 666.3544172695,
"unrealized_pnl_exit_net": -105.5024729438
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 62196,
"quote_asset_bal": 9294.3529408773,
"total_value_mid": 9919.8581128773,
"total_value_exit_net": 9919.3889839983,
"total_value": 9919.8581128773,
"base_cost_quote": 746.490764487,
"unrealized_pnl_exit_net": -121.454721366
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 69039,
"quote_asset_bal": 9230.1059743263,
"total_value_mid": 9895.5728953263,
"total_value_exit_net": 9895.0737951355,
"total_value": 9895.5728953263,
"base_cost_quote": 811.6251967005,
"unrealized_pnl_exit_net": -146.6573758913
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 62296,
"quote_asset_bal": 9296.165324283,
"total_value_mid": 9915.512156283,
"total_value_exit_net": 9915.047646159,
"total_value": 9915.512156283,
"base_cost_quote": 746.4990997338,
"unrealized_pnl_exit_net": -127.6167778578
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 69440,
"quote_asset_bal": 9226.8521246958,
"total_value_mid": 9897.2258846958,
"total_value_exit_net": 9896.7231043758,
"total_value": 9897.2258846958,
"base_cost_quote": 816.6215401498,
"unrealized_pnl_exit_net": -146.7505604698
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 73207,
"quote_asset_bal": 9192.7996459867,
"total_value_mid": 9881.1650669867,
"total_value_exit_net": 9880.648792921,
"total_value": 9881.1650669867,
"base_cost_quote": 851.6724446267,
"unrealized_pnl_exit_net": -163.8232976925
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 68946,
"quote_asset_bal": 9234.2257643447,
"total_value_mid": 9904.6566683447,
"total_value_exit_net": 9904.1538451667,
"total_value": 9904.6566683447,
"base_cost_quote": 811.6242509918,
"unrealized_pnl_exit_net": -141.6961701698
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 77836,
"quote_asset_bal": 9149.7290510445,
"total_value_mid": 9885.8241030445,
"total_value_exit_net": 9885.2720317555,
"total_value": 9885.8241030445,
"base_cost_quote": 896.7692749015,
"unrealized_pnl_exit_net": -161.2262941905
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 123830,
"quote_asset_bal": 8755.2823735318,
"total_value_mid": 9743.4457735317,
"total_value_exit_net": 9742.7046509817,
"total_value": 9743.4457735317,
"base_cost_quote": 1292.3633791248,
"unrealized_pnl_exit_net": -304.9411016748
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 135401,
"quote_asset_bal": 8666.9414693913,
"total_value_mid": 9702.0821143913,
"total_value_exit_net": 9701.3057589075,
"total_value": 9702.0821143913,
"base_cost_quote": 1382.484942642,
"unrealized_pnl_exit_net": -348.1206531258
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 143866,
"quote_asset_bal": 8602.833847356,
"total_value_mid": 9692.906529356,
"total_value_exit_net": 9692.0889748445,
"total_value": 9692.906529356,
"base_cost_quote": 1447.5942440215,
"unrealized_pnl_exit_net": -358.339116533
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 126449,
"quote_asset_bal": 8739.1567845593,
"total_value_mid": 9739.3683745593,
"total_value_exit_net": 9738.6182158668,
"total_value": 9739.3683745593,
"base_cost_quote": 1312.3941689583,
"unrealized_pnl_exit_net": -312.9327376508
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 129108,
"quote_asset_bal": 8720.3116107668,
"total_value_mid": 9728.9033067668,
"total_value_exit_net": 9728.1468629948,
"total_value": 9728.9033067668,
"base_cost_quote": 1332.4168417085,
"unrealized_pnl_exit_net": -324.5815894805
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 123985,
"quote_asset_bal": 8761.1464461301,
"total_value_mid": 9736.7844111301,
"total_value_exit_net": 9736.0526826563,
"total_value": 9736.7844111301,
"base_cost_quote": 1292.3577589128,
"unrealized_pnl_exit_net": -317.4515223865
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 135745,
"quote_asset_bal": 8672.1073114896,
"total_value_mid": 9694.5386514896,
"total_value_exit_net": 9693.7718279846,
"total_value": 9694.5386514896,
"base_cost_quote": 1382.4973349293,
"unrealized_pnl_exit_net": -360.8328184343
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 127887,
"quote_asset_bal": 8734.0277835683,
"total_value_mid": 9722.4664065683,
"total_value_exit_net": 9721.7250776011,
"total_value": 9722.4664065683,
"base_cost_quote": 1322.4091585713,
"unrealized_pnl_exit_net": -334.7118645385
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 132354,
"quote_asset_bal": 8700.3736687871,
"total_value_mid": 9713.6758927871,
"total_value_exit_net": 9712.9159161191,
"total_value": 9713.6758927871,
"base_cost_quote": 1357.4487255515,
"unrealized_pnl_exit_net": -344.9064782195
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 134955,
"quote_asset_bal": 8681.2695642221,
"total_value_mid": 9711.1111692221,
"total_value_exit_net": 9710.3387880183,
"total_value": 9711.1111692221,
"base_cost_quote": 1377.4814428295,
"unrealized_pnl_exit_net": -348.4122190333
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 123973,
"quote_asset_bal": 8767.2953532951,
"total_value_mid": 9758.7074342951,
"total_value_exit_net": 9757.9638752343,
"total_value": 9758.7074342951,
"base_cost_quote": 1292.3657008648,
"unrealized_pnl_exit_net": -301.6971789255
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 125899,
"quote_asset_bal": 8753.2183104296,
"total_value_mid": 9749.5829964296,
"total_value_exit_net": 9748.8357229151,
"total_value": 9749.5829964296,
"base_cost_quote": 1307.3724334793,
"unrealized_pnl_exit_net": -311.7550209938
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 131667,
"quote_asset_bal": 8708.7771349966,
"total_value_mid": 9733.9363969966,
"total_value_exit_net": 9733.1675275501,
"total_value": 9733.9363969966,
"base_cost_quote": 1352.4569725425,
"unrealized_pnl_exit_net": -328.066579989
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 116505,
"quote_asset_bal": 8830.0789847172,
"total_value_mid": 9776.4490997172,
"total_value_exit_net": 9775.7393221309,
"total_value": 9776.4490997172,
"base_cost_quote": 1232.265858764,
"unrealized_pnl_exit_net": -286.6055213503
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 134041,
"quote_asset_bal": 8690.2257340444,
"total_value_mid": 9736.5497800444,
"total_value_exit_net": 9735.7650370099,
"total_value": 9736.5497800444,
"base_cost_quote": 1372.500808153,
"unrealized_pnl_exit_net": -326.9615051875
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 150382,
"quote_asset_bal": 8565.1722611232,
"total_value_mid": 9696.0449011231,
"total_value_exit_net": 9695.1967466431,
"total_value": 9696.0449011231,
"base_cost_quote": 1497.7069483825,
"unrealized_pnl_exit_net": -367.6824628625
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 159164,
"quote_asset_bal": 8500.1937135589,
"total_value_mid": 9664.7967015589,
"total_value_exit_net": 9663.9232493179,
"total_value": 9664.7967015589,
"base_cost_quote": 1562.8194611687,
"unrealized_pnl_exit_net": -399.0899254098
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 186351,
"quote_asset_bal": 8310.0953790679,
"total_value_mid": 9550.0749330679,
"total_value_exit_net": 9549.1449484024,
"total_value": 9550.0749330679,
"base_cost_quote": 1753.0967341727,
"unrealized_pnl_exit_net": -514.0471648382
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 198135,
"quote_asset_bal": 8235.6403725574,
"total_value_mid": 9523.7160075574,
"total_value_exit_net": 9522.7499508311,
"total_value": 9523.7160075574,
"base_cost_quote": 1828.193137265,
"unrealized_pnl_exit_net": -541.0835589913
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 189843,
"quote_asset_bal": 8291.1056571284,
"total_value_mid": 9583.3669581284,
"total_value_exit_net": 9582.3977621526,
"total_value": 9583.3669581284,
"base_cost_quote": 1773.1202905852,
"unrealized_pnl_exit_net": -481.828185561
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 207872,
"quote_asset_bal": 8171.3013544597,
"total_value_mid": 9529.7448744597,
"total_value_exit_net": 9528.7260418197,
"total_value": 9529.7448744597,
"base_cost_quote": 1893.3103285575,
"unrealized_pnl_exit_net": -535.8856411975
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 186158,
"quote_asset_bal": 8317.5439630239,
"total_value_mid": 9600.1725830239,
"total_value_exit_net": 9599.2106115589,
"total_value": 9600.1725830239,
"base_cost_quote": 1748.0927880257,
"unrealized_pnl_exit_net": -466.4261394907
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 180368,
"quote_asset_bal": 8358.2220097147,
"total_value_mid": 9617.5513857147,
"total_value_exit_net": 9616.6068886827,
"total_value": 9617.5513857147,
"base_cost_quote": 1708.0215180965,
"unrealized_pnl_exit_net": -449.6366391285
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 169132,
"quote_asset_bal": 8439.2426847949,
"total_value_mid": 9649.8895407949,
"total_value_exit_net": 9648.9815556529,
"total_value": 9649.8895407949,
"base_cost_quote": 1627.9055921835,
"unrealized_pnl_exit_net": -418.1667213255
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 171210,
"quote_asset_bal": 8424.6830199922,
"total_value_mid": 9641.3012799922,
"total_value_exit_net": 9640.3888162972,
"total_value": 9641.3012799922,
"base_cost_quote": 1642.9185664757,
"unrealized_pnl_exit_net": -427.2127701707
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 170502,
"quote_asset_bal": 8429.9366500499,
"total_value_mid": 9652.2654880499,
"total_value_exit_net": 9651.3487414214,
"total_value": 9652.2654880499,
"base_cost_quote": 1637.9014554625,
"unrealized_pnl_exit_net": -416.489364091
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 164934,
"quote_asset_bal": 8470.1993562487,
"total_value_mid": 9675.8668962487,
"total_value_exit_net": 9674.9626455937,
"total_value": 9675.8668962487,
"base_cost_quote": 1597.8618402565,
"unrealized_pnl_exit_net": -393.0985509115
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 161533,
"quote_asset_bal": 8495.3733781604,
"total_value_mid": 9694.2713041604,
"total_value_exit_net": 9693.3721307159,
"total_value": 9694.2713041604,
"base_cost_quote": 1572.8186329272,
"unrealized_pnl_exit_net": -374.8198803718
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 146298,
"quote_asset_bal": 8610.7836679372,
"total_value_mid": 9735.3763939372,
"total_value_exit_net": 9734.5329493927,
"total_value": 9735.3763939372,
"base_cost_quote": 1457.629835074,
"unrealized_pnl_exit_net": -333.8805536185
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 140479,
"quote_asset_bal": 8656.5143895274,
"total_value_mid": 9749.4410095274,
"total_value_exit_net": 9748.6213145624,
"total_value": 9749.4410095274,
"base_cost_quote": 1412.5675496885,
"unrealized_pnl_exit_net": -320.4606246535
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 137294,
"quote_asset_bal": 8682.1545436695,
"total_value_mid": 9756.8919756694,
"total_value_exit_net": 9756.0859225954,
"total_value": 9756.8919756694,
"base_cost_quote": 1387.521441185,
"unrealized_pnl_exit_net": -313.590062259
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 134744,
"quote_asset_bal": 8703.20636282,
"total_value_mid": 9765.25857082,
"total_value_exit_net": 9764.462031664,
"total_value": 9765.25857082,
"base_cost_quote": 1367.487535016,
"unrealized_pnl_exit_net": -306.231866172
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 119899,
"quote_asset_bal": 8824.813830735,
"total_value_mid": 9793.957447735,
"total_value_exit_net": 9793.2305900222,
"total_value": 9793.957447735,
"base_cost_quote": 1247.2971457805,
"unrealized_pnl_exit_net": -278.8803864933
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 116819,
"quote_asset_bal": 8850.8711912622,
"total_value_mid": 9813.9270272622,
"total_value_exit_net": 9813.2047353852,
"total_value": 9813.9270272622,
"base_cost_quote": 1222.2536502353,
"unrealized_pnl_exit_net": -259.9201061123
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 116216,
"quote_asset_bal": 8856.5605290335,
"total_value_mid": 9821.0371130335,
"total_value_exit_net": 9820.3137555955,
"total_value": 9821.0371130335,
"base_cost_quote": 1217.245658056,
"unrealized_pnl_exit_net": -253.492431494
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 132378,
"quote_asset_bal": 8726.7025719645,
"total_value_mid": 9770.2383459645,
"total_value_exit_net": 9769.455694134,
"total_value": 9770.2383459645,
"base_cost_quote": 1347.4555713028,
"unrealized_pnl_exit_net": -304.7024491333
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 136210,
"quote_asset_bal": 8696.9155130235,
"total_value_mid": 9759.7621430235,
"total_value_exit_net": 9758.965008051,
"total_value": 9759.7621430235,
"base_cost_quote": 1377.4894318168,
"unrealized_pnl_exit_net": -315.4399367893
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 133699,
"quote_asset_bal": 8717.2253671005,
"total_value_mid": 9759.4090721005,
"total_value_exit_net": 9758.6274343218,
"total_value": 9759.4090721005,
"base_cost_quote": 1357.4746659923,
"unrealized_pnl_exit_net": -316.072598771
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 136407,
"quote_asset_bal": 8697.6513878118,
"total_value_mid": 9735.4358438118,
"total_value_exit_net": 9734.6575054698,
"total_value": 9735.4358438118,
"base_cost_quote": 1377.5075193723,
"unrealized_pnl_exit_net": -340.5014017143
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 128667,
"quote_asset_bal": 8757.9584455693,
"total_value_mid": 9784.4637715693,
"total_value_exit_net": 9783.6938925748,
"total_value": 9784.4637715693,
"base_cost_quote": 1317.419792351,
"unrealized_pnl_exit_net": -291.6843453455
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 126777,
"quote_asset_bal": 8773.258218376,
"total_value_mid": 9797.996709376,
"total_value_exit_net": 9797.2281555078,
"total_value": 9797.996709376,
"base_cost_quote": 1302.3799709385,
"unrealized_pnl_exit_net": -278.4100338068
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 25549,
"quote_asset_bal": 9863.0902365763,
"total_value_mid": 10169.7037855763,
"total_value_exit_net": 10169.4738254145,
"total_value": 10169.7037855763,
"base_cost_quote": 215.3366884803,
"unrealized_pnl_exit_net": 91.046900358
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 33373,
"quote_asset_bal": 9776.568074057,
"total_value_mid": 10131.723540057,
"total_value_exit_net": 10131.4571734575,
"total_value": 10131.723540057,
"base_cost_quote": 305.5096345055,
"unrealized_pnl_exit_net": 49.379464895
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 40223,
"quote_asset_bal": 9708.4677318025,
"total_value_mid": 10106.2732018025,
"total_value_exit_net": 10105.9748477,
"total_value": 10106.2732018025,
"base_cost_quote": 375.6402760677,
"unrealized_pnl_exit_net": 21.8668398297
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 41615,
"quote_asset_bal": 9699.963311293,
"total_value_mid": 10089.313251293,
"total_value_exit_net": 10089.021238838,
"total_value": 10089.313251293,
"base_cost_quote": 385.6605516423,
"unrealized_pnl_exit_net": 3.3973759027
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 37812,
"quote_asset_bal": 9736.3146737237,
"total_value_mid": 10083.7691417237,
"total_value_exit_net": 10083.5085508727,
"total_value": 10083.7691417237,
"base_cost_quote": 350.5941315372,
"unrealized_pnl_exit_net": -3.4002543883
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 49856,
"quote_asset_bal": 9632.203697355,
"total_value_mid": 10049.448561355,
"total_value_exit_net": 10049.135627707,
"total_value": 10049.448561355,
"base_cost_quote": 455.769506952,
"unrealized_pnl_exit_net": -38.8375766
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 68486,
"quote_asset_bal": 9482.965880346,
"total_value_mid": 10007.637126346,
"total_value_exit_net": 10007.2436229115,
"total_value": 10007.637126346,
"base_cost_quote": 605.9998702832,
"unrealized_pnl_exit_net": -81.7221277177
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 101095,
"quote_asset_bal": 9248.3735074002,
"total_value_mid": 9940.5709724002,
"total_value_exit_net": 9940.0518243015,
"total_value": 9940.5709724002,
"base_cost_quote": 841.3322042585,
"unrealized_pnl_exit_net": -149.6538873573
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 124216,
"quote_asset_bal": 9105.5115538487,
"total_value_mid": 9865.5892578487,
"total_value_exit_net": 9865.0191995707,
"total_value": 9865.5892578487,
"base_cost_quote": 986.5402436697,
"unrealized_pnl_exit_net": -227.0325979477
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 120006,
"quote_asset_bal": 9132.0317988975,
"total_value_mid": 9910.1507028975,
"total_value_exit_net": 9909.5671137195,
"total_value": 9910.1507028975,
"base_cost_quote": 961.505796906,
"unrealized_pnl_exit_net": -183.970482084
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 127904,
"quote_asset_bal": 9083.281341316,
"total_value_mid": 9884.088285316,
"total_value_exit_net": 9883.487680108,
"total_value": 9884.088285316,
"base_cost_quote": 1011.5524347542,
"unrealized_pnl_exit_net": -211.3460959622
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 49874,
"quote_asset_bal": 9692.1533454525,
"total_value_mid": 10127.7528614525,
"total_value_exit_net": 10127.4261618155,
"total_value": 10127.7528614525,
"base_cost_quote": 405.687253412,
"unrealized_pnl_exit_net": 29.585562951
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 35197,
"quote_asset_bal": 9856.6513717677,
"total_value_mid": 10242.8328557677,
"total_value_exit_net": 10242.5432196547,
"total_value": 10242.8328557677,
"base_cost_quote": 245.3648837485,
"unrealized_pnl_exit_net": 140.5269641385
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 44857,
"quote_asset_bal": 9749.7101152437,
"total_value_mid": 10244.3482542437,
"total_value_exit_net": 10243.9772756395,
"total_value": 10244.3482542437,
"base_cost_quote": 355.5864649813,
"unrealized_pnl_exit_net": 138.6806954145
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 60054,
"quote_asset_bal": 9596.7365326858,
"total_value_mid": 10188.8689726858,
"total_value_exit_net": 10188.4248733558,
"total_value": 10188.8689726858,
"base_cost_quote": 510.8713833878,
"unrealized_pnl_exit_net": 80.8169572823
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 60129,
"quote_asset_bal": 9598.7217296037,
"total_value_mid": 10174.7575496037,
"total_value_exit_net": 10174.3255227387,
"total_value": 10174.7575496037,
"base_cost_quote": 510.853769187,
"unrealized_pnl_exit_net": 64.750023948
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 61287,
"quote_asset_bal": 9589.9739487415,
"total_value_mid": 10163.3138337415,
"total_value_exit_net": 10162.8838288277,
"total_value": 10163.3138337415,
"base_cost_quote": 520.8772581698,
"unrealized_pnl_exit_net": 52.0326219165
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 41531,
"quote_asset_bal": 9793.8275962937,
"total_value_mid": 10271.7248132937,
"total_value_exit_net": 10271.3663903809,
"total_value": 10271.7248132937,
"base_cost_quote": 320.504414162,
"unrealized_pnl_exit_net": 157.0343799252
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 53539,
"quote_asset_bal": 9665.9236640387,
"total_value_mid": 10227.2265400387,
"total_value_exit_net": 10226.8055628817,
"total_value": 10227.2265400387,
"base_cost_quote": 450.7114912833,
"unrealized_pnl_exit_net": 110.1704075597
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 55580,
"quote_asset_bal": 9647.3138493707,
"total_value_mid": 10212.8959293707,
"total_value_exit_net": 10212.4717428107,
"total_value": 10212.8959293707,
"base_cost_quote": 470.755578082,
"unrealized_pnl_exit_net": 94.402315358
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 58113,
"quote_asset_bal": 9623.1172840067,
"total_value_mid": 10206.6299170066,
"total_value_exit_net": 10206.1922825319,
"total_value": 10206.6299170066,
"base_cost_quote": 495.8021719493,
"unrealized_pnl_exit_net": 87.272826576
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 61160,
"quote_asset_bal": 9593.7963231481,
"total_value_mid": 10188.8831231481,
"total_value_exit_net": 10188.4368080481,
"total_value": 10188.8831231481,
"base_cost_quote": 525.8405298337,
"unrealized_pnl_exit_net": 68.7999550663
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 49621,
"quote_asset_bal": 9716.1567357262,
"total_value_mid": 10223.2833557261,
"total_value_exit_net": 10222.9030107611,
"total_value": 10223.2833557261,
"base_cost_quote": 405.6508361195,
"unrealized_pnl_exit_net": 101.0954389155
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 58547,
"quote_asset_bal": 9626.7655848337,
"total_value_mid": 10205.3270388337,
"total_value_exit_net": 10204.8931177432,
"total_value": 10205.3270388337,
"base_cost_quote": 495.7922925452,
"unrealized_pnl_exit_net": 82.3352403643
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 60081,
"quote_asset_bal": 9612.1264449281,
"total_value_mid": 10206.7481019281,
"total_value_exit_net": 10206.3021356854,
"total_value": 10206.7481019281,
"base_cost_quote": 510.8078007365,
"unrealized_pnl_exit_net": 83.3678900207
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 64173,
"quote_asset_bal": 9572.3232753526,
"total_value_mid": 10195.3789323526,
"total_value_exit_net": 10194.9116406099,
"total_value": 10195.3789323526,
"base_cost_quote": 550.8886348335,
"unrealized_pnl_exit_net": 71.6997304237
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 55030,
"quote_asset_bal": 9662.9839360106,
"total_value_mid": 10219.0070560106,
"total_value_exit_net": 10218.5900386706,
"total_value": 10219.0070560106,
"base_cost_quote": 460.7190733448,
"unrealized_pnl_exit_net": 94.8870293153
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 57014,
"quote_asset_bal": 9643.4057731331,
"total_value_mid": 10216.7955711331,
"total_value_exit_net": 10216.3655287846,
"total_value": 10216.7955711331,
"base_cost_quote": 480.7535449375,
"unrealized_pnl_exit_net": 92.206210714
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 51672,
"quote_asset_bal": 9700.0375911574,
"total_value_mid": 10246.9857111574,
"total_value_exit_net": 10246.5755000674,
"total_value": 10246.9857111574,
"base_cost_quote": 425.6908678792,
"unrealized_pnl_exit_net": 120.8470410308
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 64979,
"quote_asset_bal": 9565.2001517901,
"total_value_mid": 10204.1386587901,
"total_value_exit_net": 10203.6594549099,
"total_value": 10204.1386587901,
"base_cost_quote": 560.928617177,
"unrealized_pnl_exit_net": 77.5306859427
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 79132,
"quote_asset_bal": 9430.1561335651,
"total_value_mid": 10159.1201175651,
"total_value_exit_net": 10158.5733945771,
"total_value": 10159.1201175651,
"base_cost_quote": 696.1898490735,
"unrealized_pnl_exit_net": 32.2274119385
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 82381,
"quote_asset_bal": 9400.4176860661,
"total_value_mid": 10152.1443110661,
"total_value_exit_net": 10151.5805160973,
"total_value": 10152.1443110661,
"base_cost_quote": 726.2398146572,
"unrealized_pnl_exit_net": 24.923015374
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 80218,
"quote_asset_bal": 9420.7436326249,
"total_value_mid": 10159.1503226248,
"total_value_exit_net": 10158.5965176073,
"total_value": 10159.1503226248,
"base_cost_quote": 706.2079880467,
"unrealized_pnl_exit_net": 31.6448969357
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 88604,
"quote_asset_bal": 9345.8317610921,
"total_value_mid": 10139.9008090921,
"total_value_exit_net": 10139.3052573061,
"total_value": 10139.9008090921,
"base_cost_quote": 781.3271652067,
"unrealized_pnl_exit_net": 12.1463310072
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 71279,
"quote_asset_bal": 9512.7822212853,
"total_value_mid": 10182.3058682853,
"total_value_exit_net": 10181.8037255501,
"total_value": 10182.3058682853,
"base_cost_quote": 616.0455699115,
"unrealized_pnl_exit_net": 52.9759343533
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 82203,
"quote_asset_bal": 9413.4917915298,
"total_value_mid": 10144.2764615298,
"total_value_exit_net": 10143.7283730273,
"total_value": 10144.2764615298,
"base_cost_quote": 716.1691583255,
"unrealized_pnl_exit_net": 14.067423172
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 76035,
"quote_asset_bal": 9469.1826844646,
"total_value_mid": 10165.2831094646,
"total_value_exit_net": 10164.7610341458,
"total_value": 10165.2831094646,
"base_cost_quote": 661.078681433,
"unrealized_pnl_exit_net": 34.4996682482
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 88935,
"quote_asset_bal": 9354.1568096411,
"total_value_mid": 10126.8240896411,
"total_value_exit_net": 10126.2445891811,
"total_value": 10126.8240896411,
"base_cost_quote": 776.2746586667,
"unrealized_pnl_exit_net": -4.1868791268
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 88378,
"quote_asset_bal": 9359.5601638408,
"total_value_mid": 10130.5698358408,
"total_value_exit_net": 10129.9915785868,
"total_value": 10130.5698358408,
"base_cost_quote": 771.2483617692,
"unrealized_pnl_exit_net": -0.8169470232
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 97822,
"quote_asset_bal": 9279.7389185393,
"total_value_mid": 10093.5201365393,
"total_value_exit_net": 10092.9098006258,
"total_value": 10093.5201365393,
"base_cost_quote": 851.3795150942,
"unrealized_pnl_exit_net": -38.2086330077
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 102079,
"quote_asset_bal": 9245.3459864011,
"total_value_mid": 10071.7775704011,
"total_value_exit_net": 10071.1577467131,
"total_value": 10071.7775704011,
"base_cost_quote": 886.428114844,
"unrealized_pnl_exit_net": -60.616354532
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 102700,
"quote_asset_bal": 9240.9271179689,
"total_value_mid": 10083.9914179689,
"total_value_exit_net": 10083.3591197439,
"total_value": 10083.9914179689,
"base_cost_quote": 891.4463486987,
"unrealized_pnl_exit_net": -49.0143469238
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 95416,
"quote_asset_bal": 9301.2783275949,
"total_value_mid": 10098.8606715949,
"total_value_exit_net": 10098.2624848369,
"total_value": 10098.8606715949,
"base_cost_quote": 831.3501503287,
"unrealized_pnl_exit_net": -34.3659930867
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 90640,
"quote_asset_bal": 9341.7025727634,
"total_value_mid": 10116.6745727634,
"total_value_exit_net": 10116.0933437634,
"total_value": 10116.6745727634,
"base_cost_quote": 791.2826382157,
"unrealized_pnl_exit_net": -16.8918672157
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 86591,
"quote_asset_bal": 9377.4058654679,
"total_value_mid": 10128.5827904679,
"total_value_exit_net": 10128.0194077741,
"total_value": 10128.5827904679,
"base_cost_quote": 756.2405823702,
"unrealized_pnl_exit_net": -5.627040064
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 85429,
"quote_asset_bal": 9387.9908488569,
"total_value_mid": 10130.3688588569,
"total_value_exit_net": 10129.8120753494,
"total_value": 10130.3688588569,
"base_cost_quote": 746.2159855572,
"unrealized_pnl_exit_net": -4.3947590648
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 83683,
"quote_asset_bal": 9403.3134299366,
"total_value_mid": 10142.6527349366,
"total_value_exit_net": 10142.0982304579,
"total_value": 10142.6527349366,
"base_cost_quote": 731.198443842,
"unrealized_pnl_exit_net": 7.5863566793
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 80873,
"quote_asset_bal": 9428.7214166459,
"total_value_mid": 10151.1599256459,
"total_value_exit_net": 10150.6180967641,
"total_value": 10151.1599256459,
"base_cost_quote": 706.14357077,
"unrealized_pnl_exit_net": 15.7531093482
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 80868,
"quote_asset_bal": 9428.9906956594,
"total_value_mid": 10149.5245756594,
"total_value_exit_net": 10148.9841752494,
"total_value": 10149.5245756594,
"base_cost_quote": 706.1414231605,
"unrealized_pnl_exit_net": 13.8520564295
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 90032,
"quote_asset_bal": 9349.2287224886,
"total_value_mid": 10121.7933144886,
"total_value_exit_net": 10121.2138910446,
"total_value": 10121.7933144886,
"base_cost_quote": 786.2734011035,
"unrealized_pnl_exit_net": -14.2882325475
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 90032,
"quote_asset_bal": 9349.8771452256,
"total_value_mid": 10122.0816092256,
"total_value_exit_net": 10121.5024558776,
"total_value": 10122.0816092256,
"base_cost_quote": 786.276709583,
"unrealized_pnl_exit_net": -14.651398931
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 86560,
"quote_asset_bal": 9380.5393329957,
"total_value_mid": 10132.1398129957,
"total_value_exit_net": 10131.5761126357,
"total_value": 10132.1398129957,
"base_cost_quote": 756.225564115,
"unrealized_pnl_exit_net": -5.188784475
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 86618,
"quote_asset_bal": 9381.1259031762,
"total_value_mid": 10138.8601671762,
"total_value_exit_net": 10138.2918664782,
"total_value": 10138.8601671762,
"base_cost_quote": 756.2260714952,
"unrealized_pnl_exit_net": 0.9398918068
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 80964,
"quote_asset_bal": 9431.7991207952,
"total_value_mid": 10161.6895807952,
"total_value_exit_net": 10161.1421629502,
"total_value": 10161.6895807952,
"base_cost_quote": 706.143995088,
"unrealized_pnl_exit_net": 23.199047067
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 72739,
"quote_asset_bal": 9507.5340571064,
"total_value_mid": 10182.0428041064,
"total_value_exit_net": 10181.5369225462,
"total_value": 10182.0428041064,
"base_cost_quote": 631.0217346172,
"unrealized_pnl_exit_net": 42.9811308225
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 61112,
"quote_asset_bal": 9619.0677420752,
"total_value_mid": 10210.6319020752,
"total_value_exit_net": 10210.1882289552,
"total_value": 10210.6319020752,
"base_cost_quote": 520.8557500507,
"unrealized_pnl_exit_net": 70.2647368292
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 68504,
"quote_asset_bal": 9549.3463619487,
"total_value_mid": 10194.3800259487,
"total_value_exit_net": 10193.8962507007,
"total_value": 10194.3800259487,
"base_cost_quote": 590.9708049317,
"unrealized_pnl_exit_net": 53.5790838203
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 64248,
"quote_asset_bal": 9589.9614094392,
"total_value_mid": 10203.4013134392,
"total_value_exit_net": 10202.9412335112,
"total_value": 10203.4013134392,
"base_cost_quote": 550.9124216602,
"unrealized_pnl_exit_net": 62.0674024117
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 62152,
"quote_asset_bal": 9610.4707785729,
"total_value_mid": 10208.2487145729,
"total_value_exit_net": 10207.8003811209,
"total_value": 10208.2487145729,
"base_cost_quote": 530.867095933,
"unrealized_pnl_exit_net": 66.462506615
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 72634,
"quote_asset_bal": 9510.9065025964,
"total_value_mid": 10190.4702065964,
"total_value_exit_net": 10189.9605338184,
"total_value": 10190.4702065964,
"base_cost_quote": 631.0590806057,
"unrealized_pnl_exit_net": 47.9949506162
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 66285,
"quote_asset_bal": 9571.6261642009,
"total_value_mid": 10202.3942242009,
"total_value_exit_net": 10201.9211481559,
"total_value": 10202.3942242009,
"base_cost_quote": 570.9305870325,
"unrealized_pnl_exit_net": 59.3643969225
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 64211,
"quote_asset_bal": 9591.9740171749,
"total_value_mid": 10214.6922951749,
"total_value_exit_net": 10214.2252564664,
"total_value": 10214.6922951749,
"base_cost_quote": 550.9059888392,
"unrealized_pnl_exit_net": 71.3452504523
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 64727,
"quote_asset_bal": 9587.2295993674,
"total_value_mid": 10213.2044163674,
"total_value_exit_net": 10212.7349352547,
"total_value": 10213.2044163674,
"base_cost_quote": 555.9160595762,
"unrealized_pnl_exit_net": 69.589276311
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 64166,
"quote_asset_bal": 9592.7929526212,
"total_value_mid": 10214.2406626212,
"total_value_exit_net": 10213.7745768387,
"total_value": 10214.2406626212,
"base_cost_quote": 550.9249780705,
"unrealized_pnl_exit_net": 70.056646147
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 70951,
"quote_asset_bal": 9528.0293034777,
"total_value_mid": 10199.0838614777,
"total_value_exit_net": 10198.5805705592,
"total_value": 10199.0838614777,
"base_cost_quote": 616.0181963967,
"unrealized_pnl_exit_net": 54.5330706847
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 83951,
"quote_asset_bal": 9408.2170584184,
"total_value_mid": 10160.5019694184,
"total_value_exit_net": 10159.9377557352,
"total_value": 10160.5019694184,
"base_cost_quote": 736.2398910937,
"unrealized_pnl_exit_net": 15.480806223
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 89001,
"quote_asset_bal": 9363.6862108339,
"total_value_mid": 10144.6699858339,
"total_value_exit_net": 10144.0842480026,
"total_value": 10144.6699858339,
"base_cost_quote": 781.311880752,
"unrealized_pnl_exit_net": -0.9138435833
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 92410,
"quote_asset_bal": 9334.1957905992,
"total_value_mid": 10143.5225705992,
"total_value_exit_net": 10142.9155755142,
"total_value": 10143.5225705992,
"base_cost_quote": 811.3708340715,
"unrealized_pnl_exit_net": -2.6510491565
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 81720,
"quote_asset_bal": 9429.8586884559,
"total_value_mid": 10170.2418884559,
"total_value_exit_net": 10169.6866010559,
"total_value": 10170.2418884559,
"base_cost_quote": 716.2091072647,
"unrealized_pnl_exit_net": 23.6188053353
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 78443,
"quote_asset_bal": 9460.1974824209,
"total_value_mid": 10173.7150104209,
"total_value_exit_net": 10173.1798722749,
"total_value": 10173.7150104209,
"base_cost_quote": 686.1580988995,
"unrealized_pnl_exit_net": 26.8242909545
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 77891,
"quote_asset_bal": 9465.4669729974,
"total_value_mid": 10191.7226569974,
"total_value_exit_net": 10191.1779652344,
"total_value": 10191.7226569974,
"base_cost_quote": 681.1499666152,
"unrealized_pnl_exit_net": 44.5610256218
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 76812,
"quote_asset_bal": 9476.3467193739,
"total_value_mid": 10187.9330873739,
"total_value_exit_net": 10187.3993975979,
"total_value": 10187.9330873739,
"base_cost_quote": 671.1277826105,
"unrealized_pnl_exit_net": 39.9248956135
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 74661,
"quote_asset_bal": 9497.1039630672,
"total_value_mid": 10193.9150760672,
"total_value_exit_net": 10193.3924677324,
"total_value": 10193.9150760672,
"base_cost_quote": 651.0927105677,
"unrealized_pnl_exit_net": 45.1957940975
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 81830,
"quote_asset_bal": 9432.4723287267,
"total_value_mid": 10167.0602387267,
"total_value_exit_net": 10166.5092977942,
"total_value": 10167.0602387267,
"base_cost_quote": 716.191757262,
"unrealized_pnl_exit_net": 17.8452118055
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 86368,
"quote_asset_bal": 9392.8681333489,
"total_value_mid": 10144.9606773489,
"total_value_exit_net": 10144.3966079409,
"total_value": 10144.9606773489,
"base_cost_quote": 756.2669901612,
"unrealized_pnl_exit_net": -4.7385155692
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 80126,
"quote_asset_bal": 9448.3757181689,
"total_value_mid": 10160.5356061689,
"total_value_exit_net": 10160.0014862529,
"total_value": 10160.5356061689,
"base_cost_quote": 701.1687444465,
"unrealized_pnl_exit_net": 10.4570236375
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 80678,
"quote_asset_bal": 9443.7239801574,
"total_value_mid": 10171.5202181574,
"total_value_exit_net": 10170.9743709789,
"total_value": 10171.5202181574,
"base_cost_quote": 706.1893981147,
"unrealized_pnl_exit_net": 21.0609927067
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 87990,
"quote_asset_bal": 9379.0521150502,
"total_value_mid": 10155.9158250502,
"total_value_exit_net": 10155.3331772677,
"total_value": 10155.9158250502,
"base_cost_quote": 771.2795951767,
"unrealized_pnl_exit_net": 5.0014670408
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 77909,
"quote_asset_bal": 9469.6539940389,
"total_value_mid": 10180.4178010389,
"total_value_exit_net": 10179.8847281837,
"total_value": 10180.4178010389,
"base_cost_quote": 681.1400501835,
"unrealized_pnl_exit_net": 29.0906839612
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 82352,
"quote_asset_bal": 9429.9480063512,
"total_value_mid": 10166.0925343512,
"total_value_exit_net": 10165.5404259552,
"total_value": 10166.0925343512,
"base_cost_quote": 721.2150368982,
"unrealized_pnl_exit_net": 14.3773827058
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 84040,
"quote_asset_bal": 9415.2303687712,
"total_value_mid": 10160.9172887712,
"total_value_exit_net": 10160.3580235812,
"total_value": 10160.9172887712,
"base_cost_quote": 736.2444224897,
"unrealized_pnl_exit_net": 8.8832323203
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 94308,
"quote_asset_bal": 9325.3883099989,
"total_value_mid": 10143.1329779989,
"total_value_exit_net": 10142.5196694979,
"total_value": 10143.1329779989,
"base_cost_quote": 826.3895346552,
"unrealized_pnl_exit_net": -9.2581751563
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 88573,
"quote_asset_bal": 9375.7788122144,
"total_value_mid": 10156.5498072144,
"total_value_exit_net": 10155.9642289681,
"total_value": 10156.5498072144,
"base_cost_quote": 776.3058160172,
"unrealized_pnl_exit_net": 3.8796007365
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 82361,
"quote_asset_bal": 9431.1140226692,
"total_value_mid": 10171.1276076691,
"total_value_exit_net": 10170.5725974804,
"total_value": 10171.1276076691,
"base_cost_quote": 721.2227787002,
"unrealized_pnl_exit_net": 18.235796111
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 80700,
"quote_asset_bal": 9446.3830823944,
"total_value_mid": 10178.6548823944,
"total_value_exit_net": 10178.1056785444,
"total_value": 10178.6548823944,
"base_cost_quote": 706.1832304925,
"unrealized_pnl_exit_net": 25.5393656575
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 89143,
"quote_asset_bal": 9371.4590748164,
"total_value_mid": 10153.4214708164,
"total_value_exit_net": 10152.8349990194,
"total_value": 10153.4214708164,
"base_cost_quote": 781.3253418402,
"unrealized_pnl_exit_net": 0.0505823628
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 90865,
"quote_asset_bal": 9356.5817775554,
"total_value_mid": 10151.8322575554,
"total_value_exit_net": 10151.2358196954,
"total_value": 10151.8322575554,
"base_cost_quote": 796.3511967857,
"unrealized_pnl_exit_net": -1.6971546458
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 96653,
"quote_asset_bal": 9306.7197448602,
"total_value_mid": 10136.8723618602,
"total_value_exit_net": 10136.2497473974,
"total_value": 10136.8723618602,
"base_cost_quote": 846.432496611,
"unrealized_pnl_exit_net": -16.9024940738
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 92588,
"quote_asset_bal": 9341.9717323194,
"total_value_mid": 10147.4873323194,
"total_value_exit_net": 10146.8831956194,
"total_value": 10147.4873323194,
"base_cost_quote": 811.3709571637,
"unrealized_pnl_exit_net": -6.4594938638
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 95833,
"quote_asset_bal": 9317.7898623149,
"total_value_mid": 10101.1288043149,
"total_value_exit_net": 10100.5413001084,
"total_value": 10101.1288043149,
"base_cost_quote": 836.4125803057,
"unrealized_pnl_exit_net": -53.6611425122
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 88306,
"quote_asset_bal": 9383.8776714997,
"total_value_mid": 10124.5883994997,
"total_value_exit_net": 10124.0328664537,
"total_value": 10124.5883994997,
"base_cost_quote": 771.2958953927,
"unrealized_pnl_exit_net": -31.1407004388
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 89473,
"quote_asset_bal": 9374.536968951,
"total_value_mid": 10122.799667951,
"total_value_exit_net": 10122.2384709267,
"total_value": 10122.799667951,
"base_cost_quote": 781.3170586325,
"unrealized_pnl_exit_net": -33.6155566567
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 87061,
"quote_asset_bal": 9395.9638068777,
"total_value_mid": 10139.1165028777,
"total_value_exit_net": 10138.5591383557,
"total_value": 10139.1165028777,
"base_cost_quote": 761.2909593142,
"unrealized_pnl_exit_net": -18.6956278362
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 88666,
"quote_asset_bal": 9381.8808951645,
"total_value_mid": 10150.8811131645,
"total_value_exit_net": 10150.304363001,
"total_value": 10150.8811131645,
"base_cost_quote": 776.326356411,
"unrealized_pnl_exit_net": -7.9028885745
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 96284,
"quote_asset_bal": 9317.3594355415,
"total_value_mid": 10130.4778155415,
"total_value_exit_net": 10129.8679767565,
"total_value": 10130.4778155415,
"base_cost_quote": 841.4141366617,
"unrealized_pnl_exit_net": -28.9055954468
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 104680,
"quote_asset_bal": 9247.5811935977,
"total_value_mid": 10108.2601535977,
"total_value_exit_net": 10107.6146443777,
"total_value": 10108.2601535977,
"base_cost_quote": 911.5236083585,
"unrealized_pnl_exit_net": -51.4901575785
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 106528,
"quote_asset_bal": 9232.9737318915,
"total_value_mid": 10104.0531878915,
"total_value_exit_net": 10103.3998782995,
"total_value": 10104.0531878915,
"base_cost_quote": 926.5725916372,
"unrealized_pnl_exit_net": -56.1464452292
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 110262,
"quote_asset_bal": 9203.3602132795,
"total_value_mid": 10091.0795752795,
"total_value_exit_net": 10090.413785758,
"total_value": 10091.0795752795,
"base_cost_quote": 956.6032357407,
"unrealized_pnl_exit_net": -69.5496632622
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 121099,
"quote_asset_bal": 9118.7793850447,
"total_value_mid": 10059.2342190447,
"total_value_exit_net": 10058.5288779192,
"total_value": 10059.2342190447,
"base_cost_quote": 1041.7300189802,
"unrealized_pnl_exit_net": -101.9805261057
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 116853,
"quote_asset_bal": 9154.9949488435,
"total_value_mid": 10058.1517858435,
"total_value_exit_net": 10057.4744182158,
"total_value": 10058.1517858435,
"base_cost_quote": 1006.6740817315,
"unrealized_pnl_exit_net": -104.1946123593
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 109803,
"quote_asset_bal": 9210.8232159158,
"total_value_mid": 10084.9648989158,
"total_value_exit_net": 10084.3092926535,
"total_value": 10084.9648989158,
"base_cost_quote": 951.5881022095,
"unrealized_pnl_exit_net": -78.1020254718
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 100577,
"quote_asset_bal": 9286.7501989726,
"total_value_mid": 10131.1946909726,
"total_value_exit_net": 10130.5613576036,
"total_value": 10131.1946909726,
"base_cost_quote": 876.4691822422,
"unrealized_pnl_exit_net": -32.6580236112
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 84252,
"quote_asset_bal": 9428.5866636021,
"total_value_mid": 10170.0042636021,
"total_value_exit_net": 10169.4482004021,
"total_value": 10170.0042636021,
"base_cost_quote": 736.245178056,
"unrealized_pnl_exit_net": 4.616358744
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 85977,
"quote_asset_bal": 9414.1921402726,
"total_value_mid": 10167.0067522726,
"total_value_exit_net": 10166.4421413136,
"total_value": 10167.0067522726,
"base_cost_quote": 751.269129575,
"unrealized_pnl_exit_net": 0.980871466
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 85389,
"quote_asset_bal": 9419.5928999436,
"total_value_mid": 10171.2722669436,
"total_value_exit_net": 10170.7085074184,
"total_value": 10171.2722669436,
"base_cost_quote": 746.2574436275,
"unrealized_pnl_exit_net": 4.8581638473
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 77567,
"quote_asset_bal": 9490.8871334651,
"total_value_mid": 10203.8829974651,
"total_value_exit_net": 10203.3482505671,
"total_value": 10203.8829974651,
"base_cost_quote": 676.150708982,
"unrealized_pnl_exit_net": 36.31040812
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 72150,
"quote_asset_bal": 9542.0660366451,
"total_value_mid": 10223.0898866451,
"total_value_exit_net": 10222.5791187576,
"total_value": 10223.0898866451,
"base_cost_quote": 626.046963335,
"unrealized_pnl_exit_net": 54.4661187775
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 67013,
"quote_asset_bal": 9594.0907749561,
"total_value_mid": 10241.2353159561,
"total_value_exit_net": 10240.7499575503,
"total_value": 10241.2353159561,
"base_cost_quote": 575.9729389622,
"unrealized_pnl_exit_net": 70.686243632
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 74949,
"quote_asset_bal": 9520.4556615156,
"total_value_mid": 10209.8365635156,
"total_value_exit_net": 10209.3195278391,
"total_value": 10209.8365635156,
"base_cost_quote": 651.1147751037,
"unrealized_pnl_exit_net": 37.7490912197
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 78366,
"quote_asset_bal": 9491.5982050878,
"total_value_mid": 10192.0335130878,
"total_value_exit_net": 10191.5081866068,
"total_value": 10192.0335130878,
"base_cost_quote": 681.138735198,
"unrealized_pnl_exit_net": 18.771246321
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 71184,
"quote_asset_bal": 9557.5799780528,
"total_value_mid": 10218.5234180528,
"total_value_exit_net": 10218.0277104728,
"total_value": 10218.5234180528,
"base_cost_quote": 616.0454948552,
"unrealized_pnl_exit_net": 44.4022375647
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 63851,
"quote_asset_bal": 9628.4754660778,
"total_value_mid": 10254.6622230778,
"total_value_exit_net": 10254.1925830101,
"total_value": 10254.6622230778,
"base_cost_quote": 545.9166456362,
"unrealized_pnl_exit_net": 79.800471296
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 79690,
"quote_asset_bal": 9479.3867600741,
"total_value_mid": 10207.1158400741,
"total_value_exit_net": 10206.5700432641,
"total_value": 10207.1158400741,
"base_cost_quote": 696.1903814725,
"unrealized_pnl_exit_net": 30.9929017175
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 67423,
"quote_asset_bal": 9595.556636504,
"total_value_mid": 10247.806738504,
"total_value_exit_net": 10247.3175509275,
"total_value": 10247.806738504,
"base_cost_quote": 580.99033619,
"unrealized_pnl_exit_net": 70.7705782335
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 65821,
"quote_asset_bal": 9612.2528352615,
"total_value_mid": 10256.3771412615,
"total_value_exit_net": 10255.894048032,
"total_value": 10256.3771412615,
"base_cost_quote": 565.9383166357,
"unrealized_pnl_exit_net": 77.7028961347
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 70731,
"quote_asset_bal": 9567.9866586238,
"total_value_mid": 10225.0069176238,
"total_value_exit_net": 10224.5141524295,
"total_value": 10225.0069176238,
"base_cost_quote": 611.013812922,
"unrealized_pnl_exit_net": 45.5136808838
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 64343,
"quote_asset_bal": 9628.8391561333,
"total_value_mid": 10247.3040721333,
"total_value_exit_net": 10246.8402234463,
"total_value": 10247.3040721333,
"base_cost_quote": 550.8937266495,
"unrealized_pnl_exit_net": 67.1073406635
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 61737,
"quote_asset_bal": 9654.7540020705,
"total_value_mid": 10262.2460820705,
"total_value_exit_net": 10261.7904630105,
"total_value": 10262.2460820705,
"base_cost_quote": 525.8630106817,
"unrealized_pnl_exit_net": 81.1734502582
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 58209,
"quote_asset_bal": 9690.9136468358,
"total_value_mid": 10281.4439518358,
"total_value_exit_net": 10281.001054107,
"total_value": 10281.4439518358,
"base_cost_quote": 490.795953099,
"unrealized_pnl_exit_net": 99.2914541722
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 55305,
"quote_asset_bal": 9722.340295754,
"total_value_mid": 10299.945715754,
"total_value_exit_net": 10299.512511689,
"total_value": 10299.945715754,
"base_cost_quote": 460.7578103757,
"unrealized_pnl_exit_net": 116.4144055593
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 52404,
"quote_asset_bal": 9754.1979433238,
"total_value_mid": 10311.7240993238,
"total_value_exit_net": 10311.3059547068,
"total_value": 10311.7240993238,
"base_cost_quote": 430.7361389967,
"unrealized_pnl_exit_net": 126.3718723862
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 39672,
"quote_asset_bal": 9897.5593610758,
"total_value_mid": 10351.2086810758,
"total_value_exit_net": 10350.8684440858,
"total_value": 10351.2086810758,
"base_cost_quote": 290.4601848773,
"unrealized_pnl_exit_net": 162.8488981327
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 49847,
"quote_asset_bal": 9745.7369739623,
"total_value_mid": 10433.1769509623,
"total_value_exit_net": 10432.6613709795,
"total_value": 10433.1769509623,
"base_cost_quote": 445.8373123887,
"unrealized_pnl_exit_net": 241.0870846285
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 50317,
"quote_asset_bal": 9742.3103408665,
"total_value_mid": 10399.0478248665,
"total_value_exit_net": 10398.5552717535,
"total_value": 10399.0478248665,
"base_cost_quote": 450.8277884407,
"unrealized_pnl_exit_net": 205.4171424462
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 49931,
"quote_asset_bal": 9748.2442557255,
"total_value_mid": 10399.1947027255,
"total_value_exit_net": 10398.7064898903,
"total_value": 10399.1947027255,
"base_cost_quote": 445.8213864532,
"unrealized_pnl_exit_net": 204.6408477115
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 50716,
"quote_asset_bal": 9738.8724318593,
"total_value_mid": 10396.7603838593,
"total_value_exit_net": 10396.2669678953,
"total_value": 10396.7603838593,
"base_cost_quote": 455.8550840867,
"unrealized_pnl_exit_net": 201.5394519492
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 50705,
"quote_asset_bal": 9739.4074691553,
"total_value_mid": 10394.8710041553,
"total_value_exit_net": 10394.379406504,
"total_value": 10394.8710041553,
"base_cost_quote": 455.840572211,
"unrealized_pnl_exit_net": 199.1313651377
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 54345,
"quote_asset_bal": 9695.5763763238,
"total_value_mid": 10383.9644913238,
"total_value_exit_net": 10383.4482002375,
"total_value": 10383.9644913238,
"base_cost_quote": 500.942056974,
"unrealized_pnl_exit_net": 186.9297669397
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 49081,
"quote_asset_bal": 9762.7766119973,
"total_value_mid": 10412.1182419973,
"total_value_exit_net": 10411.6312357748,
"total_value": 10412.1182419973,
"base_cost_quote": 435.7862617502,
"unrealized_pnl_exit_net": 213.0683620273
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 52038,
"quote_asset_bal": 9724.2347023825,
"total_value_mid": 10414.8310003825,
"total_value_exit_net": 10414.313053159,
"total_value": 10414.8310003825,
"base_cost_quote": 475.8698138842,
"unrealized_pnl_exit_net": 214.2085368922
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 55922,
"quote_asset_bal": 9675.6715506675,
"total_value_mid": 10396.4502086675,
"total_value_exit_net": 10395.909624674,
"total_value": 10396.4502086675,
"base_cost_quote": 525.9843456147,
"unrealized_pnl_exit_net": 194.2537283917
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 50195,
"quote_asset_bal": 9752.2403064108,
"total_value_mid": 10411.2504614108,
"total_value_exit_net": 10410.7562037945,
"total_value": 10411.2504614108,
"base_cost_quote": 450.8161317047,
"unrealized_pnl_exit_net": 207.699765679
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 49437,
"quote_asset_bal": 9762.8469479875,
"total_value_mid": 10411.1637659875,
"total_value_exit_net": 10410.677528374,
"total_value": 10411.1637659875,
"base_cost_quote": 440.8101788643,
"unrealized_pnl_exit_net": 207.0204015222
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 49813,
"quote_asset_bal": 9758.9053609793,
"total_value_mid": 10433.2239419793,
"total_value_exit_net": 10432.7182030436,
"total_value": 10433.2239419793,
"base_cost_quote": 445.814986657,
"unrealized_pnl_exit_net": 227.9978554072
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 75518,
"quote_asset_bal": 9440.1111725811,
"total_value_mid": 10295.7301125811,
"total_value_exit_net": 10295.0883983761,
"total_value": 10295.7301125811,
"base_cost_quote": 766.4550684935,
"unrealized_pnl_exit_net": 88.5221573015
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 80492,
"quote_asset_bal": 9387.6297515441,
"total_value_mid": 10243.8231555441,
"total_value_exit_net": 10243.1810104911,
"total_value": 10243.8231555441,
"base_cost_quote": 821.5680272347,
"unrealized_pnl_exit_net": 33.9832317123
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 77301,
"quote_asset_bal": 9424.9979962841,
"total_value_mid": 10286.826845284,
"total_value_exit_net": 10286.1804736473,
"total_value": 10286.826845284,
"base_cost_quote": 786.509435997,
"unrealized_pnl_exit_net": 74.6730413662
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 72443,
"quote_asset_bal": 9481.9000351008,
"total_value_mid": 10335.1336891008,
"total_value_exit_net": 10334.4937638603,
"total_value": 10335.1336891008,
"base_cost_quote": 731.3955265432,
"unrealized_pnl_exit_net": 121.1982022163
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 66561,
"quote_asset_bal": 9554.1339775425,
"total_value_mid": 10355.1956125425,
"total_value_exit_net": 10354.5948163163,
"total_value": 10355.1956125425,
"base_cost_quote": 661.2475109602,
"unrealized_pnl_exit_net": 139.2133278135
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 75914,
"quote_asset_bal": 9445.0286198486,
"total_value_mid": 10318.1914478486,
"total_value_exit_net": 10317.5365757276,
"total_value": 10318.1914478486,
"base_cost_quote": 771.454965606,
"unrealized_pnl_exit_net": 101.052990273
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 72904,
"quote_asset_bal": 9481.2098558295,
"total_value_mid": 10338.1234718295,
"total_value_exit_net": 10337.4807866175,
"total_value": 10338.1234718295,
"base_cost_quote": 736.3765455077,
"unrealized_pnl_exit_net": 119.8943852803
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 81176,
"quote_asset_bal": 9387.3080233395,
"total_value_mid": 10302.2427193395,
"total_value_exit_net": 10301.5565183175,
"total_value": 10302.2427193395,
"base_cost_quote": 831.5758564815,
"unrealized_pnl_exit_net": 82.6726384965
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 90767,
"quote_asset_bal": 9283.4032538266,
"total_value_mid": 10260.4192418265,
"total_value_exit_net": 10259.6864798355,
"total_value": 10260.4192418265,
"base_cost_quote": 936.764618929,
"unrealized_pnl_exit_net": 39.51860708
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 104166,
"quote_asset_bal": 9149.6879384253,
"total_value_mid": 10170.0980744253,
"total_value_exit_net": 10169.3327668233,
"total_value": 10170.0980744253,
"base_cost_quote": 1071.9990027045,
"unrealized_pnl_exit_net": -52.3541743065
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 113572,
"quote_asset_bal": 9061.2279383306,
"total_value_mid": 10121.3089863306,
"total_value_exit_net": 10120.5139255446,
"total_value": 10121.3089863306,
"base_cost_quote": 1162.175146126,
"unrealized_pnl_exit_net": -102.889158912
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 104722,
"quote_asset_bal": 9148.6122333946,
"total_value_mid": 10185.4647553946,
"total_value_exit_net": 10184.6871160031,
"total_value": 10185.4647553946,
"base_cost_quote": 1077.0150068882,
"unrealized_pnl_exit_net": -40.9401242797
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 109876,
"quote_asset_bal": 9099.8671624421,
"total_value_mid": 10158.302670442,
"total_value_exit_net": 10157.508843811,
"total_value": 10158.302670442,
"base_cost_quote": 1127.082662488,
"unrealized_pnl_exit_net": -69.440981119
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 95362,
"quote_asset_bal": 9247.4119656148,
"total_value_mid": 10213.3336636148,
"total_value_exit_net": 10212.6092223413,
"total_value": 10213.3336636148,
"base_cost_quote": 981.8404874942,
"unrealized_pnl_exit_net": -16.6432307677
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 66714,
"quote_asset_bal": 9601.94943333,
"total_value_mid": 10354.34992533,
"total_value_exit_net": 10353.785624961,
"total_value": 10354.34992533,
"base_cost_quote": 631.1256595025,
"unrealized_pnl_exit_net": 120.7105321285
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 67530,
"quote_asset_bal": 9593.694926273,
"total_value_mid": 10346.857016273,
"total_value_exit_net": 10346.2921447055,
"total_value": 10346.857016273,
"base_cost_quote": 641.169764936,
"unrealized_pnl_exit_net": 111.4274534965
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 78681,
"quote_asset_bal": 9474.3974521643,
"total_value_mid": 10294.8042391643,
"total_value_exit_net": 10294.1889340741,
"total_value": 10294.8042391643,
"base_cost_quote": 761.3687526155,
"unrealized_pnl_exit_net": 58.4227292943
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 88045,
"quote_asset_bal": 9380.3411928483,
"total_value_mid": 10251.1942878483,
"total_value_exit_net": 10250.541148027,
"total_value": 10251.1942878483,
"base_cost_quote": 856.5402727617,
"unrealized_pnl_exit_net": 13.659682417
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 93132,
"quote_asset_bal": 9331.302933177,
"total_value_mid": 10241.761365177,
"total_value_exit_net": 10241.078521353,
"total_value": 10241.761365177,
"base_cost_quote": 906.6242475917,
"unrealized_pnl_exit_net": 3.1513405842
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 78635,
"quote_asset_bal": 9477.536161281,
"total_value_mid": 10288.420281281,
"total_value_exit_net": 10287.812118191,
"total_value": 10288.420281281,
"base_cost_quote": 761.378221712,
"unrealized_pnl_exit_net": 48.897735198
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 79540,
"quote_asset_bal": 9473.7160889915,
"total_value_mid": 10259.9689889915,
"total_value_exit_net": 10259.3792993165,
"total_value": 10259.9689889915,
"base_cost_quote": 766.376015248,
"unrealized_pnl_exit_net": 19.287195077
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 79548,
"quote_asset_bal": 9474.8947764897,
"total_value_mid": 10263.4541004897,
"total_value_exit_net": 10262.8626809967,
"total_value": 10263.4541004897,
"base_cost_quote": 766.358562168,
"unrealized_pnl_exit_net": 21.609342339
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 70885,
"quote_asset_bal": 9566.047761227,
"total_value_mid": 10260.366336227,
"total_value_exit_net": 10259.8455972957,
"total_value": 10260.366336227,
"base_cost_quote": 676.2200719652,
"unrealized_pnl_exit_net": 17.5777641035
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 68835,
"quote_asset_bal": 9586.8033471287,
"total_value_mid": 10269.3712071287,
"total_value_exit_net": 10268.8592812337,
"total_value": 10269.3712071287,
"base_cost_quote": 656.186763244,
"unrealized_pnl_exit_net": 25.869170861
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 72338,
"quote_asset_bal": 9552.492772754,
"total_value_mid": 10266.830522754,
"total_value_exit_net": 10266.2947694415,
"total_value": 10266.830522754,
"base_cost_quote": 691.236715007,
"unrealized_pnl_exit_net": 22.5652816805
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 68273,
"quote_asset_bal": 9593.1983503102,
"total_value_mid": 10292.9966003102,
"total_value_exit_net": 10292.4717516227,
"total_value": 10292.9966003102,
"base_cost_quote": 651.1620225127,
"unrealized_pnl_exit_net": 48.1113787998
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 70691,
"quote_asset_bal": 9568.8068959167,
"total_value_mid": 10293.8137919167,
"total_value_exit_net": 10293.2700367447,
"total_value": 10293.8137919167,
"base_cost_quote": 676.2163551797,
"unrealized_pnl_exit_net": 48.2467856482
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 55940,
"quote_asset_bal": 9731.0956953382,
"total_value_mid": 10372.0562153382,
"total_value_exit_net": 10371.5754949482,
"total_value": 10372.0562153382,
"base_cost_quote": 515.945385037,
"unrealized_pnl_exit_net": 124.534414573
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 59101,
"quote_asset_bal": 9697.1223986985,
"total_value_mid": 10354.7392256985,
"total_value_exit_net": 10354.2460130782,
"total_value": 10354.7392256985,
"base_cost_quote": 550.9814233727,
"unrealized_pnl_exit_net": 106.142191007
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 77826,
"quote_asset_bal": 9502.5654474282,
"total_value_mid": 10272.8871954282,
"total_value_exit_net": 10272.3094541172,
"total_value": 10272.8871954282,
"base_cost_quote": 746.3667695605,
"unrealized_pnl_exit_net": 23.3772371285
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 58561,
"quote_asset_bal": 9710.3043691567,
"total_value_mid": 10345.9254631567,
"total_value_exit_net": 10345.4487473362,
"total_value": 10345.9254631567,
"base_cost_quote": 540.983081236,
"unrealized_pnl_exit_net": 94.1612969435
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 51055,
"quote_asset_bal": 9798.9248724787,
"total_value_mid": 10402.3949724787,
"total_value_exit_net": 10401.9423699037,
"total_value": 10402.3949724787,
"base_cost_quote": 455.8275204295,
"unrealized_pnl_exit_net": 147.1899769955
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 57323,
"quote_asset_bal": 9730.3064027457,
"total_value_mid": 10369.9737597457,
"total_value_exit_net": 10369.4940092279,
"total_value": 10369.9737597457,
"base_cost_quote": 525.955575053,
"unrealized_pnl_exit_net": 113.2320314293
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 56723,
"quote_asset_bal": 9737.4664004197,
"total_value_mid": 10400.7851624197,
"total_value_exit_net": 10400.2876733482,
"total_value": 10400.7851624197,
"base_cost_quote": 520.9498215515,
"unrealized_pnl_exit_net": 141.871451377
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 65953,
"quote_asset_bal": 9628.8552267871,
"total_value_mid": 10386.1275727871,
"total_value_exit_net": 10385.5596185276,
"total_value": 10386.1275727871,
"base_cost_quote": 631.13647761,
"unrealized_pnl_exit_net": 125.5679141305
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 80551,
"quote_asset_bal": 9470.1020056084,
"total_value_mid": 10327.6479516084,
"total_value_exit_net": 10327.0047921489,
"total_value": 10327.6479516084,
"base_cost_quote": 791.4380596945,
"unrealized_pnl_exit_net": 65.464726846
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 69928,
"quote_asset_bal": 9586.75337159,
"total_value_mid": 10360.29690759,
"total_value_exit_net": 10359.716749938,
"total_value": 10360.29690759,
"base_cost_quote": 676.2107329662,
"unrealized_pnl_exit_net": 96.7526453818
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 68174,
"quote_asset_bal": 9607.703667628,
"total_value_mid": 10370.979771628,
"total_value_exit_net": 10370.40731455,
"total_value": 10370.979771628,
"base_cost_quote": 656.1928948392,
"unrealized_pnl_exit_net": 106.5107520827
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 68633,
"quote_asset_bal": 9603.545688837,
"total_value_mid": 10367.362345837,
"total_value_exit_net": 10366.7894833442,
"total_value": 10367.362345837,
"base_cost_quote": 661.1959583247,
"unrealized_pnl_exit_net": 102.0478361825
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 54795,
"quote_asset_bal": 9770.1457442807,
"total_value_mid": 10402.4800442807,
"total_value_exit_net": 10402.0057935557,
"total_value": 10402.4800442807,
"base_cost_quote": 495.8788874427,
"unrealized_pnl_exit_net": 135.9811618322
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 66500,
"quote_asset_bal": 9640.5792037957,
"total_value_mid": 10358.7127037957,
"total_value_exit_net": 10358.1741036707,
"total_value": 10358.7127037957,
"base_cost_quote": 626.1125514893,
"unrealized_pnl_exit_net": 91.4823483857
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 80370,
"quote_asset_bal": 9496.6046481925,
"total_value_mid": 10300.9476081925,
"total_value_exit_net": 10300.3443509725,
"total_value": 10300.9476081925,
"base_cost_quote": 771.3659899242,
"unrealized_pnl_exit_net": 32.3737128557
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 82264,
"quote_asset_bal": 9478.366183214,
"total_value_mid": 10303.145047214,
"total_value_exit_net": 10302.526463066,
"total_value": 10303.145047214,
"base_cost_quote": 791.3831315292,
"unrealized_pnl_exit_net": 32.7771483228
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 78368,
"quote_asset_bal": 9519.4720971024,
"total_value_mid": 10324.4681931024,
"total_value_exit_net": 10323.8644460304,
"total_value": 10324.4681931024,
"base_cost_quote": 751.321500824,
"unrealized_pnl_exit_net": 53.070848104
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 71152,
"quote_asset_bal": 9595.5311786087,
"total_value_mid": 10340.7060746087,
"total_value_exit_net": 10340.1471934367,
"total_value": 10340.7060746087,
"base_cost_quote": 676.194081487,
"unrealized_pnl_exit_net": 68.421933341
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 65189,
"quote_asset_bal": 9673.0800431747,
"total_value_mid": 10322.0365381747,
"total_value_exit_net": 10321.5498208034,
"total_value": 10322.0365381747,
"base_cost_quote": 601.0798019975,
"unrealized_pnl_exit_net": 47.3899756312
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 71836,
"quote_asset_bal": 9609.2397766267,
"total_value_mid": 10304.8996006267,
"total_value_exit_net": 10304.3778557587,
"total_value": 10304.8996006267,
"base_cost_quote": 666.197557713,
"unrealized_pnl_exit_net": 28.940521419
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 50649,
"quote_asset_bal": 9826.5099030024,
"total_value_mid": 10346.1179940024,
"total_value_exit_net": 10345.7282879341,
"total_value": 10346.1179940024,
"base_cost_quote": 450.7992360425,
"unrealized_pnl_exit_net": 68.4191488893
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 51967,
"quote_asset_bal": 9812.9307557709,
"total_value_mid": 10375.3695967709,
"total_value_exit_net": 10374.9477676401,
"total_value": 10375.3695967709,
"base_cost_quote": 465.8407937562,
"unrealized_pnl_exit_net": 96.176218113
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 56279,
"quote_asset_bal": 9774.6165029814,
"total_value_mid": 10346.9739329814,
"total_value_exit_net": 10346.5446649089,
"total_value": 10346.9739329814,
"base_cost_quote": 505.919771462,
"unrealized_pnl_exit_net": 66.0083904655
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 61760,
"quote_asset_bal": 9720.5424909988,
"total_value_mid": 10331.7812109988,
"total_value_exit_net": 10331.3227819588,
"total_value": 10331.7812109988,
"base_cost_quote": 561.0124650157,
"unrealized_pnl_exit_net": 49.7678259442
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 59735,
"quote_asset_bal": 9741.5667199543,
"total_value_mid": 10337.3636099543,
"total_value_exit_net": 10336.9167622868,
"total_value": 10337.3636099543,
"base_cost_quote": 540.9770437112,
"unrealized_pnl_exit_net": 54.3729986213
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 57236,
"quote_asset_bal": 9767.3481496736,
"total_value_mid": 10349.8961576736,
"total_value_exit_net": 10349.4592466676,
"total_value": 10349.8961576736,
"base_cost_quote": 515.9333810407,
"unrealized_pnl_exit_net": 66.1777159532
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 55260,
"quote_asset_bal": 9788.3083714411,
"total_value_mid": 10354.2260314411,
"total_value_exit_net": 10353.8015931961,
"total_value": 10354.2260314411,
"base_cost_quote": 495.8809209667,
"unrealized_pnl_exit_net": 69.6123007883
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 53266,
"quote_asset_bal": 9809.5569144036,
"total_value_mid": 10347.4369824035,
"total_value_exit_net": 10347.0335723525,
"total_value": 10347.4369824035,
"base_cost_quote": 475.857897954,
"unrealized_pnl_exit_net": 61.618759995
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 81595,
"quote_asset_bal": 9546.7168154853,
"total_value_mid": 10241.4166454853,
"total_value_exit_net": 10240.8956206128,
"total_value": 10241.4166454853,
"base_cost_quote": 741.2910546272,
"unrealized_pnl_exit_net": -47.1122494997
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 67321,
"quote_asset_bal": 9664.7009911903,
"total_value_mid": 10263.2520021903,
"total_value_exit_net": 10262.8030889321,
"total_value": 10263.2520021903,
"base_cost_quote": 626.103978064,
"unrealized_pnl_exit_net": -28.0018803223
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 66814,
"quote_asset_bal": 9672.0223212889,
"total_value_mid": 10243.6829052889,
"total_value_exit_net": 10243.2541598509,
"total_value": 10243.6829052889,
"base_cost_quote": 621.085020667,
"unrealized_pnl_exit_net": -49.853182105
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 72087,
"quote_asset_bal": 9628.2619813471,
"total_value_mid": 10243.6687003471,
"total_value_exit_net": 10243.2071453078,
"total_value": 10243.6687003471,
"base_cost_quote": 666.179944513,
"unrealized_pnl_exit_net": -51.2347805523
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 84977,
"quote_asset_bal": 9524.4389218851,
"total_value_mid": 10200.6858878851,
"total_value_exit_net": 10200.1787026606,
"total_value": 10200.6858878851,
"base_cost_quote": 771.3513869802,
"unrealized_pnl_exit_net": -95.6116062048
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 81121,
"quote_asset_bal": 9555.3281824431,
"total_value_mid": 10224.6575534431,
"total_value_exit_net": 10224.1555564149,
"total_value": 10224.6575534431,
"base_cost_quote": 741.3011261752,
"unrealized_pnl_exit_net": -72.4737522035
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 72177,
"quote_asset_bal": 9631.1598765029,
"total_value_mid": 10249.6445895029,
"total_value_exit_net": 10249.1807259681,
"total_value": 10249.6445895029,
"base_cost_quote": 666.189511683,
"unrealized_pnl_exit_net": -48.1686622177
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 69902,
"quote_asset_bal": 9652.4235831611,
"total_value_mid": 10255.2584311611,
"total_value_exit_net": 10254.8063050251,
"total_value": 10255.2584311611,
"base_cost_quote": 646.1424666672,
"unrealized_pnl_exit_net": -43.7597448033
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 65873,
"quote_asset_bal": 9688.4300409664,
"total_value_mid": 10271.6037099664,
"total_value_exit_net": 10271.1663297146,
"total_value": 10271.6037099664,
"base_cost_quote": 611.1217508147,
"unrealized_pnl_exit_net": -28.3854620665
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 61372,
"quote_asset_bal": 9729.1823032031,
"total_value_mid": 10279.3209112031,
"total_value_exit_net": 10278.9083072471,
"total_value": 10279.3209112031,
"base_cost_quote": 571.0384868967,
"unrealized_pnl_exit_net": -21.3124828528
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 64146,
"quote_asset_bal": 9704.8649275477,
"total_value_mid": 10296.4834855477,
"total_value_exit_net": 10296.0397716292,
"total_value": 10296.4834855477,
"base_cost_quote": 596.09453585,
"unrealized_pnl_exit_net": -4.9196917685
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 65843,
"quote_asset_bal": 9690.4210855444,
"total_value_mid": 10284.6541605444,
"total_value_exit_net": 10284.2084857382,
"total_value": 10284.6541605444,
"base_cost_quote": 611.1093094907,
"unrealized_pnl_exit_net": -17.321909297
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 64178,
"quote_asset_bal": 9706.0731510714,
"total_value_mid": 10299.3345830714,
"total_value_exit_net": 10298.8896369974,
"total_value": 10299.3345830714,
"base_cost_quote": 596.078960177,
"unrealized_pnl_exit_net": -3.262474251
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 63093,
"quote_asset_bal": 9716.6310462854,
"total_value_mid": 10302.0079002854,
"total_value_exit_net": 10301.5688676449,
"total_value": 10302.0079002854,
"base_cost_quote": 586.0758464642,
"unrealized_pnl_exit_net": -1.1380251048
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 67426,
"quote_asset_bal": 9677.4728924164,
"total_value_mid": 10294.4882184164,
"total_value_exit_net": 10294.0254569219,
"total_value": 10294.4882184164,
"base_cost_quote": 626.13713091,
"unrealized_pnl_exit_net": -9.5845664045
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 62508,
"quote_asset_bal": 9723.3696283509,
"total_value_mid": 10308.1944763509,
"total_value_exit_net": 10307.7558577149,
"total_value": 10308.1944763509,
"base_cost_quote": 581.0554379797,
"unrealized_pnl_exit_net": 3.3307913842
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 75763,
"quote_asset_bal": 9603.8671461344,
"total_value_mid": 10281.1126031344,
"total_value_exit_net": 10280.6046690417,
"total_value": 10281.1126031344,
"base_cost_quote": 701.2702975542,
"unrealized_pnl_exit_net": -24.532774647
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 74609,
"quote_asset_bal": 9614.449029222,
"total_value_mid": 10279.8867002219,
"total_value_exit_net": 10279.3876219687,
"total_value": 10279.8867002219,
"base_cost_quote": 691.2617787907,
"unrealized_pnl_exit_net": -26.323186044
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 68488,
"quote_asset_bal": 9669.9908128484,
"total_value_mid": 10298.2997248484,
"total_value_exit_net": 10297.8284931644,
"total_value": 10298.2997248484,
"base_cost_quote": 636.1564447637,
"unrealized_pnl_exit_net": -8.3187644478
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 76917,
"quote_asset_bal": 9595.5062178327,
"total_value_mid": 10266.6070428327,
"total_value_exit_net": 10266.1037172139,
"total_value": 10266.6070428327,
"base_cost_quote": 711.275624926,
"unrealized_pnl_exit_net": -40.6781255448
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 68426,
"quote_asset_bal": 9671.3902931739,
"total_value_mid": 10292.6983731739,
"total_value_exit_net": 10292.2323921139,
"total_value": 10292.6983731739,
"base_cost_quote": 636.123767274,
"unrealized_pnl_exit_net": -15.281668334
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 69585,
"quote_asset_bal": 9662.0075490609,
"total_value_mid": 10258.4901690609,
"total_value_exit_net": 10258.0428070959,
"total_value": 10258.4901690609,
"base_cost_quote": 646.1453808512,
"unrealized_pnl_exit_net": -50.1101228163
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 87872,
"quote_asset_bal": 9512.6461963857,
"total_value_mid": 10201.2111883857,
"total_value_exit_net": 10200.6947646417,
"total_value": 10201.2111883857,
"base_cost_quote": 796.393683627,
"unrealized_pnl_exit_net": -108.345115371
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 89740,
"quote_asset_bal": 9498.9211681587,
"total_value_mid": 10203.1109481587,
"total_value_exit_net": 10202.5828058237,
"total_value": 10203.1109481587,
"base_cost_quote": 811.4264727692,
"unrealized_pnl_exit_net": -107.7648351043
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 89698,
"quote_asset_bal": 9499.8874216482,
"total_value_mid": 10204.3755136482,
"total_value_exit_net": 10203.8471475792,
"total_value": 10204.3755136482,
"base_cost_quote": 811.4277887555,
"unrealized_pnl_exit_net": -107.4680628245
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 81566,
"quote_asset_bal": 9566.2244713137,
"total_value_mid": 10226.8275053137,
"total_value_exit_net": 10226.3320530382,
"total_value": 10226.8275053137,
"base_cost_quote": 746.3311558702,
"unrealized_pnl_exit_net": -86.2235741458
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 84692,
"quote_asset_bal": 9542.5335120795,
"total_value_mid": 10223.3725000795,
"total_value_exit_net": 10222.8618708385,
"total_value": 10223.3725000795,
"base_cost_quote": 771.3625513472,
"unrealized_pnl_exit_net": -91.0341925883
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 82845,
"quote_asset_bal": 9558.356617117,
"total_value_mid": 10225.673092117,
"total_value_exit_net": 10225.1726047607,
"total_value": 10225.673092117,
"base_cost_quote": 756.354632844,
"unrealized_pnl_exit_net": -89.5386452003
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 72988,
"quote_asset_bal": 9639.608327447,
"total_value_mid": 10257.670711447,
"total_value_exit_net": 10257.207164659,
"total_value": 10257.670711447,
"base_cost_quote": 676.208164041,
"unrealized_pnl_exit_net": -58.609326829
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 95935,
"quote_asset_bal": 9455.569273716,
"total_value_mid": 10189.759828716,
"total_value_exit_net": 10189.2091857998,
"total_value": 10189.759828716,
"base_cost_quote": 861.489925219,
"unrealized_pnl_exit_net": -127.8500131352
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 103139,
"quote_asset_bal": 9401.811879289,
"total_value_mid": 10157.511332289,
"total_value_exit_net": 10156.9445576993,
"total_value": 10157.511332289,
"base_cost_quote": 916.5547388785,
"unrealized_pnl_exit_net": -161.4220604682
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 94410,
"quote_asset_bal": 9467.6207199175,
"total_value_mid": 10184.6646699175,
"total_value_exit_net": 10184.126886955,
"total_value": 10184.6646699175,
"base_cost_quote": 851.464511794,
"unrealized_pnl_exit_net": -134.9583447565
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 95931,
"quote_asset_bal": 9458.3333947328,
"total_value_mid": 10169.1821047328,
"total_value_exit_net": 10168.6489682003,
"total_value": 10169.1821047328,
"base_cost_quote": 861.4816059842,
"unrealized_pnl_exit_net": -151.1660325168
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 92533,
"quote_asset_bal": 9484.1820048673,
"total_value_mid": 10166.7979458673,
"total_value_exit_net": 10166.2859839115,
"total_value": 10166.7979458673,
"base_cost_quote": 836.4323070897,
"unrealized_pnl_exit_net": -154.3283280455
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 101421,
"quote_asset_bal": 9419.5553069726,
"total_value_mid": 10156.9873979725,
"total_value_exit_net": 10156.4343239043,
"total_value": 10156.9873979725,
"base_cost_quote": 901.5348874322,
"unrealized_pnl_exit_net": -164.6558705005
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 118546,
"quote_asset_bal": 9300.0452903243,
"total_value_mid": 10102.9573483243,
"total_value_exit_net": 10102.3551642808,
"total_value": 10102.9573483243,
"base_cost_quote": 1021.7235253552,
"unrealized_pnl_exit_net": -219.4136513987
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 125322,
"quote_asset_bal": 9256.2342953638,
"total_value_mid": 10077.3440393638,
"total_value_exit_net": 10076.7282070558,
"total_value": 10077.3440393638,
"base_cost_quote": 1066.7817567025,
"unrealized_pnl_exit_net": -246.2878450105
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 111776,
"quote_asset_bal": 9347.8540971253,
"total_value_mid": 10111.5077291253,
"total_value_exit_net": 10110.9349889013,
"total_value": 10111.5077291253,
"base_cost_quote": 976.6469932927,
"unrealized_pnl_exit_net": -213.5661015167
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 104478,
"quote_asset_bal": 9399.1948208616,
"total_value_mid": 10129.9139528616,
"total_value_exit_net": 10129.3659135126,
"total_value": 10129.9139528616,
"base_cost_quote": 926.5792406202,
"unrealized_pnl_exit_net": -196.4081479692
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 109543,
"quote_asset_bal": 9365.2642358298,
"total_value_mid": 10120.1250488298,
"total_value_exit_net": 10119.5589032201,
"total_value": 10120.1250488298,
"base_cost_quote": 961.628817102,
"unrealized_pnl_exit_net": -207.3341497117
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 99499,
"quote_asset_bal": 9436.0933444616,
"total_value_mid": 10146.2177074616,
"total_value_exit_net": 10145.6851141893,
"total_value": 10146.2177074616,
"base_cost_quote": 891.5269130767,
"unrealized_pnl_exit_net": -181.935143349
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 99493,
"quote_asset_bal": 9436.6140162816,
"total_value_mid": 10151.1727422816,
"total_value_exit_net": 10150.6368232371,
"total_value": 10151.1727422816,
"base_cost_quote": 891.5272393212,
"unrealized_pnl_exit_net": -177.5044323657
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 113696,
"quote_asset_bal": 9336.9261121183,
"total_value_mid": 10126.7722241183,
"total_value_exit_net": 10126.1798395343,
"total_value": 10126.7722241183,
"base_cost_quote": 991.677444683,
"unrealized_pnl_exit_net": -202.423717267
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 96733,
"quote_asset_bal": 9457.6501120761,
"total_value_mid": 10156.4493040761,
"total_value_exit_net": 10155.9252046821,
"total_value": 10156.4493040761,
"base_cost_quote": 871.4973441582,
"unrealized_pnl_exit_net": -173.2222515522
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 99525,
"quote_asset_bal": 9438.2166463246,
"total_value_mid": 10151.0146963246,
"total_value_exit_net": 10150.4800977871,
"total_value": 10151.0146963246,
"base_cost_quote": 891.5250516817,
"unrealized_pnl_exit_net": -179.2616002193
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 85773,
"quote_asset_bal": 9539.2523132907,
"total_value_mid": 10167.1106732907,
"total_value_exit_net": 10166.6397795207,
"total_value": 10167.1106732907,
"base_cost_quote": 791.375038464,
"unrealized_pnl_exit_net": -163.987572234
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 90589,
"quote_asset_bal": 9504.6818872514,
"total_value_mid": 10161.9050822514,
"total_value_exit_net": 10161.4121648552,
"total_value": 10161.9050822514,
"base_cost_quote": 826.422276193,
"unrealized_pnl_exit_net": -169.6919985892
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 96880,
"quote_asset_bal": 9460.0487430639,
"total_value_mid": 10147.2185830639,
"total_value_exit_net": 10146.7032056839,
"total_value": 10147.2185830639,
"base_cost_quote": 871.4861817927,
"unrealized_pnl_exit_net": -184.8317191727
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 89187,
"quote_asset_bal": 9515.725953002,
"total_value_mid": 10160.458776002,
"total_value_exit_net": 10159.9752263847,
"total_value": 10160.458776002,
"base_cost_quote": 816.4088177275,
"unrealized_pnl_exit_net": -172.1595443447
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 93360,
"quote_asset_bal": 9485.9841566482,
"total_value_mid": 10154.3483966482,
"total_value_exit_net": 10153.8471234682,
"total_value": 10154.3483966482,
"base_cost_quote": 846.4426652317,
"unrealized_pnl_exit_net": -178.5796984117
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 85784,
"quote_asset_bal": 9541.6148883252,
"total_value_mid": 10173.5856163252,
"total_value_exit_net": 10173.1116382792,
"total_value": 10173.5856163252,
"base_cost_quote": 791.3698826,
"unrealized_pnl_exit_net": -159.873132646
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 89859,
"quote_asset_bal": 9512.0173063627,
"total_value_mid": 10174.9970083627,
"total_value_exit_net": 10174.4997735862,
"total_value": 10174.9970083627,
"base_cost_quote": 821.4206087537,
"unrealized_pnl_exit_net": -158.9381415302
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 91228,
"quote_asset_bal": 9502.3846713112,
"total_value_mid": 10168.2578433112,
"total_value_exit_net": 10167.7584384322,
"total_value": 10168.2578433112,
"base_cost_quote": 831.4517404642,
"unrealized_pnl_exit_net": -166.0779733433
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 94659,
"quote_asset_bal": 9477.7336801527,
"total_value_mid": 10164.2007481527,
"total_value_exit_net": 10163.6858978517,
"total_value": 10164.2007481527,
"base_cost_quote": 856.4769022695,
"unrealized_pnl_exit_net": -170.5246845705
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 113290,
"quote_asset_bal": 9347.956470428,
"total_value_mid": 10121.047430428,
"total_value_exit_net": 10120.467612208,
"total_value": 10121.047430428,
"base_cost_quote": 986.6762395902,
"unrealized_pnl_exit_net": -214.1650978102
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 123727,
"quote_asset_bal": 9278.2985825127,
"total_value_mid": 10100.9594055127,
"total_value_exit_net": 10100.3424098955,
"total_value": 10100.9594055127,
"base_cost_quote": 1056.7850097612,
"unrealized_pnl_exit_net": -234.7411823785
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 125213,
"quote_asset_bal": 9268.690380758,
"total_value_mid": 10102.233321758,
"total_value_exit_net": 10101.6081645522,
"total_value": 10102.233321758,
"base_cost_quote": 1066.7888650297,
"unrealized_pnl_exit_net": -233.8710812355
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 132100,
"quote_asset_bal": 9224.3100469092,
"total_value_mid": 10081.6390469092,
"total_value_exit_net": 10080.9960501592,
"total_value": 10081.6390469092,
"base_cost_quote": 1111.85650743,
"unrealized_pnl_exit_net": -255.17050418
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 129031,
"quote_asset_bal": 9244.88257267,
"total_value_mid": 10087.58403367,
"total_value_exit_net": 10086.9520075742,
"total_value": 10087.58403367,
"base_cost_quote": 1091.8278431895,
"unrealized_pnl_exit_net": -249.7584082852
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 148793,
"quote_asset_bal": 9120.333390371,
"total_value_mid": 10033.624824371,
"total_value_exit_net": 10032.9398557955,
"total_value": 10033.624824371,
"base_cost_quote": 1217.0164312647,
"unrealized_pnl_exit_net": -304.4099658402
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 154372,
"quote_asset_bal": 9085.9143678762,
"total_value_mid": 10006.1258598762,
"total_value_exit_net": 10005.4357012572,
"total_value": 10006.1258598762,
"base_cost_quote": 1252.0475569187,
"unrealized_pnl_exit_net": -332.5262235377
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 152756,
"quote_asset_bal": 9096.4951496757,
"total_value_mid": 10022.8075336757,
"total_value_exit_net": 10022.1127993877,
"total_value": 10022.8075336757,
"base_cost_quote": 1242.0438197387,
"unrealized_pnl_exit_net": -316.4261700268
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 145399,
"quote_asset_bal": 9141.9034975452,
"total_value_mid": 10031.3091805452,
"total_value_exit_net": 10030.642126283,
"total_value": 10031.3091805452,
"base_cost_quote": 1196.9994197572,
"unrealized_pnl_exit_net": -308.2607910195
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 132252,
"quote_asset_bal": 9249.1177115597,
"total_value_mid": 9986.4226115597,
"total_value_exit_net": 9985.8696328847,
"total_value": 9986.4226115597,
"base_cost_quote": 1091.8313107882,
"unrealized_pnl_exit_net": -355.0793894632
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 127103,
"quote_asset_bal": 9280.5273238702,
"total_value_mid": 10016.5807968702,
"total_value_exit_net": 10016.0287567655,
"total_value": 10016.5807968702,
"base_cost_quote": 1061.770907382,
"unrealized_pnl_exit_net": -326.2694744867
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 132129,
"quote_asset_bal": 9251.7984391168,
"total_value_mid": 10010.8795441168,
"total_value_exit_net": 10010.310233288,
"total_value": 10010.8795441168,
"base_cost_quote": 1091.83013891,
"unrealized_pnl_exit_net": -333.3183447387
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 62739,
"quote_asset_bal": 9745.7887450325,
"total_value_mid": 10167.4575640325,
"total_value_exit_net": 10167.1413124183,
"total_value": 10167.4575640325,
"base_cost_quote": 601.088306371,
"unrealized_pnl_exit_net": -179.7357389853
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 65385,
"quote_asset_bal": 9728.2876475873,
"total_value_mid": 10185.1980275873,
"total_value_exit_net": 10184.8553448023,
"total_value": 10185.1980275873,
"base_cost_quote": 621.1003191323,
"unrealized_pnl_exit_net": -164.5326219173
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 70603,
"quote_asset_bal": 9693.9489056395,
"total_value_mid": 10171.7194066395,
"total_value_exit_net": 10171.3610787637,
"total_value": 10171.7194066395,
"base_cost_quote": 656.1486847065,
"unrealized_pnl_exit_net": -178.7365115823
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 66892,
"quote_asset_bal": 9719.8515368917,
"total_value_mid": 10181.3394448917,
"total_value_exit_net": 10180.9933289607,
"total_value": 10181.3394448917,
"base_cost_quote": 631.1266042105,
"unrealized_pnl_exit_net": -169.9848121415
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 80978,
"quote_asset_bal": 9625.5752270143,
"total_value_mid": 10164.5647950142,
"total_value_exit_net": 10164.1605528382,
"total_value": 10164.5647950142,
"base_cost_quote": 726.2507128248,
"unrealized_pnl_exit_net": -187.6653870008
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 86303,
"quote_asset_bal": 9591.8091395155,
"total_value_mid": 10151.9156095155,
"total_value_exit_net": 10151.495529663,
"total_value": 10151.9156095155,
"base_cost_quote": 761.2900326198,
"unrealized_pnl_exit_net": -201.6036424723
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 63158,
"quote_asset_bal": 9748.984793795,
"total_value_mid": 10191.469741795,
"total_value_exit_net": 10191.137878084,
"total_value": 10191.469741795,
"base_cost_quote": 606.083193729,
"unrealized_pnl_exit_net": -163.93010944
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 66257,
"quote_asset_bal": 9726.3128318382,
"total_value_mid": 10210.1877028382,
"total_value_exit_net": 10209.824796685,
"total_value": 10210.1877028382,
"base_cost_quote": 631.119681022,
"unrealized_pnl_exit_net": -147.6077161753
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 64862,
"quote_asset_bal": 9737.3531332385,
"total_value_mid": 10222.7803412385,
"total_value_exit_net": 10222.4162708325,
"total_value": 10222.7803412385,
"base_cost_quote": 621.107145248,
"unrealized_pnl_exit_net": -136.044007654
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 66130,
"quote_asset_bal": 9728.385580867,
"total_value_mid": 10235.139770867,
"total_value_exit_net": 10234.7597052245,
"total_value": 10235.139770867,
"base_cost_quote": 631.1221738902,
"unrealized_pnl_exit_net": -124.7480495328
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 62190,
"quote_asset_bal": 9759.0755284668,
"total_value_mid": 10270.7126584667,
"total_value_exit_net": 10270.3289306192,
"total_value": 10270.7126584667,
"base_cost_quote": 601.075008405,
"unrealized_pnl_exit_net": -89.8216062525
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 61456,
"quote_asset_bal": 9769.8328329173,
"total_value_mid": 10255.1508649173,
"total_value_exit_net": 10254.7868763933,
"total_value": 10255.1508649173,
"base_cost_quote": 591.0616770348,
"unrealized_pnl_exit_net": -106.1076335588
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 71170,
"quote_asset_bal": 9695.210774245,
"total_value_mid": 10238.237874245,
"total_value_exit_net": 10237.83060392,
"total_value": 10238.237874245,
"base_cost_quote": 666.1734246268,
"unrealized_pnl_exit_net": -123.5535949518
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 61465,
"quote_asset_bal": 9771.6320211913,
"total_value_mid": 10254.1322711912,
"total_value_exit_net": 10253.7703960037,
"total_value": 10254.1322711912,
"base_cost_quote": 591.0512312063,
"unrealized_pnl_exit_net": -108.9128563938
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 61454,
"quote_asset_bal": 9773.0797999093,
"total_value_mid": 10256.1696939093,
"total_value_exit_net": 10255.8073764888,
"total_value": 10256.1696939093,
"base_cost_quote": 591.0552262003,
"unrealized_pnl_exit_net": -108.3276496208
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 55773,
"quote_asset_bal": 9819.3386365763,
"total_value_mid": 10265.9688205763,
"total_value_exit_net": 10265.6338479383,
"total_value": 10265.9688205763,
"base_cost_quote": 545.9760381473,
"unrealized_pnl_exit_net": -99.6808267853
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 57630,
"quote_asset_bal": 9805.6248055668,
"total_value_mid": 10267.4139955668,
"total_value_exit_net": 10267.0676536743,
"total_value": 10267.4139955668,
"base_cost_quote": 560.987245115,
"unrealized_pnl_exit_net": -99.5443970075
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 62024,
"quote_asset_bal": 9771.1322771851,
"total_value_mid": 10262.6104531851,
"total_value_exit_net": 10262.2418445531,
"total_value": 10262.6104531851,
"base_cost_quote": 596.0425859167,
"unrealized_pnl_exit_net": -104.9330185487
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 49527,
"quote_asset_bal": 9888.5990139478,
"total_value_mid": 10298.5835199478,
"total_value_exit_net": 10298.2760315683,
"total_value": 10298.5835199478,
"base_cost_quote": 480.878380494,
"unrealized_pnl_exit_net": -71.2013628735
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 51336,
"quote_asset_bal": 9874.7381457391,
"total_value_mid": 10295.1799857391,
"total_value_exit_net": 10294.8646543591,
"total_value": 10295.1799857391,
"base_cost_quote": 495.9118221253,
"unrealized_pnl_exit_net": -75.7853135053
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 56276,
"quote_asset_bal": 9835.4242676024,
"total_value_mid": 10288.1084116024,
"total_value_exit_net": 10287.7688984944,
"total_value": 10288.1084116024,
"base_cost_quote": 535.9759787235,
"unrealized_pnl_exit_net": -83.6313478315
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 62569,
"quote_asset_bal": 9786.3791845471,
"total_value_mid": 10276.9201445471,
"total_value_exit_net": 10276.5522388271,
"total_value": 10276.9201445471,
"base_cost_quote": 586.0464164082,
"unrealized_pnl_exit_net": -95.8733621283
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 67055,
"quote_asset_bal": 9752.2920986521,
"total_value_mid": 10273.8458886521,
"total_value_exit_net": 10273.4547233096,
"total_value": 10273.8458886521,
"base_cost_quote": 621.103102218,
"unrealized_pnl_exit_net": -99.9404775605
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 63846,
"quote_asset_bal": 9777.7604650724,
"total_value_mid": 10278.4407970724,
"total_value_exit_net": 10278.0652868234,
"total_value": 10278.4407970724,
"base_cost_quote": 596.0665598837,
"unrealized_pnl_exit_net": -95.7617381327
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 75511,
"quote_asset_bal": 9688.3937813126,
"total_value_mid": 10263.7876013126,
"total_value_exit_net": 10263.3560559476,
"total_value": 10263.7876013126,
"base_cost_quote": 686.1934263752,
"unrealized_pnl_exit_net": -111.2311517402
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 82780,
"quote_asset_bal": 9634.1269191114,
"total_value_mid": 10250.5067991114,
"total_value_exit_net": 10250.0445142014,
"total_value": 10250.5067991114,
"base_cost_quote": 741.2797401477,
"unrealized_pnl_exit_net": -125.3621450577
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 80118,
"quote_asset_bal": 9654.9659821362,
"total_value_mid": 10254.4088581362,
"total_value_exit_net": 10253.9592759792,
"total_value": 10254.4088581362,
"base_cost_quote": 721.2486060562,
"unrealized_pnl_exit_net": -122.2553122133
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 87591,
"quote_asset_bal": 9600.5174252454,
"total_value_mid": 10240.1069072454,
"total_value_exit_net": 10239.6272151339,
"total_value": 10240.1069072454,
"base_cost_quote": 776.3349768715,
"unrealized_pnl_exit_net": -137.225186983
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 77674,
"quote_asset_bal": 9676.5672615167,
"total_value_mid": 10244.1311795167,
"total_value_exit_net": 10243.7055065782,
"total_value": 10244.1311795167,
"base_cost_quote": 701.2263516195,
"unrealized_pnl_exit_net": -134.088106558
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 56940,
"quote_asset_bal": 9837.8886504864,
"total_value_mid": 10293.9780504864,
"total_value_exit_net": 10293.6359834364,
"total_value": 10293.9780504864,
"base_cost_quote": 540.9933139048,
"unrealized_pnl_exit_net": -85.2459809548
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 55069,
"quote_asset_bal": 9854.193246268,
"total_value_mid": 10299.040628268,
"total_value_exit_net": 10298.7069927315,
"total_value": 10299.040628268,
"base_cost_quote": 525.9643646403,
"unrealized_pnl_exit_net": -81.4506181768
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 47711,
"quote_asset_bal": 9915.1757170525,
"total_value_mid": 10313.6579890525,
"total_value_exit_net": 10313.3591273485,
"total_value": 10313.6579890525,
"base_cost_quote": 465.857535303,
"unrealized_pnl_exit_net": -67.674125007
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 51311,
"quote_asset_bal": 9886.1299098872,
"total_value_mid": 10309.2917268872,
"total_value_exit_net": 10308.9743555245,
"total_value": 10309.2917268872,
"base_cost_quote": 495.9101448683,
"unrealized_pnl_exit_net": -73.065699231
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 50096,
"quote_asset_bal": 9897.1491530033,
"total_value_mid": 10308.5375050033,
"total_value_exit_net": 10308.2289637393,
"total_value": 10308.5375050033,
"base_cost_quote": 485.9036165965,
"unrealized_pnl_exit_net": -74.8238058605
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 50096,
"quote_asset_bal": 9898.152794271,
"total_value_mid": 10313.598922271,
"total_value_exit_net": 10313.287337675,
"total_value": 10313.598922271,
"base_cost_quote": 485.9025247782,
"unrealized_pnl_exit_net": -70.7679813742
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 59290,
"quote_asset_bal": 9823.5897055943,
"total_value_mid": 10302.7121955943,
"total_value_exit_net": 10302.3528537268,
"total_value": 10302.7121955943,
"base_cost_quote": 561.0141182547,
"unrealized_pnl_exit_net": -82.2509701223
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 75897,
"quote_asset_bal": 9694.5279755478,
"total_value_mid": 10276.2784805478,
"total_value_exit_net": 10275.842167669,
"total_value": 10276.2784805478,
"base_cost_quote": 691.190908678,
"unrealized_pnl_exit_net": -109.8767165568
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 67496,
"quote_asset_bal": 9760.4890766588,
"total_value_mid": 10289.8602046588,
"total_value_exit_net": 10289.4631763128,
"total_value": 10289.8602046588,
"base_cost_quote": 626.113741381,
"unrealized_pnl_exit_net": -97.139641727
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 76565,
"quote_asset_bal": 9690.9828399278,
"total_value_mid": 10276.8582199278,
"total_value_exit_net": 10276.4188133928,
"total_value": 10276.8582199278,
"base_cost_quote": 696.22529764,
"unrealized_pnl_exit_net": -110.789324175
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 65592,
"quote_asset_bal": 9776.9368853306,
"total_value_mid": 10294.4577653306,
"total_value_exit_net": 10294.0696246706,
"total_value": 10294.4577653306,
"base_cost_quote": 611.0782752325,
"unrealized_pnl_exit_net": -93.9455358925
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 73412,
"quote_asset_bal": 9717.7609109276,
"total_value_mid": 10277.2337629276,
"total_value_exit_net": 10276.8141582886,
"total_value": 10277.2337629276,
"base_cost_quote": 671.1507958575,
"unrealized_pnl_exit_net": -112.0975484965
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 71432,
"quote_asset_bal": 9733.63102778,
"total_value_mid": 10282.15735578,
"total_value_exit_net": 10281.7459610341,
"total_value": 10282.15735578,
"base_cost_quote": 656.1521583098,
"unrealized_pnl_exit_net": -108.0372250558
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 69455,
"quote_asset_bal": 9749.4811984175,
"total_value_mid": 10289.4243684175,
"total_value_exit_net": 10289.01941104,
"total_value": 10289.4243684175,
"base_cost_quote": 641.1216028415,
"unrealized_pnl_exit_net": -101.583390219
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 64335,
"quote_asset_bal": 9790.1695933611,
"total_value_mid": 10302.0831883611,
"total_value_exit_net": 10301.6992531648,
"total_value": 10302.0831883611,
"base_cost_quote": 601.0694102095,
"unrealized_pnl_exit_net": -89.5397504057
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 87140,
"quote_asset_bal": 9615.6023246056,
"total_value_mid": 10260.1769046056,
"total_value_exit_net": 10259.6934736706,
"total_value": 10260.1769046056,
"base_cost_quote": 776.3292635897,
"unrealized_pnl_exit_net": -132.2381145248
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 82504,
"quote_asset_bal": 9651.3794340441,
"total_value_mid": 10265.7867220441,
"total_value_exit_net": 10265.3259165781,
"total_value": 10265.7867220441,
"base_cost_quote": 741.2889430447,
"unrealized_pnl_exit_net": -127.3424605108
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 79115,
"quote_asset_bal": 9677.0603082533,
"total_value_mid": 10266.6252882533,
"total_value_exit_net": 10266.1831145183,
"total_value": 10266.6252882533,
"base_cost_quote": 716.250541317,
"unrealized_pnl_exit_net": -127.127735052
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 85157,
"quote_asset_bal": 9632.4016705331,
"total_value_mid": 10261.0306445331,
"total_value_exit_net": 10260.5591728026,
"total_value": 10261.0306445331,
"base_cost_quote": 761.3068732408,
"unrealized_pnl_exit_net": -133.1493709713
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 81767,
"quote_asset_bal": 9658.0998063406,
"total_value_mid": 10269.0628303406,
"total_value_exit_net": 10268.6046080726,
"total_value": 10269.0628303406,
"base_cost_quote": 736.2656343868,
"unrealized_pnl_exit_net": -125.7608326548
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 86501,
"quote_asset_bal": 9623.6336050306,
"total_value_mid": 10257.9454380306,
"total_value_exit_net": 10257.4697041558,
"total_value": 10257.9454380306,
"base_cost_quote": 771.3259959513,
"unrealized_pnl_exit_net": -137.489896826
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 92027,
"quote_asset_bal": 9584.1452013331,
"total_value_mid": 10245.1751423331,
"total_value_exit_net": 10244.6793698773,
"total_value": 10245.1751423331,
"base_cost_quote": 811.3952443655,
"unrealized_pnl_exit_net": -150.8610758213
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 109931,
"quote_asset_bal": 9459.5065712631,
"total_value_mid": 10209.6757152631,
"total_value_exit_net": 10209.1130884051,
"total_value": 10209.6757152631,
"base_cost_quote": 936.575028843,
"unrealized_pnl_exit_net": -186.968511701
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 105553,
"quote_asset_bal": 9490.1427844698,
"total_value_mid": 10216.8751894698,
"total_value_exit_net": 10216.3301401661,
"total_value": 10216.8751894698,
"base_cost_quote": 906.5306824705,
"unrealized_pnl_exit_net": -180.3433267743
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 101248,
"quote_asset_bal": 9520.6256957583,
"total_value_mid": 10233.7153597583,
"total_value_exit_net": 10233.1805425103,
"total_value": 10233.7153597583,
"base_cost_quote": 876.5001674638,
"unrealized_pnl_exit_net": -163.9453207118
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 90712,
"quote_asset_bal": 9596.5037880094,
"total_value_mid": 10252.5329720094,
"total_value_exit_net": 10252.0409501214,
"total_value": 10252.5329720094,
"base_cost_quote": 801.3750618608,
"unrealized_pnl_exit_net": -145.8378997488
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 93465,
"quote_asset_bal": 9577.0162064929,
"total_value_mid": 10249.6838114929,
"total_value_exit_net": 10249.1793107891,
"total_value": 10249.6838114929,
"base_cost_quote": 821.4068114135,
"unrealized_pnl_exit_net": -149.2437071173
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 99040,
"quote_asset_bal": 9537.3913709219,
"total_value_mid": 10242.5561709219,
"total_value_exit_net": 10242.0272973219,
"total_value": 10242.5561709219,
"base_cost_quote": 861.4734038373,
"unrealized_pnl_exit_net": -156.8374774373
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 113435,
"quote_asset_bal": 9438.0730564462,
"total_value_mid": 10207.6160964462,
"total_value_exit_net": 10207.0389391662,
"total_value": 10207.6160964462,
"base_cost_quote": 961.6133705258,
"unrealized_pnl_exit_net": -192.6474878058
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 107566,
"quote_asset_bal": 9478.9296640094,
"total_value_mid": 10223.6090820094,
"total_value_exit_net": 10223.0505724459,
"total_value": 10223.6090820094,
"base_cost_quote": 921.549448103,
"unrealized_pnl_exit_net": -177.4285396665
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 98277,
"quote_asset_bal": 9544.5395106909,
"total_value_mid": 10241.0286096909,
"total_value_exit_net": 10240.5062428667,
"total_value": 10241.0286096909,
"base_cost_quote": 856.4436773695,
"unrealized_pnl_exit_net": -160.4769451938
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 100402,
"quote_asset_bal": 9529.9582139329,
"total_value_mid": 10236.5874899329,
"total_value_exit_net": 10236.0575179759,
"total_value": 10236.5874899329,
"base_cost_quote": 871.479355677,
"unrealized_pnl_exit_net": -165.380051634
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 88548,
"quote_asset_bal": 9615.6542231042,
"total_value_mid": 10262.4088151042,
"total_value_exit_net": 10261.9237491602,
"total_value": 10262.4088151042,
"base_cost_quote": 786.3492269303,
"unrealized_pnl_exit_net": -140.0797008743
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 86488,
"quote_asset_bal": 9631.3973439239,
"total_value_mid": 10273.8302079239,
"total_value_exit_net": 10273.3483832759,
"total_value": 10273.8302079239,
"base_cost_quote": 771.323238885,
"unrealized_pnl_exit_net": -129.372199533
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 94005,
"quote_asset_bal": 9577.0008803392,
"total_value_mid": 10252.5208103392,
"total_value_exit_net": 10252.0141703917,
"total_value": 10252.5208103392,
"base_cost_quote": 826.4227025125,
"unrealized_pnl_exit_net": -151.40941246
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 107836,
"quote_asset_bal": 9482.6220842652,
"total_value_mid": 10214.2893442652,
"total_value_exit_net": 10213.7405938202,
"total_value": 10214.2893442652,
"base_cost_quote": 921.567185396,
"unrealized_pnl_exit_net": -190.448675841
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 111572,
"quote_asset_bal": 9458.2324915587,
"total_value_mid": 10197.7317075587,
"total_value_exit_net": 10197.1770831467,
"total_value": 10197.7317075587,
"base_cost_quote": 946.6011528005,
"unrealized_pnl_exit_net": -207.6565612125
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 115350,
"quote_asset_bal": 9433.4345729272,
"total_value_mid": 10196.8208729272,
"total_value_exit_net": 10196.2483332022,
"total_value": 10196.8208729272,
"base_cost_quote": 971.6306238353,
"unrealized_pnl_exit_net": -208.8168635603
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 112326,
"quote_asset_bal": 9453.6830810272,
"total_value_mid": 10203.5714570272,
"total_value_exit_net": 10203.0090407452,
"total_value": 10203.5714570272,
"base_cost_quote": 951.6112875855,
"unrealized_pnl_exit_net": -202.2853278675
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 110833,
"quote_asset_bal": 9464.3602256075,
"total_value_mid": 10209.1579856075,
"total_value_exit_net": 10208.5993872875,
"total_value": 10209.1579856075,
"base_cost_quote": 941.598233423,
"unrealized_pnl_exit_net": -197.359071743
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 126696,
"quote_asset_bal": 9359.7502921707,
"total_value_mid": 10182.5141161707,
"total_value_exit_net": 10181.8970433027,
"total_value": 10182.5141161707,
"base_cost_quote": 1046.7503574123,
"unrealized_pnl_exit_net": -224.6036062803
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 124365,
"quote_asset_bal": 9375.3793188434,
"total_value_mid": 10185.6172938434,
"total_value_exit_net": 10185.0096153622,
"total_value": 10185.6172938434,
"base_cost_quote": 1031.7331419415,
"unrealized_pnl_exit_net": -222.1028454228
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 125124,
"quote_asset_bal": 9370.9084967137,
"total_value_mid": 10184.0893727137,
"total_value_exit_net": 10183.4794870567,
"total_value": 10184.0893727137,
"base_cost_quote": 1036.7405626925,
"unrealized_pnl_exit_net": -224.1695723495
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 130576,
"quote_asset_bal": 9336.5801602642,
"total_value_mid": 10165.6071842641,
"total_value_exit_net": 10164.9854139961,
"total_value": 10165.6071842641,
"base_cost_quote": 1071.785404626,
"unrealized_pnl_exit_net": -243.380150894
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 143326,
"quote_asset_bal": 9257.1395973362,
"total_value_mid": 10142.6076253362,
"total_value_exit_net": 10141.9435243152,
"total_value": 10142.6076253362,
"base_cost_quote": 1151.9047280852,
"unrealized_pnl_exit_net": -267.1008011062
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 155759,
"quote_asset_bal": 9182.6947423944,
"total_value_mid": 10113.3547673944,
"total_value_exit_net": 10112.6567723757,
"total_value": 10113.3547673944,
"base_cost_quote": 1227.0059357782,
"unrealized_pnl_exit_net": -297.043905797
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 130854,
"quote_asset_bal": 9338.9418991114,
"total_value_mid": 10182.9501991114,
"total_value_exit_net": 10182.3171928864,
"total_value": 10182.9501991114,
"base_cost_quote": 1071.7856978458,
"unrealized_pnl_exit_net": -228.4104040708
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 128525,
"quote_asset_bal": 9354.7197087471,
"total_value_mid": 10189.7466337471,
"total_value_exit_net": 10189.1203635534,
"total_value": 10189.7466337471,
"base_cost_quote": 1056.7607705955,
"unrealized_pnl_exit_net": -222.3601157893
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 133196,
"quote_asset_bal": 9325.2249956731,
"total_value_mid": 10177.8125916731,
"total_value_exit_net": 10177.1731509761,
"total_value": 10177.8125916731,
"base_cost_quote": 1086.8035177695,
"unrealized_pnl_exit_net": -234.8553624665
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 140296,
"quote_asset_bal": 9281.1075594578,
"total_value_mid": 10160.3425914578,
"total_value_exit_net": 10159.6831651838,
"total_value": 10160.3425914578,
"base_cost_quote": 1131.8574478933,
"unrealized_pnl_exit_net": -253.2818421673
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 136298,
"quote_asset_bal": 9306.9070034836,
"total_value_mid": 10165.0392114836,
"total_value_exit_net": 10164.3956123276,
"total_value": 10165.0392114836,
"base_cost_quote": 1106.834964095,
"unrealized_pnl_exit_net": -249.346355251
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 133920,
"quote_asset_bal": 9322.4128319763,
"total_value_mid": 10176.0189119763,
"total_value_exit_net": 10175.3787074163,
"total_value": 10176.0189119763,
"base_cost_quote": 1091.8099767998,
"unrealized_pnl_exit_net": -238.8441013598
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 126116,
"quote_asset_bal": 9372.9943980866,
"total_value_mid": 10195.3968340866,
"total_value_exit_net": 10194.7800322596,
"total_value": 10195.3968340866,
"base_cost_quote": 1041.7345683898,
"unrealized_pnl_exit_net": -219.9489342168
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 118039,
"quote_asset_bal": 9429.3748479265,
"total_value_mid": 10188.0115009265,
"total_value_exit_net": 10187.4425234368,
"total_value": 10188.0115009265,
"base_cost_quote": 986.6528560658,
"unrealized_pnl_exit_net": -228.5851805555
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 126052,
"quote_asset_bal": 9380.0822299295,
"total_value_mid": 10160.5962139295,
"total_value_exit_net": 10160.0108284415,
"total_value": 10160.5962139295,
"base_cost_quote": 1036.725949741,
"unrealized_pnl_exit_net": -256.797351229
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 107447,
"quote_asset_bal": 9502.6778463675,
"total_value_mid": 10231.2759533675,
"total_value_exit_net": 10230.7295047872,
"total_value": 10231.2759533675,
"base_cost_quote": 916.545017593,
"unrealized_pnl_exit_net": -188.4933591733
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 88724,
"quote_asset_bal": 9639.8360526772,
"total_value_mid": 10265.3402526772,
"total_value_exit_net": 10264.8711245272,
"total_value": 10265.3402526772,
"base_cost_quote": 781.3437946695,
"unrealized_pnl_exit_net": -156.3087228195
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 100459,
"quote_asset_bal": 9560.478110244,
"total_value_mid": 10236.366262244,
"total_value_exit_net": 10235.85934613,
"total_value": 10236.366262244,
"base_cost_quote": 861.4680988615,
"unrealized_pnl_exit_net": -186.0868629755
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 102695,
"quote_asset_bal": 9545.949116238,
"total_value_mid": 10232.259801238,
"total_value_exit_net": 10231.7450682242,
"total_value": 10232.259801238,
"base_cost_quote": 876.4844206625,
"unrealized_pnl_exit_net": -190.6884686763
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 98954,
"quote_asset_bal": 9571.517348899,
"total_value_mid": 10238.269400899,
"total_value_exit_net": 10237.76933686,
"total_value": 10238.269400899,
"base_cost_quote": 851.441478532,
"unrealized_pnl_exit_net": -185.189490571
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 90328,
"quote_asset_bal": 9632.9377108625,
"total_value_mid": 10248.0713908625,
"total_value_exit_net": 10247.6100406025,
"total_value": 10248.0713908625,
"base_cost_quote": 791.3656614365,
"unrealized_pnl_exit_net": -176.6933316965
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 88030,
"quote_asset_bal": 9649.1559013572,
"total_value_mid": 10265.1018113572,
"total_value_exit_net": 10264.6398519247,
"total_value": 10265.1018113572,
"base_cost_quote": 776.340266836,
"unrealized_pnl_exit_net": -160.8563162685
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 83027,
"quote_asset_bal": 9685.0131542335,
"total_value_mid": 10278.6562042335,
"total_value_exit_net": 10278.210971946,
"total_value": 10278.6562042335,
"base_cost_quote": 741.2743360978,
"unrealized_pnl_exit_net": -148.0765183853
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 81601,
"quote_asset_bal": 9695.6736689842,
"total_value_mid": 10285.0776919842,
"total_value_exit_net": 10284.635638967,
"total_value": 10285.0776919842,
"base_cost_quote": 731.2698033215,
"unrealized_pnl_exit_net": -142.3078333388
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 84381,
"quote_asset_bal": 9676.5083038693,
"total_value_mid": 10286.3297908692,
"total_value_exit_net": 10285.872424754,
"total_value": 10286.3297908692,
"base_cost_quote": 751.278012232,
"unrealized_pnl_exit_net": -141.9138913473
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 73582,
"quote_asset_bal": 9762.9677748435,
"total_value_mid": 10308.5047228435,
"total_value_exit_net": 10308.0955701325,
"total_value": 10308.5047228435,
"base_cost_quote": 666.1706035125,
"unrealized_pnl_exit_net": -121.0428082235
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 61594,
"quote_asset_bal": 9853.8103674973,
"total_value_mid": 10317.3052174973,
"total_value_exit_net": 10316.9575963598,
"total_value": 10317.3052174973,
"base_cost_quote": 576.038100797,
"unrealized_pnl_exit_net": -112.8908719345
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 70238,
"quote_asset_bal": 9789.481073363,
"total_value_mid": 10312.122031363,
"total_value_exit_net": 10311.7300506445,
"total_value": 10312.122031363,
"base_cost_quote": 641.1333246262,
"unrealized_pnl_exit_net": -118.8843473448
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 66264,
"quote_asset_bal": 9820.5462963908,
"total_value_mid": 10321.2370803908,
"total_value_exit_net": 10320.8615623028,
"total_value": 10321.2370803908,
"base_cost_quote": 611.0827075543,
"unrealized_pnl_exit_net": -110.7674416423
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 64889,
"quote_asset_bal": 9831.6153168428,
"total_value_mid": 10329.5086138428,
"total_value_exit_net": 10329.1351938701,
"total_value": 10329.5086138428,
"base_cost_quote": 601.069083965,
"unrealized_pnl_exit_net": -103.5492069377
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 67470,
"quote_asset_bal": 9812.8330653813,
"total_value_mid": 10330.4629053813,
"total_value_exit_net": 10330.0746830013,
"total_value": 10330.4629053813,
"base_cost_quote": 621.105864288,
"unrealized_pnl_exit_net": -103.864246668
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 73966,
"quote_asset_bal": 9763.9220334128,
"total_value_mid": 10327.9127834128,
"total_value_exit_net": 10327.4897903503,
"total_value": 10327.9127834128,
"base_cost_quote": 671.1696429823,
"unrealized_pnl_exit_net": -107.6018860448
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 71327,
"quote_asset_bal": 9784.6120214533,
"total_value_mid": 10330.3348984533,
"total_value_exit_net": 10329.9256062956,
"total_value": 10330.3348984533,
"base_cost_quote": 651.1484303263,
"unrealized_pnl_exit_net": -105.834845484
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 64226,
"quote_asset_bal": 9840.9277693874,
"total_value_mid": 10346.0010333874,
"total_value_exit_net": 10345.6222284394,
"total_value": 10346.0010333874,
"base_cost_quote": 596.0643202053,
"unrealized_pnl_exit_net": -91.3698611533
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 64210,
"quote_asset_bal": 9841.9485902941,
"total_value_mid": 10350.1065302941,
"total_value_exit_net": 10349.7254118391,
"total_value": 10350.1065302941,
"base_cost_quote": 596.063724759,
"unrealized_pnl_exit_net": -88.286903214
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 53801,
"quote_asset_bal": 9929.1159944877,
"total_value_mid": 10359.4701934877,
"total_value_exit_net": 10359.1474278384,
"total_value": 10359.4701934877,
"base_cost_quote": 510.9278707215,
"unrealized_pnl_exit_net": -80.8964373708
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 68801,
"quote_asset_bal": 9815.1429252489,
"total_value_mid": 10333.9024652489,
"total_value_exit_net": 10333.5133955939,
"total_value": 10333.9024652489,
"base_cost_quote": 626.0936172993,
"unrealized_pnl_exit_net": -107.7231469543
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 69447,
"quote_asset_bal": 9811.1539452792,
"total_value_mid": 10332.7703622792,
"total_value_exit_net": 10332.3791499664,
"total_value": 10332.7703622792,
"base_cost_quote": 631.1121383693,
"unrealized_pnl_exit_net": -109.886933682
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 66118,
"quote_asset_bal": 9837.3873769824,
"total_value_mid": 10338.8924069824,
"total_value_exit_net": 10338.5162782099,
"total_value": 10338.8924069824,
"base_cost_quote": 606.0723716185,
"unrealized_pnl_exit_net": -104.943470391
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 60222,
"quote_asset_bal": 9883.1130728175,
"total_value_mid": 10345.9793648175,
"total_value_exit_net": 10345.6322150985,
"total_value": 10345.9793648175,
"base_cost_quote": 561.0106036207,
"unrealized_pnl_exit_net": -98.4914613398
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 56985,
"quote_asset_bal": 9908.6772412102,
"total_value_mid": 10350.3109912102,
"total_value_exit_net": 10349.9797658977,
"total_value": 10350.3109912102,
"base_cost_quote": 535.9744725948,
"unrealized_pnl_exit_net": -94.6719479073
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 81622,
"quote_asset_bal": 9723.984515046,
"total_value_mid": 10318.1110530459,
"total_value_exit_net": 10317.6654581424,
"total_value": 10318.1110530459,
"base_cost_quote": 721.2446911222,
"unrealized_pnl_exit_net": -127.5637480258
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 81650,
"quote_asset_bal": 9724.7484220327,
"total_value_mid": 10310.5055220327,
"total_value_exit_net": 10310.0662042077,
"total_value": 10310.5055220327,
"base_cost_quote": 721.2267076448,
"unrealized_pnl_exit_net": -135.9089254698
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 27234,
"quote_asset_bal": 10180.1334112594,
"total_value_mid": 10450.2129892594,
"total_value_exit_net": 10450.0104295759,
"total_value": 10450.2129892594,
"base_cost_quote": 270.520590389,
"unrealized_pnl_exit_net": -0.6435720725
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 40245,
"quote_asset_bal": 10067.5167528834,
"total_value_mid": 10399.1757978834,
"total_value_exit_net": 10398.9270535997,
"total_value": 10399.1757978834,
"base_cost_quote": 385.7140557402,
"unrealized_pnl_exit_net": -54.303755024
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 58045,
"quote_asset_bal": 9928.7550054017,
"total_value_mid": 10368.9682854017,
"total_value_exit_net": 10368.6381254417,
"total_value": 10368.9682854017,
"base_cost_quote": 525.9222610862,
"unrealized_pnl_exit_net": -86.0391410463
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 64531,
"quote_asset_bal": 9884.5652889435,
"total_value_mid": 10355.5770579435,
"total_value_exit_net": 10355.2237991167,
"total_value": 10355.5770579435,
"base_cost_quote": 570.978729112,
"unrealized_pnl_exit_net": -100.3202189388
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 60472,
"quote_asset_bal": 9915.183160398,
"total_value_mid": 10363.220208398,
"total_value_exit_net": 10362.884180612,
"total_value": 10363.220208398,
"base_cost_quote": 540.9476536852,
"unrealized_pnl_exit_net": -93.2466334713
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 57751,
"quote_asset_bal": 9935.543572521,
"total_value_mid": 10367.809807521,
"total_value_exit_net": 10367.4856078447,
"total_value": 10367.809807521,
"base_cost_quote": 520.913996703,
"unrealized_pnl_exit_net": -88.9719613793
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 63926,
"quote_asset_bal": 9891.1216538768,
"total_value_mid": 10348.1925538768,
"total_value_exit_net": 10347.8497507018,
"total_value": 10348.1925538768,
"base_cost_quote": 565.9824907415,
"unrealized_pnl_exit_net": -109.2543939165
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 67375,
"quote_asset_bal": 9866.694741796,
"total_value_mid": 10350.245116796,
"total_value_exit_net": 10349.8824540148,
"total_value": 10350.245116796,
"base_cost_quote": 591.0316925633,
"unrealized_pnl_exit_net": -107.8439803445
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 59784,
"quote_asset_bal": 9922.1855373295,
"total_value_mid": 10364.0490813295,
"total_value_exit_net": 10363.7176836715,
"total_value": 10364.0490813295,
"base_cost_quote": 535.9452927262,
"unrealized_pnl_exit_net": -94.4131463842
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 59784,
"quote_asset_bal": 9922.5194605923,
"total_value_mid": 10364.4427885923,
"total_value_exit_net": 10364.1113460963,
"total_value": 10364.4427885923,
"base_cost_quote": 535.9452927262,
"unrealized_pnl_exit_net": -94.3534072222
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 57756,
"quote_asset_bal": 9937.894186589,
"total_value_mid": 10369.562530589,
"total_value_exit_net": 10369.238779331,
"total_value": 10369.562530589,
"base_cost_quote": 520.9165356058,
"unrealized_pnl_exit_net": -89.5719428638
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 58430,
"quote_asset_bal": 9933.481445996,
"total_value_mid": 10369.310815996,
"total_value_exit_net": 10368.9839439685,
"total_value": 10369.310815996,
"base_cost_quote": 525.9035620725,
"unrealized_pnl_exit_net": -90.4010641
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 70699,
"quote_asset_bal": 9843.8315891415,
"total_value_mid": 10353.6420781415,
"total_value_exit_net": 10353.2597202748,
"total_value": 10353.6420781415,
"base_cost_quote": 616.0348989143,
"unrealized_pnl_exit_net": -106.606767781
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 59746,
"quote_asset_bal": 9924.7732396751,
"total_value_mid": 10367.9690676751,
"total_value_exit_net": 10367.6366708041,
"total_value": 10367.9690676751,
"base_cost_quote": 535.9230300417,
"unrealized_pnl_exit_net": -93.0595989127
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 53715,
"quote_asset_bal": 9970.4771230023,
"total_value_mid": 10374.5750680023,
"total_value_exit_net": 10374.2719945436,
"total_value": 10374.5750680023,
"base_cost_quote": 490.8658264647,
"unrealized_pnl_exit_net": -87.0709549235
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 62659,
"quote_asset_bal": 9906.5949418735,
"total_value_mid": 10356.9251748735,
"total_value_exit_net": 10356.5874271988,
"total_value": 10356.9251748735,
"base_cost_quote": 555.9644148155,
"unrealized_pnl_exit_net": -105.9719294903
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 68643,
"quote_asset_bal": 9862.298887447,
"total_value_mid": 10362.088570447,
"total_value_exit_net": 10361.7137281848,
"total_value": 10362.088570447,
"base_cost_quote": 601.0397840065,
"unrealized_pnl_exit_net": -101.6249432688
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 61122,
"quote_asset_bal": 9917.9425185796,
"total_value_mid": 10369.3896105796,
"total_value_exit_net": 10369.0510252606,
"total_value": 10369.3896105796,
"base_cost_quote": 545.9472585787,
"unrealized_pnl_exit_net": -94.8387518977
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 65207,
"quote_asset_bal": 9888.2922943571,
"total_value_mid": 10365.0858783571,
"total_value_exit_net": 10364.7282831691,
"total_value": 10365.0858783571,
"base_cost_quote": 575.9984090505,
"unrealized_pnl_exit_net": -99.5624202385
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 72863,
"quote_asset_bal": 9833.9461701833,
"total_value_mid": 10353.1679081833,
"total_value_exit_net": 10352.7784918798,
"total_value": 10353.1679081833,
"base_cost_quote": 631.0684166025,
"unrealized_pnl_exit_net": -112.236094906
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 86532,
"quote_asset_bal": 9739.4912845449,
"total_value_mid": 10331.1971005449,
"total_value_exit_net": 10330.7533211829,
"total_value": 10331.1971005449,
"base_cost_quote": 726.2120968845,
"unrealized_pnl_exit_net": -134.9500602465
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 70949,
"quote_asset_bal": 9850.5474366421,
"total_value_mid": 10356.9813986421,
"total_value_exit_net": 10356.6015731706,
"total_value": 10356.9813986421,
"base_cost_quote": 616.0558045817,
"unrealized_pnl_exit_net": -110.0016680532
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 70217,
"quote_asset_bal": 9856.2862713774,
"total_value_mid": 10355.9504433774,
"total_value_exit_net": 10355.5756952484,
"total_value": 10355.9504433774,
"base_cost_quote": 611.046829666,
"unrealized_pnl_exit_net": -111.757405795
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 62612,
"quote_asset_bal": 9912.1972931576,
"total_value_mid": 10376.0896011576,
"total_value_exit_net": 10375.7416819266,
"total_value": 10376.0896011576,
"base_cost_quote": 555.9746334737,
"unrealized_pnl_exit_net": -92.4302447048
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 68085,
"quote_asset_bal": 9872.6252569504,
"total_value_mid": 10370.6670319504,
"total_value_exit_net": 10370.2935006191,
"total_value": 10370.6670319504,
"base_cost_quote": 596.022986228,
"unrealized_pnl_exit_net": -98.3547425593
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 70208,
"quote_asset_bal": 9858.0519380019,
"total_value_mid": 10360.6710100019,
"total_value_exit_net": 10360.2940456979,
"total_value": 10360.6710100019,
"base_cost_quote": 611.0448421765,
"unrealized_pnl_exit_net": -108.8027344805
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 90371,
"quote_asset_bal": 9718.6012372549,
"total_value_mid": 10330.9551332549,
"total_value_exit_net": 10330.4958678329,
"total_value": 10330.9551332549,
"base_cost_quote": 751.2131946553,
"unrealized_pnl_exit_net": -139.3185640773
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 79383,
"quote_asset_bal": 9794.2138315802,
"total_value_mid": 10349.9742145802,
"total_value_exit_net": 10349.5573942929,
"total_value": 10349.9742145802,
"base_cost_quote": 676.1119259165,
"unrealized_pnl_exit_net": -120.7683632038
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 78695,
"quote_asset_bal": 9799.6736350929,
"total_value_mid": 10349.1221250929,
"total_value_exit_net": 10348.7100387254,
"total_value": 10349.1221250929,
"base_cost_quote": 671.1251496373,
"unrealized_pnl_exit_net": -122.0887460048
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 75116,
"quote_asset_bal": 9825.0907598261,
"total_value_mid": 10356.6115758261,
"total_value_exit_net": 10356.2129352141,
"total_value": 10356.6115758261,
"base_cost_quote": 646.0933488565,
"unrealized_pnl_exit_net": -114.9711734685
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 73231,
"quote_asset_bal": 9840.7459290724,
"total_value_mid": 10344.6484400724,
"total_value_exit_net": 10344.2705131891,
"total_value": 10344.6484400724,
"base_cost_quote": 631.070960509,
"unrealized_pnl_exit_net": -127.5463763923
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 66698,
"quote_asset_bal": 9886.1817617259,
"total_value_mid": 10352.0005937259,
"total_value_exit_net": 10351.6512296019,
"total_value": 10352.0005937259,
"base_cost_quote": 586.004862266,
"unrealized_pnl_exit_net": -120.53539439
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 80433,
"quote_asset_bal": 9791.2936807342,
"total_value_mid": 10338.8815447341,
"total_value_exit_net": 10338.4708538361,
"total_value": 10338.8815447341,
"base_cost_quote": 681.1382478328,
"unrealized_pnl_exit_net": -133.9610747308
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 78028,
"quote_asset_bal": 9812.1855943454,
"total_value_mid": 10335.1292503454,
"total_value_exit_net": 10334.7370426034,
"total_value": 10335.1292503454,
"base_cost_quote": 661.1325397965,
"unrealized_pnl_exit_net": -138.5810915385
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 72083,
"quote_asset_bal": 9852.8643416831,
"total_value_mid": 10340.5779196831,
"total_value_exit_net": 10340.2121344996,
"total_value": 10340.5779196831,
"base_cost_quote": 621.0502696233,
"unrealized_pnl_exit_net": -133.7024768068
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 68396,
"quote_asset_bal": 9878.2345202474,
"total_value_mid": 10345.5159922474,
"total_value_exit_net": 10345.1655311434,
"total_value": 10345.5159922474,
"base_cost_quote": 596.020700515,
"unrealized_pnl_exit_net": -129.089689619
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 75782,
"quote_asset_bal": 9828.4008522934,
"total_value_mid": 10332.8058442934,
"total_value_exit_net": 10332.4275405494,
"total_value": 10332.8058442934,
"base_cost_quote": 646.0843711282,
"unrealized_pnl_exit_net": -142.0576828723
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 70595,
"quote_asset_bal": 9863.8705518004,
"total_value_mid": 10341.6575118004,
"total_value_exit_net": 10341.2991715804,
"total_value": 10341.6575118004,
"base_cost_quote": 611.0429767785,
"unrealized_pnl_exit_net": -133.6143569985
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 75791,
"quote_asset_bal": 9829.0810701694,
"total_value_mid": 10338.0934261694,
"total_value_exit_net": 10337.7116669024,
"total_value": 10338.0934261694,
"base_cost_quote": 646.092278054,
"unrealized_pnl_exit_net": -137.461681321
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 69103,
"quote_asset_bal": 9874.5110639549,
"total_value_mid": 10343.8586399549,
"total_value_exit_net": 10343.5066292729,
"total_value": 10343.8586399549,
"base_cost_quote": 601.0287867647,
"unrealized_pnl_exit_net": -132.0332214467
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 64704,
"quote_asset_bal": 9904.9091198356,
"total_value_mid": 10350.9137918356,
"total_value_exit_net": 10350.5792883316,
"total_value": 10350.9137918356,
"base_cost_quote": 570.9828091697,
"unrealized_pnl_exit_net": -125.3126406738
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 69734,
"quote_asset_bal": 9870.2172957249,
"total_value_mid": 10351.3121617249,
"total_value_exit_net": 10350.9513405754,
"total_value": 10351.3121617249,
"base_cost_quote": 606.041406412,
"unrealized_pnl_exit_net": -125.3073615615
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 65389,
"quote_asset_bal": 9900.6745503571,
"total_value_mid": 10356.5012693571,
"total_value_exit_net": 10356.1593993179,
"total_value": 10356.5012693571,
"base_cost_quote": 575.9910545387,
"unrealized_pnl_exit_net": -120.506205578
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 69739,
"quote_asset_bal": 9870.8612024006,
"total_value_mid": 10350.8747394006,
"total_value_exit_net": 10350.5147292479,
"total_value": 10350.8747394006,
"base_cost_quote": 606.0446238233,
"unrealized_pnl_exit_net": -126.391096976
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 64699,
"quote_asset_bal": 9906.1004355264,
"total_value_mid": 10358.4758435264,
"total_value_exit_net": 10358.1365619704,
"total_value": 10358.4758435264,
"base_cost_quote": 570.9818214295,
"unrealized_pnl_exit_net": -118.9456949855
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 66114,
"quote_asset_bal": 9896.2060005199,
"total_value_mid": 10359.9957105199,
"total_value_exit_net": 10359.6478682374,
"total_value": 10359.9957105199,
"base_cost_quote": 580.994423253,
"unrealized_pnl_exit_net": -117.5525555355
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 74063,
"quote_asset_bal": 9841.3918957466,
"total_value_mid": 10347.1681227466,
"total_value_exit_net": 10346.7887905764,
"total_value": 10347.1681227466,
"base_cost_quote": 636.0633710108,
"unrealized_pnl_exit_net": -130.666476181
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 79273,
"quote_asset_bal": 9806.7283166409,
"total_value_mid": 10341.1868826409,
"total_value_exit_net": 10340.7860387164,
"total_value": 10341.1868826409,
"base_cost_quote": 671.1182724833,
"unrealized_pnl_exit_net": -137.0605504078
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 71899,
"quote_asset_bal": 9857.1914572386,
"total_value_mid": 10352.0722742386,
"total_value_exit_net": 10351.7011136259,
"total_value": 10352.0722742386,
"base_cost_quote": 621.0472743785,
"unrealized_pnl_exit_net": -126.5376179913
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 69000,
"quote_asset_bal": 9877.6184182406,
"total_value_mid": 10358.6174182406,
"total_value_exit_net": 10358.2566689906,
"total_value": 10358.6174182406,
"base_cost_quote": 601.0174112395,
"unrealized_pnl_exit_net": -120.3791604895
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 74776,
"quote_asset_bal": 9837.8671138819,
"total_value_mid": 10354.2701698819,
"total_value_exit_net": 10353.8828675899,
"total_value": 10354.2701698819,
"base_cost_quote": 641.0782673643,
"unrealized_pnl_exit_net": -125.0625136563
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 87345,
"quote_asset_bal": 9752.9828176844,
"total_value_mid": 10335.8360026844,
"total_value_exit_net": 10335.3988627956,
"total_value": 10335.8360026844,
"base_cost_quote": 726.19772011,
"unrealized_pnl_exit_net": -143.7816749988
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 85821,
"quote_asset_bal": 9763.2246364891,
"total_value_mid": 10341.1432504891,
"total_value_exit_net": 10340.7098115286,
"total_value": 10341.1432504891,
"base_cost_quote": 716.191797292,
"unrealized_pnl_exit_net": -138.7066222525
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 80732,
"quote_asset_bal": 9798.8029914151,
"total_value_mid": 10334.2176154151,
"total_value_exit_net": 10333.8160544471,
"total_value": 10334.2176154151,
"base_cost_quote": 681.1259966513,
"unrealized_pnl_exit_net": -146.1129336193
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 96309,
"quote_asset_bal": 9699.2617704306,
"total_value_mid": 10298.3037504306,
"total_value_exit_net": 10297.8544689456,
"total_value": 10298.3037504306,
"base_cost_quote": 781.2676125758,
"unrealized_pnl_exit_net": -182.6749140608
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 94716,
"quote_asset_bal": 9709.6419063683,
"total_value_mid": 10302.1852023683,
"total_value_exit_net": 10301.7407948963,
"total_value": 10302.1852023683,
"base_cost_quote": 771.2492814585,
"unrealized_pnl_exit_net": -179.1503929305
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 94718,
"quote_asset_bal": 9709.8966191108,
"total_value_mid": 10303.9679151108,
"total_value_exit_net": 10303.5223616388,
"total_value": 10303.9679151108,
"base_cost_quote": 771.2489612185,
"unrealized_pnl_exit_net": -177.6232186905
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 116911,
"quote_asset_bal": 9575.4391002416,
"total_value_mid": 10264.3956232416,
"total_value_exit_net": 10263.8789058493,
"total_value": 10264.3956232416,
"base_cost_quote": 906.4044828917,
"unrealized_pnl_exit_net": -217.964677284
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 105184,
"quote_asset_bal": 9646.0847237643,
"total_value_mid": 10282.7634757643,
"total_value_exit_net": 10282.2859667003,
"total_value": 10282.7634757643,
"base_cost_quote": 836.321038701,
"unrealized_pnl_exit_net": -200.119795765
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 107659,
"quote_asset_bal": 9631.3023639721,
"total_value_mid": 10280.3784749721,
"total_value_exit_net": 10279.8916678888,
"total_value": 10280.3784749721,
"base_cost_quote": 851.336431806,
"unrealized_pnl_exit_net": -202.7471278893
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 98619,
"quote_asset_bal": 9686.7012557131,
"total_value_mid": 10292.6163917131,
"total_value_exit_net": 10292.1619553611,
"total_value": 10292.6163917131,
"base_cost_quote": 796.2725078132,
"unrealized_pnl_exit_net": -190.8118081652
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 97827,
"quote_asset_bal": 9692.3522041058,
"total_value_mid": 10295.0643511058,
"total_value_exit_net": 10294.6123169956,
"total_value": 10295.0643511058,
"base_cost_quote": 791.2710935638,
"unrealized_pnl_exit_net": -189.010980674
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 86823,
"quote_asset_bal": 9763.6004555028,
"total_value_mid": 10302.1635245028,
"total_value_exit_net": 10301.7596022011,
"total_value": 10302.1635245028,
"base_cost_quote": 721.1702103035,
"unrealized_pnl_exit_net": -183.0110636053
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 86812,
"quote_asset_bal": 9764.1437806961,
"total_value_mid": 10322.171316696,
"total_value_exit_net": 10321.752796044,
"total_value": 10322.171316696,
"base_cost_quote": 721.1691695235,
"unrealized_pnl_exit_net": -163.5601541755
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 86017,
"quote_asset_bal": 9769.6608850923,
"total_value_mid": 10330.2336740923,
"total_value_exit_net": 10329.8132445005,
"total_value": 10330.2336740923,
"base_cost_quote": 716.1598963843,
"unrealized_pnl_exit_net": -156.007536976
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 88295,
"quote_asset_bal": 9755.168724675,
"total_value_mid": 10326.878849675,
"total_value_exit_net": 10326.4500670813,
"total_value": 10326.878849675,
"base_cost_quote": 731.1885864545,
"unrealized_pnl_exit_net": -159.9072440483
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 98487,
"quote_asset_bal": 9690.3537868315,
"total_value_mid": 10308.8521468315,
"total_value_exit_net": 10308.3882730615,
"total_value": 10308.8521468315,
"base_cost_quote": 796.2839353775,
"unrealized_pnl_exit_net": -178.2494491475
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 102421,
"quote_asset_bal": 9665.636907986,
"total_value_mid": 10308.635945986,
"total_value_exit_net": 10308.1536967075,
"total_value": 10308.635945986,
"base_cost_quote": 821.3041274583,
"unrealized_pnl_exit_net": -178.7873387368
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 94507,
"quote_asset_bal": 9715.932370543,
"total_value_mid": 10318.603509543,
"total_value_exit_net": 10318.1515061888,
"total_value": 10318.603509543,
"base_cost_quote": 771.2380360308,
"unrealized_pnl_exit_net": -169.018900385
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 106559,
"quote_asset_bal": 9641.211331822,
"total_value_mid": 10291.434349822,
"total_value_exit_net": 10290.9466825585,
"total_value": 10291.434349822,
"base_cost_quote": 846.3576625275,
"unrealized_pnl_exit_net": -196.622311791
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 100865,
"quote_asset_bal": 9676.6610701668,
"total_value_mid": 10304.9491551668,
"total_value_exit_net": 10304.477939103,
"total_value": 10304.9491551668,
"base_cost_quote": 811.2986429688,
"unrealized_pnl_exit_net": -183.4817740325
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 94544,
"quote_asset_bal": 9717.6066014243,
"total_value_mid": 10303.8739454243,
"total_value_exit_net": 10303.4342449163,
"total_value": 10303.8739454243,
"base_cost_quote": 771.2555271393,
"unrealized_pnl_exit_net": -185.4278836473
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 110941,
"quote_asset_bal": 9618.6832536678,
"total_value_mid": 10222.3132346678,
"total_value_exit_net": 10221.860512182,
"total_value": 10222.3132346678,
"base_cost_quote": 871.3788313403,
"unrealized_pnl_exit_net": -268.201572826
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 121280,
"quote_asset_bal": 9565.727589181,
"total_value_mid": 10198.687909181,
"total_value_exit_net": 10198.213188941,
"total_value": 10198.687909181,
"base_cost_quote": 926.449548424,
"unrealized_pnl_exit_net": -293.963948664
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 116408,
"quote_asset_bal": 9591.8765064385,
"total_value_mid": 10233.2845864385,
"total_value_exit_net": 10232.8035303785,
"total_value": 10233.2845864385,
"base_cost_quote": 901.410771415,
"unrealized_pnl_exit_net": -260.483747475
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 114534,
"quote_asset_bal": 9602.6509287655,
"total_value_mid": 10252.2877767655,
"total_value_exit_net": 10251.8005491295,
"total_value": 10252.2877767655,
"base_cost_quote": 891.4063106928,
"unrealized_pnl_exit_net": -242.2566903288
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 125861,
"quote_asset_bal": 9538.9192438263,
"total_value_mid": 10244.8735928263,
"total_value_exit_net": 10244.3441270646,
"total_value": 10244.8735928263,
"base_cost_quote": 956.488144487,
"unrealized_pnl_exit_net": -251.0632612487
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 123463,
"quote_asset_bal": 9555.6275329031,
"total_value_mid": 10241.0941089031,
"total_value_exit_net": 10240.5800089711,
"total_value": 10241.0941089031,
"base_cost_quote": 941.4683410768,
"unrealized_pnl_exit_net": -256.5158650088
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 133538,
"quote_asset_bal": 9502.0126245318,
"total_value_mid": 10220.7141405318,
"total_value_exit_net": 10220.1751143948,
"total_value": 10220.7141405318,
"base_cost_quote": 996.542626835,
"unrealized_pnl_exit_net": -278.380136972
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 142088,
"quote_asset_bal": 9458.2619692441,
"total_value_mid": 10207.3499052441,
"total_value_exit_net": 10206.7880892921,
"total_value": 10207.3499052441,
"base_cost_quote": 1041.6107736133,
"unrealized_pnl_exit_net": -293.0846535653
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 141115,
"quote_asset_bal": 9463.9994566228,
"total_value_mid": 10213.3201066228,
"total_value_exit_net": 10212.7581161353,
"total_value": 10213.3201066228,
"base_cost_quote": 1036.602657341,
"unrealized_pnl_exit_net": -287.8439978285
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 139167,
"quote_asset_bal": 9474.7341084298,
"total_value_mid": 10223.4525684298,
"total_value_exit_net": 10222.8910295848,
"total_value": 10223.4525684298,
"base_cost_quote": 1026.585974459,
"unrealized_pnl_exit_net": -278.429053304
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 138216,
"quote_asset_bal": 9480.5685170636,
"total_value_mid": 10230.5285330636,
"total_value_exit_net": 10229.9660630516,
"total_value": 10230.5285330636,
"base_cost_quote": 1021.5755044228,
"unrealized_pnl_exit_net": -272.1779584348
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 145635,
"quote_asset_bal": 9441.7009711098,
"total_value_mid": 10207.7410711098,
"total_value_exit_net": 10207.1665410348,
"total_value": 10207.7410711098,
"base_cost_quote": 1061.6290830935,
"unrealized_pnl_exit_net": -296.1635131685
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 150483,
"quote_asset_bal": 9418.1668039468,
"total_value_mid": 10199.0230909468,
"total_value_exit_net": 10198.4374487316,
"total_value": 10199.0230909468,
"base_cost_quote": 1086.6621308088,
"unrealized_pnl_exit_net": -306.391486024
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 140878,
"quote_asset_bal": 9468.9462208811,
"total_value_mid": 10219.8259608811,
"total_value_exit_net": 10219.2628010761,
"total_value": 10219.8259608811,
"base_cost_quote": 1036.5983361025,
"unrealized_pnl_exit_net": -286.2817559075
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 136196,
"quote_asset_bal": 9494.6204231921,
"total_value_mid": 10229.1254511921,
"total_value_exit_net": 10228.5745724211,
"total_value": 10229.1254511921,
"base_cost_quote": 1011.553716715,
"unrealized_pnl_exit_net": -277.599567486
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 139896,
"quote_asset_bal": 9475.0163039994,
"total_value_mid": 10227.2370959993,
"total_value_exit_net": 10226.6729304053,
"total_value": 10227.2370959993,
"base_cost_quote": 1031.5806966933,
"unrealized_pnl_exit_net": -279.9240702873
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 127935,
"quote_asset_bal": 9540.5727389554,
"total_value_mid": 10243.0638239554,
"total_value_exit_net": 10242.5369556416,
"total_value": 10243.0638239554,
"base_cost_quote": 966.5092376743,
"unrealized_pnl_exit_net": -264.545020988
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 136243,
"quote_asset_bal": 9496.0154729864,
"total_value_mid": 10227.7766259864,
"total_value_exit_net": 10227.2278051216,
"total_value": 10227.7766259864,
"base_cost_quote": 1011.5704282393,
"unrealized_pnl_exit_net": -280.358096104
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 146568,
"quote_asset_bal": 9441.6959125024,
"total_value_mid": 10213.3764325024,
"total_value_exit_net": 10212.7976721124,
"total_value": 10213.3764325024,
"base_cost_quote": 1066.6225824113,
"unrealized_pnl_exit_net": -295.5208228013
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 148463,
"quote_asset_bal": 9432.5088825076,
"total_value_mid": 10216.8389115076,
"total_value_exit_net": 10216.2506639859,
"total_value": 10216.8389115076,
"base_cost_quote": 1076.646691859,
"unrealized_pnl_exit_net": -292.9049103808
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 158223,
"quote_asset_bal": 9383.3430990224,
"total_value_mid": 10182.8439180224,
"total_value_exit_net": 10182.2442924081,
"total_value": 10182.8439180224,
"base_cost_quote": 1126.7060052067,
"unrealized_pnl_exit_net": -327.804811821
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 158158,
"quote_asset_bal": 9383.8064531366,
"total_value_mid": 10193.1009391366,
"total_value_exit_net": 10192.4939682721,
"total_value": 10193.1009391366,
"base_cost_quote": 1126.7021673305,
"unrealized_pnl_exit_net": -318.014652195
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 151346,
"quote_asset_bal": 9419.5733863734,
"total_value_mid": 10215.1993083734,
"total_value_exit_net": 10214.6025889319,
"total_value": 10215.1993083734,
"base_cost_quote": 1091.6565738337,
"unrealized_pnl_exit_net": -296.6273712752
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 150530,
"quote_asset_bal": 9425.3902802089,
"total_value_mid": 10205.1356802089,
"total_value_exit_net": 10204.5508711589,
"total_value": 10205.1356802089,
"base_cost_quote": 1086.6591926068,
"unrealized_pnl_exit_net": -307.4986016568
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 182895,
"quote_asset_bal": 9266.5941324622,
"total_value_mid": 10131.1387974622,
"total_value_exit_net": 10130.4903889634,
"total_value": 10131.1387974622,
"base_cost_quote": 1246.8345340818,
"unrealized_pnl_exit_net": -382.9382775805
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 193604,
"quote_asset_bal": 9217.9815466852,
"total_value_mid": 10114.7552746852,
"total_value_exit_net": 10114.0826943892,
"total_value": 10114.7552746852,
"base_cost_quote": 1296.8915467052,
"unrealized_pnl_exit_net": -400.7903990013
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 189358,
"quote_asset_bal": 9238.9337435699,
"total_value_mid": 10133.2715775699,
"total_value_exit_net": 10132.6008241944,
"total_value": 10133.2715775699,
"base_cost_quote": 1276.8658697035,
"unrealized_pnl_exit_net": -383.198789079
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 188293,
"quote_asset_bal": 9245.0534846942,
"total_value_mid": 10134.7379096942,
"total_value_exit_net": 10134.0706463754,
"total_value": 10134.7379096942,
"base_cost_quote": 1271.8614061688,
"unrealized_pnl_exit_net": -382.8442444875
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 165619,
"quote_asset_bal": 9356.5440533509,
"total_value_mid": 10195.9011453509,
"total_value_exit_net": 10195.2716275319,
"total_value": 10195.9011453509,
"base_cost_quote": 1161.7385799467,
"unrealized_pnl_exit_net": -323.0110057658
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 144712,
"quote_asset_bal": 9467.8283696484,
"total_value_mid": 10200.9393616484,
"total_value_exit_net": 10200.3895284044,
"total_value": 10200.9393616484,
"base_cost_quote": 1051.6096941835,
"unrealized_pnl_exit_net": -319.0485354275
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 153603,
"quote_asset_bal": 9423.6245822409,
"total_value_mid": 10202.2381892409,
"total_value_exit_net": 10201.6542290356,
"total_value": 10202.2381892409,
"base_cost_quote": 1096.6668096945,
"unrealized_pnl_exit_net": -318.6371628998
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 148696,
"quote_asset_bal": 9449.3567485589,
"total_value_mid": 10203.6915565589,
"total_value_exit_net": 10203.1258054529,
"total_value": 10203.6915565589,
"base_cost_quote": 1071.630056202,
"unrealized_pnl_exit_net": -317.860999308
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 124183,
"quote_asset_bal": 9592.0407110999,
"total_value_mid": 10225.8707430999,
"total_value_exit_net": 10225.3953705759,
"total_value": 10225.8707430999,
"base_cost_quote": 931.4585933923,
"unrealized_pnl_exit_net": -298.1039339163
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 133962,
"quote_asset_bal": 9543.1524553766,
"total_value_mid": 10217.5171633766,
"total_value_exit_net": 10217.0113898456,
"total_value": 10217.5171633766,
"base_cost_quote": 981.4948024247,
"unrealized_pnl_exit_net": -307.6358679557
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 155394,
"quote_asset_bal": 9438.8293382186,
"total_value_mid": 10170.5796842186,
"total_value_exit_net": 10170.0308714591,
"total_value": 10170.5796842186,
"base_cost_quote": 1086.6250870467,
"unrealized_pnl_exit_net": -355.4235538063
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 170639,
"quote_asset_bal": 9370.0612685564,
"total_value_mid": 10138.1074075564,
"total_value_exit_net": 10137.5313729521,
"total_value": 10138.1074075564,
"base_cost_quote": 1156.7202079885,
"unrealized_pnl_exit_net": -389.2501035928
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 164035,
"quote_asset_bal": 9400.7724631826,
"total_value_mid": 10149.2641681826,
"total_value_exit_net": 10148.7027994039,
"total_value": 10149.2641681826,
"base_cost_quote": 1126.6799416737,
"unrealized_pnl_exit_net": -378.7496054525
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 164094,
"quote_asset_bal": 9401.6056399744,
"total_value_mid": 10144.4591779744,
"total_value_exit_net": 10143.9020378209,
"total_value": 10144.4591779744,
"base_cost_quote": 1126.6759636925,
"unrealized_pnl_exit_net": -384.379565846
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 170087,
"quote_asset_bal": 9377.7301563179,
"total_value_mid": 10123.3915643178,
"total_value_exit_net": 10122.8323182618,
"total_value": 10123.3915643178,
"base_cost_quote": 1151.7079476105,
"unrealized_pnl_exit_net": -406.6057856665
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 165579,
"quote_asset_bal": 9398.7083241371,
"total_value_mid": 10132.0577151371,
"total_value_exit_net": 10131.5077030939,
"total_value": 10132.0577151371,
"base_cost_quote": 1131.6860034062,
"unrealized_pnl_exit_net": -398.8866244495
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 163304,
"quote_asset_bal": 9409.4176191419,
"total_value_mid": 10136.1204191419,
"total_value_exit_net": 10135.5753920419,
"total_value": 10136.1204191419,
"base_cost_quote": 1121.673812891,
"unrealized_pnl_exit_net": -395.516039991
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 160052,
"quote_asset_bal": 9425.5965816116,
"total_value_mid": 10133.6666296116,
"total_value_exit_net": 10133.1355770756,
"total_value": 10133.6666296116,
"base_cost_quote": 1106.6555726522,
"unrealized_pnl_exit_net": -399.1165771883
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 175003,
"quote_asset_bal": 9361.7951147734,
"total_value_mid": 10109.5829337734,
"total_value_exit_net": 10109.0220929091,
"total_value": 10109.5829337734,
"base_cost_quote": 1171.7262190622,
"unrealized_pnl_exit_net": -424.4992409265
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 178491,
"quote_asset_bal": 9347.8817426417,
"total_value_mid": 10107.3609476417,
"total_value_exit_net": 10106.791338238,
"total_value": 10107.3609476417,
"base_cost_quote": 1186.7385178482,
"unrealized_pnl_exit_net": -427.828922252
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 170297,
"quote_asset_bal": 9384.1045334707,
"total_value_mid": 10118.7657914707,
"total_value_exit_net": 10118.2147955272,
"total_value": 10118.7657914707,
"base_cost_quote": 1151.703862549,
"unrealized_pnl_exit_net": -417.5936004925
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 166855,
"quote_asset_bal": 9399.8507135195,
"total_value_mid": 10133.8458585195,
"total_value_exit_net": 10133.2953621607,
"total_value": 10133.8458585195,
"base_cost_quote": 1136.6935152255,
"unrealized_pnl_exit_net": -403.2488665842
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 163485,
"quote_asset_bal": 9415.6247649577,
"total_value_mid": 10140.6807399577,
"total_value_exit_net": 10140.1369479765,
"total_value": 10140.6807399577,
"base_cost_quote": 1121.676478889,
"unrealized_pnl_exit_net": -397.1642958703
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 155672,
"quote_asset_bal": 9451.5504161158,
"total_value_mid": 10134.9504961157,
"total_value_exit_net": 10134.4379460557,
"total_value": 10134.9504961157,
"base_cost_quote": 1086.6328258465,
"unrealized_pnl_exit_net": -403.7452959065
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 157766,
"quote_asset_bal": 9442.5222497548,
"total_value_mid": 10148.9983977548,
"total_value_exit_net": 10148.4685406438,
"total_value": 10148.9983977548,
"base_cost_quote": 1096.6461582175,
"unrealized_pnl_exit_net": -390.6998673285
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 147898,
"quote_asset_bal": 9488.8970099578,
"total_value_mid": 10143.6414559578,
"total_value_exit_net": 10143.1503976233,
"total_value": 10143.6414559578,
"base_cost_quote": 1051.584469279,
"unrealized_pnl_exit_net": -397.3310816135
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 149021,
"quote_asset_bal": 9485.4826971225,
"total_value_mid": 10164.1243311225,
"total_value_exit_net": 10163.615349897,
"total_value": 10164.1243311225,
"base_cost_quote": 1056.5945510243,
"unrealized_pnl_exit_net": -378.4618982498
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 151289,
"quote_asset_bal": 9476.3581046185,
"total_value_mid": 10147.0222416185,
"total_value_exit_net": 10146.5192435157,
"total_value": 10147.0222416185,
"base_cost_quote": 1066.6035911785,
"unrealized_pnl_exit_net": -396.4424522812
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 159367,
"quote_asset_bal": 9442.1767241918,
"total_value_mid": 10113.1117941918,
"total_value_exit_net": 10112.6085928893,
"total_value": 10113.1117941918,
"base_cost_quote": 1101.6446802995,
"unrealized_pnl_exit_net": -431.212811602
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 154785,
"quote_asset_bal": 9462.8308372838,
"total_value_mid": 10136.4551572838,
"total_value_exit_net": 10135.9499390438,
"total_value": 10136.4551572838,
"base_cost_quote": 1081.618541952,
"unrealized_pnl_exit_net": -408.499440192
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 157100,
"quote_asset_bal": 9453.5568140936,
"total_value_mid": 10141.0264140936,
"total_value_exit_net": 10140.5108118936,
"total_value": 10141.0264140936,
"base_cost_quote": 1091.629540574,
"unrealized_pnl_exit_net": -404.675542774
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 166344,
"quote_asset_bal": 9414.1388548453,
"total_value_mid": 10130.4161188453,
"total_value_exit_net": 10129.8789108973,
"total_value": 10130.4161188453,
"base_cost_quote": 1131.679179292,
"unrealized_pnl_exit_net": -415.93912324
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 161799,
"quote_asset_bal": 9434.8915463371,
"total_value_mid": 10115.9035373371,
"total_value_exit_net": 10115.3927783439,
"total_value": 10115.9035373371,
"base_cost_quote": 1111.6539286097,
"unrealized_pnl_exit_net": -431.152696603
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 158190,
"quote_asset_bal": 9450.7725884776,
"total_value_mid": 10136.8426184776,
"total_value_exit_net": 10136.3280659551,
"total_value": 10136.8426184776,
"base_cost_quote": 1096.6421802362,
"unrealized_pnl_exit_net": -411.0867027588
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 168695,
"quote_asset_bal": 9406.6127738177,
"total_value_mid": 10124.5786938177,
"total_value_exit_net": 10124.0402193777,
"total_value": 10124.5786938177,
"base_cost_quote": 1141.694861424,
"unrealized_pnl_exit_net": -424.267415864
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 156036,
"quote_asset_bal": 9462.5472997824,
"total_value_mid": 10125.5442637824,
"total_value_exit_net": 10125.0470160594,
"total_value": 10125.5442637824,
"base_cost_quote": 1086.6229174207,
"unrealized_pnl_exit_net": -424.1232011437
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 159378,
"quote_asset_bal": 9448.1315981292,
"total_value_mid": 10138.0789601292,
"total_value_exit_net": 10137.5614996077,
"total_value": 10138.0789601292,
"base_cost_quote": 1101.6542354605,
"unrealized_pnl_exit_net": -412.224333982
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 159468,
"quote_asset_bal": 9448.8073955932,
"total_value_mid": 10129.8952235932,
"total_value_exit_net": 10129.3844077222,
"total_value": 10129.8952235932,
"base_cost_quote": 1101.6513022622,
"unrealized_pnl_exit_net": -421.0742901333
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 158365,
"quote_asset_bal": 9454.712984247,
"total_value_mid": 10130.298074247,
"total_value_exit_net": 10129.7913854295,
"total_value": 10130.298074247,
"base_cost_quote": 1096.643165975,
"unrealized_pnl_exit_net": -421.5647647925
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 158387,
"quote_asset_bal": 9455.343689777,
"total_value_mid": 10117.559736777,
"total_value_exit_net": 10117.0630747418,
"total_value": 10117.559736777,
"base_cost_quote": 1096.6443378532,
"unrealized_pnl_exit_net": -434.9249528885
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 158337,
"quote_asset_bal": 9455.6508861375,
"total_value_mid": 10127.6331141375,
"total_value_exit_net": 10127.1291274665,
"total_value": 10127.6331141375,
"base_cost_quote": 1096.641760922,
"unrealized_pnl_exit_net": -425.163519593
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 167855,
"quote_asset_bal": 9415.9990817933,
"total_value_mid": 10108.9045217933,
"total_value_exit_net": 10108.3848427133,
"total_value": 10108.9045217933,
"base_cost_quote": 1136.6926555812,
"unrealized_pnl_exit_net": -444.3068946613
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 180359,
"quote_asset_bal": 9366.4573543555,
"total_value_mid": 10080.3182763555,
"total_value_exit_net": 10079.782880664,
"total_value": 10080.3182763555,
"base_cost_quote": 1186.748286169,
"unrealized_pnl_exit_net": -473.4227598605
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 174099,
"quote_asset_bal": 9392.1858901888,
"total_value_mid": 10082.8366231888,
"total_value_exit_net": 10082.3186351391,
"total_value": 10082.8366231888,
"base_cost_quote": 1161.7206405022,
"unrealized_pnl_exit_net": -471.587895552
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 189493,
"quote_asset_bal": 9332.7742168833,
"total_value_mid": 10057.7744348833,
"total_value_exit_net": 10057.2306847198,
"total_value": 10057.7744348833,
"base_cost_quote": 1221.7867963572,
"unrealized_pnl_exit_net": -497.3303285208
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 209374,
"quote_asset_bal": 9258.4555370648,
"total_value_mid": 10037.3268170648,
"total_value_exit_net": 10036.7426636048,
"total_value": 10037.3268170648,
"base_cost_quote": 1296.8743358068,
"unrealized_pnl_exit_net": -518.5872092668
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 189518,
"quote_asset_bal": 9334.0530292708,
"total_value_mid": 10070.8990132708,
"total_value_exit_net": 10070.3463787828,
"total_value": 10070.8990132708,
"base_cost_quote": 1221.7902689597,
"unrealized_pnl_exit_net": -485.4969194478
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 183056,
"quote_asset_bal": 9359.4866747518,
"total_value_mid": 10077.0661947518,
"total_value_exit_net": 10076.5280101118,
"total_value": 10077.0661947518,
"base_cost_quote": 1196.7609630487,
"unrealized_pnl_exit_net": -479.7196276888
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 185593,
"quote_asset_bal": 9350.398285005,
"total_value_mid": 10070.684718005,
"total_value_exit_net": 10070.1445031803,
"total_value": 10070.684718005,
"base_cost_quote": 1206.7796364225,
"unrealized_pnl_exit_net": -487.0334182473
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 185525,
"quote_asset_bal": 9350.9253836208,
"total_value_mid": 10078.1833836208,
"total_value_exit_net": 10077.6379401208,
"total_value": 10078.1833836208,
"base_cost_quote": 1206.7717555162,
"unrealized_pnl_exit_net": -480.0591990163
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 174182,
"quote_asset_bal": 9396.8523245416,
"total_value_mid": 10083.1294045415,
"total_value_exit_net": 10082.6146967315,
"total_value": 10083.1294045415,
"base_cost_quote": 1161.7241411257,
"unrealized_pnl_exit_net": -475.9617689358
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 175426,
"quote_asset_bal": 9392.4353312078,
"total_value_mid": 10084.8417532078,
"total_value_exit_net": 10084.3224483913,
"total_value": 10084.8417532078,
"base_cost_quote": 1166.72979155,
"unrealized_pnl_exit_net": -474.8426743665
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 188180,
"quote_asset_bal": 9342.7776422401,
"total_value_mid": 10074.6096622401,
"total_value_exit_net": 10074.0607882251,
"total_value": 10074.6096622401,
"base_cost_quote": 1216.7912625148,
"unrealized_pnl_exit_net": -485.5081165298
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 185586,
"quote_asset_bal": 9353.1396977511,
"total_value_mid": 10079.7088877511,
"total_value_exit_net": 10079.1639608586,
"total_value": 10079.7088877511,
"base_cost_quote": 1206.7727242422,
"unrealized_pnl_exit_net": -480.7484611347
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 172914,
"quote_asset_bal": 9403.6826368901,
"total_value_mid": 10098.2781748901,
"total_value_exit_net": 10097.7572282366,
"total_value": 10098.2781748901,
"base_cost_quote": 1156.7180303565,
"unrealized_pnl_exit_net": -462.64343901
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 186540,
"quote_asset_bal": 9349.2883988453,
"total_value_mid": 10093.3964588453,
"total_value_exit_net": 10092.8383778003,
"total_value": 10093.3964588453,
"base_cost_quote": 1211.7793393895,
"unrealized_pnl_exit_net": -468.2293604345
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 196693,
"quote_asset_bal": 9309.6876719776,
"total_value_mid": 10082.1010829776,
"total_value_exit_net": 10081.5217729193,
"total_value": 10082.1010829776,
"base_cost_quote": 1251.8236931467,
"unrealized_pnl_exit_net": -479.989592205
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 153026,
"quote_asset_bal": 9490.8153182953,
"total_value_mid": 10097.7164342953,
"total_value_exit_net": 10097.2612584583,
"total_value": 10097.7164342953,
"base_cost_quote": 1071.604056717,
"unrealized_pnl_exit_net": -465.158116554
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 154277,
"quote_asset_bal": 9486.3219694443,
"total_value_mid": 10102.5043074443,
"total_value_exit_net": 10102.0421706908,
"total_value": 10102.5043074443,
"base_cost_quote": 1076.613619073,
"unrealized_pnl_exit_net": -460.8934178265
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 151747,
"quote_asset_bal": 9496.9385641553,
"total_value_mid": 10117.7355411553,
"total_value_exit_net": 10117.2699434226,
"total_value": 10117.7355411553,
"base_cost_quote": 1066.603689252,
"unrealized_pnl_exit_net": -446.2723099847
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 155377,
"quote_asset_bal": 9482.3571486093,
"total_value_mid": 10127.1716986093,
"total_value_exit_net": 10126.6880876968,
"total_value": 10127.1716986093,
"base_cost_quote": 1081.6211368967,
"unrealized_pnl_exit_net": -437.2901978092
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 157667,
"quote_asset_bal": 9473.1183594399,
"total_value_mid": 10131.8510854399,
"total_value_exit_net": 10131.3570358954,
"total_value": 10131.8510854399,
"base_cost_quote": 1091.6321795517,
"unrealized_pnl_exit_net": -433.3935030962
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 167925,
"quote_asset_bal": 9428.9743944957,
"total_value_mid": 10149.2047194957,
"total_value_exit_net": 10148.6645467519,
"total_value": 10149.2047194957,
"base_cost_quote": 1136.6945800235,
"unrealized_pnl_exit_net": -417.0044277672
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 158721,
"quote_asset_bal": 9469.5714875804,
"total_value_mid": 10165.7217935804,
"total_value_exit_net": 10165.1996808509,
"total_value": 10165.7217935804,
"base_cost_quote": 1096.6353631272,
"unrealized_pnl_exit_net": -401.0071698567
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 159845,
"quote_asset_bal": 9465.1633446904,
"total_value_mid": 10169.4404146904,
"total_value_exit_net": 10168.9122068879,
"total_value": 10169.4404146904,
"base_cost_quote": 1101.6444711427,
"unrealized_pnl_exit_net": -397.8956089452
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 129517,
"quote_asset_bal": 9627.3768678464,
"total_value_mid": 10201.9142798464,
"total_value_exit_net": 10201.4833767874,
"total_value": 10201.9142798464,
"base_cost_quote": 941.4532747855,
"unrealized_pnl_exit_net": -367.3467658445
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 119476,
"quote_asset_bal": 9673.3853770277,
"total_value_mid": 10198.9603010277,
"total_value_exit_net": 10198.5661198347,
"total_value": 10198.9603010277,
"base_cost_quote": 896.404027171,
"unrealized_pnl_exit_net": -371.223284364
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 119520,
"quote_asset_bal": 9674.5282724065,
"total_value_mid": 10203.8823524065,
"total_value_exit_net": 10203.4853368465,
"total_value": 10203.8823524065,
"base_cost_quote": 896.397642386,
"unrealized_pnl_exit_net": -367.440577946
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 117334,
"quote_asset_bal": 9685.466742504,
"total_value_mid": 10202.0883445039,
"total_value_exit_net": 10201.7008783024,
"total_value": 10202.0883445039,
"base_cost_quote": 886.385779116,
"unrealized_pnl_exit_net": -370.1516433175
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 126416,
"quote_asset_bal": 9646.0149979447,
"total_value_mid": 10198.2000859447,
"total_value_exit_net": 10197.7859471287,
"total_value": 10198.2000859447,
"base_cost_quote": 926.43342434,
"unrealized_pnl_exit_net": -374.662475156
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 121853,
"quote_asset_bal": 9666.7407043785,
"total_value_mid": 10201.3098153785,
"total_value_exit_net": 10200.9088885452,
"total_value": 10201.3098153785,
"base_cost_quote": 906.414865673,
"unrealized_pnl_exit_net": -372.2466815063
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 116037,
"quote_asset_bal": 9692.4326924172,
"total_value_mid": 10214.1350444172,
"total_value_exit_net": 10213.7437676532,
"total_value": 10214.1350444172,
"base_cost_quote": 881.3802868103,
"unrealized_pnl_exit_net": -360.0692115743
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 118241,
"quote_asset_bal": 9683.027095572,
"total_value_mid": 10212.865016572,
"total_value_exit_net": 10212.4676381312,
"total_value": 10212.865016572,
"base_cost_quote": 891.39116234,
"unrealized_pnl_exit_net": -361.9506197808
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 122768,
"quote_asset_bal": 9663.3137247955,
"total_value_mid": 10199.8098847955,
"total_value_exit_net": 10199.4075126755,
"total_value": 10199.8098847955,
"base_cost_quote": 911.4123009405,
"unrealized_pnl_exit_net": -375.3185130605
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 120535,
"quote_asset_bal": 9673.7837086902,
"total_value_mid": 10203.4144986902,
"total_value_exit_net": 10203.0172755977,
"total_value": 10203.4144986902,
"base_cost_quote": 901.3984161555,
"unrealized_pnl_exit_net": -372.164849248
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 123911,
"quote_asset_bal": 9659.166307716,
"total_value_mid": 10206.729016716,
"total_value_exit_net": 10206.3183446842,
"total_value": 10206.729016716,
"base_cost_quote": 916.4143306513,
"unrealized_pnl_exit_net": -369.262293683
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 133149,
"quote_asset_bal": 9619.4244111475,
"total_value_mid": 10191.9651111475,
"total_value_exit_net": 10191.5357056225,
"total_value": 10191.9651111475,
"base_cost_quote": 956.4722775958,
"unrealized_pnl_exit_net": -384.3609831208
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 122946,
"quote_asset_bal": 9665.0868956295,
"total_value_mid": 10182.5666096295,
"total_value_exit_net": 10182.178499844,
"total_value": 10182.5666096295,
"base_cost_quote": 911.419720501,
"unrealized_pnl_exit_net": -394.3281162865
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 149648,
"quote_asset_bal": 9555.4520975728,
"total_value_mid": 10157.7852975728,
"total_value_exit_net": 10157.3335476728,
"total_value": 10157.7852975728,
"base_cost_quote": 1021.536490184,
"unrealized_pnl_exit_net": -419.655040084
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 138570,
"quote_asset_bal": 9601.0375911573,
"total_value_mid": 10168.7588811573,
"total_value_exit_net": 10168.3330901898,
"total_value": 10168.7588811573,
"base_cost_quote": 976.4977624535,
"unrealized_pnl_exit_net": -409.202263421
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 149592,
"quote_asset_bal": 9556.418942029,
"total_value_mid": 10160.920214029,
"total_value_exit_net": 10160.466838075,
"total_value": 10160.920214029,
"base_cost_quote": 1021.5537281028,
"unrealized_pnl_exit_net": -417.5058320567
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 145914,
"quote_asset_bal": 9572.0028640328,
"total_value_mid": 10163.3923060328,
"total_value_exit_net": 10162.9487639513,
"total_value": 10163.3923060328,
"base_cost_quote": 1006.528914938,
"unrealized_pnl_exit_net": -415.5830150195
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 147151,
"quote_asset_bal": 9567.2742117483,
"total_value_mid": 10160.8813457483,
"total_value_exit_net": 10160.4361403978,
"total_value": 10160.8813457483,
"base_cost_quote": 1011.531047726,
"unrealized_pnl_exit_net": -418.3691190765
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 149730,
"quote_asset_bal": 9558.1095050868,
"total_value_mid": 10155.2327450868,
"total_value_exit_net": 10154.7849026568,
"total_value": 10155.2327450868,
"base_cost_quote": 1021.553983294,
"unrealized_pnl_exit_net": -424.878585724
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 144667,
"quote_asset_bal": 9578.8143424311,
"total_value_mid": 10162.5456874311,
"total_value_exit_net": 10162.1078889223,
"total_value": 10162.5456874311,
"base_cost_quote": 1001.5312645093,
"unrealized_pnl_exit_net": -418.237718018
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 142208,
"quote_asset_bal": 9589.4239227769,
"total_value_mid": 10168.6371067769,
"total_value_exit_net": 10168.2026968889,
"total_value": 10168.6371067769,
"base_cost_quote": 991.518133289,
"unrealized_pnl_exit_net": -412.739359177
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 150861,
"quote_asset_bal": 9554.6459865966,
"total_value_mid": 10160.0511795966,
"total_value_exit_net": 10159.5971257019,
"total_value": 10160.0511795966,
"base_cost_quote": 1026.55966274,
"unrealized_pnl_exit_net": -421.6085236347
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 170141,
"quote_asset_bal": 9479.9235127234,
"total_value_mid": 10130.2024147234,
"total_value_exit_net": 10129.7147055469,
"total_value": 10130.2024147234,
"base_cost_quote": 1101.6475854768,
"unrealized_pnl_exit_net": -451.8563926533
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 176733,
"quote_asset_bal": 9455.4051938633,
"total_value_mid": 10126.2836618633,
"total_value_exit_net": 10125.7805030123,
"total_value": 10126.2836618633,
"base_cost_quote": 1126.6751080513,
"unrealized_pnl_exit_net": -456.2997989023
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 155369,
"quote_asset_bal": 9548.4847933169,
"total_value_mid": 10121.6410343169,
"total_value_exit_net": 10121.2111671361,
"total_value": 10121.6410343169,
"base_cost_quote": 1036.556847009,
"unrealized_pnl_exit_net": -463.8304731898
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 157257,
"quote_asset_bal": 9545.0533366394,
"total_value_mid": 10096.5536356394,
"total_value_exit_net": 10096.1400104151,
"total_value": 10096.5536356394,
"base_cost_quote": 1041.5625714888,
"unrealized_pnl_exit_net": -490.475897713
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 124089,
"quote_asset_bal": 9693.9419966387,
"total_value_mid": 10173.9182486387,
"total_value_exit_net": 10173.5582664497,
"total_value": 10173.9182486387,
"base_cost_quote": 896.3909123423,
"unrealized_pnl_exit_net": -416.7746425313
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 152221,
"quote_asset_bal": 9590.6070676205,
"total_value_mid": 10144.0826236205,
"total_value_exit_net": 10143.6675169535,
"total_value": 10144.0826236205,
"base_cost_quote": 1001.5025770097,
"unrealized_pnl_exit_net": -448.4421276768
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 165006,
"quote_asset_bal": 9546.3647685215,
"total_value_mid": 10120.2556365215,
"total_value_exit_net": 10119.8252183705,
"total_value": 10120.2556365215,
"base_cost_quote": 1046.554363527,
"unrealized_pnl_exit_net": -473.093913678
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 236022,
"quote_asset_bal": 9316.9240788982,
"total_value_mid": 10020.9777048982,
"total_value_exit_net": 10020.4496646787,
"total_value": 10020.9777048982,
"base_cost_quote": 1276.810506212,
"unrealized_pnl_exit_net": -573.2849204315
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 232900,
"quote_asset_bal": 9327.9226458325,
"total_value_mid": 10075.9974458325,
"total_value_exit_net": 10075.4363897325,
"total_value": 10075.9974458325,
"base_cost_quote": 1266.7912243823,
"unrealized_pnl_exit_net": -519.2774804823
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 195170,
"quote_asset_bal": 9453.8968634815,
"total_value_mid": 10077.0746734815,
"total_value_exit_net": 10076.607290124,
"total_value": 10077.0746734815,
"base_cost_quote": 1141.6564596443,
"unrealized_pnl_exit_net": -518.9460330018
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 192142,
"quote_asset_bal": 9464.7188603685,
"total_value_mid": 10072.2718643685,
"total_value_exit_net": 10071.8161996155,
"total_value": 10072.2718643685,
"base_cost_quote": 1131.6426449118,
"unrealized_pnl_exit_net": -524.5453056648
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 195398,
"quote_asset_bal": 9455.1569739908,
"total_value_mid": 10080.2351759908,
"total_value_exit_net": 10079.7663673393,
"total_value": 10080.2351759908,
"base_cost_quote": 1141.6571261438,
"unrealized_pnl_exit_net": -517.0477327953
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 192211,
"quote_asset_bal": 9465.7464788243,
"total_value_mid": 10073.9020828243,
"total_value_exit_net": 10073.4459661213,
"total_value": 10073.9020828243,
"base_cost_quote": 1131.6435636002,
"unrealized_pnl_exit_net": -523.9440763032
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 195387,
"quote_asset_bal": 9456.4637710268,
"total_value_mid": 10074.2774650268,
"total_value_exit_net": 10073.8141047563,
"total_value": 10074.2774650268,
"base_cost_quote": 1141.6556450338,
"unrealized_pnl_exit_net": -524.3053113043
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 190574,
"quote_asset_bal": 9471.9986962138,
"total_value_mid": 10086.5998462138,
"total_value_exit_net": 10086.1388953513,
"total_value": 10086.5998462138,
"base_cost_quote": 1126.641119579,
"unrealized_pnl_exit_net": -512.5009204415
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 185939,
"quote_asset_bal": 9487.8246199948,
"total_value_mid": 10111.8359039948,
"total_value_exit_net": 10111.3678955318,
"total_value": 10111.8359039948,
"base_cost_quote": 1111.6242143407,
"unrealized_pnl_exit_net": -488.0809388037
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 155465,
"quote_asset_bal": 9599.5374987888,
"total_value_mid": 10143.0431387888,
"total_value_exit_net": 10142.6355095588,
"total_value": 10143.0431387888,
"base_cost_quote": 1001.513468172,
"unrealized_pnl_exit_net": -458.415457402
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 142436,
"quote_asset_bal": 9647.8710558224,
"total_value_mid": 10207.3596638224,
"total_value_exit_net": 10206.9400473664,
"total_value": 10207.3596638224,
"base_cost_quote": 956.4562455808,
"unrealized_pnl_exit_net": -397.3872540368
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 151585,
"quote_asset_bal": 9618.8757492941,
"total_value_mid": 10167.7650342941,
"total_value_exit_net": 10167.3533673304,
"total_value": 10167.7650342941,
"base_cost_quote": 986.4995301575,
"unrealized_pnl_exit_net": -438.0219121213
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 180026,
"quote_asset_bal": 9519.2270140149,
"total_value_mid": 10140.6767660149,
"total_value_exit_net": 10140.2106787009,
"total_value": 10140.6767660149,
"base_cost_quote": 1086.6145031148,
"unrealized_pnl_exit_net": -465.6308384288
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 200843,
"quote_asset_bal": 9449.4247547929,
"total_value_mid": 10118.0311017928,
"total_value_exit_net": 10117.5296470326,
"total_value": 10118.0311017928,
"base_cost_quote": 1156.6914274193,
"unrealized_pnl_exit_net": -488.5865351795
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 205341,
"quote_asset_bal": 9434.7274562341,
"total_value_mid": 10109.0673002341,
"total_value_exit_net": 10108.5615453511,
"total_value": 10109.0673002341,
"base_cost_quote": 1171.7029796458,
"unrealized_pnl_exit_net": -497.8688905288
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 208389,
"quote_asset_bal": 9425.2745845651,
"total_value_mid": 10108.5821155651,
"total_value_exit_net": 10108.0696349169,
"total_value": 10108.5821155651,
"base_cost_quote": 1181.714393579,
"unrealized_pnl_exit_net": -498.9193432273
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 209959,
"quote_asset_bal": 9420.6732764969,
"total_value_mid": 10104.2997804969,
"total_value_exit_net": 10103.7870606189,
"total_value": 10104.2997804969,
"base_cost_quote": 1186.723507599,
"unrealized_pnl_exit_net": -503.609723477
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 213748,
"quote_asset_bal": 9411.7299822411,
"total_value_mid": 10083.1124502411,
"total_value_exit_net": 10082.6089133901,
"total_value": 10083.1124502411,
"base_cost_quote": 1196.728317583,
"unrealized_pnl_exit_net": -525.849386434
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 195051,
"quote_asset_bal": 9472.8737609269,
"total_value_mid": 10088.2596659269,
"total_value_exit_net": 10087.7981264981,
"total_value": 10088.2596659269,
"base_cost_quote": 1136.673197999,
"unrealized_pnl_exit_net": -521.7488324278
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 199645,
"quote_asset_bal": 9458.5861342477,
"total_value_mid": 10099.6462292476,
"total_value_exit_net": 10099.1654341764,
"total_value": 10099.6462292476,
"base_cost_quote": 1151.6873411673,
"unrealized_pnl_exit_net": -511.1080412385
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 184451,
"quote_asset_bal": 9509.5466245954,
"total_value_mid": 10121.1861405954,
"total_value_exit_net": 10120.7274109584,
"total_value": 10121.1861405954,
"base_cost_quote": 1101.6260193143,
"unrealized_pnl_exit_net": -490.4452329513
}
]
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 (114,623 closed trades) via GET /backtests/2630fcca-cbc1-4150-90a8-6ff91549dd06/trades (paginate through all pages).100-row audit sample from 114,623 closed trades (RFC 4180 CSV)
100-row audit sample from 114,623 closed trades (RFC 4180 CSV)
id,symbol,buy_time,sell_time,buy_price,sell_price,buy_quantity,sell_quantity,quantity,profit,profit_percentage,buy_fee_in_quote,sell_fee_in_quote,fee_buy,fee_sell,fill_type
,,2024-04-24T00:02:00Z,2024-04-24T00:02:00Z,0.013366,0.0134,375,,,0.0052220625,0.1041859943,0.0037591875,0.00376875,,,TP
,,2024-04-24T00:07:00Z,2024-04-24T00:10:00Z,0.013542,0.013576,370,,,0.005054755,0.1008824398,0.003757905,0.00376734,,,TP
,,2024-04-24T00:08:00Z,2024-04-24T00:09:00Z,0.013506,0.01354,371,,,0.0050884505,0.1015511624,0.0037580445,0.003767505,,,TP
,,2024-04-24T00:12:00Z,2024-04-24T00:13:00Z,0.013658,0.013693,367,,,0.0053166372,0.1060678723,0.0037593645,0.0037689982,,,TP
,,2024-04-24T00:15:00Z,2024-04-24T00:15:00Z,0.013878,0.013913,361,,,0.0051105867,0.1020085747,0.0037574685,0.0037669447,,,TP
,,2024-04-24T00:15:00Z,2024-04-24T00:16:00Z,0.013821,0.013856,362,,,0.0051556945,0.1030478981,0.0037524015,0.003761904,,,TP
,,2024-04-24T00:17:00Z,2024-04-24T00:17:00Z,0.013931,0.013966,359,,,0.0050537328,0.101049817,0.0037509217,0.0037603455,,,TP
,,2024-04-24T00:18:00Z,2024-04-24T00:18:00Z,0.013664,0.013699,366,,,0.0052988565,0.1059554303,0.003750768,0.0037603755,,,TP
,,2024-04-24T00:22:00Z,2024-04-24T00:22:00Z,0.01388,0.013915,361,,,0.0051095037,0.1019722622,0.00375801,0.0037674862,,,TP
,,2024-04-24T00:22:00Z,2024-04-24T00:25:00Z,0.013825,0.01386,362,,,0.0051535225,0.1029746835,0.0037534875,0.00376299,,,TP
,,2024-04-24T00:23:00Z,2024-04-24T00:25:00Z,0.013755,0.01379,364,,,0.005220215,0.1042620865,0.003755115,0.00376467,,,TP
,,2024-04-24T00:24:00Z,2024-04-24T00:25:00Z,0.013714,0.013749,365,,,0.0052570037,0.10502224,0.0037542075,0.0037637887,,,TP
,,2024-04-24T00:26:00Z,2024-04-24T00:30:00Z,0.013809,0.013844,363,,,0.0051764707,0.1032677964,0.0037595003,0.003769029,,,TP
,,2024-04-24T00:27:00Z,2024-04-24T00:28:00Z,0.013919,0.013954,360,,,0.00507429,0.1012662548,0.00375813,0.00376758,,,TP
,,2024-04-24T00:29:00Z,2024-04-24T00:31:00Z,0.013914,0.013949,360,,,0.00507699,0.1013565474,0.00375678,0.00376623,,,TP
,,2024-04-24T00:29:00Z,2024-04-24T00:29:00Z,0.013923,0.013958,360,,,0.00507213,0.1011940674,0.00375921,0.00376866,,,TP
,,2024-04-24T00:32:00Z,2024-04-24T00:32:00Z,0.013922,0.013957,360,,,0.00507267,0.1012121103,0.00375894,0.00376839,,,TP
,,2024-04-24T00:36:00Z,2024-04-24T00:36:00Z,0.014161,0.014197,354,,,0.005214951,0.1040286703,0.0037597455,0.0037693035,,,TP
,,2024-04-24T00:37:00Z,2024-04-24T00:37:00Z,0.014178,0.014214,353,,,0.005191218,0.1037240796,0.0037536255,0.0037631565,,,TP
,,2024-04-24T00:39:00Z,2024-04-24T00:39:00Z,0.01429,0.014326,350,,,0.0050883,0.1017354794,0.003751125,0.003760575,,,TP
,,2024-04-24T00:41:00Z,2024-04-24T00:41:00Z,0.014627,0.014664,342,,,0.0051408585,0.102767143,0.0037518255,0.003761316,,,TP
,,2024-04-24T00:42:00Z,2024-04-24T00:42:00Z,0.014434,0.014471,347,,,0.0053164738,0.1061469447,0.0037564485,0.0037660777,,,TP
,,2024-04-24T00:45:00Z,2024-04-24T00:50:00Z,0.014801,0.014839,338,,,0.00533026,0.1065468549,0.0037520535,0.0037616865,,,TP
,,2024-04-24T00:48:00Z,2024-04-24T00:49:00Z,0.015115,0.015153,331,,,0.005063969,0.1012173338,0.0037522988,0.0037617323,,,TP
,,2024-04-24T00:49:00Z,2024-04-24T00:49:00Z,0.015096,0.015134,332,,,0.00508873,0.1015335188,0.003758904,0.003768366,,,TP
,,2024-06-12T19:24:00Z,2024-06-12T19:27:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-08-09T04:44:00Z,2024-08-09T04:45:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-08-09T16:49:00Z,2024-08-09T16:52:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-08-17T06:35:00Z,2024-08-17T23:35:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-04T12:32:00Z,2024-11-05T00:03:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-05T07:47:00Z,2024-11-06T00:36:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-19T08:43:00Z,2024-11-19T08:44:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-22T18:10:00Z,2024-12-22T18:27:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-22T21:28:00Z,2024-12-22T21:36:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-28T13:24:00Z,2024-12-28T13:28:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-30T20:29:00Z,2024-12-31T00:18:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-01-25T10:13:00Z,2025-01-25T10:15:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-01T09:16:00Z,2025-02-01T12:47:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-03T11:31:00Z,2025-02-03T11:45:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-07T06:32:00Z,2025-02-08T05:16:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-27T05:01:00Z,2025-02-27T05:05:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-03-03T17:57:00Z,2025-03-03T18:00:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-09T17:21:00Z,2025-05-09T17:37:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-30T22:39:00Z,2025-07-30T22:48:00Z,0.01,0.010025,500,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-16T12:17:00Z,2025-12-16T12:17:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-17T08:23:00Z,2025-12-21T06:22:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-28T21:33:00Z,2025-12-28T21:35:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-24T20:56:00Z,2026-01-24T21:00:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-26T13:12:00Z,2026-01-26T13:17:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-28T15:18:00Z,2026-01-28T15:21:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-05T12:23:00Z,2026-02-05T12:27:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-05T12:23:00Z,2026-02-05T12:37:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-05T12:31:00Z,2026-02-05T12:32:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-05T16:36:00Z,2026-02-06T16:26:00Z,0.003203,0.003212,1562,,,0.0065428275,0.1307758352,0.0037523145,0.003762858,,,TP
,,2026-02-06T17:07:00Z,2026-02-06T17:09:00Z,0.003202,0.003211,1562,,,0.0065451705,0.1308635228,0.003751143,0.0037616865,,,TP
,,2026-02-06T18:13:00Z,2026-02-06T19:00:00Z,0.003206,0.003215,1560,,,0.00652743,0.1305131004,0.00375102,0.00376155,,,TP
,,2026-02-06T18:21:00Z,2026-02-06T18:46:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-06T21:14:00Z,2026-02-06T23:59:00Z,0.003203,0.003212,1562,,,0.0065428275,0.1307758352,0.0037523145,0.003762858,,,TP
,,2026-02-08T00:06:00Z,2026-02-08T00:07:00Z,0.003203,0.003212,1562,,,0.0065428275,0.1307758352,0.0037523145,0.003762858,,,TP
,,2026-02-08T16:52:00Z,2026-02-09T04:21:00Z,0.003204,0.003213,1561,,,0.0065362972,0.1306882022,0.003751083,0.0037616197,,,TP
,,2026-02-10T00:08:00Z,2026-02-12T09:24:00Z,0.003202,0.003211,1562,,,0.0065451705,0.1308635228,0.003751143,0.0037616865,,,TP
,,2026-02-12T13:44:00Z,2026-02-12T14:02:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-12T14:56:00Z,2026-02-12T15:09:00Z,0.003204,0.003213,1561,,,0.0065362972,0.1306882022,0.003751083,0.0037616197,,,TP
,,2026-02-12T22:24:00Z,2026-02-12T22:59:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-12T22:42:00Z,2026-02-12T22:47:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-13T00:57:00Z,2026-02-13T01:02:00Z,0.003203,0.003212,1562,,,0.0065428275,0.1307758352,0.0037523145,0.003762858,,,TP
,,2026-02-17T23:15:00Z,2026-02-25T23:04:00Z,0.003453,0.003462,1449,,,0.0055261238,0.110447437,0.0037525477,0.0037623285,,,TP
,,2026-02-18T00:03:00Z,2026-02-25T23:04:00Z,0.003457,0.003466,1447,,,0.0055098143,0.1101460804,0.0037517092,0.0037614765,,,TP
,,2026-02-18T00:45:00Z,2026-02-25T23:03:00Z,0.003443,0.003452,1453,,,0.0055631738,0.111203892,0.0037520093,0.003761817,,,TP
,,2026-02-22T09:26:00Z,2026-02-22T09:27:00Z,0.003203,0.003212,1562,,,0.0065428275,0.1307758352,0.0037523145,0.003762858,,,TP
,,2026-02-22T13:07:00Z,2026-02-22T13:15:00Z,0.003204,0.003213,1561,,,0.0065362972,0.1306882022,0.003751083,0.0037616197,,,TP
,,2026-02-22T13:25:00Z,2026-02-22T14:49:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-23T01:10:00Z,2026-02-23T10:16:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-25T00:01:00Z,2026-02-25T01:21:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-25T03:31:00Z,2026-02-25T04:47:00Z,0.003201,0.00321,1563,,,0.0065517052,0.1309512652,0.0037523722,0.0037629225,,,TP
,,2026-02-25T05:02:00Z,2026-02-25T05:09:00Z,0.003205,0.003214,1561,,,0.0065339557,0.130600624,0.0037522538,0.0037627905,,,TP
,,2026-02-25T05:26:00Z,2026-02-25T06:48:00Z,0.003204,0.003213,1561,,,0.0065362972,0.1306882022,0.003751083,0.0037616197,,,TP
,,2026-02-25T06:51:00Z,2026-02-25T08:07:00Z,0.003204,0.003213,1561,,,0.0065362972,0.1306882022,0.003751083,0.0037616197,,,TP
,,2026-02-25T17:19:00Z,2026-02-25T23:34:00Z,0.003346,0.003355,1495,,,0.0059415037,0.1187761506,0.0037517025,0.0037617937,,,TP
,,2026-02-25T22:26:00Z,2026-02-25T23:02:00Z,0.003409,0.003418,1467,,,0.0056915932,0.1138090349,0.0037507522,0.0037606545,,,TP
,,2026-02-25T22:59:00Z,2026-02-25T23:00:00Z,0.003394,0.003403,1474,,,0.0057519165,0.1149749558,0.003752067,0.0037620165,,,TP
,,2026-02-25T23:06:00Z,2026-02-25T23:06:00Z,0.003451,0.00346,1449,,,0.0055304708,0.1105983773,0.0037503742,0.003760155,,,TP
,,2026-02-25T23:07:00Z,2026-02-25T23:10:00Z,0.003418,0.003427,1463,,,0.0056563238,0.1131143944,0.0037504005,0.0037602758,,,TP
,,2026-02-25T23:09:00Z,2026-02-25T23:11:00Z,0.003431,0.00344,1458,,,0.0056085615,0.1121174585,0.0037517985,0.00376164,,,TP
,,2026-02-25T23:12:00Z,2026-02-25T23:12:00Z,0.003434,0.003443,1457,,,0.0055981582,0.1118884683,0.0037525035,0.0037623382,,,TP
,,2026-02-25T23:17:00Z,2026-02-25T23:17:00Z,0.003434,0.003443,1457,,,0.0055981582,0.1118884683,0.0037525035,0.0037623382,,,TP
,,2026-02-25T23:18:00Z,2026-02-25T23:18:00Z,0.003424,0.003433,1461,,,0.0056354423,0.1126533294,0.003751848,0.0037617098,,,TP
,,2026-02-25T23:20:00Z,2026-02-25T23:20:00Z,0.003424,0.003433,1461,,,0.0056354423,0.1126533294,0.003751848,0.0037617098,,,TP
,,2026-02-25T23:21:00Z,2026-02-25T23:22:00Z,0.00342,0.003429,1462,,,0.0056480715,0.1129605263,0.00375003,0.0037598985,,,TP
,,2026-02-25T23:21:00Z,2026-02-25T23:21:00Z,0.003418,0.003427,1463,,,0.0056563238,0.1131143944,0.0037504005,0.0037602758,,,TP
,,2026-02-25T23:24:00Z,2026-02-25T23:24:00Z,0.003438,0.003447,1455,,,0.0055817438,0.1115837696,0.0037517175,0.0037615388,,,TP
,,2026-02-25T23:27:00Z,2026-02-25T23:27:00Z,0.003412,0.003421,1466,,,0.0056811165,0.1135770809,0.003751494,0.0037613895,,,TP
,,2026-02-25T23:28:00Z,2026-02-25T23:29:00Z,0.003412,0.003421,1466,,,0.0056811165,0.1135770809,0.003751494,0.0037613895,,,TP
,,2026-02-25T23:28:00Z,2026-02-25T23:28:00Z,0.003413,0.003422,1465,,,0.0056750437,0.1134998535,0.0037500338,0.0037599225,,,TP
,,2026-02-25T23:30:00Z,2026-02-25T23:30:00Z,0.003412,0.003421,1466,,,0.0056811165,0.1135770809,0.003751494,0.0037613895,,,TP
,,2026-02-25T23:31:00Z,2026-02-25T23:31:00Z,0.003407,0.003416,1468,,,0.005699877,0.1139638979,0.003751107,0.003761016,,,TP
,,2026-02-25T23:32:00Z,2026-02-25T23:32:00Z,0.003405,0.003414,1469,,,0.0057081667,0.1141189427,0.0037514588,0.0037613745,,,TP
,,2026-02-25T23:36:00Z,2026-02-25T23:36:00Z,0.003365,0.003374,1486,,,0.0058633845,0.1172585438,0.0037502925,0.003760323,,,TP
,,2026-02-25T23:43:00Z,2026-02-25T23:47:00Z,0.003303,0.003312,1514,,,0.0061146675,0.1222752044,0.0037505565,0.003760776,,,TP
,,2026-02-25T23:47:00Z,2026-02-25T23:52:00Z,0.003315,0.003324,1509,,,0.0060673118,0.1212895928,0.0037517512,0.003761937,,,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 QKCUSDT?
Did it beat Buy & Hold of QKCUSDT?
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 QKCUSDT (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: 10,120.73 USDT
P&L: +120.73 USDT (+1.21%)
Result: PROFIT
Completed trades: 114623
Open orders at end: 221
Win rate: 100.0%
Avg. profit/trade: 0.005332 USDT
Best trade: 0.006552 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 611.172644 USDT
Max drawdown: -4.92%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.14
Total fees: 861.47 USDT
Avg hold time: 15.1h
TP / SL / TSL: 114623 / 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: 472.7s
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":"QKCUSDT","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":1,"stopLoss":false,"tickSize":0.000001,"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 35 PropertyValue KPIs. Every numeric value is finite + range-validated; invalid / null fields are omitted so the JSON stays schema.org-compliant.{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "QKCUSDT LongTimeLong Backtest",
"alternateName": "QKCUSDT-3LongTimeLong.json-2630fcca-cbc1-4150-90a8-6ff91549dd06",
"description": "Backtest of the LongTimeLong strategy on QKCUSDT: +1.21% return over 2024-04-24 to 2026-02-25.",
"identifier": "2630fcca-cbc1-4150-90a8-6ff91549dd06",
"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": [
"QKCUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "QKCUSDT",
"description": "Trading pair: QKCUSDT"
},
{
"@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": 1.2073,
"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": 611.17264396,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 10120.72741096,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 114623,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 221,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.00655171,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00533202,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 472.74,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": 0.6543882542715096,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -4.922785834385151,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -493.05671157640063,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 45,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Recovery Duration",
"value": 23,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": 0.1412385820691181,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": 0.16145643551299682,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 6.301370194563509,
"unitText": "%",
"unitCode": "P1",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Time in Market",
"value": 100,
"unitText": "%",
"unitCode": "P1",
"minValue": 0,
"maxValue": 100
},
{
"@type": "PropertyValue",
"name": "Backtest Duration",
"value": 672,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Equity Samples",
"value": 673,
"unitText": "points",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Expectancy per Trade",
"value": 0.005595459386999998,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.005595459386999998,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.005420037149999999,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.5595459386999998,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7514380601,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1001.9174139999991,
"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.08333333333333333,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 11.861415525114156,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 5183.6875119065435,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:11.553Z",
"dateModified": "2026-05-15T13:00:54.933Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:00:54 UTC