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.
AEURUSDT * FullBullMarket
AEURUSDT | 1FullBullMarket.json | 2024-04-24 - 2026-02-25 | +14.04% | 12,634 closed trades | 100.0% closed WR | 268 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,537.00 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 194.00 USDT | Buy + sell fees across all trades. |
| Fee Drag | 12.6% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 231.6 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 12,634 | 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 AEURUSDT, 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, fee drag is healthy at 12.6% of gross profit.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="04897270-b17a-4b7f-b239-3a448196c79e" */}
...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 AEURUSDT, 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 FullBullMarket 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 AEURUSDT 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: AEURUSDT 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 14.04% return on AEURUSDT a good backtest result?
Is a 14.04% return on AEURUSDT 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 AEURUSDT backtest?
What is the annualised return for this AEURUSDT backtest?
Can I run this exact FullBullMarket configuration live?
Can I run this exact FullBullMarket configuration live?
How is this backtest different from others on AEURUSDT?
How is this backtest different from others on AEURUSDT?
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 | AEURUSDT |
| Strategy | FullBullMarket |
| Period | 2024-04-24 -> 2026-02-25 |
| Configured window (inclusive elapsed) | 673.0 days (1.84 years) - (config.to - config.from) / 86 400 000 ms |
| Configured window (calendar days) | 673 days - Math.round of the elapsed value above; this is what the narrative paragraph quotes |
| Equity-stat duration | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 11,404.29 USDT |
| Avg Profit / Trade | +0.1063 USDT |
| Trades / Month | 571.4 |
| Status | completed |
| Created | 2026-05-08 10:00:20 UTC |
| Started | 2026-05-08 12:24:21 UTC |
| Completed | 2026-05-08 12:35:18 UTC |
| Compute Time | 9m 30s |
| Backtest ID | 04897270-b17a-4b7f-b239-3a448196c79e |
| Engine summary: |
Backtest AEURUSDT (Mode: 1FullBullMarket.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 11,404.29 USDT
P&L: +1,404.29 USDT (+14.04%)
Result: PROFIT
Completed trades: 12634
Open orders at end: 268
Win rate: 100.0%
Avg. profit/trade: 0.106301 USDT
Best trade: 1.488407 USDT
Worst trade: 0.009909 USDT
Total profit (trades only): 1,343.001279 USDT
Max drawdown: -5.56%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.95
Total fees: 194.00 USDT
Avg hold time: 231.6h
TP / SL / TSL: 12634 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 6
Sell targets: [0.25, 2.5, 5.0, 10.0, 20.0, 30.0]
Investment per buy: 50.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 570.5s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned +14.04% over the tested window | return_pct = 14.0429 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 11,404.29 USDT | final_value - start_balance = +1,404.29 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 12634 of 12634 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 5.56% | max_drawdown_pct = 5.5560 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = 0.95 | sharpe_annualized = 0.9527 | derived from daily-resampled equity returns |
Strategy Configuration
GET /backtests/{id} * Fields used: mode_name, config (full JSON payload)- Highlights
- Full JSON
| Parameter | Value |
|---|---|
canBuy | true |
canSell | true |
canBuyUp | true |
startBal | 10000 |
stepSize | 0.1 |
stopLoss | false |
tickSize | 0.0001 |
buySplits | 6 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "AEURUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 6,
"buyVolumes": [
20,
20,
20,
30,
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,
2.5,
5,
10,
20,
30
],
"triggerCoolDown": 1,
"investmentPerBuy": 50,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 20,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0
],
"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 | 6 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,20,20,30,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 | 50 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 20 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,2.5,5,10,20,30] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.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.0001 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [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: AEURUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.1
stopLoss: false
tickSize: 0.0001
buySplits: 6
buyVolumes:
- 20
- 20
- 20
- 30
- 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
- 2.5
- 5
- 10
- 20
- 30
triggerCoolDown: 1
investmentPerBuy: 50
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 20
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 0
- 0
- 0
- 0
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 == "1FullBullMarket.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 | AEURUSDT | GET /backtests/{id} -> $.symbol |
| Candle interval | 1m | platform invariant - all backtests run on 1-minute OHLCV candles |
| First candle (UTC) | 2024-04-24 00:00:01 | GET /backtests/{id} -> $.config.from |
| Last candle (UTC) | 2026-02-25 23:59:59 | GET /backtests/{id} -> $.config.to |
| Timezone | UTC | default assumption (UTC) |
| Engine version | uncoded-engine (FastAPI backend) | caller DataSourceInput.engineVersion |
| Engine spec version | 1.1 | caller DataSourceInput.engineSpecVersion |
| Engine spec document | https://uncoded.ch/docs/engine | caller DataSourceInput.engineSpecPath |
Equity Curve
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value 11,448 | ## # ###
| ::#:####:::
| ## :::::::::::
| ####::####:::::::::::
| #:::::::::::::::::::::
| #### ::::::::::::::::::::::
| ######::::##::::::::::::::::::::::
| # ::::::::::::::::::::::::::::::::::
|######################:# #::::::::::::::::::::::::::::::::::
9,767 |::::::::::::::::::::::::#:::::::::::::::::::::::::::::::::::
+------------------------------------------------------------
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,099.11 USDT @ 2025-01-02 23:59:00 UTC |
| Trough | 9,537.99 USDT @ 2025-02-02 23:59:00 UTC |
| Drawdown Duration | 31.0 days |
| Recovery | 2025-02-05 23:59:00 UTC (3.0 days to recover) |
| All-time Peak | 11,536.18 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) | 8,042.93 | 8,042.93 | 70.5% |
| AEUR | 2,876.10000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 3,361.36 | 29.5% |
| Total | - | 11,404.29 | 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) | +49.29 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 | +49.29 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.86 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.90 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 1.75 USDT | buy + sell on matched pairs |
| Open-position buy fees | 192.24 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 268 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 194.00 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 | 393.55% | 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/04897270-b17a-4b7f-b239-3a448196c79e/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.859401 + 0.895457
= 1.754858 USDT
(B) bt.total_fees = 193.996997 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 193.996997 - 1.754858
= 192.242138 USDT
Identity check: (A) + (C) ?= (B)
1.754858 + 192.242138 = 193.996997 USDT
vs bt.total_fees = 193.996997 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 268 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 33.3h | 1881.8h | 12467.5h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 02:52:00 UTC | 2026-02-25 01:07:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 99 | +49.29 USDT | +3.46% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 5 | 5 | 100.0% | +0.05 |
| 2024-05 | 9 | 9 | 100.0% | +1.22 |
| 2024-07 | 1 | 1 | 100.0% | +0.49 |
| 2024-08 | 8 | 8 | 100.0% | +2.47 |
| 2024-10 | 2 | 2 | 100.0% | +0.02 |
| 2024-11 | 2 | 2 | 100.0% | +0.02 |
| 2024-12 | 2 | 2 | 100.0% | +0.02 |
| 2025-01 | 1 | 1 | 100.0% | +0.01 |
| 2025-02 | 5 | 5 | 100.0% | +4.48 |
| 2025-06 | 4 | 4 | 100.0% | +5.95 |
| 2025-07 | 8 | 8 | 100.0% | +10.39 |
| 2025-08 | 3 | 3 | 100.0% | +2.98 |
| 2025-09 | 1 | 1 | 100.0% | +0.01 |
| 2025-10 | 18 | 18 | 100.0% | +20.86 |
| 2026-01 | 5 | 5 | 100.0% | +0.05 |
| 2026-02 | 25 | 25 | 100.0% | +0.26 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2025-10-22 -> 2025-10-24 | 1.136300 | 1.250000 | +1.4884 | +9.85% |
| 2 | TP | 2024-08-23 -> 2025-10-22 | 1.119100 | 1.231100 | +1.4882 | +9.85% |
| 3 | TP | 2025-07-03 -> 2025-10-27 | 1.153100 | 1.268500 | +1.4879 | +9.85% |
| 4 | TP | 2024-04-24 -> 2025-07-09 | 1.071200 | 1.178400 | +1.4877 | +9.85% |
| 5 | TP | 2025-06-30 -> 2025-10-22 | 1.127600 | 1.240400 | +1.4877 | +9.85% |
| 6 | TP | 2025-10-12 -> 2025-10-22 | 1.056300 | 1.162000 | +1.4877 | +9.85% |
| 7 | TP | 2025-06-30 -> 2025-10-24 | 1.144000 | 1.258500 | +1.4876 | +9.85% |
| 8 | TP | 2024-12-13 -> 2025-06-29 | 1.027200 | 1.130000 | +1.4874 | +9.85% |
| 9 | TP | 2024-05-20 -> 2025-10-22 | 1.094000 | 1.203500 | +1.4873 | +9.85% |
| 10 | TP | 2024-08-20 -> 2025-10-22 | 1.110500 | 1.221600 | +1.4872 | +9.85% |
Top 10 Losers
Top 10 Losers
Charts Catalogue
GET /backtests/{id} + /equity + /trades * Fields used: every chart from the live <AnalyticsCharts> UI, with the exact transform + API fields it consumesX-API-Key.- Equity & Balance
- Trade Analysis
- Risk & Recovery
- Deep Dive
- Advanced
Drawdown
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: computeDrawdown(equity)drawdown).| Stat | Value |
|---|---|
| Shallowest DD | 0.00% @ 2024-04-24 23:59:00 UTC |
| Deepest DD | -5.56% @ 2025-02-02 23:59:00 UTC |
| Mean | -0.74% |
| Std Dev | 0.76% |
| Last | -1.14% |
| Points | 673 |
| Across 673 points the series ranged from -5.56% (2025-02-02 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -0.74%. 0% of points were positive, 90% negative. The most recent value is -1.14%. | |
| 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},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.011561676049434077},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.1660115047837359},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.2514660909279808},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-0.3273177377049155},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-0.28689989802907856},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-0.026827741091032756},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-0.13884573147445925},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-0.0713582446610957},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":0},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-0.058301822447758944},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-0.16344218140624173},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-0.0403680933198115},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-0.07110696427036772},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-0.28999154162634544},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-0.5235376883029825},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-0.3933453061390529},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-0.7961729026567733},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-0.9426286020077115},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.7873108821536993},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-3.215328417577432},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-0.4909737475208672},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-1.9549726375774825},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-2.817795529065991},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-1.9162596039110242},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":0},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-2.123864926713956},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-1.2310062460666822},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-1.4425326515007575},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-1.7256865565343222},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-0.5060699251717563},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":0},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-0.7976089793452996},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-0.8852901385927684},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-0.8635760200902228},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-1.5239629330221347},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-1.774232485685418},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-0.14658792288033323},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-0.26051214678227125},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-0.5725359803785645},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-0.7665222466930987},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-0.8671087579461639},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-0.35935432228533026},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-0.45323997269681154},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-0.8922518187429996},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-0.9763369621157012},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-2.2728067504317075},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":0},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-1.0379965002675653},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-1.254727191575558},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-1.1674016368048583},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-0.9604086846995983},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-1.3054224391916316},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-1.2059492663710565},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-1.0846227259559167},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-1.2562053288837562},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-0.5725609934459424},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-0.7235315214385999},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-1.1432513564967726}]
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 | 378.18 USDT @ 2025-10-26 23:59:00 UTC |
| Worst Unrealized | -628.04 USDT @ 2025-02-02 23:59:00 UTC |
| Mean | 35.57 USDT |
| Std Dev | 144.44 USDT |
| Last | 232.39 USDT |
| Points | 673 |
| Sum | 23,935.94 USDT |
| Across 673 points the series ranged from -628.04 USDT (2025-02-02 23:59:00 UTC) to 378.18 USDT (2025-10-26 23:59:00 UTC), averaging 35.57 USDT. 56% of points were positive, 44% negative. The most recent value is 232.39 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-0.2586296025},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":0.26495799},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":4.6164787425},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":-4.0350086925},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-12.74386421},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-20.525465815},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-16.6203633675},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":5.451776065},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-3.90531018},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":2.34059992},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":14.6138060925},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":20.35900756},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":11.5606679875},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":24.5282374625},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":21.4216367125},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-0.48323486},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-23.9685134375},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-11.15416325},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-54.8623147175},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":-69.9403606025},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":-54.7428223475},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-352.9843840925},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-90.491632085},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-238.1441599375},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-337.9124829725},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-329.748212825},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":47.6784833475},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-140.701717355},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-85.9049737675},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-108.9755336175},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-139.0930212475},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-14.61765614},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":71.8789128175},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-6.3835352675},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-15.8763988475},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-17.1612134275},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-87.3205735225},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-114.3089545225},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":152.430581165},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":183.403679105},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":145.0485433875},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":102.8440062},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":81.0872250775},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":181.2586585499},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":173.0690496224},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":127.3610092999},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":116.8065415449},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-27.1870590776},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":275.4787707374},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":234.6041408974},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":203.2778266474},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":206.3809044449},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":227.7766029049},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":185.1489927674},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":195.5944549249},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":207.6667569974},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":188.3678275749},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":296.3094093099},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":278.8090215849},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":232.3858104349}]
Balance Composition (Cash vs. Coin)
GET /backtests/{id}/equity * Fields used: quote_asset_bal, base_value_exit_net, total_value_exit_net * Transform: stack(quote, base, total)total).| Stat | Value |
|---|---|
| Peak Total Equity | 11,536.18 USDT @ 2026-01-28 23:59:00 UTC |
| Trough Total Equity | 9,537.99 USDT @ 2025-02-02 23:59:00 UTC |
| Mean | 10,491.55 USDT |
| Std Dev | 541.29 USDT |
| Last | 11,404.29 USDT |
| Points | 673 |
| Sum | 7,060,812.96 USDT |
| Across 673 points the series ranged from 9,537.99 USDT (2025-02-02 23:59:00 UTC) to 11,536.18 USDT (2026-01-28 23:59:00 UTC), averaging 10,491.55 USDT. 100% of points were positive, 0% negative. The most recent value is 11,404.29 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9864.1109295775,"base":135.63044081999942,"total":9999.7413703975},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9563.204607785,"base":437.1734738000014,"total":10000.378081585},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9347.204299035,"base":657.6736445474999,"total":10004.8779435825},{"timestamp":"2024-05-28T23:59:00+00:00","quote":8927.012615805,"base":1071.7291998,"total":9998.741815605},{"timestamp":"2024-06-09T23:59:00+00:00","quote":8856.854878155,"base":1133.3283457649995,"total":9990.18322392},{"timestamp":"2024-06-20T23:59:00+00:00","quote":8741.1049319575,"base":1241.4814700400002,"total":9982.5864019975},{"timestamp":"2024-07-01T23:59:00+00:00","quote":8741.3168067825,"base":1245.3175907899986,"total":9986.6343975725},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9107.5289564025,"base":905.1526259999991,"total":10012.6815824025},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8966.238834985,"base":1036.7483451324988,"total":10002.9871801175},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8976.8717690525,"base":1032.8755618999985,"total":10009.7473309525},{"timestamp":"2024-08-16T23:59:00+00:00","quote":9007.13236253,"base":1014.823461137501,"total":10021.9558236675},{"timestamp":"2024-08-27T23:59:00+00:00","quote":8811.60058134,"base":1221.4461478100002,"total":10033.04672915},{"timestamp":"2024-09-08T23:59:00+00:00","quote":8674.061875585,"base":1348.4299185,"total":10022.491794085},{"timestamp":"2024-09-19T23:59:00+00:00","quote":8733.87785747,"base":1300.9692207399985,"total":10034.84707821},{"timestamp":"2024-09-30T23:59:00+00:00","quote":8733.94364758,"base":1297.8175862400003,"total":10031.76123382},{"timestamp":"2024-10-12T23:59:00+00:00","quote":8612.88661299,"base":1396.9010178900007,"total":10009.78763088},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8401.8227092725,"base":1584.519458445,"total":9986.3421677175},{"timestamp":"2024-11-04T23:59:00+00:00","quote":8472.5303110575,"base":1526.8817391800003,"total":9999.4120502375},{"timestamp":"2024-11-15T23:59:00+00:00","quote":7958.2211721325,"base":2000.7514201675003,"total":9958.9725923},{"timestamp":"2024-11-26T23:59:00+00:00","quote":7677.1815642575,"base":2267.08848744,"total":9944.2700516975},{"timestamp":"2024-12-08T23:59:00+00:00","quote":7737.9128244875,"base":2221.9494171524993,"total":9959.86224164},{"timestamp":"2024-12-19T23:59:00+00:00","quote":4646.7493778425,"base":5069.366621375,"total":9716.1159992175},{"timestamp":"2024-12-31T23:59:00+00:00","quote":5929.3389683275,"base":4115.487167925001,"total":10044.8261362525},{"timestamp":"2025-01-11T23:59:00+00:00","quote":5556.4899137225,"base":4345.181337997499,"total":9901.67125172},{"timestamp":"2025-01-22T23:59:00+00:00","quote":4794.970981,"base":5019.562872222499,"total":9814.5338532225},{"timestamp":"2025-02-03T23:59:00+00:00","quote":3777.48636259,"base":6128.09455944,"total":9905.58092203},{"timestamp":"2025-02-14T23:59:00+00:00","quote":6153.2859533674,"base":4243.703423557499,"total":10396.9893769249},{"timestamp":"2025-02-26T23:59:00+00:00","quote":5765.0824722574,"base":4502.710902147501,"total":10267.7933744049},{"timestamp":"2025-03-09T23:59:00+00:00","quote":6392.0062875173,"base":3969.4533155199997,"total":10361.4596030373},{"timestamp":"2025-03-20T23:59:00+00:00","quote":6161.4627515523,"base":4177.8064633725,"total":10339.2692149248},{"timestamp":"2025-04-01T23:59:00+00:00","quote":5990.8673267698,"base":4318.6973459,"total":10309.5646726698},{"timestamp":"2025-04-12T23:59:00+00:00","quote":6235.5247235473,"base":4201.985045825,"total":10437.5097693723},{"timestamp":"2025-04-23T23:59:00+00:00","quote":6774.6571120098,"base":3770.441856142501,"total":10545.0989681523},{"timestamp":"2025-05-05T23:59:00+00:00","quote":6894.9627760373,"base":3581.7454546649997,"total":10476.7082307023},{"timestamp":"2025-05-16T23:59:00+00:00","quote":6794.8300243073,"base":3672.6182489150005,"total":10467.4482732223},{"timestamp":"2025-05-28T23:59:00+00:00","quote":6747.9954735223,"base":3721.746015434999,"total":10469.7414889573},{"timestamp":"2025-06-08T23:59:00+00:00","quote":6517.1991369323,"base":3882.799264837501,"total":10399.9984017698},{"timestamp":"2025-06-19T23:59:00+00:00","quote":6397.0784416148,"base":3976.4891346950008,"total":10373.5675763098},{"timestamp":"2025-07-01T23:59:00+00:00","quote":8773.4469437523,"base":2027.1829216624992,"total":10800.6298654148},{"timestamp":"2025-07-12T23:59:00+00:00","quote":8610.8474921123,"base":2274.4457653400004,"total":10885.2932574523},{"timestamp":"2025-07-24T23:59:00+00:00","quote":8411.8390908773,"base":2442.6996202349,"total":10854.5387111122},{"timestamp":"2025-08-04T23:59:00+00:00","quote":7659.1702675523,"base":3174.1908800174997,"total":10833.3611475698},{"timestamp":"2025-08-15T23:59:00+00:00","quote":7338.1721924273,"base":3484.2078827499,"total":10822.3800751772},{"timestamp":"2025-08-27T23:59:00+00:00","quote":8440.7102313122,"base":2559.05426875,"total":10999.7645000622},{"timestamp":"2025-09-07T23:59:00+00:00","quote":8358.1182770747,"base":2631.2817774599007,"total":10989.4000545346},{"timestamp":"2025-09-19T23:59:00+00:00","quote":8043.4706760847,"base":2897.4649502399006,"total":10940.9356263246},{"timestamp":"2025-09-30T23:59:00+00:00","quote":7944.1763107297,"base":2987.4767906899006,"total":10931.6531014196},{"timestamp":"2025-10-11T23:59:00+00:00","quote":7306.3760751572,"base":3482.1540842548993,"total":10788.5301594121},{"timestamp":"2025-10-23T23:59:00+00:00","quote":9264.6520767372,"base":2050.3811799099003,"total":11315.0332566471},{"timestamp":"2025-11-03T23:59:00+00:00","quote":9038.6485669272,"base":2312.4055940998987,"total":11351.0541610271},{"timestamp":"2025-11-14T23:59:00+00:00","quote":8657.6314294622,"base":2668.5634751998987,"total":11326.1949046621},{"timestamp":"2025-11-26T23:59:00+00:00","quote":8277.4494781122,"base":3058.761766829901,"total":11336.2112449421},{"timestamp":"2025-12-07T23:59:00+00:00","quote":8219.5676587922,"base":3140.385912772299,"total":11359.9535715645},{"timestamp":"2025-12-19T23:59:00+00:00","quote":7930.8787362522,"base":3389.5013659499,"total":11320.3801022021},{"timestamp":"2025-12-30T23:59:00+00:00","quote":7952.0377046647,"base":3379.7520833998997,"total":11331.7897880646},{"timestamp":"2026-01-10T23:59:00+00:00","quote":8054.6370344022,"base":3291.069045599901,"total":11345.7060800021},{"timestamp":"2026-01-22T23:59:00+00:00","quote":8074.3989108847,"base":3251.6264497498996,"total":11326.0253606346},{"timestamp":"2026-02-02T23:59:00+00:00","quote":8427.2642113122,"base":3042.862420289899,"total":11470.1266316021},{"timestamp":"2026-02-14T23:59:00+00:00","quote":8216.0665771772,"base":3236.6438251523996,"total":11452.7104023296},{"timestamp":"2026-02-25T23:59:00+00:00","quote":8042.9271287647,"base":3361.3636450798995,"total":11404.2907738446}]
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 | 61.87% @ 2025-02-03 23:59:00 UTC |
| Min Exposure | 1.36% @ 2024-04-24 23:59:00 UTC |
| Mean | 25.71% |
| Std Dev | 12.24% |
| Last | 29.47% |
| Points | 673 |
| Across 673 points the series ranged from 1.36% (2024-04-24 23:59:00 UTC) to 61.87% (2025-02-03 23:59:00 UTC), averaging 25.71%. 100% of points were positive, 0% negative. The most recent value is 29.47%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.356339487154236},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":4.371569457009089},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":6.5735299146688355},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":10.718640600633933},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":11.344420020760124},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":12.436471071180327},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":12.46984260375752},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":9.040062030843208},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.364387422121247},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":10.318697642907566},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":10.126002139631563},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":12.17422963117686},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.454038638333499},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":12.96451466176267},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":12.937086080803816},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":13.955351196269023},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":15.866865282938342},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":15.269715174341023},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":20.089938009412993},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":22.79793766313702},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":22.30903764775999},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":52.17482604966087},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":40.97121355910692},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":43.88331249881384},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":51.144180123994154},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":61.86506988006252},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":40.81665633876653},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":43.852761133386835},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":38.30978904126998},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":40.40717362637013},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":41.89020082825297},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":40.25850167973259},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":35.755395634785145},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":34.187698805704926},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":35.08608930325692},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":35.54764001919645},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":37.33461405317863},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":38.332898546649865},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":18.76911760631513},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":20.894666882611244},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":22.503946830409443},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":29.300148280661283},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":32.19446977972497},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":23.26462779030887},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":23.943816444958195},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":26.482789490767246},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":27.328682706753128},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":32.27644575120373},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":18.120858625893906},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":20.371725491711167},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":23.560988466669084},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":26.982222726262574},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":27.644355172657658},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":29.941586195418974},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":29.825403988341552},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":29.00717700946552},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":28.709334000358538},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":26.52858610912201},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":28.26094183341991},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":29.474552269301014}]
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 | 487.91 USDT @ 2025-10-22 23:59:00 UTC |
| Worst Day | -181.58 USDT @ 2025-02-24 23:59:00 UTC |
| Mean | 2.09 USDT |
| Std Dev | 42.49 USDT |
| Last | 4.88 USDT |
| Points | 672 |
| Sum | 1,404.55 USDT |
| Across 672 points the series ranged from -181.58 USDT (2025-02-24 23:59:00 UTC) to 487.91 USDT (2025-10-22 23:59:00 UTC), averaging 2.09 USDT. 50% of points were positive, 49% negative. The most recent value is 4.88 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":0.2294166400006361},{"timestamp":"2024-05-06T23:59:00+00:00","delta":0.13861595999878773},{"timestamp":"2024-05-18T23:59:00+00:00","delta":-0.5441815574995417},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-5.202773370001523},{"timestamp":"2024-06-09T23:59:00+00:00","delta":-0.736337332500625},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-1.7614006374988094},{"timestamp":"2024-07-02T23:59:00+00:00","delta":0.9301820825003233},{"timestamp":"2024-07-14T23:59:00+00:00","delta":-3.7220710849996976},{"timestamp":"2024-07-25T23:59:00+00:00","delta":1.6442758675002551},{"timestamp":"2024-08-05T23:59:00+00:00","delta":1.39880669249942},{"timestamp":"2024-08-17T23:59:00+00:00","delta":-1.8466166074995272},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-4.995475732501291},{"timestamp":"2024-09-08T23:59:00+00:00","delta":1.584810499998639},{"timestamp":"2024-09-20T23:59:00+00:00","delta":-0.3394663049984956},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-9.344795267499649},{"timestamp":"2024-10-13T23:59:00+00:00","delta":1.260091680000187},{"timestamp":"2024-10-24T23:59:00+00:00","delta":7.159206565000204},{"timestamp":"2024-11-04T23:59:00+00:00","delta":3.7624073425013194},{"timestamp":"2024-11-16T23:59:00+00:00","delta":3.973781054999563},{"timestamp":"2024-11-27T23:59:00+00:00","delta":13.996742797500701},{"timestamp":"2024-12-08T23:59:00+00:00","delta":-2.729706165000607},{"timestamp":"2024-12-20T23:59:00+00:00","delta":272.2019745100006},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-35.33816412499982},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-29.94152548999955},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-43.592442062499686},{"timestamp":"2025-02-03T23:59:00+00:00","delta":367.5861024024998},{"timestamp":"2025-02-15T23:59:00+00:00","delta":10.155920535000405},{"timestamp":"2025-02-26T23:59:00+00:00","delta":-9.776584882500174},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-45.243986929999664},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-22.888804287498715},{"timestamp":"2025-04-01T23:59:00+00:00","delta":38.57344270499925},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-67.59666209500028},{"timestamp":"2025-04-24T23:59:00+00:00","delta":14.669140067499029},{"timestamp":"2025-05-05T23:59:00+00:00","delta":-6.2281935424998665},{"timestamp":"2025-05-17T23:59:00+00:00","delta":19.423201042500295},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-6.324510247501166},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-6.519761932499023},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-5.218058602500605},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-15.855661462501303},{"timestamp":"2025-07-13T23:59:00+00:00","delta":-7.786292382499596},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-7.008091275100014},{"timestamp":"2025-08-04T23:59:00+00:00","delta":50.99727135250032},{"timestamp":"2025-08-16T23:59:00+00:00","delta":142.2614576324995},{"timestamp":"2025-08-27T23:59:00+00:00","delta":-21.034276549900824},{"timestamp":"2025-09-07T23:59:00+00:00","delta":4.127462080001351},{"timestamp":"2025-09-19T23:59:00+00:00","delta":8.008693635001691},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-3.0414372099985485},{"timestamp":"2025-10-12T23:59:00+00:00","delta":66.61967023750003},{"timestamp":"2025-10-23T23:59:00+00:00","delta":52.13053417250012},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-27.282936905001407},{"timestamp":"2025-11-15T23:59:00+00:00","delta":64.98913982750128},{"timestamp":"2025-11-26T23:59:00+00:00","delta":64.83107956250024},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-30.577576515001056},{"timestamp":"2025-12-19T23:59:00+00:00","delta":9.805310927500614},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-4.379770417499458},{"timestamp":"2026-01-11T23:59:00+00:00","delta":1.1203941525000118},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-18.71123394750066},{"timestamp":"2026-02-02T23:59:00+00:00","delta":1.7887629899996682},{"timestamp":"2026-02-14T23:59:00+00:00","delta":-14.821537977501066},{"timestamp":"2026-02-25T23:59:00+00:00","delta":4.882683057499889}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 7.64% @ 2025-02 |
| Worst Month | -3.81% @ 2025-01 |
| Mean | 0.66% |
| Std Dev | 2.17% |
| Last | -0.56% |
| Points | 23 |
| Across 23 points the series ranged from -3.81% (2025-01) to 7.64% (2025-02), averaging 0.66%. 57% of points were positive, 43% negative. The most recent value is -0.56%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.003958553029906512},{"month":"2024-05","returnPct":-0.013965735993204078},{"month":"2024-06","returnPct":-0.10578168450312252},{"month":"2024-07","returnPct":0.1554216520259602},{"month":"2024-08","returnPct":0.1590328685301255},{"month":"2024-09","returnPct":0.13345461312069776},{"month":"2024-10","returnPct":-0.22340200955802123},{"month":"2024-11","returnPct":-0.28758329353646844},{"month":"2024-12","returnPct":0.8700570650672648},{"month":"2025-01","returnPct":-3.810286710617768},{"month":"2025-02","returnPct":7.642662591752377},{"month":"2025-03","returnPct":-1.1725861591158488},{"month":"2025-04","returnPct":2.2254600911348255},{"month":"2025-05","returnPct":-1.411952248342482},{"month":"2025-06","returnPct":3.913894067127418},{"month":"2025-07","returnPct":0.4634264149045346},{"month":"2025-08","returnPct":1.6266136094206025},{"month":"2025-09","returnPct":-0.5168454528083396},{"month":"2025-10","returnPct":3.975405681741463},{"month":"2025-11","returnPct":0.15469817992766907},{"month":"2025-12","returnPct":0.947332745356085},{"month":"2026-01","returnPct":1.0023670918737202},{"month":"2026-02","returnPct":-0.5584688513824829}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 1,343.00 USDT @ 2026-02-25 |
| Trough Cum. | 0.0411 USDT @ 2024-04-25 |
| Mean | 502.98 USDT |
| Std Dev | 484.83 USDT |
| Last | 1,343.00 USDT |
| Points | 672 |
| Sum | 338,005.90 USDT |
| Across 672 points the series ranged from 0.0411 USDT (2024-04-25) to 1,343.00 USDT (2026-02-25), averaging 502.98 USDT. 100% of points were positive, 0% negative. The most recent value is 1,343.00 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25","cumProfit":0.041107},{"timestamp":"2024-05-06","cumProfit":0.12321299999999999},{"timestamp":"2024-05-18","cumProfit":0.26146499999999995},{"timestamp":"2024-05-29","cumProfit":3.6591859999999996},{"timestamp":"2024-06-09","cumProfit":3.80945},{"timestamp":"2024-06-21","cumProfit":3.994230999999999},{"timestamp":"2024-07-02","cumProfit":4.187959},{"timestamp":"2024-07-14","cumProfit":9.568574000000002},{"timestamp":"2024-07-25","cumProfit":9.772496},{"timestamp":"2024-08-05","cumProfit":10.275834},{"timestamp":"2024-08-17","cumProfit":10.541339},{"timestamp":"2024-08-28","cumProfit":16.993113},{"timestamp":"2024-09-08","cumProfit":17.229281000000004},{"timestamp":"2024-09-20","cumProfit":17.402508000000008},{"timestamp":"2024-10-01","cumProfit":17.53436300000001},{"timestamp":"2024-10-13","cumProfit":17.587489000000012},{"timestamp":"2024-10-24","cumProfit":17.74619800000001},{"timestamp":"2024-11-04","cumProfit":17.971609000000008},{"timestamp":"2024-11-16","cumProfit":21.26144000000001},{"timestamp":"2024-11-27","cumProfit":21.70150700000001},{"timestamp":"2024-12-08","cumProfit":22.010457000000013},{"timestamp":"2024-12-20","cumProfit":96.93107000000002},{"timestamp":"2024-12-31","cumProfit":143.17489900000004},{"timestamp":"2025-01-12","cumProfit":147.81034499999998},{"timestamp":"2025-01-23","cumProfit":160.686369},{"timestamp":"2025-02-03","cumProfit":243.44144900000003},{"timestamp":"2025-02-15","cumProfit":385.0480630000001},{"timestamp":"2025-02-26","cumProfit":417.3398140000002},{"timestamp":"2025-03-09","cumProfit":456.2092980000002},{"timestamp":"2025-03-21","cumProfit":457.0894690000002},{"timestamp":"2025-04-01","cumProfit":457.50241400000016},{"timestamp":"2025-04-13","cumProfit":461.0349270000001},{"timestamp":"2025-04-24","cumProfit":487.2529940000002},{"timestamp":"2025-05-05","cumProfit":491.93648700000017},{"timestamp":"2025-05-17","cumProfit":492.3987160000002},{"timestamp":"2025-05-28","cumProfit":495.7474240000002},{"timestamp":"2025-06-08","cumProfit":496.1636980000002},{"timestamp":"2025-06-20","cumProfit":496.7430900000002},{"timestamp":"2025-07-01","cumProfit":660.9154560000002},{"timestamp":"2025-07-13","cumProfit":730.757431},{"timestamp":"2025-07-24","cumProfit":739.774195},{"timestamp":"2025-08-04","cumProfit":765.3347879999999},{"timestamp":"2025-08-16","cumProfit":895.5063319999996},{"timestamp":"2025-08-27","cumProfit":923.0447699999996},{"timestamp":"2025-09-07","cumProfit":923.5250839999998},{"timestamp":"2025-09-19","cumProfit":924.5193369999997},{"timestamp":"2025-09-30","cumProfit":927.6663849999999},{"timestamp":"2025-10-12","cumProfit":929.3836739999999},{"timestamp":"2025-10-23","cumProfit":1167.7742119999998},{"timestamp":"2025-11-03","cumProfit":1254.4872029999997},{"timestamp":"2025-11-15","cumProfit":1269.7084229999996},{"timestamp":"2025-11-26","cumProfit":1278.408031},{"timestamp":"2025-12-07","cumProfit":1287.78723},{"timestamp":"2025-12-19","cumProfit":1294.3517729999999},{"timestamp":"2025-12-30","cumProfit":1295.3159969999995},{"timestamp":"2026-01-11","cumProfit":1299.3766169999994},{"timestamp":"2026-01-22","cumProfit":1299.6951709999996},{"timestamp":"2026-02-02","cumProfit":1340.1035939999995},{"timestamp":"2026-02-14","cumProfit":1342.6552829999994},{"timestamp":"2026-02-25","cumProfit":1343.0012809999992}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 223.89 USDT @ 2025-10-22 |
| Worst Day | 0.0000 USDT @ 2024-04-26 |
| Mean | 2.00 USDT |
| Std Dev | 11.80 USDT |
| Last | 0.0106 USDT |
| Points | 672 |
| Sum | 1,343.00 USDT |
| Across 672 points the series ranged from 0.0000 USDT (2024-04-26) to 223.89 USDT (2025-10-22), averaging 2.00 USDT. 81% of points were positive, 0% negative. The most recent value is 0.0106 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"day":"2024-04-25","profit":0.041107},{"day":"2024-05-06","profit":0.010089},{"day":"2024-05-18","profit":0},{"day":"2024-05-29","profit":0},{"day":"2024-06-09","profit":0},{"day":"2024-06-21","profit":0},{"day":"2024-07-02","profit":0.050835},{"day":"2024-07-14","profit":0.242345},{"day":"2024-07-25","profit":0.010904},{"day":"2024-08-05","profit":0.267062},{"day":"2024-08-17","profit":0},{"day":"2024-08-28","profit":0},{"day":"2024-09-08","profit":0},{"day":"2024-09-20","profit":0.010131},{"day":"2024-10-01","profit":0.010227},{"day":"2024-10-13","profit":0.021232},{"day":"2024-10-24","profit":0.030122},{"day":"2024-11-04","profit":0.032487},{"day":"2024-11-16","profit":0.021138},{"day":"2024-11-27","profit":0.0857},{"day":"2024-12-08","profit":0.010576},{"day":"2024-12-20","profit":20.252515},{"day":"2024-12-31","profit":0.094268},{"day":"2025-01-12","profit":0.137802},{"day":"2025-01-23","profit":0.382899},{"day":"2025-02-03","profit":69.552958},{"day":"2025-02-15","profit":26.892446},{"day":"2025-02-26","profit":0.642803},{"day":"2025-03-09","profit":0.021065},{"day":"2025-03-21","profit":0},{"day":"2025-04-01","profit":0.071282},{"day":"2025-04-13","profit":0.062781},{"day":"2025-04-24","profit":5.188218},{"day":"2025-05-05","profit":0.010143},{"day":"2025-05-17","profit":0.229323},{"day":"2025-05-28","profit":0.878149},{"day":"2025-06-08","profit":0},{"day":"2025-06-20","profit":0.021837},{"day":"2025-07-01","profit":2.520071},{"day":"2025-07-13","profit":2.198574},{"day":"2025-07-24","profit":0.320357},{"day":"2025-08-04","profit":4.834879},{"day":"2025-08-16","profit":95.524556},{"day":"2025-08-27","profit":0.020217},{"day":"2025-09-07","profit":0.020435},{"day":"2025-09-19","profit":0.02175},{"day":"2025-09-30","profit":0.010949},{"day":"2025-10-12","profit":0.84663},{"day":"2025-10-23","profit":12.28471},{"day":"2025-11-03","profit":0.134822},{"day":"2025-11-15","profit":1.488858},{"day":"2025-11-26","profit":7.688321},{"day":"2025-12-07","profit":1.877204},{"day":"2025-12-19","profit":0.052124},{"day":"2025-12-30","profit":0.030519},{"day":"2026-01-11","profit":0},{"day":"2026-01-22","profit":0.010187},{"day":"2026-02-02","profit":0.020231},{"day":"2026-02-14","profit":0.113627},{"day":"2026-02-25","profit":0.01058}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 739 trades @ 2025-10-22 |
| Quietest Day | 0 trades @ 2024-04-26 |
| Mean | 19 trades |
| Std Dev | 46 trades |
| Last | 1 trades |
| Points | 672 |
| Sum | 12634 trades |
| Across 672 points the series ranged from 0 trades (2024-04-26) to 739 trades (2025-10-22), averaging 19 trades. The most recent value is 1 trades. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"day":"2024-04-25","count":4},{"day":"2024-05-06","count":1},{"day":"2024-05-18","count":0},{"day":"2024-05-29","count":0},{"day":"2024-06-09","count":0},{"day":"2024-06-21","count":0},{"day":"2024-07-02","count":5},{"day":"2024-07-14","count":23},{"day":"2024-07-25","count":1},{"day":"2024-08-05","count":25},{"day":"2024-08-17","count":0},{"day":"2024-08-28","count":0},{"day":"2024-09-08","count":0},{"day":"2024-09-20","count":1},{"day":"2024-10-01","count":1},{"day":"2024-10-13","count":2},{"day":"2024-10-24","count":3},{"day":"2024-11-04","count":3},{"day":"2024-11-16","count":2},{"day":"2024-11-27","count":8},{"day":"2024-12-08","count":1},{"day":"2024-12-20","count":155},{"day":"2024-12-31","count":9},{"day":"2025-01-12","count":13},{"day":"2025-01-23","count":37},{"day":"2025-02-03","count":215},{"day":"2025-02-15","count":142},{"day":"2025-02-26","count":63},{"day":"2025-03-09","count":2},{"day":"2025-03-21","count":0},{"day":"2025-04-01","count":7},{"day":"2025-04-13","count":6},{"day":"2025-04-24","count":13},{"day":"2025-05-05","count":1},{"day":"2025-05-17","count":22},{"day":"2025-05-28","count":19},{"day":"2025-06-08","count":0},{"day":"2025-06-20","count":2},{"day":"2025-07-01","count":44},{"day":"2025-07-13","count":59},{"day":"2025-07-24","count":30},{"day":"2025-08-04","count":60},{"day":"2025-08-16","count":350},{"day":"2025-08-27","count":2},{"day":"2025-09-07","count":2},{"day":"2025-09-19","count":2},{"day":"2025-09-30","count":1},{"day":"2025-10-12","count":16},{"day":"2025-10-23","count":144},{"day":"2025-11-03","count":13},{"day":"2025-11-15","count":34},{"day":"2025-11-26","count":53},{"day":"2025-12-07","count":23},{"day":"2025-12-19","count":5},{"day":"2025-12-30","count":3},{"day":"2026-01-11","count":0},{"day":"2026-01-22","count":1},{"day":"2026-02-02","count":2},{"day":"2026-02-14","count":11},{"day":"2026-02-25","count":1}]
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 | 194.00 USDT @ 2026-02-25 |
| Start | 0.0604 USDT @ 2024-04-25 |
| Mean | 76.96 USDT |
| Std Dev | 67.57 USDT |
| Last | 194.00 USDT |
| Points | 672 |
| Sum | 51,717.28 USDT |
| Across 672 points the series ranged from 0.0604 USDT (2024-04-25) to 194.00 USDT (2026-02-25), averaging 76.96 USDT. 100% of points were positive, 0% negative. The most recent value is 194.00 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-25","cumFees":0.060413},{"index":11,"timestamp":"2024-05-06","cumFees":0.18107800000000002},{"index":23,"timestamp":"2024-05-18","cumFees":0.37761600000000006},{"index":34,"timestamp":"2024-05-29","cumFees":1.360586},{"index":45,"timestamp":"2024-06-09","cumFees":1.571992},{"index":57,"timestamp":"2024-06-21","cumFees":1.843901},{"index":68,"timestamp":"2024-07-02","cumFees":2.1310429999999996},{"index":80,"timestamp":"2024-07-14","cumFees":3.6580969999999997},{"index":91,"timestamp":"2024-07-25","cumFees":3.944735},{"index":102,"timestamp":"2024-08-05","cumFees":4.654097},{"index":114,"timestamp":"2024-08-17","cumFees":5.031440000000001},{"index":125,"timestamp":"2024-08-28","cumFees":5.684756},{"index":136,"timestamp":"2024-09-08","cumFees":6.030800999999999},{"index":148,"timestamp":"2024-09-20","cumFees":6.286554},{"index":159,"timestamp":"2024-10-01","cumFees":6.4824649999999995},{"index":171,"timestamp":"2024-10-13","cumFees":6.558138999999999},{"index":182,"timestamp":"2024-10-24","cumFees":6.784521999999999},{"index":193,"timestamp":"2024-11-04","cumFees":7.101951000000001},{"index":205,"timestamp":"2024-11-16","cumFees":9.926120000000003},{"index":216,"timestamp":"2024-11-27","cumFees":10.544993000000005},{"index":227,"timestamp":"2024-12-08","cumFees":10.982323000000004},{"index":239,"timestamp":"2024-12-20","cumFees":24.718759000000002},{"index":250,"timestamp":"2024-12-31","cumFees":30.773199000000005},{"index":262,"timestamp":"2025-01-12","cumFees":32.71602300000001},{"index":273,"timestamp":"2025-01-23","cumFees":38.15574900000001},{"index":284,"timestamp":"2025-02-03","cumFees":45.838799000000016},{"index":296,"timestamp":"2025-02-15","cumFees":58.72229400000001},{"index":307,"timestamp":"2025-02-26","cumFees":70.93552300000002},{"index":318,"timestamp":"2025-03-09","cumFees":75.69293900000001},{"index":330,"timestamp":"2025-03-21","cumFees":76.91443700000002},{"index":341,"timestamp":"2025-04-01","cumFees":77.50299200000002},{"index":353,"timestamp":"2025-04-13","cumFees":78.36561900000002},{"index":364,"timestamp":"2025-04-24","cumFees":80.489432},{"index":375,"timestamp":"2025-05-05","cumFees":80.99068900000002},{"index":387,"timestamp":"2025-05-17","cumFees":81.65449000000001},{"index":398,"timestamp":"2025-05-28","cumFees":83.55797199999998},{"index":409,"timestamp":"2025-06-08","cumFees":84.16152799999998},{"index":421,"timestamp":"2025-06-20","cumFees":84.97677399999998},{"index":432,"timestamp":"2025-07-01","cumFees":92.57046699999998},{"index":444,"timestamp":"2025-07-13","cumFees":104.499371},{"index":455,"timestamp":"2025-07-24","cumFees":107.759623},{"index":466,"timestamp":"2025-08-04","cumFees":113.04282799999999},{"index":478,"timestamp":"2025-08-16","cumFees":128.695756},{"index":489,"timestamp":"2025-08-27","cumFees":141.47505999999993},{"index":500,"timestamp":"2025-09-07","cumFees":142.1822549999999},{"index":512,"timestamp":"2025-09-19","cumFees":143.5989919999999},{"index":523,"timestamp":"2025-09-30","cumFees":145.81880899999993},{"index":535,"timestamp":"2025-10-12","cumFees":146.66505999999993},{"index":546,"timestamp":"2025-10-23","cumFees":161.59318299999995},{"index":557,"timestamp":"2025-11-03","cumFees":168.43058799999994},{"index":569,"timestamp":"2025-11-15","cumFees":173.84011199999998},{"index":580,"timestamp":"2025-11-26","cumFees":176.09603900000002},{"index":591,"timestamp":"2025-12-07","cumFees":178.67928000000003},{"index":603,"timestamp":"2025-12-19","cumFees":181.56603700000008},{"index":614,"timestamp":"2025-12-30","cumFees":182.96937300000008},{"index":626,"timestamp":"2026-01-11","cumFees":185.95506500000008},{"index":637,"timestamp":"2026-01-22","cumFees":186.42223600000008},{"index":648,"timestamp":"2026-02-02","cumFees":191.4164760000001},{"index":660,"timestamp":"2026-02-14","cumFees":193.50032700000008},{"index":671,"timestamp":"2026-02-25","cumFees":193.99698500000008}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 9926 trades @ 0.10% |
| Least Populated Bin | 0 trades @ 0.26% |
| Mean | 211 trades |
| Std Dev | 1286 trades |
| Last | 328 trades |
| Points | 60 |
| Sum | 12634 trades |
| Across 60 points the series ranged from 0 trades (0.26%) to 9926 trades (0.10%), averaging 211 trades. The most recent value is 328 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":9926,"from":0.099812},{"bin":"0.26%","count":0,"from":0.26239},{"bin":"0.42%","count":0,"from":0.424967},{"bin":"0.59%","count":0,"from":0.587544},{"bin":"0.75%","count":0,"from":0.750121},{"bin":"0.91%","count":0,"from":0.912698},{"bin":"1.08%","count":0,"from":1.075275},{"bin":"1.24%","count":0,"from":1.237852},{"bin":"1.40%","count":0,"from":1.400429},{"bin":"1.56%","count":0,"from":1.563006},{"bin":"1.73%","count":0,"from":1.725583},{"bin":"1.89%","count":0,"from":1.888161},{"bin":"2.05%","count":0,"from":2.050738},{"bin":"2.21%","count":1619,"from":2.213315},{"bin":"2.38%","count":0,"from":2.375892},{"bin":"2.54%","count":0,"from":2.538469},{"bin":"2.70%","count":0,"from":2.701046},{"bin":"2.86%","count":0,"from":2.863623},{"bin":"3.03%","count":0,"from":3.0262},{"bin":"3.19%","count":0,"from":3.188777},{"bin":"3.35%","count":0,"from":3.351354},{"bin":"3.51%","count":0,"from":3.513932},{"bin":"3.68%","count":0,"from":3.676509},{"bin":"3.84%","count":0,"from":3.839086},{"bin":"4.00%","count":0,"from":4.001663},{"bin":"4.16%","count":0,"from":4.16424},{"bin":"4.33%","count":0,"from":4.326817},{"bin":"4.49%","count":0,"from":4.489394},{"bin":"4.65%","count":0,"from":4.651971},{"bin":"4.81%","count":761,"from":4.814548},{"bin":"4.98%","count":0,"from":4.977125},{"bin":"5.14%","count":0,"from":5.139703},{"bin":"5.30%","count":0,"from":5.30228},{"bin":"5.46%","count":0,"from":5.464857},{"bin":"5.63%","count":0,"from":5.627434},{"bin":"5.79%","count":0,"from":5.790011},{"bin":"5.95%","count":0,"from":5.952588},{"bin":"6.12%","count":0,"from":6.115165},{"bin":"6.28%","count":0,"from":6.277742},{"bin":"6.44%","count":0,"from":6.440319},{"bin":"6.60%","count":0,"from":6.602896},{"bin":"6.77%","count":0,"from":6.765474},{"bin":"6.93%","count":0,"from":6.928051},{"bin":"7.09%","count":0,"from":7.090628},{"bin":"7.25%","count":0,"from":7.253205},{"bin":"7.42%","count":0,"from":7.415782},{"bin":"7.58%","count":0,"from":7.578359},{"bin":"7.74%","count":0,"from":7.740936},{"bin":"7.90%","count":0,"from":7.903513},{"bin":"8.07%","count":0,"from":8.06609},{"bin":"8.23%","count":0,"from":8.228667},{"bin":"8.39%","count":0,"from":8.391245},{"bin":"8.55%","count":0,"from":8.553822},{"bin":"8.72%","count":0,"from":8.716399},{"bin":"8.88%","count":0,"from":8.878976},{"bin":"9.04%","count":0,"from":9.041553},{"bin":"9.20%","count":0,"from":9.20413},{"bin":"9.37%","count":0,"from":9.366707},{"bin":"9.53%","count":0,"from":9.529284},{"bin":"9.69%","count":328,"from":9.691861}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 126 |
| Coldest Window | 100.00% @ 126 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (126) to 100.00% (126), 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":126,"winRate":100},{"index":339,"winRate":100},{"index":552,"winRate":100},{"index":765,"winRate":100},{"index":977,"winRate":100},{"index":1190,"winRate":100},{"index":1403,"winRate":100},{"index":1616,"winRate":100},{"index":1816,"winRate":100},{"index":2029,"winRate":100},{"index":2242,"winRate":100},{"index":2455,"winRate":100},{"index":2668,"winRate":100},{"index":2881,"winRate":100},{"index":3093,"winRate":100},{"index":3306,"winRate":100},{"index":3519,"winRate":100},{"index":3732,"winRate":100},{"index":3945,"winRate":100},{"index":4158,"winRate":100},{"index":4370,"winRate":100},{"index":4583,"winRate":100},{"index":4796,"winRate":100},{"index":4996,"winRate":100},{"index":5209,"winRate":100},{"index":5422,"winRate":100},{"index":5635,"winRate":100},{"index":5848,"winRate":100},{"index":6061,"winRate":100},{"index":6274,"winRate":100},{"index":6486,"winRate":100},{"index":6699,"winRate":100},{"index":6912,"winRate":100},{"index":7125,"winRate":100},{"index":7338,"winRate":100},{"index":7551,"winRate":100},{"index":7764,"winRate":100},{"index":7964,"winRate":100},{"index":8177,"winRate":100},{"index":8390,"winRate":100},{"index":8602,"winRate":100},{"index":8815,"winRate":100},{"index":9028,"winRate":100},{"index":9241,"winRate":100},{"index":9454,"winRate":100},{"index":9667,"winRate":100},{"index":9879,"winRate":100},{"index":10092,"winRate":100},{"index":10305,"winRate":100},{"index":10518,"winRate":100},{"index":10731,"winRate":100},{"index":10944,"winRate":100},{"index":11144,"winRate":100},{"index":11357,"winRate":100},{"index":11570,"winRate":100},{"index":11783,"winRate":100},{"index":11995,"winRate":100},{"index":12208,"winRate":100},{"index":12421,"winRate":100},{"index":12634,"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 | 49.29 USDT @ 2026-02-25 01:07:00 UTC |
| Trough Net | 0.0103 USDT @ 2024-04-25 06:25:00 UTC |
| Mean | 26.19 USDT |
| Std Dev | 20.20 USDT |
| Last | 49.29 USDT |
| Points | 99 |
| Sum | 2,592.70 USDT |
| Across 99 points the series ranged from 0.0103 USDT (2024-04-25 06:25:00 UTC) to 49.29 USDT (2026-02-25 01:07:00 UTC), averaging 26.19 USDT. 100% of points were positive, 0% negative. The most recent value is 49.29 USDT. | |
| Showing 60 of 99 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T06:25:00Z","net":0.010289475,"gross":0.02538},{"timestamp":"2024-04-25T15:35:00Z","net":0.030850095,"gross":0.07614},{"timestamp":"2024-04-25T16:52:00Z","net":0.04110714,"gross":0.10152},{"timestamp":"2024-05-01T18:52:00Z","net":0.06171852,"gross":0.15228000000000003},{"timestamp":"2024-05-03T12:30:00Z","net":0.08221287,"gross":0.20304000000000005},{"timestamp":"2024-05-20T19:33:00Z","net":0.317962755,"gross":0.45402000000000003},{"timestamp":"2024-05-20T20:19:00Z","net":0.7912663849999999,"gross":0.9578599999999999},{"timestamp":"2024-05-20T20:36:00Z","net":1.2654359899999998,"gross":1.46264},{"timestamp":"2024-05-30T12:53:00Z","net":1.2754611574999999,"gross":1.48775},{"timestamp":"2024-08-02T10:58:00Z","net":1.7711084049999999,"gross":2.01388},{"timestamp":"2024-08-05T06:10:00Z","net":1.79115874,"gross":2.0641000000000003},{"timestamp":"2024-08-25T06:35:00Z","net":2.278610075,"gross":2.567},{"timestamp":"2024-08-25T07:13:00Z","net":3.253526845,"gross":3.5728},{"timestamp":"2024-08-25T07:51:00Z","net":4.23115857,"gross":4.5814200000000005},{"timestamp":"2024-10-24T18:00:00Z","net":4.2411837375,"gross":4.60653},{"timestamp":"2024-11-06T06:27:00Z","net":4.2612368625000006,"gross":4.65675},{"timestamp":"2024-12-18T09:54:00Z","net":4.2812854625000005,"gross":4.70693},{"timestamp":"2024-12-18T09:59:00Z","net":4.291314280000001,"gross":4.732},{"timestamp":"2025-02-03T17:50:00Z","net":4.311375185,"gross":4.782140000000001},{"timestamp":"2025-02-11T21:23:00Z","net":5.807772835,"gross":6.317320000000001},{"timestamp":"2025-02-14T16:01:00Z","net":7.294503925,"gross":7.827820000000001},{"timestamp":"2025-06-29T08:41:00Z","net":10.268150039999998,"gross":10.84902},{"timestamp":"2025-06-29T16:31:00Z","net":13.242063234999998,"gross":13.870479999999999},{"timestamp":"2025-06-29T16:45:00Z","net":14.729440104999998,"gross":15.381639999999999},{"timestamp":"2025-07-02T20:01:00Z","net":17.6896163125,"gross":18.38917},{"timestamp":"2025-07-03T03:51:00Z","net":20.662790180000002,"gross":21.40988},{"timestamp":"2025-07-03T03:51:00Z","net":22.146342477500003,"gross":22.917170000000002},{"timestamp":"2025-07-09T20:59:00Z","net":23.644098125000003,"gross":24.453800000000005},{"timestamp":"2025-08-16T10:15:00Z","net":26.609792192500002,"gross":27.46693},{"timestamp":"2025-08-16T10:15:00Z","net":28.096621242500003,"gross":28.97753},{"timestamp":"2025-09-22T13:50:00Z","net":28.116682737500003,"gross":29.027750000000005},{"timestamp":"2025-10-02T12:59:00Z","net":28.1267093,"gross":29.052860000000006},{"timestamp":"2025-10-22T03:08:00Z","net":29.6244532,"gross":30.58948000000001},{"timestamp":"2025-10-22T03:09:00Z","net":32.59835342,"gross":33.61094000000001},{"timestamp":"2025-10-22T07:02:00Z","net":34.085526,"gross":35.121900000000004},{"timestamp":"2025-10-22T07:02:00Z","net":37.06081586,"gross":38.144780000000004},{"timestamp":"2025-10-22T07:03:00Z","net":40.035858335,"gross":41.1674},{"timestamp":"2025-10-22T07:03:00Z","net":41.5230078675,"gross":42.67833},{"timestamp":"2025-10-22T07:03:00Z","net":44.496918547499995,"gross":45.69981},{"timestamp":"2025-10-24T20:40:00Z","net":47.47294045499999,"gross":48.723420000000004},{"timestamp":"2025-10-26T23:29:00Z","net":47.482904254999994,"gross":48.748312610000006},{"timestamp":"2025-10-27T00:40:00Z","net":48.980760634999996,"gross":50.28494556500001},{"timestamp":"2026-01-28T09:19:00Z","net":49.000627034999994,"gross":50.33473116750001},{"timestamp":"2026-01-29T07:30:00Z","net":49.01057163499999,"gross":50.35962389750001},{"timestamp":"2026-01-29T09:36:00Z","net":49.03042603499999,"gross":50.409409575000005},{"timestamp":"2026-02-15T17:59:00Z","net":49.05142400999999,"gross":50.4605858325},{"timestamp":"2026-02-15T19:51:00Z","net":49.06189048499999,"gross":50.4860858325},{"timestamp":"2026-02-16T01:57:00Z","net":49.08274565999999,"gross":50.537085832500004},{"timestamp":"2026-02-17T17:57:00Z","net":49.10362888499999,"gross":50.588085832500006},{"timestamp":"2026-02-17T19:06:00Z","net":49.11403543499999,"gross":50.61358583250001},{"timestamp":"2026-02-20T00:36:00Z","net":49.135067834999994,"gross":50.664673500000006},{"timestamp":"2026-02-20T04:00:00Z","net":49.15626725999999,"gross":50.71584857250001},{"timestamp":"2026-02-20T13:01:00Z","net":49.16687270999999,"gross":50.74143607500001},{"timestamp":"2026-02-21T01:14:00Z","net":49.18800583499999,"gross":50.79261153750001},{"timestamp":"2026-02-22T12:26:00Z","net":49.20908795999999,"gross":50.84378730000001},{"timestamp":"2026-02-22T12:26:00Z","net":49.21966408499999,"gross":50.86937497500001},{"timestamp":"2026-02-22T13:57:00Z","net":49.24080868499999,"gross":50.92055037},{"timestamp":"2026-02-22T14:59:00Z","net":49.26193543499999,"gross":50.97172587},{"timestamp":"2026-02-23T02:12:00Z","net":49.27247458499999,"gross":50.9973137625},{"timestamp":"2026-02-25T01:07:00Z","net":49.29363065999999,"gross":51.04848909}]
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) | 8.12 @ 2024-07-21 23:59:00 UTC |
| Worst Sharpe (30d) | -7.50 @ 2024-10-26 23:59:00 UTC |
| Mean | 0.35 |
| Std Dev | 3.05 |
| Last | 1.20 |
| Points | 643 |
| Across 643 points the series ranged from -7.50 (2024-10-26 23:59:00 UTC) to 8.12 (2024-07-21 23:59:00 UTC), averaging 0.35. The most recent value is 1.20. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":-0.5839834302420432,"sharpe90":0.3740970395876091},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":0.44913466132917673,"sharpe90":0.31101769840308874},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-3.121314618296393,"sharpe90":0.9344433380611831},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-3.264435338957354,"sharpe90":2.438752928281},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":0.8863947316813567,"sharpe90":2.2040217842719003},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":6.25430946066702,"sharpe90":2.444449686005325},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":4.2687423505949,"sharpe90":2.941583308306945},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":3.0664774838175695,"sharpe90":0.8988634511683375},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":3.201687947144001,"sharpe90":-0.6048825657600148},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":3.141226418489366,"sharpe90":-0.3712493522154536},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":0.8185040951244903,"sharpe90":-1.4258877869518631},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":0.7609423892283144,"sharpe90":-2.870705438700233},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":-0.2935110020644774,"sharpe90":-2.3678359153220025},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":-2.2398812718985885,"sharpe90":-2.932384094046205},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-5.995428894392953,"sharpe90":0.24933350620140818},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-2.3224110200844317,"sharpe90":0.5174549290700065},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-4.474617483416992,"sharpe90":-0.675701900892602},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":-4.354802754195683,"sharpe90":-1.0046619593837014},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":-2.272952902971715,"sharpe90":-0.22161010740233625},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":-6.999584424533497,"sharpe90":1.3789075515347347},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":1.4603241682961787,"sharpe90":0.9109793070987146},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-0.1491359033530939,"sharpe90":1.138012896208696},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":1.1131114684354728,"sharpe90":1.8148829123332686},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-4.466516082802385,"sharpe90":0.7286833784754215},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":1.794372151407589,"sharpe90":1.1533368308927454},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":4.858427943838955,"sharpe90":2.3355497607314493},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":4.976368363871297,"sharpe90":2.9840347646083494},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":0.4136230321564482,"sharpe90":1.2048338533102219},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-1.5489903286772588,"sharpe90":-0.06372080586963728},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-3.201380634309225,"sharpe90":-0.36528639861143747},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":1.2288616466495166,"sharpe90":0.460390089542908},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":4.831090560756149,"sharpe90":1.3619621167780651},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":3.6252474207543695,"sharpe90":2.963726071043504},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":0.47167222349124766,"sharpe90":2.532792504333362},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":-1.8095608825351353,"sharpe90":1.9343032713148027},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-3.995561021141884,"sharpe90":1.5496912795927371},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-3.04028534476799,"sharpe90":2.4769831473438093},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":4.911710674610886,"sharpe90":2.9567414651755395},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":5.541759731530017,"sharpe90":2.809096982980377},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":6.7091967795751035,"sharpe90":3.1082727837260755},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":-1.1696484492958548,"sharpe90":0.810563801924682},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":-1.4063423463930131,"sharpe90":-0.3378441304992851},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":2.008471340666675,"sharpe90":1.4901342581549832},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":3.003825263526196,"sharpe90":1.8813352694828027},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":0.5289609531658734,"sharpe90":1.2834256587099835},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-2.787672478552217,"sharpe90":0.9577989987934917},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-3.5268272901663082,"sharpe90":1.3316587740874533},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-2.21417749181786,"sharpe90":1.1465492592254254},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":2.790593608946436,"sharpe90":1.2877795480994783},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":2.880359305574962,"sharpe90":1.383403468965061},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":3.223879966508925,"sharpe90":1.8580915601359855},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":0.5514673739901491,"sharpe90":0.5471723993292431},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":0.32525214275856484,"sharpe90":0.7344314229038569},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":0.6688516927269651,"sharpe90":0.8903751620537192},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-1.5891533982356814,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-0.20137844909734834,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":1.5455798371321254,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":1.1493029697313761,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":1.6198911325010101,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":1.198205480274844,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.15% @ 1 |
| Deepest Episode | -5.56% @ 30 |
| Mean | -1.29% |
| Std Dev | 1.37% |
| Last | -1.19% |
| Points | 19 |
| Across 19 points the series ranged from -5.56% (30) to -0.15% (1), averaging -1.29%. 0% of points were positive, 100% negative. The most recent value is -1.19%. | |
| Full series - 19 points. |
[{"start":"2024-05-22T23:59:00+00:00","end":"2024-07-21T23:59:00+00:00","depth":-0.3486847773637526,"durationDays":60},{"start":"2024-07-23T23:59:00+00:00","end":"2024-08-13T23:59:00+00:00","depth":-0.17482169000645617,"durationDays":21},{"start":"2024-08-28T23:59:00+00:00","end":"2024-12-21T23:59:00+00:00","depth":-3.545192041785033,"durationDays":115},{"start":"2024-12-26T23:59:00+00:00","end":"2024-12-28T23:59:00+00:00","depth":-0.6022326628934389,"durationDays":2},{"start":"2024-12-30T23:59:00+00:00","end":"2025-01-01T23:59:00+00:00","depth":-0.4909737475208672,"durationDays":2},{"start":"2025-01-06T23:59:00+00:00","end":"2025-02-05T23:59:00+00:00","depth":-5.55604813575497,"durationDays":30},{"start":"2025-02-08T23:59:00+00:00","end":"2025-02-11T23:59:00+00:00","depth":-0.16709527274586114,"durationDays":3},{"start":"2025-02-16T23:59:00+00:00","end":"2025-02-17T23:59:00+00:00","depth":-0.5625909952635135,"durationDays":1},{"start":"2025-02-21T23:59:00+00:00","end":"2025-04-19T23:59:00+00:00","depth":-2.123864926713956,"durationDays":57},{"start":"2025-04-25T23:59:00+00:00","end":"2025-04-28T23:59:00+00:00","depth":-0.41980292669015457,"durationDays":3},{"start":"2025-04-29T23:59:00+00:00","end":"2025-06-29T23:59:00+00:00","depth":-1.9563372878989576,"durationDays":61},{"start":"2025-07-01T23:59:00+00:00","end":"2025-07-02T23:59:00+00:00","depth":-0.14658792288033323,"durationDays":1},{"start":"2025-07-03T23:59:00+00:00","end":"2025-07-09T23:59:00+00:00","depth":-0.5044476732250518,"durationDays":6},{"start":"2025-07-11T23:59:00+00:00","end":"2025-07-15T23:59:00+00:00","depth":-0.33185618833799535,"durationDays":4},{"start":"2025-07-17T23:59:00+00:00","end":"2025-08-16T23:59:00+00:00","depth":-1.5419226255733633,"durationDays":30},{"start":"2025-08-18T23:59:00+00:00","end":"2025-08-19T23:59:00+00:00","depth":-0.3930656108641155,"durationDays":1},{"start":"2025-08-26T23:59:00+00:00","end":"2025-10-22T23:59:00+00:00","depth":-2.3954355197255235,"durationDays":57},{"start":"2025-10-27T23:59:00+00:00","end":"2026-01-28T23:59:00+00:00","depth":-2.0726648089376063,"durationDays":93},{"start":"2026-01-29T23:59:00+00:00","end":"ongoing","depth":-1.1855763183285233,"durationDays":27}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 99 trades @ win |
| Shortest Streak | 99 trades @ win |
| Mean | 99 trades |
| Std Dev | 0 trades |
| Last | 99 trades |
| Points | 1 |
| Sum | 99 trades |
| Across 1 points the series ranged from 99 trades (win) to 99 trades (win), averaging 99 trades. The most recent value is 99 trades. | |
| Full series - 1 points. |
[{"type":"win","length":99,"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 | 61.87% @ 2025-02-03 23:59:00 UTC |
| Min Utilization | 1.36% @ 2024-04-24 23:59:00 UTC |
| Mean | 25.71% |
| Std Dev | 12.24% |
| Last | 29.47% |
| Points | 673 |
| Across 673 points the series ranged from 1.36% (2024-04-24 23:59:00 UTC) to 61.87% (2025-02-03 23:59:00 UTC), averaging 25.71%. 100% of points were positive, 0% negative. The most recent value is 29.47%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.356339487154236},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":4.371569457009089},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":6.5735299146688355},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":10.718640600633933},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":11.344420020760124},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":12.436471071180327},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":12.46984260375752},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":9.040062030843208},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":10.364387422121247},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":10.318697642907566},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":10.126002139631563},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":12.17422963117686},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.454038638333499},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":12.96451466176267},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":12.937086080803816},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":13.955351196269023},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":15.866865282938342},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":15.269715174341023},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":20.089938009412993},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":22.79793766313702},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":22.30903764775999},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":52.17482604966087},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":40.97121355910692},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":43.88331249881384},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":51.144180123994154},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":61.86506988006252},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":40.81665633876653},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":43.852761133386835},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":38.30978904126998},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":40.40717362637013},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":41.89020082825297},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":40.25850167973259},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":35.755395634785145},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":34.187698805704926},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":35.08608930325692},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":35.54764001919645},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":37.33461405317863},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":38.332898546649865},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":18.76911760631513},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":20.894666882611244},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":22.503946830409443},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":29.300148280661283},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":32.19446977972497},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":23.26462779030887},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":23.943816444958195},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":26.482789490767246},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":27.328682706753128},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":32.27644575120373},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":18.120858625893906},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":20.371725491711167},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":23.560988466669084},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":26.982222726262574},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":27.644355172657658},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":29.941586195418974},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":29.825403988341552},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":29.00717700946552},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":28.709334000358538},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":26.52858610912201},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":28.26094183341991},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":29.474552269301014}]
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 | 1.27 @ 2025-10-27 00:40:00 UTC |
| Lowest Price | 0.9187 @ 2025-01-27 19:02:00 UTC |
| Mean | 1.12 |
| Std Dev | 0.0758 |
| Last | 1.17 |
| Points | 157 |
| Across 157 points the series ranged from 0.9187 (2025-01-27 19:02:00 UTC) to 1.27 (2025-10-27 00:40:00 UTC), averaging 1.12. The most recent value is 1.17. | |
| Showing 60 of 157 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T02:52:00Z","price":1.07},{"timestamp":"2024-04-25T06:25:00Z","price":1.0716},{"timestamp":"2024-04-25T10:37:00Z","price":1.0729},{"timestamp":"2024-04-25T16:52:00Z","price":1.0739},{"timestamp":"2024-04-29T02:41:00Z","price":1.0714},{"timestamp":"2024-05-01T07:54:00Z","price":1.0655},{"timestamp":"2024-05-03T12:30:00Z","price":1.0756},{"timestamp":"2024-05-20T19:33:00Z","price":1.0935},{"timestamp":"2024-05-20T20:17:00Z","price":1.0957},{"timestamp":"2024-05-30T06:02:00Z","price":1.08},{"timestamp":"2024-07-13T17:40:00Z","price":1.1188},{"timestamp":"2024-08-05T01:11:00Z","price":1.08},{"timestamp":"2024-08-05T06:10:00Z","price":1.0827},{"timestamp":"2024-08-23T19:23:00Z","price":1.1191},{"timestamp":"2024-08-25T07:13:00Z","price":1.1236},{"timestamp":"2024-10-23T08:42:00Z","price":1.08},{"timestamp":"2024-10-29T12:56:00Z","price":1.08},{"timestamp":"2024-11-06T06:27:00Z","price":1.0825},{"timestamp":"2024-11-22T09:00:00Z","price":1.0481},{"timestamp":"2024-12-13T08:03:00Z","price":1.0272},{"timestamp":"2024-12-18T09:18:00Z","price":0.9612},{"timestamp":"2025-01-27T12:15:00Z","price":0.9371},{"timestamp":"2025-01-27T19:03:00Z","price":0.921},{"timestamp":"2025-02-09T21:57:00Z","price":1},{"timestamp":"2025-02-11T21:23:00Z","price":1.0309},{"timestamp":"2025-06-29T08:41:00Z","price":1.1149},{"timestamp":"2025-06-29T16:45:00Z","price":1.13},{"timestamp":"2025-06-30T17:07:00Z","price":1.144},{"timestamp":"2025-07-03T03:51:00Z","price":1.1771},{"timestamp":"2025-07-04T16:56:00Z","price":1.0827},{"timestamp":"2025-08-02T14:48:00Z","price":1.078},{"timestamp":"2025-08-19T06:08:00Z","price":1.0784},{"timestamp":"2025-09-22T13:25:00Z","price":1.0796},{"timestamp":"2025-10-02T11:45:00Z","price":1.0799},{"timestamp":"2025-10-10T21:46:00Z","price":1.0827},{"timestamp":"2025-10-11T06:01:00Z","price":1.0411},{"timestamp":"2025-10-22T03:08:00Z","price":1.162},{"timestamp":"2025-10-22T07:03:00Z","price":1.2035},{"timestamp":"2025-10-24T20:36:00Z","price":1.25},{"timestamp":"2025-10-26T23:41:00Z","price":1.2394},{"timestamp":"2026-01-28T08:48:00Z","price":1.2397},{"timestamp":"2026-01-28T09:24:00Z","price":1.2382},{"timestamp":"2026-01-29T07:31:00Z","price":1.2413},{"timestamp":"2026-02-15T15:59:00Z","price":1.1776},{"timestamp":"2026-02-15T17:24:00Z","price":1.1744},{"timestamp":"2026-02-15T19:07:00Z","price":1.1823},{"timestamp":"2026-02-15T23:59:00Z","price":1.1834},{"timestamp":"2026-02-16T01:57:00Z","price":1.1839},{"timestamp":"2026-02-17T16:20:00Z","price":1.1819},{"timestamp":"2026-02-17T23:22:00Z","price":1.1785},{"timestamp":"2026-02-19T18:00:00Z","price":1.1689},{"timestamp":"2026-02-20T01:16:00Z","price":1.1705},{"timestamp":"2026-02-20T03:00:00Z","price":1.1667},{"timestamp":"2026-02-20T13:01:00Z","price":1.1697},{"timestamp":"2026-02-21T12:00:00Z","price":1.1753},{"timestamp":"2026-02-22T00:02:00Z","price":1.169},{"timestamp":"2026-02-22T13:57:00Z","price":1.1726},{"timestamp":"2026-02-22T14:59:00Z","price":1.1734},{"timestamp":"2026-02-24T13:49:00Z","price":1.169},{"timestamp":"2026-02-25T01:07:00Z","price":1.1717}]
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 | 16 trades @ $10.0 |
| Least Populated Bin | 1 trades @ $10.1 |
| Mean | 6 trades |
| Std Dev | 4 trades |
| Last | 6 trades |
| Points | 18 |
| Sum | 99 trades |
| Across 18 points the series ranged from 1 trades (10.1)to∗∗16trades∗∗(10.0), averaging 6 trades. The most recent value is 6 trades. | |
| Full series - 18 points. |
[
{
"bin": "$10.0",
"count": 2,
"from": 10
},
{
"bin": "$10.0",
"count": 5,
"from": 10.01
},
{
"bin": "$10.0",
"count": 6,
"from": 10.02
},
{
"bin": "$10.0",
"count": 9,
"from": 10.03
},
{
"bin": "$10.0",
"count": 16,
"from": 10.04
},
{
"bin": "$10.1",
"count": 12,
"from": 10.05
},
{
"bin": "$10.1",
"count": 5,
"from": 10.06
},
{
"bin": "$10.1",
"count": 7,
"from": 10.07
},
{
"bin": "$10.1",
"count": 2,
"from": 10.08
},
{
"bin": "$10.1",
"count": 3,
"from": 10.09
},
{
"bin": "$10.1",
"count": 1,
"from": 10.1
},
{
"bin": "$10.1",
"count": 1,
"from": 10.11
},
{
"bin": "$15.0",
"count": 2,
"from": 15.02
},
{
"bin": "$15.0",
"count": 1,
"from": 15.04
},
{
"bin": "$15.1",
"count": 1,
"from": 15.07
},
{
"bin": "$15.1",
"count": 8,
"from": 15.09
},
{
"bin": "$15.1",
"count": 12,
"from": 15.1
},
{
"bin": "$15.1",
"count": 6,
"from": 15.11
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 58 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.59 |
| Mean | 5 trades |
| Std Dev | 14 trades |
| Last | 30 trades |
| Points | 20 |
| Sum | 99 trades |
| Across 20 points the series ranged from 0 trades (0.59) to 58 trades (0.1), averaging 5 trades. The most recent value is 30 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 58,
"SL": 0,
"TSL": 0
},
{
"bin": 0.59,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 1.08,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 1.56,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 2.05,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 2.54,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.03,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 3.51,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 4,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 4.49,
"TP": 6,
"SL": 0,
"TSL": 0
},
{
"bin": 4.98,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 5.46,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 5.95,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 6.44,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 6.93,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 7.41,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 7.9,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 8.39,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 8.88,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 9.36,
"TP": 30,
"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 | 112.82 @ Nov |
| Worst Indexed Value | 96.19 @ Jan |
| Mean | 106.48 |
| Std Dev | 4.83 |
| Last | 112.38 |
| Points | 12 |
| Across 12 points the series ranged from 96.19 (Jan) to 112.82 (Nov), averaging 106.48. The most recent value is 112.38. | |
| Full series - 12 points. |
[
{
"2025": 96.18971328938223,
"2026": 101.00236709187371,
"month": "Jan"
},
{
"2025": 102.95294181305277,
"2026": 100.44361380902006,
"month": "Feb"
},
{
"2025": 101.7210757557512,
"month": "Mar"
},
{
"2024": 99.9960414469701,
"2025": 104.37536020161524,
"month": "Apr"
},
{
"2024": 99.98683042264574,
"2025": 103.01707013938106,
"month": "May"
},
{
"2024": 99.87604063039375,
"2025": 107.12350142803531,
"month": "Jun"
},
{
"2024": 100.02414481783146,
"2025": 107.4621821955281,
"month": "Jul"
},
{
"2024": 100.15544844113187,
"2025": 108.84788139651576,
"month": "Aug"
},
{
"2024": 100.32020691572374,
"2025": 108.2640894503915,
"month": "Sep"
},
{
"2024": 100.00284795790664,
"2025": 112.54912134265223,
"month": "Oct"
},
{
"2024": 99.65132317596016,
"2025": 112.81824069474527,
"month": "Nov"
},
{
"2024": 100.45085931910667,
"2025": 112.38468425034662,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 405.48 USDT @ Tue |
| Worst Weekday | 101.20 USDT @ Wed |
| Mean | 191.86 USDT |
| Std Dev | 97.51 USDT |
| Last | 181.42 USDT |
| Points | 7 |
| Sum | 1,343.00 USDT |
| Across 7 points the series ranged from 101.20 USDT (Wed) to 405.48 USDT (Tue), averaging 191.86 USDT. 100% of points were positive, 0% negative. The most recent value is 181.42 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 103.80587
},
{
"day": "Tue",
"profit": 405.478573
},
{
"day": "Wed",
"profit": 101.195297
},
{
"day": "Thu",
"profit": 129.735187
},
{
"day": "Fri",
"profit": 198.944853
},
{
"day": "Sat",
"profit": 222.421413
},
{
"day": "Sun",
"profit": 181.420088
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 145.81 USDT @ 7:00 |
| Worst Hour (UTC) | 13.60 USDT @ 4:00 |
| Mean | 55.96 USDT |
| Std Dev | 37.81 USDT |
| Last | 44.11 USDT |
| Points | 24 |
| Sum | 1,343.00 USDT |
| Across 24 points the series ranged from 13.60 USDT (4:00) to 145.81 USDT (7:00), averaging 55.96 USDT. 100% of points were positive, 0% negative. The most recent value is 44.11 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":62.991625},{"hour":"1:00","profit":19.954358},{"hour":"2:00","profit":32.441057},{"hour":"3:00","profit":111.559045},{"hour":"4:00","profit":13.600421},{"hour":"5:00","profit":18.785192},{"hour":"6:00","profit":107.60212},{"hour":"7:00","profit":145.808232},{"hour":"8:00","profit":128.386994},{"hour":"9:00","profit":39.341691},{"hour":"10:00","profit":73.216115},{"hour":"11:00","profit":23.999049},{"hour":"12:00","profit":28.042452},{"hour":"13:00","profit":41.981173},{"hour":"14:00","profit":29.408029},{"hour":"15:00","profit":45.154192},{"hour":"16:00","profit":103.758037},{"hour":"17:00","profit":18.70539},{"hour":"18:00","profit":56.976519},{"hour":"19:00","profit":38.222148},{"hour":"20:00","profit":92.262588},{"hour":"21:00","profit":45.579583},{"hour":"22:00","profit":21.112478},{"hour":"23:00","profit":44.112793}]
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 | 9.85% @ 4786.55 |
| Worst Trade Return | 0.10% @ 6.85 |
| Mean | 3.46% |
| Std Dev | 4.38% |
| Last | 0.11% |
| Points | 99 |
| Across 99 points the series ranged from 0.10% (6.85) to 9.85% (4786.55), averaging 3.46%. 100% of points were positive, 0% negative. The most recent value is 0.11%. | |
| Showing 60 of 99 points (down-sampled for readability). |
[{"hours":29.833333333333332,"profitPct":0.1021471963,"profit":0.010273965},{"hours":2956.35,"profitPct":4.855588785,"profit":0.48837512},{"hours":641.45,"profitPct":2.3527943925,"profit":0.23664406},{"hours":37.75,"profitPct":0.1018647311,"profit":0.010257045},{"hours":641.2,"profitPct":2.3499906647,"profit":0.23662714},{"hours":10430.15,"profitPct":9.8434348396,"profit":1.4835522975},{"hours":630.5833333333334,"profitPct":2.3553700065,"profit":0.23665957},{"hours":10570.366666666667,"profitPct":9.8434313543,"profit":1.47854245},{"hours":609.9833333333333,"profitPct":2.3553429956,"profit":0.237542465},{"hours":193.88333333333333,"profitPct":0.1014656538,"profit":0.010233075},{"hours":58.25,"profitPct":0.102453916,"profit":0.010292295},{"hours":97.65,"profitPct":0.1019352881,"profit":0.010261275},{"hours":468.1166666666667,"profitPct":2.3509350394,"profit":0.235749885},{"hours":10260.583333333334,"profitPct":9.8443733596,"profit":1.4807788275},{"hours":10260.116666666667,"profitPct":9.8471891131,"profit":1.47939738},{"hours":10213.833333333334,"profitPct":9.8508417586,"profit":1.48682695},{"hours":12467.483333333334,"profitPct":9.8516339122,"profit":1.487320875},{"hours":6.85,"profitPct":0.0998125,"profit":0.0100251675},{"hours":0.05,"profitPct":0.0998125,"profit":0.0100251675},{"hours":10264.216666666667,"profitPct":9.8469990995,"profit":1.48717258},{"hours":10187.65,"profitPct":9.8505361451,"profit":1.488204225},{"hours":1.0666666666666667,"profitPct":0.0998125,"profit":0.0100251675},{"hours":14.383333333333333,"profitPct":0.0998587701,"profit":0.0100279575},{"hours":5263.516666666666,"profitPct":9.8510805267,"profit":1.48678812},{"hours":4760.7,"profitPct":9.8502823209,"profit":1.48737687},{"hours":1399.8333333333333,"profitPct":9.8519755558,"profit":1.48673109},{"hours":1426.15,"profitPct":9.8508166875,"profit":1.486570985},{"hours":0,"profitPct":0.100138768,"profit":0.0100288175},{"hours":0.016666666666666666,"profitPct":0.1001659954,"profit":0.0100304525},{"hours":21.5,"profitPct":0.1001659954,"profit":0.0100304525},{"hours":2750.4666666666667,"profitPct":9.8433796989,"profit":1.487085635},{"hours":2729.266666666667,"profitPct":9.8460446967,"profit":1.4877216},{"hours":2773.6833333333334,"profitPct":9.8502991935,"profit":1.48794778},{"hours":331.45,"profitPct":9.8517694805,"profit":1.48682905},{"hours":1545.45,"profitPct":9.8498596023,"profit":1.4871495325},{"hours":0.2833333333333333,"profitPct":0.0999050574,"profit":0.0100307475},{"hours":1.2333333333333334,"profitPct":0.0998356329,"profit":0.0100265625},{"hours":0.7833333333333333,"profitPct":0.0998125,"profit":0.0100251675},{"hours":273.03333333333336,"profitPct":9.8453182288,"profit":1.48709003},{"hours":223.25,"profitPct":9.8491219351,"profit":1.4877187325},{"hours":61.03333333333333,"profitPct":9.8486557247,"profit":1.4884066575},{"hours":0,"profitPct":0.0999334355,"profit":0.0099086},{"hours":0.016666666666666666,"profitPct":0.1004993531,"profit":0.0099422},{"hours":22.116666666666667,"profitPct":0.1001756582,"profit":0.009923},{"hours":2.05,"profitPct":0.1003171717,"profit":0.0099314},{"hours":1.2666666666666666,"profitPct":0.1049757591,"profit":0.0104907},{"hours":0.2,"profitPct":0.1052580041,"profit":0.010507275},{"hours":0.5,"profitPct":0.1039605219,"profit":0.010430775},{"hours":9.283333333333333,"profitPct":0.1040035587,"profit":0.010433325},{"hours":1.6833333333333333,"profitPct":0.1042836543,"profit":0.0104499},{"hours":6.6,"profitPct":0.1064590641,"profit":0.0105774},{"hours":22.566666666666666,"profitPct":0.1061085006,"profit":0.010557},{"hours":22.25,"profitPct":0.1064371257,"profit":0.010576125},{"hours":4.65,"profitPct":0.1069426588,"profit":0.01060545},{"hours":15.45,"profitPct":0.1059554303,"profit":0.010548075},{"hours":12.4,"profitPct":0.1064371257,"profit":0.010576125},{"hours":0,"profitPct":0.1064371257,"profit":0.010576125},{"hours":0,"profitPct":0.1063055746,"profit":0.010568475},{"hours":11.766666666666667,"profitPct":0.1058025429,"profit":0.01053915},{"hours":3.0833333333333335,"profitPct":0.106502952,"profit":0.01057995}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 99 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 47 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 99 trades |
| Across 3 points the series ranged from 0 trades (SL) to 99 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 99
},
{
"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": "04897270-b17a-4b7f-b239-3a448196c79e",
"symbol": "AEURUSDT",
"strategy": "1FullBullMarket.json",
"strategy_label": "FullBullMarket",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 672,
"start_balance_usdt": 10000,
"final_value_usdt": 11404.29077384,
"return_pct": 14.0429,
"total_profit_usdt": 1343.00127948,
"avg_profit_per_trade_usdt": 0.10630056,
"fulfilled_trades": 12634,
"active_orders": 268,
"win_rate_pct": 100,
"best_trade_usdt": 1.48840666,
"worst_trade_usdt": 0.0099086,
"trades_per_month": 571.3574764700563,
"max_drawdown_pct": 5.55604813575497,
"max_drawdown_abs_usdt": 561.1111912449996,
"drawdown_duration_days": 31,
"recovery_days": 3,
"cagr_pct": 7.403427224538195,
"volatility_annualized_pct": 7.810871578207893,
"sharpe_annualized": 0.9526662905247568,
"sortino_annualized": 1.2737736283437997,
"time_in_market_pct": 100,
"final_cash_usdt": 8042.9271287647,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": 232.3858104349,
"median_hold_hours": 33.3,
"avg_hold_hours": 1881.7593189964155,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 04897270-b17a-4b7f-b239-3a448196c79e |
symbol | AEURUSDT |
strategy | 1FullBullMarket.json |
strategy_label | FullBullMarket |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 672 |
start_balance_usdt | 10000 |
final_value_usdt | 11404.29077384 |
return_pct | 14.0429 |
total_profit_usdt | 1343.00127948 |
avg_profit_per_trade_usdt | 0.10630056 |
fulfilled_trades | 12634 |
active_orders | 268 |
win_rate_pct | 100 |
best_trade_usdt | 1.48840666 |
worst_trade_usdt | 0.0099086 |
trades_per_month | 571.3574764700563 |
max_drawdown_pct | 5.55604813575497 |
max_drawdown_abs_usdt | 561.1111912449996 |
drawdown_duration_days | 31 |
recovery_days | 3 |
cagr_pct | 7.403427224538195 |
volatility_annualized_pct | 7.810871578207893 |
sharpe_annualized | 0.9526662905247568 |
sortino_annualized | 1.2737736283437997 |
time_in_market_pct | 100 |
final_cash_usdt | 8042.9271287647 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | 232.3858104349 |
median_hold_hours | 33.3 |
avg_hold_hours | 1881.7593189964155 |
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 | AEURUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 1FullBullMarket.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 11,404.29 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | +14.04% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +1,343.00 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)) | 12,634 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +1.4884 USDT |
| Worst trade | GET /backtests/{id} | $.min_profit | direct API value (cross-check: min(trades[].profit)) | +0.0099 USDT |
| Avg profit / trade | GET /backtests/{id} | $.avg_profit | direct API value | +0.1063 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 571.4 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -5.56% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -561.11 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | +7.40% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 7.81% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | 0.95 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | 1.27 |
| Time in market % | GET /backtests/{id}/equity | $[*].base_asset_bal | count(samples where base_asset_bal>0) / count(samples) * 100 | 100.0% |
| Total fees | GET /backtests/{id}/trades | $[*].buy_fee_in_quote, $[*].sell_fee_in_quote | Sum (buy_fee_in_quote + sell_fee_in_quote) | 1.75 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +49.29 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.4979 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 99 |
| 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 | 1881.8h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 33.3h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 2,343 USDT |
Raw API Attachments
/trades. Full trade population: 12,634 closed trades - fetch the complete list via GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e - backtest summary (verbatim)
GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e - backtest summary (verbatim)
{
"id": "04897270-b17a-4b7f-b239-3a448196c79e",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T10:00:20.563680Z",
"started_at": "2026-05-08T12:24:21.798721Z",
"completed_at": "2026-05-08T12:35:18.979005Z",
"mode_name": "1FullBullMarket.json",
"symbol": "AEURUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 11404.29077384,
"return_pct": 14.0429,
"total_profit": 1343.00127948,
"fulfilled_trades": 12634,
"active_orders": 268,
"win_rate": 100,
"avg_profit": 0.10630056,
"max_profit": 1.48840666,
"min_profit": 0.0099086,
"elapsed_sec": 570.49,
"max_drawdown": -5.556,
"profit_factor": null,
"sharpe_ratio": 0.9527,
"total_fees": 193.99699659,
"avg_hold_time_hours": 231.5721,
"tp_count": 12634,
"sl_count": 0,
"tsl_count": 0,
"start_price": 1.0696,
"end_price": 1.1696,
"gross_profit_quote": 1536.998276,
"gross_loss_quote": 0,
"wins": 12634,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 12634,
"consecutive_losses_max": 0,
"holding_minutes_p50": 70,
"holding_minutes_p95": 69259.45,
"holding_minutes_max": 755364,
"description": "AEURUSDT | 1FullBullMarket.json | 2024-04-24 - 2026-02-25 | +14.04% | 12634 trades | 100% WR",
"summary_text": "Backtest AEURUSDT (Mode: 1FullBullMarket.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 11,404.29 USDT\nP&L: +1,404.29 USDT (+14.04%)\nResult: PROFIT\nCompleted trades: 12634\nOpen orders at end: 268\nWin rate: 100.0%\nAvg. profit/trade: 0.106301 USDT\nBest trade: 1.488407 USDT\nWorst trade: 0.009909 USDT\nTotal profit (trades only): 1,343.001279 USDT\nMax drawdown: -5.56%\nProfit factor: inf (no losing trades)\nSharpe ratio: 0.95\nTotal fees: 194.00 USDT\nAvg hold time: 231.6h\nTP / SL / TSL: 12634 / 0 / 0\n\nStrategy parameters:\n Buy trigger: -0.1% from last buy\n Buy splits: 6\n Sell targets: [0.25, 2.5, 5.0, 10.0, 20.0, 30.0]\n Investment per buy: 50.0 USDT\n Fees: maker 7.5 bps / taker 7.5 bps\n\nElapsed: 570.5s",
"share_token": null,
"config_hash": "5ef9cba2ec58c614b13113a217be1f2bc6d49360419b0b659e747a89c21c435a",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "AEURUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 6,
"buyVolumes": [
20,
20,
20,
30,
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,
2.5,
5,
10,
20,
30
],
"triggerCoolDown": 1,
"investmentPerBuy": 50,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 20,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/equity - equity series (verbatim, 673 points)
GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 126.9,
"quote_asset_bal": 9864.1109295775,
"total_value_mid": 9999.8431695775,
"total_value_exit_net": 9999.7413703975,
"total_value": 9999.8431695775,
"base_cost_quote": 135.8890704225,
"unrealized_pnl_exit_net": -0.2586296025
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 140.9,
"quote_asset_bal": 9849.0392706375,
"total_value_mid": 10000.0840706375,
"total_value_exit_net": 9999.9707870375,
"total_value": 10000.0840706375,
"base_cost_quote": 151.0018365025,
"unrealized_pnl_exit_net": -0.0703201025
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9838.9859563025,
"total_value_mid": 9999.7167763025,
"total_value_exit_net": 9999.5962281875,
"total_value": 9999.7167763025,
"base_cost_quote": 161.0551508375,
"unrealized_pnl_exit_net": -0.4448789525
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9838.9859563025,
"total_value_mid": 9999.4011463025,
"total_value_exit_net": 9999.28083491,
"total_value": 9999.4011463025,
"base_cost_quote": 161.0551508375,
"unrealized_pnl_exit_net": -0.76027223
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9838.9859563025,
"total_value_mid": 9999.7919263025,
"total_value_exit_net": 9999.671321825,
"total_value": 9999.7919263025,
"base_cost_quote": 161.0551508375,
"unrealized_pnl_exit_net": -0.369785315
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9838.9755530875,
"total_value_mid": 10000.0220030875,
"total_value_exit_net": 9999.90121825,
"total_value": 10000.0220030875,
"base_cost_quote": 161.0758463475,
"unrealized_pnl_exit_net": -0.150181185
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9838.9755530875,
"total_value_mid": 9999.4658930875,
"total_value_exit_net": 9999.3455253325,
"total_value": 9999.4658930875,
"base_cost_quote": 161.0758463475,
"unrealized_pnl_exit_net": -0.7058741025
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 225.5,
"quote_asset_bal": 9758.73949216,
"total_value_mid": 10000.00194216,
"total_value_exit_net": 9999.8209953225,
"total_value": 10000.00194216,
"base_cost_quote": 241.332563775,
"unrealized_pnl_exit_net": -0.2510606125
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 225.5,
"quote_asset_bal": 9758.738498815,
"total_value_mid": 10000.339198815,
"total_value_exit_net": 10000.15799829,
"total_value": 10000.339198815,
"base_cost_quote": 241.343852235,
"unrealized_pnl_exit_net": 0.07564724
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 406.6,
"quote_asset_bal": 9563.204607785,
"total_value_mid": 10000.380927785,
"total_value_exit_net": 10000.053045545,
"total_value": 10000.380927785,
"base_cost_quote": 436.90851581,
"unrealized_pnl_exit_net": -0.06007805
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 406.6,
"quote_asset_bal": 9563.204607785,
"total_value_mid": 10000.502907785,
"total_value_exit_net": 10000.17493406,
"total_value": 10000.502907785,
"base_cost_quote": 436.90851581,
"unrealized_pnl_exit_net": 0.061810465
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 406.6,
"quote_asset_bal": 9563.204607785,
"total_value_mid": 10000.706207785,
"total_value_exit_net": 10000.378081585,
"total_value": 10000.706207785,
"base_cost_quote": 436.90851581,
"unrealized_pnl_exit_net": 0.26495799
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 397.3,
"quote_asset_bal": 9573.2234180375,
"total_value_mid": 10000.8374080375,
"total_value_exit_net": 10000.516697545,
"total_value": 10000.8374080375,
"base_cost_quote": 426.899794895,
"unrealized_pnl_exit_net": 0.3934846125
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 397.3,
"quote_asset_bal": 9573.2234180375,
"total_value_mid": 9999.9633480375,
"total_value_exit_net": 9999.64329309,
"total_value": 9999.9633480375,
"base_cost_quote": 426.899794895,
"unrealized_pnl_exit_net": -0.4799198425
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 397.3,
"quote_asset_bal": 9573.2234180375,
"total_value_mid": 10000.4401080375,
"total_value_exit_net": 10000.11969552,
"total_value": 10000.4401080375,
"base_cost_quote": 426.899794895,
"unrealized_pnl_exit_net": -0.0035174125
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 397.3,
"quote_asset_bal": 9573.2234180375,
"total_value_mid": 10001.5128180375,
"total_value_exit_net": 10001.1916009875,
"total_value": 10001.5128180375,
"base_cost_quote": 426.899794895,
"unrealized_pnl_exit_net": 1.068388055
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 397.3,
"quote_asset_bal": 9573.2234180375,
"total_value_mid": 10000.6784880375,
"total_value_exit_net": 10000.357896735,
"total_value": 10000.6784880375,
"base_cost_quote": 426.899794895,
"unrealized_pnl_exit_net": 0.2346838025
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 406.7,
"quote_asset_bal": 9563.1117799925,
"total_value_mid": 10000.5582999925,
"total_value_exit_net": 10000.2302151025,
"total_value": 10000.5582999925,
"base_cost_quote": 437.01143294,
"unrealized_pnl_exit_net": 0.10700217
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 406.7,
"quote_asset_bal": 9563.1117799925,
"total_value_mid": 10000.8429899925,
"total_value_exit_net": 10000.514691585,
"total_value": 10000.8429899925,
"base_cost_quote": 437.01143294,
"unrealized_pnl_exit_net": 0.3914786525
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 378.7,
"quote_asset_bal": 9593.3065569125,
"total_value_mid": 10001.7345069125,
"total_value_exit_net": 10001.42818595,
"total_value": 10001.7345069125,
"base_cost_quote": 406.84698656,
"unrealized_pnl_exit_net": 1.2746424775
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 411.2,
"quote_asset_bal": 9558.11356797,
"total_value_mid": 10002.53852797,
"total_value_exit_net": 10002.20520925,
"total_value": 10002.53852797,
"base_cost_quote": 442.05000904,
"unrealized_pnl_exit_net": 2.04163224
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 563.7,
"quote_asset_bal": 9392.23161683,
"total_value_mid": 10006.49550683,
"total_value_exit_net": 10006.0348089125,
"total_value": 10006.49550683,
"base_cost_quote": 607.99721617,
"unrealized_pnl_exit_net": 5.8059759125
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 605.1,
"quote_asset_bal": 9347.18253657,
"total_value_mid": 10004.44215657,
"total_value_exit_net": 10003.949211855,
"total_value": 10004.44215657,
"base_cost_quote": 653.057165805,
"unrealized_pnl_exit_net": 3.70950948
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 605.1,
"quote_asset_bal": 9347.204299035,
"total_value_mid": 10005.371569035,
"total_value_exit_net": 10004.8779435825,
"total_value": 10005.371569035,
"base_cost_quote": 653.057165805,
"unrealized_pnl_exit_net": 4.6164787425
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 605.1,
"quote_asset_bal": 9347.204299035,
"total_value_mid": 10004.826979035,
"total_value_exit_net": 10004.333762025,
"total_value": 10004.826979035,
"base_cost_quote": 653.057165805,
"unrealized_pnl_exit_net": 4.072297185
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 605.1,
"quote_asset_bal": 9347.204299035,
"total_value_mid": 10005.432079035,
"total_value_exit_net": 10004.9384082,
"total_value": 10005.432079035,
"base_cost_quote": 653.057165805,
"unrealized_pnl_exit_net": 4.67694336
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 818.2,
"quote_asset_bal": 9112.6713904925,
"total_value_mid": 10016.0460104925,
"total_value_exit_net": 10015.3684795275,
"total_value": 10016.0460104925,
"base_cost_quote": 889.41888424,
"unrealized_pnl_exit_net": 13.278204795
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 941.4,
"quote_asset_bal": 8977.2697730775,
"total_value_mid": 10006.3141130775,
"total_value_exit_net": 10005.5423298225,
"total_value": 10006.3141130775,
"base_cost_quote": 1025.442325365,
"unrealized_pnl_exit_net": 2.83023138
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 987.6,
"quote_asset_bal": 8926.9547867775,
"total_value_mid": 9997.4144267775,
"total_value_exit_net": 9996.6115820475,
"total_value": 9997.4144267775,
"base_cost_quote": 1075.789337325,
"unrealized_pnl_exit_net": -6.132542055
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 1006.2,
"quote_asset_bal": 8906.8200770625,
"total_value_mid": 9994.9247570625,
"total_value_exit_net": 9994.1086785525,
"total_value": 9994.9247570625,
"base_cost_quote": 1095.92404704,
"unrealized_pnl_exit_net": -8.63544555
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 996.9,
"quote_asset_bal": 8916.898362675,
"total_value_mid": 9997.537962675,
"total_value_exit_net": 9996.727482975,
"total_value": 9997.537962675,
"base_cost_quote": 1085.8566921825,
"unrealized_pnl_exit_net": -6.0275718825
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 996.9,
"quote_asset_bal": 8916.898362675,
"total_value_mid": 9997.637652675,
"total_value_exit_net": 9996.8270982075,
"total_value": 9997.637652675,
"base_cost_quote": 1085.8566921825,
"unrealized_pnl_exit_net": -5.92795665
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 996.9,
"quote_asset_bal": 8916.898362675,
"total_value_mid": 9999.033312675,
"total_value_exit_net": 9998.2217114625,
"total_value": 9999.033312675,
"base_cost_quote": 1085.8566921825,
"unrealized_pnl_exit_net": -4.533343395
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 987.6,
"quote_asset_bal": 8927.012615805,
"total_value_mid": 10000.138775805,
"total_value_exit_net": 9999.333931185,
"total_value": 10000.138775805,
"base_cost_quote": 1075.7642084925,
"unrealized_pnl_exit_net": -3.4428931125
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 987.6,
"quote_asset_bal": 8927.012615805,
"total_value_mid": 9999.546215805,
"total_value_exit_net": 9998.741815605,
"total_value": 9999.546215805,
"base_cost_quote": 1075.7642084925,
"unrealized_pnl_exit_net": -4.0350086925
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 1006.2,
"quote_asset_bal": 8906.853707955,
"total_value_mid": 9994.354667955,
"total_value_exit_net": 9993.539042235,
"total_value": 9994.354667955,
"base_cost_quote": 1095.9231163425,
"unrealized_pnl_exit_net": -9.2377820625
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 1015.5,
"quote_asset_bal": 8896.8026625075,
"total_value_mid": 9996.5891625075,
"total_value_exit_net": 9995.7643226325,
"total_value": 9996.5891625075,
"base_cost_quote": 1105.9951246875,
"unrealized_pnl_exit_net": -7.0334645625
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 1006.2,
"quote_asset_bal": 8906.9129747625,
"total_value_mid": 9999.2436947625,
"total_value_exit_net": 9998.4244467225,
"total_value": 9999.2436947625,
"base_cost_quote": 1095.9175321575,
"unrealized_pnl_exit_net": -4.4060601975
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 1006.2,
"quote_asset_bal": 8906.9129747625,
"total_value_mid": 9998.7405947625,
"total_value_exit_net": 9997.9217240475,
"total_value": 9998.7405947625,
"base_cost_quote": 1095.9175321575,
"unrealized_pnl_exit_net": -4.9087828725
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 1006.2,
"quote_asset_bal": 8906.9129747625,
"total_value_mid": 9998.4387347625,
"total_value_exit_net": 9997.6200904425,
"total_value": 9998.4387347625,
"base_cost_quote": 1095.9175321575,
"unrealized_pnl_exit_net": -5.2104164775
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 996.8,
"quote_asset_bal": 8917.1167242975,
"total_value_mid": 10003.8280842975,
"total_value_exit_net": 10003.0130507775,
"total_value": 10003.8280842975,
"base_cost_quote": 1085.7355213725,
"unrealized_pnl_exit_net": 0.1608051075
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 969.2,
"quote_asset_bal": 8947.3015261675,
"total_value_mid": 10003.7295261675,
"total_value_exit_net": 10002.9372051675,
"total_value": 10003.7295261675,
"base_cost_quote": 1055.6040997425,
"unrealized_pnl_exit_net": 0.0315792575
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 987.6,
"quote_asset_bal": 8927.2556291475,
"total_value_mid": 10002.9495491475,
"total_value_exit_net": 10002.1427787075,
"total_value": 10002.9495491475,
"base_cost_quote": 1075.6714589825,
"unrealized_pnl_exit_net": -0.7843094225
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 987.6,
"quote_asset_bal": 8927.2556291475,
"total_value_mid": 10002.4557491475,
"total_value_exit_net": 10001.6493490575,
"total_value": 10002.4557491475,
"base_cost_quote": 1075.6714589825,
"unrealized_pnl_exit_net": -1.2777390725
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 1034.1,
"quote_asset_bal": 8876.905825095,
"total_value_mid": 9991.975855095,
"total_value_exit_net": 9991.1395525725,
"total_value": 9991.975855095,
"base_cost_quote": 1126.021263035,
"unrealized_pnl_exit_net": -11.7875355575
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 1052.7,
"quote_asset_bal": 8856.854878155,
"total_value_mid": 9991.770748155,
"total_value_exit_net": 9990.9195612525,
"total_value": 9991.770748155,
"base_cost_quote": 1146.072209975,
"unrealized_pnl_exit_net": -12.0075268775
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 1052.7,
"quote_asset_bal": 8856.854878155,
"total_value_mid": 9991.033858155,
"total_value_exit_net": 9990.18322392,
"total_value": 9991.033858155,
"base_cost_quote": 1146.072209975,
"unrealized_pnl_exit_net": -12.74386421
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 1104.3,
"quote_asset_bal": 8801.382555,
"total_value_mid": 9990.051075,
"total_value_exit_net": 9989.15957361,
"total_value": 9990.051075,
"base_cost_quote": 1201.554750695,
"unrealized_pnl_exit_net": -13.777732085
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 1113.7,
"quote_asset_bal": 8791.32439003,
"total_value_mid": 9986.32449003,
"total_value_exit_net": 9985.428239955,
"total_value": 9986.32449003,
"base_cost_quote": 1211.62311631,
"unrealized_pnl_exit_net": -17.519266385
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 1104.4,
"quote_asset_bal": 8801.38167376,
"total_value_mid": 9994.79631376,
"total_value_exit_net": 9993.90125278,
"total_value": 9994.79631376,
"base_cost_quote": 1201.6171874875,
"unrealized_pnl_exit_net": -9.0976084675
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 1104.3,
"quote_asset_bal": 8801.4499761275,
"total_value_mid": 9987.2473161275,
"total_value_exit_net": 9986.3579681225,
"total_value": 9987.2473161275,
"base_cost_quote": 1201.559113965,
"unrealized_pnl_exit_net": -16.65112197
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 1188.9,
"quote_asset_bal": 8710.8328041825,
"total_value_mid": 9981.7669041825,
"total_value_exit_net": 9980.8137036075,
"total_value": 9981.7669041825,
"base_cost_quote": 1292.17628591,
"unrealized_pnl_exit_net": -22.195386485
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 1188.9,
"quote_asset_bal": 8710.8328041825,
"total_value_mid": 9982.2424641825,
"total_value_exit_net": 9981.2889069375,
"total_value": 9982.2424641825,
"base_cost_quote": 1292.17628591,
"unrealized_pnl_exit_net": -21.720183155
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 1179.5,
"quote_asset_bal": 8720.8879571575,
"total_value_mid": 9983.6606571575,
"total_value_exit_net": 9982.7135776325,
"total_value": 9983.6606571575,
"base_cost_quote": 1282.13143792,
"unrealized_pnl_exit_net": -20.305817445
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 1160.7,
"quote_asset_bal": 8741.0330170225,
"total_value_mid": 9986.4641170225,
"total_value_exit_net": 9985.5300436975,
"total_value": 9986.4641170225,
"base_cost_quote": 1262.006935855,
"unrealized_pnl_exit_net": -17.50990918
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 1151.3,
"quote_asset_bal": 8751.1640747625,
"total_value_mid": 9987.0846247625,
"total_value_exit_net": 9986.15768435,
"total_value": 9987.0846247625,
"base_cost_quote": 1251.92728178,
"unrealized_pnl_exit_net": -16.9336721925
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 1151.3,
"quote_asset_bal": 8751.1640747625,
"total_value_mid": 9987.5451447625,
"total_value_exit_net": 9986.61785896,
"total_value": 9987.5451447625,
"base_cost_quote": 1251.92728178,
"unrealized_pnl_exit_net": -16.4734975825
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 1160.7,
"quote_asset_bal": 8741.1049319575,
"total_value_mid": 9983.5182119575,
"total_value_exit_net": 9982.5864019975,
"total_value": 9983.5182119575,
"base_cost_quote": 1262.006935855,
"unrealized_pnl_exit_net": -20.525465815
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 1170.1,
"quote_asset_bal": 8731.0431512775,
"total_value_mid": 9981.7630412775,
"total_value_exit_net": 9980.82500136,
"total_value": 9981.7630412775,
"base_cost_quote": 1272.068716535,
"unrealized_pnl_exit_net": -22.2868664525
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 1170.1,
"quote_asset_bal": 8731.0431512775,
"total_value_mid": 9982.3480912775,
"total_value_exit_net": 9981.4096125725,
"total_value": 9982.3480912775,
"base_cost_quote": 1272.068716535,
"unrealized_pnl_exit_net": -21.70225524
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 1170.1,
"quote_asset_bal": 8731.0431512775,
"total_value_mid": 9982.3480912775,
"total_value_exit_net": 9981.4096125725,
"total_value": 9982.3480912775,
"base_cost_quote": 1272.068716535,
"unrealized_pnl_exit_net": -21.70225524
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 1132.6,
"quote_asset_bal": 8771.3782366025,
"total_value_mid": 9986.6580366025,
"total_value_exit_net": 9985.7465767525,
"total_value": 9986.6580366025,
"base_cost_quote": 1231.7846561325,
"unrealized_pnl_exit_net": -17.4163159825
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 1160.8,
"quote_asset_bal": 8741.1778432825,
"total_value_mid": 9983.4660032825,
"total_value_exit_net": 9982.5342871625,
"total_value": 9983.4660032825,
"base_cost_quote": 1261.9850494525,
"unrealized_pnl_exit_net": -20.6286055725
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 1160.8,
"quote_asset_bal": 8741.1778432825,
"total_value_mid": 9981.3765632825,
"total_value_exit_net": 9980.4464142425,
"total_value": 9981.3765632825,
"base_cost_quote": 1261.9850494525,
"unrealized_pnl_exit_net": -22.7164784925
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 1151.4,
"quote_asset_bal": 8751.2433285025,
"total_value_mid": 9984.2775885025,
"total_value_exit_net": 9983.3528128075,
"total_value": 9984.2775885025,
"base_cost_quote": 1251.9298537075,
"unrealized_pnl_exit_net": -19.8203694025
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 1142,
"quote_asset_bal": 8761.3210245575,
"total_value_mid": 9985.2024245575,
"total_value_exit_net": 9984.2845135075,
"total_value": 9985.2024245575,
"base_cost_quote": 1241.8624287975,
"unrealized_pnl_exit_net": -18.8989398475
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 1142,
"quote_asset_bal": 8761.3210245575,
"total_value_mid": 9984.0604245575,
"total_value_exit_net": 9983.1433700075,
"total_value": 9984.0604245575,
"base_cost_quote": 1241.8624287975,
"unrealized_pnl_exit_net": -20.0400833475
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 1142,
"quote_asset_bal": 8761.3011776325,
"total_value_mid": 9988.2659776325,
"total_value_exit_net": 9987.3457540325,
"total_value": 9988.2659776325,
"base_cost_quote": 1241.8925313575,
"unrealized_pnl_exit_net": -15.8479549575
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 1160.6,
"quote_asset_bal": 8741.3168067825,
"total_value_mid": 9987.5690867825,
"total_value_exit_net": 9986.6343975725,
"total_value": 9987.5690867825,
"base_cost_quote": 1261.9379541575,
"unrealized_pnl_exit_net": -16.6203633675
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 1132.5,
"quote_asset_bal": 8771.6059830925,
"total_value_mid": 9988.4772330925,
"total_value_exit_net": 9987.564579655,
"total_value": 9988.4772330925,
"base_cost_quote": 1231.6996123975,
"unrealized_pnl_exit_net": -15.741015835
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 1141.8,
"quote_asset_bal": 8761.576271455,
"total_value_mid": 9992.779211455,
"total_value_exit_net": 9991.85580925,
"total_value": 9992.779211455,
"base_cost_quote": 1241.7697593475,
"unrealized_pnl_exit_net": -11.4902215525
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 1095.3,
"quote_asset_bal": 8812.0264127425,
"total_value_mid": 9994.6218227425,
"total_value_exit_net": 9993.734876185,
"total_value": 9994.6218227425,
"base_cost_quote": 1191.4153018075,
"unrealized_pnl_exit_net": -9.706838365
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.9244850625,
"total_value_mid": 9996.3845550625,
"total_value_exit_net": 9995.48121001,
"total_value": 9996.3845550625,
"base_cost_quote": 1211.5574571025,
"unrealized_pnl_exit_net": -8.000732155
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.9244850625,
"total_value_mid": 9996.8301150625,
"total_value_exit_net": 9995.92643584,
"total_value": 9996.8301150625,
"base_cost_quote": 1211.5574571025,
"unrealized_pnl_exit_net": -7.555506325
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.9354353475,
"total_value_mid": 9996.3955053475,
"total_value_exit_net": 9995.492160295,
"total_value": 9996.3955053475,
"base_cost_quote": 1211.5574571025,
"unrealized_pnl_exit_net": -8.000732155
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.91381122,
"total_value_mid": 9996.81944122,
"total_value_exit_net": 9995.9157619975,
"total_value": 9996.81944122,
"base_cost_quote": 1211.590031515,
"unrealized_pnl_exit_net": -7.5880807375
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.91381122,
"total_value_mid": 9995.48276122,
"total_value_exit_net": 9994.5800845075,
"total_value": 9995.48276122,
"base_cost_quote": 1211.590031515,
"unrealized_pnl_exit_net": -8.9237582275
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 1113.9,
"quote_asset_bal": 8791.91381122,
"total_value_mid": 9997.15361122,
"total_value_exit_net": 9996.24968137,
"total_value": 9997.15361122,
"base_cost_quote": 1211.590031515,
"unrealized_pnl_exit_net": -7.254161365
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 1095.2,
"quote_asset_bal": 8812.173076715,
"total_value_mid": 10001.012676715,
"total_value_exit_net": 10000.121047015,
"total_value": 10001.012676715,
"base_cost_quote": 1191.374401155,
"unrealized_pnl_exit_net": -3.426430855
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 1095.2,
"quote_asset_bal": 8812.183941905,
"total_value_mid": 10005.075781905,
"total_value_exit_net": 10004.181113025,
"total_value": 10005.075781905,
"base_cost_quote": 1191.374401155,
"unrealized_pnl_exit_net": 0.622769965
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 828,
"quote_asset_bal": 9107.5289564025,
"total_value_mid": 10013.3609564025,
"total_value_exit_net": 10012.6815824025,
"total_value": 10013.3609564025,
"base_cost_quote": 899.700849935,
"unrealized_pnl_exit_net": 5.451776065
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 847.1,
"quote_asset_bal": 9086.9901873075,
"total_value_mid": 10009.6515073075,
"total_value_exit_net": 10008.9595113175,
"total_value": 10009.6515073075,
"base_cost_quote": 919.709285015,
"unrealized_pnl_exit_net": 2.260038995
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 865.5,
"quote_asset_bal": 9066.9993180175,
"total_value_mid": 10009.6153680175,
"total_value_exit_net": 10008.90840598,
"total_value": 10009.6153680175,
"base_cost_quote": 939.753627005,
"unrealized_pnl_exit_net": 2.1554609575
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 884.1,
"quote_asset_bal": 9046.7785227225,
"total_value_mid": 10010.0054727225,
"total_value_exit_net": 10009.28305251,
"total_value": 10010.0054727225,
"base_cost_quote": 959.98512926,
"unrealized_pnl_exit_net": 2.5194005275
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 865.6,
"quote_asset_bal": 9066.926144895,
"total_value_mid": 10012.507584895,
"total_value_exit_net": 10011.798398815,
"total_value": 10012.507584895,
"base_cost_quote": 939.8697640425,
"unrealized_pnl_exit_net": 5.0024898775
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 874.8,
"quote_asset_bal": 9056.890623895,
"total_value_mid": 10010.247663895,
"total_value_exit_net": 10009.532646115,
"total_value": 10010.247663895,
"base_cost_quote": 949.9052850425,
"unrealized_pnl_exit_net": 2.7367371775
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 884,
"quote_asset_bal": 9046.867992555,
"total_value_mid": 10008.748392555,
"total_value_exit_net": 10008.026982255,
"total_value": 10008.748392555,
"base_cost_quote": 959.9279163825,
"unrealized_pnl_exit_net": 1.2310733175
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 884,
"quote_asset_bal": 9046.867992555,
"total_value_mid": 10010.074392555,
"total_value_exit_net": 10009.351987755,
"total_value": 10010.074392555,
"base_cost_quote": 959.9279163825,
"unrealized_pnl_exit_net": 2.5560788175
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 865.6,
"quote_asset_bal": 9066.919747905,
"total_value_mid": 10017.608227905,
"total_value_exit_net": 10016.895211545,
"total_value": 10017.608227905,
"base_cost_quote": 939.9296088925,
"unrealized_pnl_exit_net": 10.0458547475
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 902.4,
"quote_asset_bal": 9026.707289425,
"total_value_mid": 10008.428249425,
"total_value_exit_net": 10007.691958705,
"total_value": 10008.428249425,
"base_cost_quote": 980.1527136125,
"unrealized_pnl_exit_net": 0.8319556675
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 930.2,
"quote_asset_bal": 8996.5116325675,
"total_value_mid": 10006.6158125675,
"total_value_exit_net": 10005.8582344325,
"total_value": 10006.6158125675,
"base_cost_quote": 1010.38085773,
"unrealized_pnl_exit_net": -1.034255865
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 958.1,
"quote_asset_bal": 8966.238834985,
"total_value_mid": 10003.765324985,
"total_value_exit_net": 10002.9871801175,
"total_value": 10003.765324985,
"base_cost_quote": 1040.6536553125,
"unrealized_pnl_exit_net": -3.90531018
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 948.8,
"quote_asset_bal": 8976.334777345,
"total_value_mid": 10005.403257345,
"total_value_exit_net": 10004.631455985,
"total_value": 10005.403257345,
"base_cost_quote": 1030.5686172025,
"unrealized_pnl_exit_net": -2.2719385625
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 948.8,
"quote_asset_bal": 8976.334777345,
"total_value_mid": 10005.782777345,
"total_value_exit_net": 10005.010691345,
"total_value": 10005.782777345,
"base_cost_quote": 1030.5686172025,
"unrealized_pnl_exit_net": -1.8927032025
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 948.8,
"quote_asset_bal": 8976.334777345,
"total_value_mid": 10007.111097345,
"total_value_exit_net": 10006.338015105,
"total_value": 10007.111097345,
"base_cost_quote": 1030.5686172025,
"unrealized_pnl_exit_net": -0.5653794425
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 939.5,
"quote_asset_bal": 8986.4483764525,
"total_value_mid": 10007.1211764525,
"total_value_exit_net": 10006.3556718525,
"total_value": 10007.1211764525,
"base_cost_quote": 1020.46589584,
"unrealized_pnl_exit_net": -0.55860044
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 967.4,
"quote_asset_bal": 8956.214668165,
"total_value_mid": 10002.651248165,
"total_value_exit_net": 10001.86642073,
"total_value": 10002.651248165,
"base_cost_quote": 1050.6996041275,
"unrealized_pnl_exit_net": -5.0478515625
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 986,
"quote_asset_bal": 8936.092988215,
"total_value_mid": 10001.367388215,
"total_value_exit_net": 10000.568432415,
"total_value": 10001.367388215,
"base_cost_quote": 1070.8212840775,
"unrealized_pnl_exit_net": -6.3458398775
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 986,
"quote_asset_bal": 8936.103928735,
"total_value_mid": 10002.955928735,
"total_value_exit_net": 10002.155789735,
"total_value": 10002.955928735,
"base_cost_quote": 1070.8212840775,
"unrealized_pnl_exit_net": -4.7694230775
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 1004.6,
"quote_asset_bal": 8916.03230929,
"total_value_mid": 10000.19662929,
"total_value_exit_net": 9999.38350605,
"total_value": 10000.19662929,
"base_cost_quote": 1090.902944035,
"unrealized_pnl_exit_net": -7.551747275
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 967.4,
"quote_asset_bal": 8956.401625475,
"total_value_mid": 10005.546925475,
"total_value_exit_net": 10004.7600665,
"total_value": 10005.546925475,
"base_cost_quote": 1050.618753535,
"unrealized_pnl_exit_net": -2.26031251
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 976.7,
"quote_asset_bal": 8946.31788704,
"total_value_mid": 10006.42806704,
"total_value_exit_net": 10005.632984405,
"total_value": 10006.42806704,
"base_cost_quote": 1060.72426699,
"unrealized_pnl_exit_net": -1.409169625
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 958.1,
"quote_asset_bal": 8966.6217957175,
"total_value_mid": 10009.1304057175,
"total_value_exit_net": 10008.34852426,
"total_value": 10009.1304057175,
"base_cost_quote": 1040.5178735525,
"unrealized_pnl_exit_net": 1.20885499
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 949,
"quote_asset_bal": 8976.8717690525,
"total_value_mid": 10010.5225690525,
"total_value_exit_net": 10009.7473309525,
"total_value": 10010.5225690525,
"base_cost_quote": 1030.53496198,
"unrealized_pnl_exit_net": 2.34059992
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 976.6,
"quote_asset_bal": 8946.7687113025,
"total_value_mid": 10010.3837713025,
"total_value_exit_net": 10009.5860600075,
"total_value": 10010.3837713025,
"base_cost_quote": 1060.6488905,
"unrealized_pnl_exit_net": 2.168458205
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 967.4,
"quote_asset_bal": 8956.7974640925,
"total_value_mid": 10012.4243440925,
"total_value_exit_net": 10011.6326239325,
"total_value": 10012.4243440925,
"base_cost_quote": 1050.63086261,
"unrealized_pnl_exit_net": 4.20429723
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 939.8,
"quote_asset_bal": 8987.0818101925,
"total_value_mid": 10012.0276901925,
"total_value_exit_net": 10011.2589807825,
"total_value": 10012.0276901925,
"base_cost_quote": 1020.42118233,
"unrealized_pnl_exit_net": 3.75598826
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 939.8,
"quote_asset_bal": 8987.0818101925,
"total_value_mid": 10012.0276901925,
"total_value_exit_net": 10011.2589807825,
"total_value": 10012.0276901925,
"base_cost_quote": 1020.42118233,
"unrealized_pnl_exit_net": 3.75598826
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 949,
"quote_asset_bal": 8977.0554960925,
"total_value_mid": 10010.5164960925,
"total_value_exit_net": 10009.7414003425,
"total_value": 10010.5164960925,
"base_cost_quote": 1030.44749643,
"unrealized_pnl_exit_net": 2.23840782
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 949,
"quote_asset_bal": 8977.0554960925,
"total_value_mid": 10012.3195960925,
"total_value_exit_net": 10011.5431480175,
"total_value": 10012.3195960925,
"base_cost_quote": 1030.44749643,
"unrealized_pnl_exit_net": 4.040155495
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 930.6,
"quote_asset_bal": 8997.1396616625,
"total_value_mid": 10013.5409816625,
"total_value_exit_net": 10012.7786806725,
"total_value": 10013.5409816625,
"base_cost_quote": 1010.38474064,
"unrealized_pnl_exit_net": 5.25427837
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 921.4,
"quote_asset_bal": 9007.2279683525,
"total_value_mid": 10019.4780083525,
"total_value_exit_net": 10018.7188208225,
"total_value": 10019.4780083525,
"base_cost_quote": 1000.33909205,
"unrealized_pnl_exit_net": 11.15176042
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 921.3,
"quote_asset_bal": 9007.28165417,
"total_value_mid": 10020.71165417,
"total_value_exit_net": 10019.95158167,
"total_value": 10020.71165417,
"base_cost_quote": 1000.2069229975,
"unrealized_pnl_exit_net": 12.4630045025
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 930.7,
"quote_asset_bal": 8997.03704973,
"total_value_mid": 10016.61889973,
"total_value_exit_net": 10015.8542133425,
"total_value": 10016.61889973,
"base_cost_quote": 1010.3728617375,
"unrealized_pnl_exit_net": 8.444301875
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 921.5,
"quote_asset_bal": 9007.13236253,
"total_value_mid": 10022.71751253,
"total_value_exit_net": 10021.9558236675,
"total_value": 10022.71751253,
"base_cost_quote": 1000.209655045,
"unrealized_pnl_exit_net": 14.6138060925
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 930.6,
"quote_asset_bal": 8997.123961855,
"total_value_mid": 10020.877021855,
"total_value_exit_net": 10020.10920706,
"total_value": 10020.877021855,
"base_cost_quote": 1010.21805572,
"unrealized_pnl_exit_net": 12.767189485
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 921.6,
"quote_asset_bal": 9007.032724705,
"total_value_mid": 10022.267284705,
"total_value_exit_net": 10021.505858785,
"total_value": 10022.267284705,
"base_cost_quote": 1000.209655045,
"unrealized_pnl_exit_net": 14.263479035
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 903.2,
"quote_asset_bal": 9027.30851545,
"total_value_mid": 10027.33155545,
"total_value_exit_net": 10026.58153817,
"total_value": 10027.33155545,
"base_cost_quote": 980.205623265,
"unrealized_pnl_exit_net": 19.067399455
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 898.4,
"quote_asset_bal": 9032.5224469925,
"total_value_mid": 10031.5432469925,
"total_value_exit_net": 10030.7939813925,
"total_value": 10031.5432469925,
"base_cost_quote": 975.299666555,
"unrealized_pnl_exit_net": 22.971867845
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 964.9,
"quote_asset_bal": 8958.1896146325,
"total_value_mid": 10034.5355646325,
"total_value_exit_net": 10033.72830517,
"total_value": 10034.5355646325,
"base_cost_quote": 1050.4888261625,
"unrealized_pnl_exit_net": 25.049864375
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 974,
"quote_asset_bal": 8948.0755747875,
"total_value_mid": 10029.9947747875,
"total_value_exit_net": 10029.1833353875,
"total_value": 10029.9947747875,
"base_cost_quote": 1060.6028660075,
"unrealized_pnl_exit_net": 20.5048945925
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 1018.8,
"quote_asset_bal": 8898.0526670225,
"total_value_mid": 10037.8861070225,
"total_value_exit_net": 10037.0312319425,
"total_value": 10037.8861070225,
"base_cost_quote": 1110.7911590175,
"unrealized_pnl_exit_net": 28.1874059025
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 1018.8,
"quote_asset_bal": 8898.0526670225,
"total_value_mid": 10038.5992670225,
"total_value_exit_net": 10037.7438570725,
"total_value": 10038.5992670225,
"base_cost_quote": 1110.7911590175,
"unrealized_pnl_exit_net": 28.9000310325
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 1059.7,
"quote_asset_bal": 8851.86683334,
"total_value_mid": 10039.79053334,
"total_value_exit_net": 10038.899590565,
"total_value": 10039.79053334,
"base_cost_quote": 1160.8107556,
"unrealized_pnl_exit_net": 26.222001625
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 1095.7,
"quote_asset_bal": 8811.612965565,
"total_value_mid": 10033.099325565,
"total_value_exit_net": 10032.183210795,
"total_value": 10033.099325565,
"base_cost_quote": 1201.064623375,
"unrealized_pnl_exit_net": 19.505621855
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 1095.7,
"quote_asset_bal": 8811.60058134,
"total_value_mid": 10033.96350134,
"total_value_exit_net": 10033.04672915,
"total_value": 10033.96350134,
"base_cost_quote": 1201.08714025,
"unrealized_pnl_exit_net": 20.35900756
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 1122.8,
"quote_asset_bal": 8781.4438307275,
"total_value_mid": 10028.9869107275,
"total_value_exit_net": 10028.0512534175,
"total_value": 10028.9869107275,
"base_cost_quote": 1231.2438908625,
"unrealized_pnl_exit_net": 15.3635318275
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 1141,
"quote_asset_bal": 8761.284052225,
"total_value_mid": 10023.572352225,
"total_value_exit_net": 10022.625636,
"total_value": 10023.572352225,
"base_cost_quote": 1251.403669365,
"unrealized_pnl_exit_net": 9.93791441
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 1141,
"quote_asset_bal": 8761.284052225,
"total_value_mid": 10020.833952225,
"total_value_exit_net": 10019.8892898,
"total_value": 10020.833952225,
"base_cost_quote": 1251.403669365,
"unrealized_pnl_exit_net": 7.20156821
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 1195.8,
"quote_asset_bal": 8701.01183779,
"total_value_mid": 10016.27225779,
"total_value_exit_net": 10015.285812475,
"total_value": 10016.27225779,
"base_cost_quote": 1311.69711556,
"unrealized_pnl_exit_net": 2.576859125
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 1195.9,
"quote_asset_bal": 8700.9003383775,
"total_value_mid": 10019.3800883775,
"total_value_exit_net": 10018.391228565,
"total_value": 10019.3800883775,
"base_cost_quote": 1311.7089544325,
"unrealized_pnl_exit_net": 5.781935755
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 1177.9,
"quote_asset_bal": 8720.7592330275,
"total_value_mid": 10023.5166330275,
"total_value_exit_net": 10022.5395649775,
"total_value": 10023.5166330275,
"base_cost_quote": 1291.6502616875,
"unrealized_pnl_exit_net": 10.1300702625
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 1177.9,
"quote_asset_bal": 8720.7592330275,
"total_value_mid": 10021.2786230275,
"total_value_exit_net": 10020.303233485,
"total_value": 10021.2786230275,
"base_cost_quote": 1291.6502616875,
"unrealized_pnl_exit_net": 7.89373877
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 1169,
"quote_asset_bal": 8730.6116072375,
"total_value_mid": 10024.2270072375,
"total_value_exit_net": 10023.2567956875,
"total_value": 10024.2270072375,
"base_cost_quote": 1281.59723757,
"unrealized_pnl_exit_net": 11.04795088
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 1142.3,
"quote_asset_bal": 8760.345113225,
"total_value_mid": 10027.955423225,
"total_value_exit_net": 10027.0047154925,
"total_value": 10027.955423225,
"base_cost_quote": 1251.48146767,
"unrealized_pnl_exit_net": 15.1781345975
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 1219.9,
"quote_asset_bal": 8674.1747286225,
"total_value_mid": 10019.4804486225,
"total_value_exit_net": 10018.4714693325,
"total_value": 10019.4804486225,
"base_cost_quote": 1336.8565009575,
"unrealized_pnl_exit_net": 7.4402397525
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 1220,
"quote_asset_bal": 8674.061875585,
"total_value_mid": 10021.917875585,
"total_value_exit_net": 10020.906983585,
"total_value": 10021.917875585,
"base_cost_quote": 1336.8692505125,
"unrealized_pnl_exit_net": 9.9758574875
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 1220,
"quote_asset_bal": 8674.061875585,
"total_value_mid": 10023.503875585,
"total_value_exit_net": 10022.491794085,
"total_value": 10023.503875585,
"base_cost_quote": 1336.8692505125,
"unrealized_pnl_exit_net": 11.5606679875
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 1220,
"quote_asset_bal": 8674.061875585,
"total_value_mid": 10020.331875585,
"total_value_exit_net": 10019.322173085,
"total_value": 10020.331875585,
"base_cost_quote": 1336.8692505125,
"unrealized_pnl_exit_net": 8.3910469875
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 1229.1,
"quote_asset_bal": 8664.02433307,
"total_value_mid": 10017.87798307,
"total_value_exit_net": 10016.8625928325,
"total_value": 10017.87798307,
"base_cost_quote": 1346.9067930275,
"unrealized_pnl_exit_net": 5.931466735
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 1229.1,
"quote_asset_bal": 8664.02433307,
"total_value_mid": 10016.77179307,
"total_value_exit_net": 10015.757232475,
"total_value": 10016.77179307,
"base_cost_quote": 1346.9067930275,
"unrealized_pnl_exit_net": 4.8261063775
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 1220.1,
"quote_asset_bal": 8673.96187432,
"total_value_mid": 10024.73458432,
"total_value_exit_net": 10023.7215047875,
"total_value": 10024.73458432,
"base_cost_quote": 1336.8692505125,
"unrealized_pnl_exit_net": 12.890379955
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 1202.1,
"quote_asset_bal": 8693.89091632,
"total_value_mid": 10025.33687632,
"total_value_exit_net": 10024.33829185,
"total_value": 10025.33687632,
"base_cost_quote": 1316.7395245325,
"unrealized_pnl_exit_net": 13.7078509975
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 1193.1,
"quote_asset_bal": 8703.87342382,
"total_value_mid": 10025.94753382,
"total_value_exit_net": 10024.9559782375,
"total_value": 10025.94753382,
"base_cost_quote": 1306.6564478925,
"unrealized_pnl_exit_net": 14.426106525
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 1193.1,
"quote_asset_bal": 8703.87342382,
"total_value_mid": 10025.82822382,
"total_value_exit_net": 10024.83675772,
"total_value": 10025.82822382,
"base_cost_quote": 1306.6564478925,
"unrealized_pnl_exit_net": 14.3068860075
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 1175.1,
"quote_asset_bal": 8723.88160642,
"total_value_mid": 10031.88541642,
"total_value_exit_net": 10030.9044135625,
"total_value": 10031.88541642,
"base_cost_quote": 1286.4465818525,
"unrealized_pnl_exit_net": 20.57622529
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 1184.1,
"quote_asset_bal": 8713.871770195,
"total_value_mid": 10030.472560195,
"total_value_exit_net": 10029.4851096025,
"total_value": 10030.472560195,
"base_cost_quote": 1296.4665912275,
"unrealized_pnl_exit_net": 19.14674818
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 1166.1,
"quote_asset_bal": 8733.98030257,
"total_value_mid": 10029.05096257,
"total_value_exit_net": 10028.079659575,
"total_value": 10029.05096257,
"base_cost_quote": 1276.3986515525,
"unrealized_pnl_exit_net": 17.7007054525
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 1166.2,
"quote_asset_bal": 8733.87785747,
"total_value_mid": 10035.82353747,
"total_value_exit_net": 10034.84707821,
"total_value": 10035.82353747,
"base_cost_quote": 1276.4409832775,
"unrealized_pnl_exit_net": 24.5282374625
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 1166.2,
"quote_asset_bal": 8733.88798877,
"total_value_mid": 10035.48380877,
"total_value_exit_net": 10034.507611905,
"total_value": 10035.48380877,
"base_cost_quote": 1276.4409832775,
"unrealized_pnl_exit_net": 24.1786398575
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 1166.2,
"quote_asset_bal": 8733.88798877,
"total_value_mid": 10035.01732877,
"total_value_exit_net": 10034.041481765,
"total_value": 10035.01732877,
"base_cost_quote": 1276.4409832775,
"unrealized_pnl_exit_net": 23.7125097175
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 1166.2,
"quote_asset_bal": 8733.88798877,
"total_value_mid": 10034.43422877,
"total_value_exit_net": 10033.45881909,
"total_value": 10034.43422877,
"base_cost_quote": 1276.4409832775,
"unrealized_pnl_exit_net": 23.1298470425
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 1184.3,
"quote_asset_bal": 8713.75257778,
"total_value_mid": 10028.56243778,
"total_value_exit_net": 10027.576330385,
"total_value": 10028.56243778,
"base_cost_quote": 1296.4755979775,
"unrealized_pnl_exit_net": 17.3481546275
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 1148.3,
"quote_asset_bal": 8753.92002958,
"total_value_mid": 10038.63806958,
"total_value_exit_net": 10037.67453105,
"total_value": 10038.63806958,
"base_cost_quote": 1256.3487253775,
"unrealized_pnl_exit_net": 27.4057760925
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 1148.3,
"quote_asset_bal": 8753.96615548,
"total_value_mid": 10032.13888548,
"total_value_exit_net": 10031.1802559325,
"total_value": 10032.13888548,
"base_cost_quote": 1256.3126983775,
"unrealized_pnl_exit_net": 20.901402075
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 1148.3,
"quote_asset_bal": 8753.95581943,
"total_value_mid": 10037.18106943,
"total_value_exit_net": 10036.2186504925,
"total_value": 10037.18106943,
"base_cost_quote": 1256.3433213275,
"unrealized_pnl_exit_net": 25.919509735
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 1157.3,
"quote_asset_bal": 8743.921822705,
"total_value_mid": 10034.774242705,
"total_value_exit_net": 10033.80610339,
"total_value": 10034.774242705,
"base_cost_quote": 1266.3975563525,
"unrealized_pnl_exit_net": 23.4867243325
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 1157.3,
"quote_asset_bal": 8743.921822705,
"total_value_mid": 10036.047272705,
"total_value_exit_net": 10035.0781786175,
"total_value": 10036.047272705,
"base_cost_quote": 1266.3975563525,
"unrealized_pnl_exit_net": 24.75879956
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 1157.3,
"quote_asset_bal": 8743.921822705,
"total_value_mid": 10036.047272705,
"total_value_exit_net": 10035.0781786175,
"total_value": 10036.047272705,
"base_cost_quote": 1266.3975563525,
"unrealized_pnl_exit_net": 24.75879956
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 1166.3,
"quote_asset_bal": 8733.94364758,
"total_value_mid": 10032.73532758,
"total_value_exit_net": 10031.76123382,
"total_value": 10032.73532758,
"base_cost_quote": 1276.3959495275,
"unrealized_pnl_exit_net": 21.4216367125
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 1202.8,
"quote_asset_bal": 8693.4779305225,
"total_value_mid": 10023.4138905225,
"total_value_exit_net": 10022.4164385525,
"total_value": 10023.4138905225,
"base_cost_quote": 1316.7610406575,
"unrealized_pnl_exit_net": 12.1774673725
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 1202.8,
"quote_asset_bal": 8693.4779305225,
"total_value_mid": 10021.4894105225,
"total_value_exit_net": 10020.4934019125,
"total_value": 10021.4894105225,
"base_cost_quote": 1316.7610406575,
"unrealized_pnl_exit_net": 10.2544307325
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 1221,
"quote_asset_bal": 8673.39100662,
"total_value_mid": 10020.15400662,
"total_value_exit_net": 10019.14393437,
"total_value": 10020.15400662,
"base_cost_quote": 1336.84796456,
"unrealized_pnl_exit_net": 8.90496319
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 1239.4,
"quote_asset_bal": 8653.25006463,
"total_value_mid": 10012.74792463,
"total_value_exit_net": 10011.728301235,
"total_value": 10012.74792463,
"base_cost_quote": 1357.01015487,
"unrealized_pnl_exit_net": 1.468081735
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 1239.4,
"quote_asset_bal": 8653.25006463,
"total_value_mid": 10013.98732463,
"total_value_exit_net": 10012.966771685,
"total_value": 10013.98732463,
"base_cost_quote": 1357.01015487,
"unrealized_pnl_exit_net": 2.706552185
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 1239.4,
"quote_asset_bal": 8653.25006463,
"total_value_mid": 10013.61550463,
"total_value_exit_net": 10012.59523055,
"total_value": 10013.61550463,
"base_cost_quote": 1357.01015487,
"unrealized_pnl_exit_net": 2.33501105
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 1239.4,
"quote_asset_bal": 8653.25006463,
"total_value_mid": 10012.37610463,
"total_value_exit_net": 10011.3567601,
"total_value": 10012.37610463,
"base_cost_quote": 1357.01015487,
"unrealized_pnl_exit_net": 1.0965406
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 1257.8,
"quote_asset_bal": 8633.02987085,
"total_value_mid": 10013.08803085,
"total_value_exit_net": 10012.05298723,
"total_value": 10013.08803085,
"base_cost_quote": 1377.23034865,
"unrealized_pnl_exit_net": 1.79276773
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 1257.8,
"quote_asset_bal": 8633.02987085,
"total_value_mid": 10009.44041085,
"total_value_exit_net": 10008.408102945,
"total_value": 10009.44041085,
"base_cost_quote": 1377.23034865,
"unrealized_pnl_exit_net": -1.852116555
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 1285.4,
"quote_asset_bal": 8602.80545953,
"total_value_mid": 10009.03305953,
"total_value_exit_net": 10007.97838883,
"total_value": 10009.03305953,
"base_cost_quote": 1407.45475997,
"unrealized_pnl_exit_net": -2.28183067
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 1276.2,
"quote_asset_bal": 8612.88661299,
"total_value_mid": 10010.07037299,
"total_value_exit_net": 10009.02248517,
"total_value": 10010.07037299,
"base_cost_quote": 1397.38425275,
"unrealized_pnl_exit_net": -1.24838057
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 1276.2,
"quote_asset_bal": 8612.88661299,
"total_value_mid": 10010.83609299,
"total_value_exit_net": 10009.78763088,
"total_value": 10010.83609299,
"base_cost_quote": 1397.38425275,
"unrealized_pnl_exit_net": -0.48323486
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 1276.1,
"quote_asset_bal": 8612.98101959,
"total_value_mid": 10012.09705959,
"total_value_exit_net": 10011.04772256,
"total_value": 10012.09705959,
"base_cost_quote": 1397.31107791,
"unrealized_pnl_exit_net": 0.75562506
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 1303.8,
"quote_asset_bal": 8582.7288509025,
"total_value_mid": 10007.3911109025,
"total_value_exit_net": 10006.3226142075,
"total_value": 10007.3911109025,
"base_cost_quote": 1427.5060371575,
"unrealized_pnl_exit_net": -3.9122738525
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 1322.2,
"quote_asset_bal": 8562.6412364825,
"total_value_mid": 10002.5170364825,
"total_value_exit_net": 10001.4371296325,
"total_value": 10002.5170364825,
"base_cost_quote": 1447.5936515775,
"unrealized_pnl_exit_net": -8.7977584275
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 1359,
"quote_asset_bal": 8522.5728076825,
"total_value_mid": 10001.5725076825,
"total_value_exit_net": 10000.4632579075,
"total_value": 10001.5725076825,
"base_cost_quote": 1487.6620803775,
"unrealized_pnl_exit_net": -9.7716301525
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 1405.5,
"quote_asset_bal": 8472.1545637675,
"total_value_mid": 9996.8409637675,
"total_value_exit_net": 9995.6974489675,
"total_value": 9996.8409637675,
"base_cost_quote": 1538.1021620875,
"unrealized_pnl_exit_net": -14.5592768875
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 1396.2,
"quote_asset_bal": 8482.253294035,
"total_value_mid": 9999.364214035,
"total_value_exit_net": 9998.226380845,
"total_value": 9999.364214035,
"base_cost_quote": 1528.014331885,
"unrealized_pnl_exit_net": -12.041245075
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 1386.9,
"quote_asset_bal": 8492.3650345375,
"total_value_mid": 10000.8961645375,
"total_value_exit_net": 9999.76476619,
"total_value": 10000.8961645375,
"base_cost_quote": 1517.9134719175,
"unrealized_pnl_exit_net": -10.513740265
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 1368.5,
"quote_asset_bal": 8512.4314236375,
"total_value_mid": 10006.1491736375,
"total_value_exit_net": 10005.028885325,
"total_value": 10006.1491736375,
"base_cost_quote": 1497.8792575175,
"unrealized_pnl_exit_net": -5.28179583
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 1396.3,
"quote_asset_bal": 8482.2219435075,
"total_value_mid": 9993.9959535075,
"total_value_exit_net": 9992.862123,
"total_value": 9993.9959535075,
"base_cost_quote": 1528.0887376475,
"unrealized_pnl_exit_net": -17.448558155
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 1414.9,
"quote_asset_bal": 8462.0704812375,
"total_value_mid": 9991.1529112375,
"total_value_exit_net": 9990.006099415,
"total_value": 9991.1529112375,
"base_cost_quote": 1548.2401999175,
"unrealized_pnl_exit_net": -20.30458174
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 1470.7,
"quote_asset_bal": 8401.8227092725,
"total_value_mid": 9987.5314492725,
"total_value_exit_net": 9986.3421677175,
"total_value": 9987.5314492725,
"base_cost_quote": 1608.4879718825,
"unrealized_pnl_exit_net": -23.9685134375
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 1442.8,
"quote_asset_bal": 8431.9767167925,
"total_value_mid": 9994.6733967925,
"total_value_exit_net": 9993.5013742825,
"total_value": 9994.6733967925,
"base_cost_quote": 1578.3640859,
"unrealized_pnl_exit_net": -16.83942841
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 1433.5,
"quote_asset_bal": 8442.0503558925,
"total_value_mid": 9985.3564558925,
"total_value_exit_net": 9984.1989763175,
"total_value": 9985.3564558925,
"base_cost_quote": 1568.30138453,
"unrealized_pnl_exit_net": -26.152764105
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 1442.8,
"quote_asset_bal": 8432.0062684725,
"total_value_mid": 9988.0660684725,
"total_value_exit_net": 9986.8990236225,
"total_value": 9988.0660684725,
"base_cost_quote": 1578.34547195,
"unrealized_pnl_exit_net": -23.4527168
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 1452.1,
"quote_asset_bal": 8421.9601378425,
"total_value_mid": 9991.3898178425,
"total_value_exit_net": 9990.2127455825,
"total_value": 9991.3898178425,
"base_cost_quote": 1588.4016584375,
"unrealized_pnl_exit_net": -20.1490506975
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 1433.5,
"quote_asset_bal": 8442.0813955725,
"total_value_mid": 9995.9953955725,
"total_value_exit_net": 9994.8299600725,
"total_value": 9995.9953955725,
"base_cost_quote": 1568.30138453,
"unrealized_pnl_exit_net": -15.55282003
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 1442.8,
"quote_asset_bal": 8432.0344795575,
"total_value_mid": 9996.0296795575,
"total_value_exit_net": 9994.8566831575,
"total_value": 9996.0296795575,
"base_cost_quote": 1578.3910761275,
"unrealized_pnl_exit_net": -15.5688725275
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 1424.2,
"quote_asset_bal": 8452.2152126475,
"total_value_mid": 9999.4660926475,
"total_value_exit_net": 9998.3056544875,
"total_value": 9999.4660926475,
"base_cost_quote": 1558.2321682775,
"unrealized_pnl_exit_net": -12.1417264375
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 1414.9,
"quote_asset_bal": 8462.3350527525,
"total_value_mid": 10001.1802927525,
"total_value_exit_net": 10000.0261588225,
"total_value": 10001.1802927525,
"base_cost_quote": 1548.1341004025,
"unrealized_pnl_exit_net": -10.4429943325
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 1424.1,
"quote_asset_bal": 8452.32867769,
"total_value_mid": 9994.77138769,
"total_value_exit_net": 9993.6145556575,
"total_value": 9994.77138769,
"base_cost_quote": 1558.162205845,
"unrealized_pnl_exit_net": -16.8763278775
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 1433.4,
"quote_asset_bal": 8442.24363958,
"total_value_mid": 9990.31563958,
"total_value_exit_net": 9989.15458558,
"total_value": 9990.31563958,
"base_cost_quote": 1568.247243955,
"unrealized_pnl_exit_net": -21.336297955
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 1424.1,
"quote_asset_bal": 8452.3715202325,
"total_value_mid": 9996.8079702325,
"total_value_exit_net": 9995.649642895,
"total_value": 9996.8079702325,
"base_cost_quote": 1558.162205845,
"unrealized_pnl_exit_net": -14.8840831825
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 1405.6,
"quote_asset_bal": 8472.5303110575,
"total_value_mid": 10000.5580710575,
"total_value_exit_net": 9999.4120502375,
"total_value": 10000.5580710575,
"base_cost_quote": 1538.03590243,
"unrealized_pnl_exit_net": -11.15416325
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 1396.4,
"quote_asset_bal": 8482.5844963275,
"total_value_mid": 10007.1740163275,
"total_value_exit_net": 10006.0305741875,
"total_value": 10007.1740163275,
"base_cost_quote": 1528.0031435,
"unrealized_pnl_exit_net": -4.55706564
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 1536.7,
"quote_asset_bal": 8331.759266795,
"total_value_mid": 9990.319576795,
"total_value_exit_net": 9989.0756565625,
"total_value": 9990.319576795,
"base_cost_quote": 1679.102523105,
"unrealized_pnl_exit_net": -21.7861333375
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 1536.7,
"quote_asset_bal": 8331.8610906125,
"total_value_mid": 9992.2654406125,
"total_value_exit_net": 9991.02013735,
"total_value": 9992.2654406125,
"base_cost_quote": 1679.102523105,
"unrealized_pnl_exit_net": -19.9434763675
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 1564.7,
"quote_asset_bal": 8301.7193012125,
"total_value_mid": 9978.9212312125,
"total_value_exit_net": 9977.663329765,
"total_value": 9978.9212312125,
"base_cost_quote": 1709.244312505,
"unrealized_pnl_exit_net": -33.3002839525
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 1574.1,
"quote_asset_bal": 8291.6255365625,
"total_value_mid": 9980.0051965625,
"total_value_exit_net": 9978.7389118175,
"total_value": 9980.0051965625,
"base_cost_quote": 1719.338077155,
"unrealized_pnl_exit_net": -32.2247019
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 1546,
"quote_asset_bal": 8322.0917031725,
"total_value_mid": 9982.8049031725,
"total_value_exit_net": 9981.5593682725,
"total_value": 9982.8049031725,
"base_cost_quote": 1688.997698925,
"unrealized_pnl_exit_net": -29.530033825
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 1565,
"quote_asset_bal": 8302.19822766,
"total_value_mid": 9990.20722766,
"total_value_exit_net": 9988.94122091,
"total_value": 9990.20722766,
"base_cost_quote": 1709.095801205,
"unrealized_pnl_exit_net": -22.352807955
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 1528.8,
"quote_asset_bal": 8344.663579015,
"total_value_mid": 9981.702619015,
"total_value_exit_net": 9980.474839735,
"total_value": 9981.702619015,
"base_cost_quote": 1668.7948681575,
"unrealized_pnl_exit_net": -32.9836074375
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 1699.1,
"quote_asset_bal": 8163.9797729125,
"total_value_mid": 9962.8169429125,
"total_value_exit_net": 9961.467815035,
"total_value": 9962.8169429125,
"base_cost_quote": 1849.7486718,
"unrealized_pnl_exit_net": -52.2606296775
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 1913.1,
"quote_asset_bal": 7938.13087922,
"total_value_mid": 9951.85993922,
"total_value_exit_net": 9950.349642425,
"total_value": 9951.85993922,
"base_cost_quote": 2075.650951535,
"unrealized_pnl_exit_net": -63.43218833
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 1894.1,
"quote_asset_bal": 7958.2211721325,
"total_value_mid": 9960.4742821325,
"total_value_exit_net": 9958.9725923,
"total_value": 9960.4742821325,
"base_cost_quote": 2055.613734885,
"unrealized_pnl_exit_net": -54.8623147175
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 1884.6,
"quote_asset_bal": 7968.275179595,
"total_value_mid": 9964.443499595,
"total_value_exit_net": 9962.946373355,
"total_value": 9964.443499595,
"base_cost_quote": 2045.5808658725,
"unrealized_pnl_exit_net": -50.9096721125
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 1884.6,
"quote_asset_bal": 7968.2480300575,
"total_value_mid": 9961.9663700575,
"total_value_exit_net": 9960.4710813025,
"total_value": 9961.9663700575,
"base_cost_quote": 2045.66049555,
"unrealized_pnl_exit_net": -53.437444305
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 1903.6,
"quote_asset_bal": 7948.1348813325,
"total_value_mid": 9964.6183613325,
"total_value_exit_net": 9963.1059987225,
"total_value": 9964.6183613325,
"base_cost_quote": 2065.7842270375,
"unrealized_pnl_exit_net": -50.8131096475
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 1903.6,
"quote_asset_bal": 7948.1560881825,
"total_value_mid": 9963.6877681825,
"total_value_exit_net": 9962.1761194225,
"total_value": 9963.6877681825,
"base_cost_quote": 2065.7842270375,
"unrealized_pnl_exit_net": -51.7641957975
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 1932.1,
"quote_asset_bal": 7918.0824950325,
"total_value_mid": 9956.6412050325,
"total_value_exit_net": 9955.112286,
"total_value": 9956.6412050325,
"base_cost_quote": 2095.8685733875,
"unrealized_pnl_exit_net": -58.83878242
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 1956.1,
"quote_asset_bal": 7892.975699945,
"total_value_mid": 9953.335829945,
"total_value_exit_net": 9951.7905598475,
"total_value": 9953.335829945,
"base_cost_quote": 2121.028879475,
"unrealized_pnl_exit_net": -62.2140195725
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 2162.4,
"quote_asset_bal": 7677.0905828975,
"total_value_mid": 9941.9883428975,
"total_value_exit_net": 9940.2896695775,
"total_value": 9941.9883428975,
"base_cost_quote": 2336.9683226825,
"unrealized_pnl_exit_net": -73.7692360025
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 2162.4,
"quote_asset_bal": 7677.1113013775,
"total_value_mid": 9943.5227413775,
"total_value_exit_net": 9941.8229327975,
"total_value": 9943.5227413775,
"base_cost_quote": 2336.9692834025,
"unrealized_pnl_exit_net": -72.2576519825
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 2152.8,
"quote_asset_bal": 7687.1868908975,
"total_value_mid": 9943.7518508975,
"total_value_exit_net": 9942.0594271775,
"total_value": 9943.7518508975,
"base_cost_quote": 2326.9153486025,
"unrealized_pnl_exit_net": -72.0428123225
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 2152.8,
"quote_asset_bal": 7687.2051928175,
"total_value_mid": 9939.6798328175,
"total_value_exit_net": 9937.9904768375,
"total_value": 9939.6798328175,
"base_cost_quote": 2326.9403273225,
"unrealized_pnl_exit_net": -76.1550433025
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 2162.4,
"quote_asset_bal": 7677.1815642575,
"total_value_mid": 9945.9716442575,
"total_value_exit_net": 9944.2700516975,
"total_value": 9945.9716442575,
"base_cost_quote": 2337.0288480425,
"unrealized_pnl_exit_net": -69.9403606025
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 2124.1,
"quote_asset_bal": 7717.5362337725,
"total_value_mid": 9959.9486037725,
"total_value_exit_net": 9958.266794495,
"total_value": 9959.9486037725,
"base_cost_quote": 2296.75987895,
"unrealized_pnl_exit_net": -56.0293182275
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 2133.6,
"quote_asset_bal": 7707.5271325725,
"total_value_mid": 9958.0484125725,
"total_value_exit_net": 9956.3605216125,
"total_value": 9958.0484125725,
"base_cost_quote": 2306.76898015,
"unrealized_pnl_exit_net": -57.93559111
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 2105.1,
"quote_asset_bal": 7737.654978235,
"total_value_mid": 9965.271798235,
"total_value_exit_net": 9963.60108562,
"total_value": 9965.271798235,
"base_cost_quote": 2276.694140925,
"unrealized_pnl_exit_net": -50.74803354
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 2095.6,
"quote_asset_bal": 7747.717425735,
"total_value_mid": 9966.538705735,
"total_value_exit_net": 9964.874589775,
"total_value": 9966.538705735,
"base_cost_quote": 2266.6422576625,
"unrealized_pnl_exit_net": -49.4850936225
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 2095.6,
"quote_asset_bal": 7747.7279771475,
"total_value_mid": 9959.8433371475,
"total_value_exit_net": 9958.1842506275,
"total_value": 9959.8433371475,
"base_cost_quote": 2266.6422576625,
"unrealized_pnl_exit_net": -56.1859841825
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 2133.7,
"quote_asset_bal": 7707.5861758775,
"total_value_mid": 9947.9711758775,
"total_value_exit_net": 9946.2908871275,
"total_value": 9947.9711758775,
"base_cost_quote": 2306.8056776525,
"unrealized_pnl_exit_net": -68.1009664025
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 2133.7,
"quote_asset_bal": 7707.5969737175,
"total_value_mid": 9951.8226337175,
"total_value_exit_net": 9950.1394644725,
"total_value": 9951.8226337175,
"base_cost_quote": 2306.8056776525,
"unrealized_pnl_exit_net": -64.2631868975
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 2133.7,
"quote_asset_bal": 7707.6178054775,
"total_value_mid": 9949.2830254775,
"total_value_exit_net": 9947.6017765625,
"total_value": 9949.2830254775,
"base_cost_quote": 2306.8172062925,
"unrealized_pnl_exit_net": -66.8332352075
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 2114.6,
"quote_asset_bal": 7727.8271865375,
"total_value_mid": 9963.1708465375,
"total_value_exit_net": 9961.4943387925,
"total_value": 9963.1708465375,
"base_cost_quote": 2286.73556635,
"unrealized_pnl_exit_net": -53.068414095
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 2114.6,
"quote_asset_bal": 7727.8635420875,
"total_value_mid": 9963.2072020875,
"total_value_exit_net": 9961.5306943425,
"total_value": 9963.2072020875,
"base_cost_quote": 2286.72035495,
"unrealized_pnl_exit_net": -53.053202695
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 2105.1,
"quote_asset_bal": 7737.907953125,
"total_value_mid": 9964.261713125,
"total_value_exit_net": 9962.591947805,
"total_value": 9964.261713125,
"base_cost_quote": 2276.686535225,
"unrealized_pnl_exit_net": -52.002540545
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 2105.1,
"quote_asset_bal": 7737.9128244875,
"total_value_mid": 9961.5299544875,
"total_value_exit_net": 9959.86224164,
"total_value": 9961.5299544875,
"base_cost_quote": 2276.6922395,
"unrealized_pnl_exit_net": -54.7428223475
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 2114.6,
"quote_asset_bal": 7727.9210873875,
"total_value_mid": 9956.2865673875,
"total_value_exit_net": 9954.6152932775,
"total_value": 9956.2865673875,
"base_cost_quote": 2286.70514355,
"unrealized_pnl_exit_net": -60.01093766
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 2152.9,
"quote_asset_bal": 7687.6538822075,
"total_value_mid": 9946.4765622075,
"total_value_exit_net": 9944.7824451975,
"total_value": 9946.4765622075,
"base_cost_quote": 2326.99397753,
"unrealized_pnl_exit_net": -69.86541454
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 2172.1,
"quote_asset_bal": 7667.5840622075,
"total_value_mid": 9941.9899722075,
"total_value_exit_net": 9940.284167775,
"total_value": 9941.9899722075,
"base_cost_quote": 2347.12874729,
"unrealized_pnl_exit_net": -74.4286417225
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 2457.9,
"quote_asset_bal": 7371.23551947,
"total_value_mid": 9926.95993947,
"total_value_exit_net": 9925.043146155,
"total_value": 9926.95993947,
"base_cost_quote": 2643.6402542575,
"unrealized_pnl_exit_net": -89.8326275725
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 2643.5,
"quote_asset_bal": 7180.200048985,
"total_value_mid": 9901.418948985,
"total_value_exit_net": 9899.37803481,
"total_value": 9901.418948985,
"base_cost_quote": 2834.8910648675,
"unrealized_pnl_exit_net": -115.7130790425
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 2663.1,
"quote_asset_bal": 7160.11243308,
"total_value_mid": 9895.38244308,
"total_value_exit_net": 9893.3309905725,
"total_value": 9895.38244308,
"base_cost_quote": 2855.0304580925,
"unrealized_pnl_exit_net": -121.8119006
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 2677.8,
"quote_asset_bal": 7145.28040062,
"total_value_mid": 9904.48552062,
"total_value_exit_net": 9902.41611678,
"total_value": 9904.48552062,
"base_cost_quote": 2870.0180503625,
"unrealized_pnl_exit_net": -112.8823342025
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 3058.3,
"quote_asset_bal": 6758.576824925,
"total_value_mid": 9869.479584925,
"total_value_exit_net": 9867.146407855,
"total_value": 9869.479584925,
"base_cost_quote": 3256.9868594625,
"unrealized_pnl_exit_net": -148.4172765325
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 3325.1,
"quote_asset_bal": 6494.48547826,
"total_value_mid": 9821.58053826,
"total_value_exit_net": 9819.085216965,
"total_value": 9821.58053826,
"base_cost_quote": 3523.387460175,
"unrealized_pnl_exit_net": -198.78772147
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 5073.8,
"quote_asset_bal": 4860.9294095825,
"total_value_mid": 9686.6205895825,
"total_value_exit_net": 9683.0013211975,
"total_value": 9686.6205895825,
"base_cost_quote": 5201.4298387675,
"unrealized_pnl_exit_net": -379.3579271525
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 5305,
"quote_asset_bal": 4646.7493778425,
"total_value_mid": 9719.9208778425,
"total_value_exit_net": 9716.1159992175,
"total_value": 9719.9208778425,
"base_cost_quote": 5422.3510054675,
"unrealized_pnl_exit_net": -352.9843840925
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 4635.9,
"quote_asset_bal": 5310.4971525925,
"total_value_mid": 9991.8289725925,
"total_value_exit_net": 9988.3179737275,
"total_value": 9991.8289725925,
"base_cost_quote": 4778.8557457175,
"unrealized_pnl_exit_net": -101.0349245825
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 4217.2,
"quote_asset_bal": 5741.556478255,
"total_value_mid": 10057.438958255,
"total_value_exit_net": 10054.202046395,
"total_value": 10057.438958255,
"base_cost_quote": 4376.788271105,
"unrealized_pnl_exit_net": -64.142702965
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 3961.6,
"quote_asset_bal": 6006.7327050725,
"total_value_mid": 10070.9381450725,
"total_value_exit_net": 10067.8899909925,
"total_value": 10070.9381450725,
"base_cost_quote": 4125.67321596,
"unrealized_pnl_exit_net": -64.51593004
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 3981,
"quote_asset_bal": 5986.91136725,
"total_value_mid": 10082.96226725,
"total_value_exit_net": 10079.890229075,
"total_value": 10082.96226725,
"base_cost_quote": 4145.7560167725,
"unrealized_pnl_exit_net": -52.7771549475
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 3961.3,
"quote_asset_bal": 6007.69718774,
"total_value_mid": 10095.36265774,
"total_value_exit_net": 10092.2969086375,
"total_value": 10095.36265774,
"base_cost_quote": 4125.5792555425,
"unrealized_pnl_exit_net": -40.979534645
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 3980.8,
"quote_asset_bal": 5987.7202862,
"total_value_mid": 10086.7500462,
"total_value_exit_net": 10083.67577388,
"total_value": 10086.7500462,
"base_cost_quote": 4145.6996545325,
"unrealized_pnl_exit_net": -49.7441668525
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 4070.3,
"quote_asset_bal": 5897.5676699075,
"total_value_mid": 10034.6205899075,
"total_value_exit_net": 10031.5178002175,
"total_value": 10034.6205899075,
"base_cost_quote": 4236.31613596,
"unrealized_pnl_exit_net": -102.36600565
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 4021.1,
"quote_asset_bal": 5948.1455505975,
"total_value_mid": 10086.6616705975,
"total_value_exit_net": 10083.5577835075,
"total_value": 10086.6616705975,
"base_cost_quote": 4186.00238893,
"unrealized_pnl_exit_net": -50.59015602
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 3981,
"quote_asset_bal": 5989.4740214575,
"total_value_mid": 10097.4679214575,
"total_value_exit_net": 10094.3869260325,
"total_value": 10097.4679214575,
"base_cost_quote": 4145.625348845,
"unrealized_pnl_exit_net": -40.71244427
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 4000.6,
"quote_asset_bal": 5969.3308554775,
"total_value_mid": 10091.9491554775,
"total_value_exit_net": 10088.8571917525,
"total_value": 10091.9491554775,
"base_cost_quote": 4165.789260445,
"unrealized_pnl_exit_net": -46.26292417
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 3990.8,
"quote_asset_bal": 5979.5024651075,
"total_value_mid": 10083.2421051075,
"total_value_exit_net": 10080.1643003775,
"total_value": 10083.2421051075,
"base_cost_quote": 4155.721034935,
"unrealized_pnl_exit_net": -55.059199665
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 4039.8,
"quote_asset_bal": 5929.3389683275,
"total_value_mid": 10047.9150683275,
"total_value_exit_net": 10044.8261362525,
"total_value": 10047.9150683275,
"base_cost_quote": 4205.97880001,
"unrealized_pnl_exit_net": -90.491632085
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 3990.8,
"quote_asset_bal": 5979.7999623025,
"total_value_mid": 10100.3009623025,
"total_value_exit_net": 10097.2105865525,
"total_value": 10100.3009623025,
"base_cost_quote": 4155.66513304,
"unrealized_pnl_exit_net": -38.25450879
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 3955,
"quote_asset_bal": 6017.0503504975,
"total_value_mid": 10102.1698504975,
"total_value_exit_net": 10099.1060108725,
"total_value": 10102.1698504975,
"base_cost_quote": 4120.5259684175,
"unrealized_pnl_exit_net": -38.4703080425
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 3915.4,
"quote_asset_bal": 6058.1111928875,
"total_value_mid": 10101.5447728875,
"total_value_exit_net": 10098.5121977025,
"total_value": 10101.5447728875,
"base_cost_quote": 4080.2721807025,
"unrealized_pnl_exit_net": -39.8711758875
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 3925.1,
"quote_asset_bal": 6048.0956843825,
"total_value_mid": 10098.7988843825,
"total_value_exit_net": 10095.7608569825,
"total_value": 10098.7988843825,
"base_cost_quote": 4090.2978543225,
"unrealized_pnl_exit_net": -42.6326817225
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 3925.1,
"quote_asset_bal": 6048.0956843825,
"total_value_mid": 10100.3689243825,
"total_value_exit_net": 10097.3297194525,
"total_value": 10100.3689243825,
"base_cost_quote": 4090.2978543225,
"unrealized_pnl_exit_net": -41.0638192525
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 3944.6,
"quote_asset_bal": 6027.99625739,
"total_value_mid": 10091.72317739,
"total_value_exit_net": 10088.6753822,
"total_value": 10091.72317739,
"base_cost_quote": 4110.407595325,
"unrealized_pnl_exit_net": -49.728470515
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 4205.6,
"quote_asset_bal": 5766.53684054,
"total_value_mid": 9917.46404054,
"total_value_exit_net": 9914.35084514,
"total_value": 9917.46404054,
"base_cost_quote": 4372.1046109925,
"unrealized_pnl_exit_net": -224.2906063925
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 4224.9,
"quote_asset_bal": 5747.4788543275,
"total_value_mid": 9941.5370843275,
"total_value_exit_net": 9938.391540655,
"total_value": 9941.5370843275,
"base_cost_quote": 4392.1187503475,
"unrealized_pnl_exit_net": -201.20606402
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 4367.7,
"quote_asset_bal": 5606.6792195075,
"total_value_mid": 9923.2771295075,
"total_value_exit_net": 9920.039681075,
"total_value": 9923.2771295075,
"base_cost_quote": 4533.03342715,
"unrealized_pnl_exit_net": -219.6729655825
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 4347.4,
"quote_asset_bal": 5626.8446636825,
"total_value_mid": 9948.5950036825,
"total_value_exit_net": 9945.3536909275,
"total_value": 9948.5950036825,
"base_cost_quote": 4512.929540535,
"unrealized_pnl_exit_net": -194.42051329
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 4418.7,
"quote_asset_bal": 5556.4899137225,
"total_value_mid": 9904.9325837225,
"total_value_exit_net": 9901.67125172,
"total_value": 9904.9325837225,
"base_cost_quote": 4583.325497935,
"unrealized_pnl_exit_net": -238.1441599375
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 4521,
"quote_asset_bal": 5456.21844528,
"total_value_mid": 9875.04384528,
"total_value_exit_net": 9871.72972623,
"total_value": 9875.04384528,
"base_cost_quote": 4683.73476845,
"unrealized_pnl_exit_net": -268.2234875
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 4782.2,
"quote_asset_bal": 5207.4288879825,
"total_value_mid": 9874.8560879825,
"total_value_exit_net": 9871.3555175825,
"total_value": 9874.8560879825,
"base_cost_quote": 4935.1529407625,
"unrealized_pnl_exit_net": -271.2263111625
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 4771.5,
"quote_asset_bal": 5218.2621386575,
"total_value_mid": 9896.7178886575,
"total_value_exit_net": 9893.209046845,
"total_value": 9896.7178886575,
"base_cost_quote": 4924.9853708,
"unrealized_pnl_exit_net": -250.0384626125
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 4647,
"quote_asset_bal": 5341.66195785,
"total_value_mid": 9912.45115785,
"total_value_exit_net": 9909.02306595,
"total_value": 9912.45115785,
"base_cost_quote": 4804.3529743075,
"unrealized_pnl_exit_net": -236.9918662075
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 4652,
"quote_asset_bal": 5336.787488135,
"total_value_mid": 9945.058688135,
"total_value_exit_net": 9941.602484735,
"total_value": 9945.058688135,
"base_cost_quote": 4809.4654257725,
"unrealized_pnl_exit_net": -204.6504291725
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 4901.7,
"quote_asset_bal": 5097.2233635925,
"total_value_mid": 9887.1646035925,
"total_value_exit_net": 9883.5721476625,
"total_value": 9887.1646035925,
"base_cost_quote": 5050.92123191,
"unrealized_pnl_exit_net": -264.57244784
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 4932.1,
"quote_asset_bal": 5068.27142754,
"total_value_mid": 9835.14607754,
"total_value_exit_net": 9831.5709215525,
"total_value": 9835.14607754,
"base_cost_quote": 5081.1175922075,
"unrealized_pnl_exit_net": -317.818098195
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 5194.6,
"quote_asset_bal": 4817.2415297475,
"total_value_mid": 9725.6190697475,
"total_value_exit_net": 9721.9377865925,
"total_value": 9725.6190697475,
"base_cost_quote": 5332.48504651,
"unrealized_pnl_exit_net": -427.788789665
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 5402.4,
"quote_asset_bal": 4621.8803393575,
"total_value_mid": 9734.1714593575,
"total_value_exit_net": 9730.3372410175,
"total_value": 9734.1714593575,
"base_cost_quote": 5528.56279461,
"unrealized_pnl_exit_net": -420.10589295
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 5318,
"quote_asset_bal": 4702.5123057025,
"total_value_mid": 9798.7517057025,
"total_value_exit_net": 9794.9295261525,
"total_value": 9798.7517057025,
"base_cost_quote": 5448.11606478,
"unrealized_pnl_exit_net": -355.69884433
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 5222.3,
"quote_asset_bal": 4794.970981,
"total_value_mid": 9818.301351,
"total_value_exit_net": 9814.5338532225,
"total_value": 9818.301351,
"base_cost_quote": 5357.475355195,
"unrealized_pnl_exit_net": -337.9124829725
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 5338.7,
"quote_asset_bal": 4684.842268595,
"total_value_mid": 9774.758848595,
"total_value_exit_net": 9770.94141116,
"total_value": 9774.758848595,
"base_cost_quote": 5467.9869667875,
"unrealized_pnl_exit_net": -381.8878242225
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 5296.3,
"quote_asset_bal": 4726.032129895,
"total_value_mid": 9781.350479895,
"total_value_exit_net": 9777.5589911325,
"total_value": 9781.350479895,
"base_cost_quote": 5427.96400206,
"unrealized_pnl_exit_net": -376.4371408225
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 5307,
"quote_asset_bal": 4716.21440042,
"total_value_mid": 9809.34230042,
"total_value_exit_net": 9805.522454495,
"total_value": 9809.34230042,
"base_cost_quote": 5438.029365425,
"unrealized_pnl_exit_net": -348.72131135
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 5149,
"quote_asset_bal": 4869.4756787125,
"total_value_mid": 9837.7457787125,
"total_value_exit_net": 9834.0195761375,
"total_value": 9837.7457787125,
"base_cost_quote": 5287.1433156975,
"unrealized_pnl_exit_net": -322.5994182725
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 5810.7,
"quote_asset_bal": 4252.66324383,
"total_value_mid": 9703.09984383,
"total_value_exit_net": 9699.01201638,
"total_value": 9703.09984383,
"base_cost_quote": 5905.3977790375,
"unrealized_pnl_exit_net": -459.0490064875
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 5830.2,
"quote_asset_bal": 4234.57710478,
"total_value_mid": 9663.65934478,
"total_value_exit_net": 9659.5875331,
"total_value": 9663.65934478,
"base_cost_quote": 5925.4081755875,
"unrealized_pnl_exit_net": -500.3977472675
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 5981.3,
"quote_asset_bal": 4094.1269832775,
"total_value_mid": 9712.3620732775,
"total_value_exit_net": 9708.14839696,
"total_value": 9712.3620732775,
"base_cost_quote": 6066.06337793,
"unrealized_pnl_exit_net": -452.0419642475
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 5916.6,
"quote_asset_bal": 4155.4550060175,
"total_value_mid": 9704.6341460175,
"total_value_exit_net": 9700.4722616625,
"total_value": 9704.6341460175,
"base_cost_quote": 6005.6246528575,
"unrealized_pnl_exit_net": -460.6073972125
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 5894.8,
"quote_asset_bal": 4176.69982321,
"total_value_mid": 9716.63286321,
"total_value_exit_net": 9712.47791343,
"total_value": 9716.63286321,
"base_cost_quote": 5985.64070613,
"unrealized_pnl_exit_net": -449.86261591
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 5906,
"quote_asset_bal": 4170.020200075,
"total_value_mid": 9661.419000075,
"total_value_exit_net": 9657.300450975,
"total_value": 9661.419000075,
"base_cost_quote": 5995.86909167,
"unrealized_pnl_exit_net": -508.58884077
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 6227.5,
"quote_asset_bal": 3873.9755225025,
"total_value_mid": 9542.2460225025,
"total_value_exit_net": 9537.9948196275,
"total_value": 9542.2460225025,
"base_cost_quote": 6292.0558352475,
"unrealized_pnl_exit_net": -628.0365381225
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 6439.2,
"quote_asset_bal": 3777.48636259,
"total_value_mid": 9910.18044259,
"total_value_exit_net": 9905.58092203,
"total_value": 9910.18044259,
"base_cost_quote": 6457.842772265,
"unrealized_pnl_exit_net": -329.748212825
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 6309.5,
"quote_asset_bal": 3902.0396035125,
"total_value_mid": 9928.2430535125,
"total_value_exit_net": 9923.723400925,
"total_value": 9928.2430535125,
"base_cost_quote": 6337.1862576975,
"unrealized_pnl_exit_net": -315.502460285
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 5444.6,
"quote_asset_bal": 4751.18018134,
"total_value_mid": 10175.63516134,
"total_value_exit_net": 10171.566820105,
"total_value": 10175.63516134,
"base_cost_quote": 5522.8607913125,
"unrealized_pnl_exit_net": -102.4741525475
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 5228.6,
"quote_asset_bal": 4968.00530948,
"total_value_mid": 10190.3309894799,
"total_value_exit_net": 10186.4142452199,
"total_value": 10190.3309894799,
"base_cost_quote": 5316.773972035,
"unrealized_pnl_exit_net": -98.365036295
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 5154.8,
"quote_asset_bal": 5042.4575029399,
"total_value_mid": 10229.2172629399,
"total_value_exit_net": 10225.3271931199,
"total_value": 10229.2172629399,
"base_cost_quote": 5246.486375845,
"unrealized_pnl_exit_net": -63.616685665
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 5164.8,
"quote_asset_bal": 5032.8641608374,
"total_value_mid": 10212.1256008374,
"total_value_exit_net": 10208.2411547574,
"total_value": 10212.1256008374,
"base_cost_quote": 5256.5367579825,
"unrealized_pnl_exit_net": -81.1597640625
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 5097.7,
"quote_asset_bal": 5101.0061766949,
"total_value_mid": 10215.0188166949,
"total_value_exit_net": 10211.1833072149,
"total_value": 10215.0188166949,
"base_cost_quote": 5191.17009973,
"unrealized_pnl_exit_net": -80.99296921
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 5097.7,
"quote_asset_bal": 5101.1493914449,
"total_value_mid": 10222.8085814449,
"total_value_exit_net": 10218.9673370524,
"total_value": 10222.8085814449,
"base_cost_quote": 5191.14708248,
"unrealized_pnl_exit_net": -73.3291368725
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 4443.1,
"quote_asset_bal": 5769.4763108774,
"total_value_mid": 10280.1114308774,
"total_value_exit_net": 10276.7284545374,
"total_value": 10280.1114308774,
"base_cost_quote": 4557.934508965,
"unrealized_pnl_exit_net": -50.682365305
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 4502.9,
"quote_asset_bal": 5709.7309445599,
"total_value_mid": 10284.6773445599,
"total_value_exit_net": 10281.2461347599,
"total_value": 10284.6773445599,
"base_cost_quote": 4618.2413752175,
"unrealized_pnl_exit_net": -46.7261850175
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 4473,
"quote_asset_bal": 5741.5527479924,
"total_value_mid": 10308.9330479924,
"total_value_exit_net": 10305.5075127674,
"total_value": 10308.9330479924,
"base_cost_quote": 4588.03981102,
"unrealized_pnl_exit_net": -24.085046245
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 4076.1,
"quote_asset_bal": 6153.2859533674,
"total_value_mid": 10400.1745433674,
"total_value_exit_net": 10396.9893769249,
"total_value": 10400.1745433674,
"base_cost_quote": 4196.02494021,
"unrealized_pnl_exit_net": 47.6784833475
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 3602.4,
"quote_asset_bal": 6652.6600748599,
"total_value_mid": 10409.9632748599,
"total_value_exit_net": 10407.1452974599,
"total_value": 10409.9632748599,
"base_cost_quote": 3723.543264525,
"unrealized_pnl_exit_net": 30.941958075
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 3729.1,
"quote_asset_bal": 6524.6633169674,
"total_value_mid": 10351.4657369674,
"total_value_exit_net": 10348.5956351524,
"total_value": 10351.4657369674,
"base_cost_quote": 3854.1937889825,
"unrealized_pnl_exit_net": -30.2614707975
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 3443.8,
"quote_asset_bal": 6827.5160241299,
"total_value_mid": 10426.2870241299,
"total_value_exit_net": 10423.5879458799,
"total_value": 10426.2870241299,
"base_cost_quote": 3562.6205929725,
"unrealized_pnl_exit_net": 33.4513287775
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 3531.5,
"quote_asset_bal": 6737.6269877149,
"total_value_mid": 10446.7614377149,
"total_value_exit_net": 10443.9795868774,
"total_value": 10446.7614377149,
"base_cost_quote": 3653.22922852,
"unrealized_pnl_exit_net": 53.1233706425
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 3444.4,
"quote_asset_bal": 6830.5669786949,
"total_value_mid": 10463.0312186949,
"total_value_exit_net": 10460.3068705149,
"total_value": 10463.0312186949,
"base_cost_quote": 3562.742074015,
"unrealized_pnl_exit_net": 66.997817805
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 3425,
"quote_asset_bal": 6851.5283904824,
"total_value_mid": 10493.3308904824,
"total_value_exit_net": 10490.5995386074,
"total_value": 10493.3308904824,
"base_cost_quote": 3542.7092306425,
"unrealized_pnl_exit_net": 96.3619174825
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 3453.1,
"quote_asset_bal": 6822.0885052974,
"total_value_mid": 10451.2966052974,
"total_value_exit_net": 10448.5746992224,
"total_value": 10451.2966052974,
"base_cost_quote": 3572.8031841925,
"unrealized_pnl_exit_net": 53.6830097325
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 3415,
"quote_asset_bal": 6862.4338129399,
"total_value_mid": 10491.8958129399,
"total_value_exit_net": 10489.1737164399,
"total_value": 10491.8958129399,
"base_cost_quote": 3532.564497795,
"unrealized_pnl_exit_net": 94.175405705
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 3443.5,
"quote_asset_bal": 6832.4187538899,
"total_value_mid": 10468.0660538899,
"total_value_exit_net": 10465.3393184149,
"total_value": 10468.0660538899,
"base_cost_quote": 3562.7163447325,
"unrealized_pnl_exit_net": 70.2042197925
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 3774.9,
"quote_asset_bal": 6490.5625582374,
"total_value_mid": 10286.6019982374,
"total_value_exit_net": 10283.7549686574,
"total_value": 10286.6019982374,
"base_cost_quote": 3904.8254142425,
"unrealized_pnl_exit_net": -111.6330038225
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 4509.9,
"quote_asset_bal": 5784.5719370124,
"total_value_mid": 10280.9422370124,
"total_value_exit_net": 10277.5699592874,
"total_value": 10280.9422370124,
"base_cost_quote": 4623.2803516175,
"unrealized_pnl_exit_net": -130.2823293425
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 4530.1,
"quote_asset_bal": 5765.0824722574,
"total_value_mid": 10271.1729422574,
"total_value_exit_net": 10267.7933744049,
"total_value": 10271.1729422574,
"base_cost_quote": 4643.4126195025,
"unrealized_pnl_exit_net": -140.701717355
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 4412.6,
"quote_asset_bal": 5884.4030100098,
"total_value_mid": 10302.7393900098,
"total_value_exit_net": 10299.4256377248,
"total_value": 10302.7393900098,
"base_cost_quote": 4532.8933321575,
"unrealized_pnl_exit_net": -117.8707044425
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 4362.8,
"quote_asset_bal": 5937.7580621648,
"total_value_mid": 10398.7210621648,
"total_value_exit_net": 10395.3753399148,
"total_value": 10398.7210621648,
"base_cost_quote": 4482.68753603,
"unrealized_pnl_exit_net": -25.07025828
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 4350.5,
"quote_asset_bal": 5950.4148079148,
"total_value_mid": 10396.1907579148,
"total_value_exit_net": 10392.8564259523,
"total_value": 10396.1907579148,
"base_cost_quote": 4472.5686625625,
"unrealized_pnl_exit_net": -30.127044525
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 4073.2,
"quote_asset_bal": 6236.8780672498,
"total_value_mid": 10465.6743072498,
"total_value_exit_net": 10462.5027100698,
"total_value": 10465.6743072498,
"base_cost_quote": 4196.0724257975,
"unrealized_pnl_exit_net": 29.5522170225
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 4029.5,
"quote_asset_bal": 6282.9672125723,
"total_value_mid": 10406.3545625723,
"total_value_exit_net": 10403.2620220598,
"total_value": 10406.3545625723,
"base_cost_quote": 4156.03861294,
"unrealized_pnl_exit_net": -35.7438034525
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 4218.5,
"quote_asset_bal": 6092.1263160473,
"total_value_mid": 10314.4229660473,
"total_value_exit_net": 10311.2562435598,
"total_value": 10314.4229660473,
"base_cost_quote": 4346.912360965,
"unrealized_pnl_exit_net": -127.7824334525
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 4069.6,
"quote_asset_bal": 6244.7185417323,
"total_value_mid": 10358.2702217323,
"total_value_exit_net": 10355.1850579723,
"total_value": 10358.2702217323,
"base_cost_quote": 4196.1661560425,
"unrealized_pnl_exit_net": -85.6996398025
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 4050,
"quote_asset_bal": 6265.1766799348,
"total_value_mid": 10471.1016799348,
"total_value_exit_net": 10467.9472361848,
"total_value": 10471.1016799348,
"base_cost_quote": 4175.986062315,
"unrealized_pnl_exit_net": 26.784493935
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 3860.9,
"quote_asset_bal": 6462.4291255573,
"total_value_mid": 10439.5422155573,
"total_value_exit_net": 10436.5593807398,
"total_value": 10439.5422155573,
"base_cost_quote": 3984.9040281925,
"unrealized_pnl_exit_net": -10.77377301
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 3880.5,
"quote_asset_bal": 6442.2559573673,
"total_value_mid": 10409.6791573673,
"total_value_exit_net": 10406.7035899673,
"total_value": 10409.6791573673,
"base_cost_quote": 4005.0875544925,
"unrealized_pnl_exit_net": -40.6399218925
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 3929.6,
"quote_asset_bal": 6392.0062875173,
"total_value_mid": 10364.4389275173,
"total_value_exit_net": 10361.4596030373,
"total_value": 10364.4389275173,
"base_cost_quote": 4055.3582892875,
"unrealized_pnl_exit_net": -85.9049737675
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 4009.7,
"quote_asset_bal": 6311.6370116448,
"total_value_mid": 10319.3321616448,
"total_value_exit_net": 10316.3263902823,
"total_value": 10319.3321616448,
"base_cost_quote": 4135.7814214325,
"unrealized_pnl_exit_net": -131.092042795
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 4039.8,
"quote_asset_bal": 6281.4067950623,
"total_value_mid": 10366.8565350623,
"total_value_exit_net": 10363.7924477573,
"total_value": 10366.8565350623,
"base_cost_quote": 4166.13013591,
"unrealized_pnl_exit_net": -83.744483215
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 4079.4,
"quote_asset_bal": 6241.3771116523,
"total_value_mid": 10360.7552316523,
"total_value_exit_net": 10357.6656980623,
"total_value": 10360.7552316523,
"base_cost_quote": 4206.26857718,
"unrealized_pnl_exit_net": -89.97999077
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 4109.2,
"quote_asset_bal": 6211.4565055548,
"total_value_mid": 10328.4639855548,
"total_value_exit_net": 10325.3762299448,
"total_value": 10328.4639855548,
"base_cost_quote": 4236.3630811425,
"unrealized_pnl_exit_net": -122.4433567525
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 4099.2,
"quote_asset_bal": 6221.5887763048,
"total_value_mid": 10323.2482963048,
"total_value_exit_net": 10320.1720516648,
"total_value": 10323.2482963048,
"base_cost_quote": 4226.3725938925,
"unrealized_pnl_exit_net": -127.7893185325
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 4119.2,
"quote_asset_bal": 6201.5547620548,
"total_value_mid": 10326.5216420548,
"total_value_exit_net": 10323.4279168948,
"total_value": 10326.5216420548,
"base_cost_quote": 4246.4066081425,
"unrealized_pnl_exit_net": -124.5334533025
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 4119.2,
"quote_asset_bal": 6201.5547620548,
"total_value_mid": 10326.9335620548,
"total_value_exit_net": 10323.8395279548,
"total_value": 10326.9335620548,
"base_cost_quote": 4246.4066081425,
"unrealized_pnl_exit_net": -124.1218422425
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 4069.3,
"quote_asset_bal": 6251.8002151323,
"total_value_mid": 10388.6505951323,
"total_value_exit_net": 10385.5479573473,
"total_value": 10388.6505951323,
"base_cost_quote": 4196.25871541,
"unrealized_pnl_exit_net": -62.510973195
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 4148.9,
"quote_asset_bal": 6171.4164778023,
"total_value_mid": 10325.7100478023,
"total_value_exit_net": 10322.5943276248,
"total_value": 10325.7100478023,
"base_cost_quote": 4276.65340624,
"unrealized_pnl_exit_net": -125.4755564175
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 4118.9,
"quote_asset_bal": 6201.6493133023,
"total_value_mid": 10360.0907533023,
"total_value_exit_net": 10356.9719222223,
"total_value": 10360.0907533023,
"base_cost_quote": 4246.54083874,
"unrealized_pnl_exit_net": -91.21822982
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 4158.9,
"quote_asset_bal": 6161.4627515523,
"total_value_mid": 10342.4049215523,
"total_value_exit_net": 10339.2692149248,
"total_value": 10342.4049215523,
"base_cost_quote": 4286.78199699,
"unrealized_pnl_exit_net": -108.9755336175
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 4168.9,
"quote_asset_bal": 6151.4402403023,
"total_value_mid": 10319.5064603023,
"total_value_exit_net": 10316.3804106373,
"total_value": 10319.5064603023,
"base_cost_quote": 4296.80450824,
"unrealized_pnl_exit_net": -131.864337905
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 4179,
"quote_asset_bal": 6141.3468159073,
"total_value_mid": 10314.9141159073,
"total_value_exit_net": 10311.7839404323,
"total_value": 10314.9141159073,
"base_cost_quote": 4306.897932635,
"unrealized_pnl_exit_net": -136.46080811
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 4209.3,
"quote_asset_bal": 6111.0928368098,
"total_value_mid": 10322.9184168098,
"total_value_exit_net": 10319.7595476248,
"total_value": 10322.9184168098,
"base_cost_quote": 4337.1620337,
"unrealized_pnl_exit_net": -128.495322885
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 4159.1,
"quote_asset_bal": 6161.4922425698,
"total_value_mid": 10351.3695825698,
"total_value_exit_net": 10348.2271745648,
"total_value": 10351.3695825698,
"base_cost_quote": 4286.848506835,
"unrealized_pnl_exit_net": -100.11357484
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 4179,
"quote_asset_bal": 6141.6381871073,
"total_value_mid": 10331.9214871073,
"total_value_exit_net": 10328.7787746323,
"total_value": 10331.9214871073,
"base_cost_quote": 4306.8334342975,
"unrealized_pnl_exit_net": -119.6928467725
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 4179,
"quote_asset_bal": 6141.6381871073,
"total_value_mid": 10327.3245871073,
"total_value_exit_net": 10324.1853223073,
"total_value": 10327.3245871073,
"base_cost_quote": 4306.8334342975,
"unrealized_pnl_exit_net": -124.2862990975
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 4179,
"quote_asset_bal": 6141.6381871073,
"total_value_mid": 10324.8171871073,
"total_value_exit_net": 10321.6798028573,
"total_value": 10324.8171871073,
"base_cost_quote": 4306.8334342975,
"unrealized_pnl_exit_net": -126.7918185475
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 4249.6,
"quote_asset_bal": 6071.2379401648,
"total_value_mid": 10320.4129801648,
"total_value_exit_net": 10317.2260988848,
"total_value": 10320.4129801648,
"base_cost_quote": 4377.3078304825,
"unrealized_pnl_exit_net": -131.3196717625
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 4300.1,
"quote_asset_bal": 6021.0691764823,
"total_value_mid": 10316.4390664823,
"total_value_exit_net": 10313.2175390648,
"total_value": 10316.4390664823,
"base_cost_quote": 4427.496994145,
"unrealized_pnl_exit_net": -135.3486315625
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 4290,
"quote_asset_bal": 6031.1555460273,
"total_value_mid": 10319.8685460273,
"total_value_exit_net": 10316.6520112773,
"total_value": 10319.8685460273,
"base_cost_quote": 4417.4207526275,
"unrealized_pnl_exit_net": -131.9242873775
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 4350.9,
"quote_asset_bal": 5970.7436463573,
"total_value_mid": 10274.2188363573,
"total_value_exit_net": 10270.9912299648,
"total_value": 10274.2188363573,
"base_cost_quote": 4477.842765175,
"unrealized_pnl_exit_net": -177.5951815675
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 4330.6,
"quote_asset_bal": 5990.8673267698,
"total_value_mid": 10312.8061267698,
"total_value_exit_net": 10309.5646726698,
"total_value": 10312.8061267698,
"base_cost_quote": 4457.7903671475,
"unrealized_pnl_exit_net": -139.0930212475
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 4310.4,
"quote_asset_bal": 6011.0501582848,
"total_value_mid": 10318.0018382848,
"total_value_exit_net": 10314.7716245248,
"total_value": 10318.0018382848,
"base_cost_quote": 4437.6277765375,
"unrealized_pnl_exit_net": -133.9063102975
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 4310.4,
"quote_asset_bal": 6011.0805393373,
"total_value_mid": 10319.7563793373,
"total_value_exit_net": 10316.5248724573,
"total_value": 10319.7563793373,
"base_cost_quote": 4437.6277765375,
"unrealized_pnl_exit_net": -132.1834434175
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 4300.3,
"quote_asset_bal": 6021.1891122173,
"total_value_mid": 10327.9395622173,
"total_value_exit_net": 10324.7094993798,
"total_value": 10327.9395622173,
"base_cost_quote": 4427.529298355,
"unrealized_pnl_exit_net": -124.0089111925
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 4300.3,
"quote_asset_bal": 6021.1891122173,
"total_value_mid": 10330.5197422173,
"total_value_exit_net": 10327.2877442448,
"total_value": 10330.5197422173,
"base_cost_quote": 4427.529298355,
"unrealized_pnl_exit_net": -121.4306663275
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 4330.6,
"quote_asset_bal": 5990.9624091798,
"total_value_mid": 10304.6730691798,
"total_value_exit_net": 10301.4377861848,
"total_value": 10304.6730691798,
"base_cost_quote": 4457.7560013925,
"unrealized_pnl_exit_net": -147.2806243875
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 4351.1,
"quote_asset_bal": 5970.8176533123,
"total_value_mid": 10304.5132533123,
"total_value_exit_net": 10301.2629816123,
"total_value": 10304.5132533123,
"base_cost_quote": 4477.9516367675,
"unrealized_pnl_exit_net": -147.5063084675
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 4361.2,
"quote_asset_bal": 5960.7697963298,
"total_value_mid": 10295.8025963298,
"total_value_exit_net": 10292.5513217298,
"total_value": 10295.8025963298,
"base_cost_quote": 4488.019792225,
"unrealized_pnl_exit_net": -156.238266825
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 4351.1,
"quote_asset_bal": 5970.8931646248,
"total_value_mid": 10308.9398646248,
"total_value_exit_net": 10305.6863295998,
"total_value": 10308.9398646248,
"base_cost_quote": 4477.9779965225,
"unrealized_pnl_exit_net": -143.1848315475
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 4351.1,
"quote_asset_bal": 5970.8931646248,
"total_value_mid": 10308.5047546248,
"total_value_exit_net": 10305.2515459323,
"total_value": 10308.5047546248,
"base_cost_quote": 4477.9779965225,
"unrealized_pnl_exit_net": -143.619615215
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 4341,
"quote_asset_bal": 5980.9896265948,
"total_value_mid": 10333.2762265948,
"total_value_exit_net": 10330.0120116448,
"total_value": 10333.2762265948,
"base_cost_quote": 4467.89164743,
"unrealized_pnl_exit_net": -118.86926238
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 4091,
"quote_asset_bal": 6235.5247235473,
"total_value_mid": 10440.6636235473,
"total_value_exit_net": 10437.5097693723,
"total_value": 10440.6636235473,
"base_cost_quote": 4216.602701965,
"unrealized_pnl_exit_net": -14.61765614
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 4159.9,
"quote_asset_bal": 6165.3300614148,
"total_value_mid": 10373.0689114148,
"total_value_exit_net": 10369.9131072773,
"total_value": 10373.0689114148,
"base_cost_quote": 4286.8601455575,
"unrealized_pnl_exit_net": -82.277099695
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 4160.1,
"quote_asset_bal": 6165.3065034773,
"total_value_mid": 10362.8474034773,
"total_value_exit_net": 10359.6992478023,
"total_value": 10362.8474034773,
"base_cost_quote": 4286.97045823,
"unrealized_pnl_exit_net": -92.577713905
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 4189.3,
"quote_asset_bal": 6135.3551378848,
"total_value_mid": 10391.2650078848,
"total_value_exit_net": 10388.0730754823,
"total_value": 10391.2650078848,
"base_cost_quote": 4317.0596982475,
"unrealized_pnl_exit_net": -64.34176065
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 4110,
"quote_asset_bal": 6216.6472018598,
"total_value_mid": 10416.2452018598,
"total_value_exit_net": 10413.0955033598,
"total_value": 10416.2452018598,
"base_cost_quote": 4236.6331035075,
"unrealized_pnl_exit_net": -40.1848020075
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 4021.6,
"quote_asset_bal": 6307.8054210923,
"total_value_mid": 10475.3895010923,
"total_value_exit_net": 10472.2638130323,
"total_value": 10475.3895010923,
"base_cost_quote": 4146.0407501625,
"unrealized_pnl_exit_net": 18.4176417775
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 3961.2,
"quote_asset_bal": 6370.5296025398,
"total_value_mid": 10464.0336825398,
"total_value_exit_net": 10460.9635544798,
"total_value": 10464.0336825398,
"base_cost_quote": 4085.7671988775,
"unrealized_pnl_exit_net": 4.6667530625
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 3901.1,
"quote_asset_bal": 6433.2003819198,
"total_value_mid": 10505.9487819198,
"total_value_exit_net": 10502.8942206198,
"total_value": 10505.9487819198,
"base_cost_quote": 4025.3291042775,
"unrealized_pnl_exit_net": 44.3647344225
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 3900.6,
"quote_asset_bal": 6433.7664445798,
"total_value_mid": 10504.0425445798,
"total_value_exit_net": 10500.9898375048,
"total_value": 10504.0425445798,
"base_cost_quote": 4025.26240429,
"unrealized_pnl_exit_net": 41.960988635
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 3715.3,
"quote_asset_bal": 6628.4234289948,
"total_value_mid": 10519.8286489948,
"total_value_exit_net": 10516.9100950798,
"total_value": 10519.8286489948,
"base_cost_quote": 3839.22189848,
"unrealized_pnl_exit_net": 49.264767605
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 3586.6,
"quote_asset_bal": 6764.5067868148,
"total_value_mid": 10525.0568868148,
"total_value_exit_net": 10522.2364742398,
"total_value": 10525.0568868148,
"base_cost_quote": 3708.63803398,
"unrealized_pnl_exit_net": 49.091653445
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 3576.9,
"quote_asset_bal": 6774.6571120098,
"total_value_mid": 10547.9289220098,
"total_value_exit_net": 10545.0989681523,
"total_value": 10547.9289220098,
"base_cost_quote": 3698.562943325,
"unrealized_pnl_exit_net": 71.8789128175
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 3477.4,
"quote_asset_bal": 6880.3109123648,
"total_value_mid": 10562.5297723648,
"total_value_exit_net": 10559.7681082198,
"total_value": 10562.5297723648,
"base_cost_quote": 3598.0973606075,
"unrealized_pnl_exit_net": 81.3598352475
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 3505.9,
"quote_asset_bal": 6850.2498275223,
"total_value_mid": 10548.9743275223,
"total_value_exit_net": 10546.2002841473,
"total_value": 10548.9743275223,
"base_cost_quote": 3628.1798055325,
"unrealized_pnl_exit_net": 67.7706510925
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 3496.4,
"quote_asset_bal": 6860.2733542348,
"total_value_mid": 10555.2688742348,
"total_value_exit_net": 10552.4976275948,
"total_value": 10555.2688742348,
"base_cost_quote": 3618.1669014825,
"unrealized_pnl_exit_net": 74.0573718775
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 3506,
"quote_asset_bal": 6850.2116755498,
"total_value_mid": 10518.1888755498,
"total_value_exit_net": 10515.4378926498,
"total_value": 10518.1888755498,
"base_cost_quote": 3628.23918003,
"unrealized_pnl_exit_net": 36.98703707
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 3433.1,
"quote_asset_bal": 6927.6740496248,
"total_value_mid": 10563.6702596248,
"total_value_exit_net": 10560.9432624673,
"total_value": 10563.6702596248,
"base_cost_quote": 3552.8491899125,
"unrealized_pnl_exit_net": 80.42002293
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 3480.6,
"quote_asset_bal": 6877.4250911498,
"total_value_mid": 10544.2371911498,
"total_value_exit_net": 10541.4870820748,
"total_value": 10544.2371911498,
"base_cost_quote": 3603.0981483875,
"unrealized_pnl_exit_net": 60.9638425375
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 3480.6,
"quote_asset_bal": 6877.3725217898,
"total_value_mid": 10541.7482017898,
"total_value_exit_net": 10538.9999200298,
"total_value": 10541.7482017898,
"base_cost_quote": 3603.1615559075,
"unrealized_pnl_exit_net": 58.4658423325
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 3461.5,
"quote_asset_bal": 6897.5288232173,
"total_value_mid": 10553.5651232173,
"total_value_exit_net": 10550.8230959923,
"total_value": 10553.5651232173,
"base_cost_quote": 3583.0266060125,
"unrealized_pnl_exit_net": 70.2676667625
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 3369.3,
"quote_asset_bal": 6995.6900291723,
"total_value_mid": 10549.2907391723,
"total_value_exit_net": 10546.6255386398,
"total_value": 10549.2907391723,
"base_cost_quote": 3487.3915935075,
"unrealized_pnl_exit_net": 63.54391596
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 3398,
"quote_asset_bal": 6965.4847221698,
"total_value_mid": 10521.4917221698,
"total_value_exit_net": 10518.8247169198,
"total_value": 10521.4917221698,
"base_cost_quote": 3517.59690051,
"unrealized_pnl_exit_net": 35.74309424
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 3456.2,
"quote_asset_bal": 6904.9986916448,
"total_value_mid": 10485.6218916448,
"total_value_exit_net": 10482.9364242448,
"total_value": 10485.6218916448,
"base_cost_quote": 3578.082931035,
"unrealized_pnl_exit_net": -0.145198435
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 3465.9,
"quote_asset_bal": 6894.9627760373,
"total_value_mid": 10479.3965560373,
"total_value_exit_net": 10476.7082307023,
"total_value": 10479.3965560373,
"base_cost_quote": 3588.1289899325,
"unrealized_pnl_exit_net": -6.3835352675
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 3495,
"quote_asset_bal": 6864.8566333523,
"total_value_mid": 10477.2886333523,
"total_value_exit_net": 10474.5793093523,
"total_value": 10477.2886333523,
"base_cost_quote": 3618.2351326175,
"unrealized_pnl_exit_net": -8.5124566175
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 3485.3,
"quote_asset_bal": 6874.8982964523,
"total_value_mid": 10484.6235064523,
"total_value_exit_net": 10481.9162125448,
"total_value": 10484.6235064523,
"base_cost_quote": 3608.2036346325,
"unrealized_pnl_exit_net": -1.18571854
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 3446.6,
"quote_asset_bal": 6915.2839326623,
"total_value_mid": 10547.3110126623,
"total_value_exit_net": 10544.5869923523,
"total_value": 10547.3110126623,
"base_cost_quote": 3567.9245279425,
"unrealized_pnl_exit_net": 61.3785317475
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 3437,
"quote_asset_bal": 6925.4152869348,
"total_value_mid": 10549.3880869348,
"total_value_exit_net": 10546.6701073348,
"total_value": 10549.3880869348,
"base_cost_quote": 3557.846324955,
"unrealized_pnl_exit_net": 63.408495445
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 3437,
"quote_asset_bal": 6925.4152869348,
"total_value_mid": 10552.4813869348,
"total_value_exit_net": 10549.7610873598,
"total_value": 10552.4813869348,
"base_cost_quote": 3557.846324955,
"unrealized_pnl_exit_net": 66.49947547
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 3456.1,
"quote_asset_bal": 6905.2937170673,
"total_value_mid": 10538.0004270673,
"total_value_exit_net": 10535.2758970348,
"total_value": 10538.0004270673,
"base_cost_quote": 3577.9678948225,
"unrealized_pnl_exit_net": 52.014285145
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 3475.3,
"quote_asset_bal": 6885.1195577873,
"total_value_mid": 10524.1061877873,
"total_value_exit_net": 10521.3769478148,
"total_value": 10524.1061877873,
"base_cost_quote": 3598.1420541025,
"unrealized_pnl_exit_net": 38.115335925
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 3484.9,
"quote_asset_bal": 6875.0844661073,
"total_value_mid": 10522.0323161073,
"total_value_exit_net": 10519.2971052198,
"total_value": 10522.0323161073,
"base_cost_quote": 3608.1988710625,
"unrealized_pnl_exit_net": 36.01376805
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 3513.7,
"quote_asset_bal": 6844.9527200273,
"total_value_mid": 10510.4445600273,
"total_value_exit_net": 10507.6954411473,
"total_value": 10510.4445600273,
"base_cost_quote": 3638.3414610625,
"unrealized_pnl_exit_net": 24.4012600575
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 3552.4,
"quote_asset_bal": 6804.7805534823,
"total_value_mid": 10465.8839934823,
"total_value_exit_net": 10463.1381659023,
"total_value": 10465.8839934823,
"base_cost_quote": 3678.5136276075,
"unrealized_pnl_exit_net": -20.1560151875
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 3562.1,
"quote_asset_bal": 6794.8300243073,
"total_value_mid": 10470.2048043073,
"total_value_exit_net": 10467.4482732223,
"total_value": 10470.2048043073,
"base_cost_quote": 3688.4946477625,
"unrealized_pnl_exit_net": -15.8763988475
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 3571.9,
"quote_asset_bal": 6784.8753752748,
"total_value_mid": 10489.6500552748,
"total_value_exit_net": 10486.8714742648,
"total_value": 10489.6500552748,
"base_cost_quote": 3698.6786200175,
"unrealized_pnl_exit_net": 3.3174789725
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 3562.3,
"quote_asset_bal": 6794.9641498648,
"total_value_mid": 10480.8759598648,
"total_value_exit_net": 10478.1115260073,
"total_value": 10480.8759598648,
"base_cost_quote": 3688.6514052425,
"unrealized_pnl_exit_net": -5.5040291
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 3630.5,
"quote_asset_bal": 6724.6014164173,
"total_value_mid": 10453.8510164173,
"total_value_exit_net": 10451.0540792173,
"total_value": 10453.8510164173,
"base_cost_quote": 3759.075974085,
"unrealized_pnl_exit_net": -32.623311285
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 3630.5,
"quote_asset_bal": 6724.6309416123,
"total_value_mid": 10470.2177916123,
"total_value_exit_net": 10467.4086014748,
"total_value": 10470.2177916123,
"base_cost_quote": 3759.06714747,
"unrealized_pnl_exit_net": -16.2894876075
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 3553.2,
"quote_asset_bal": 6805.2805804123,
"total_value_mid": 10491.7255804123,
"total_value_exit_net": 10488.9607466623,
"total_value": 10491.7255804123,
"base_cost_quote": 3678.5948284625,
"unrealized_pnl_exit_net": 5.0853377875
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 3562.6,
"quote_asset_bal": 6795.3912667248,
"total_value_mid": 10523.6521667248,
"total_value_exit_net": 10520.8559710498,
"total_value": 10523.6521667248,
"base_cost_quote": 3688.600997465,
"unrealized_pnl_exit_net": 36.86370686
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 3630.5,
"quote_asset_bal": 6725.0366458548,
"total_value_mid": 10461.1841958548,
"total_value_exit_net": 10458.3820851923,
"total_value": 10461.1841958548,
"base_cost_quote": 3759.029659375,
"unrealized_pnl_exit_net": -25.6842200375
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 3640.3,
"quote_asset_bal": 6714.9911350298,
"total_value_mid": 10456.1274450298,
"total_value_exit_net": 10453.3215927973,
"total_value": 10456.1274450298,
"base_cost_quote": 3769.11651885,
"unrealized_pnl_exit_net": -30.7860610825
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 3827.7,
"quote_asset_bal": 6524.0289874848,
"total_value_mid": 10417.1826574848,
"total_value_exit_net": 10414.2627922323,
"total_value": 10417.1826574848,
"base_cost_quote": 3960.132053135,
"unrealized_pnl_exit_net": -69.8982483875
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 3719.5,
"quote_asset_bal": 6636.4745864398,
"total_value_mid": 10432.5962864398,
"total_value_exit_net": 10429.7491951648,
"total_value": 10432.5962864398,
"base_cost_quote": 3849.34420452,
"unrealized_pnl_exit_net": -56.069595795
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 3660.5,
"quote_asset_bal": 6696.8739206548,
"total_value_mid": 10478.9025206548,
"total_value_exit_net": 10476.0659992048,
"total_value": 10478.9025206548,
"base_cost_quote": 3789.150633175,
"unrealized_pnl_exit_net": -9.958554625
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 3612.2,
"quote_asset_bal": 6747.9954735223,
"total_value_mid": 10472.5348935223,
"total_value_exit_net": 10469.7414889573,
"total_value": 10472.5348935223,
"base_cost_quote": 3738.9072288625,
"unrealized_pnl_exit_net": -17.1612134275
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 3631.2,
"quote_asset_bal": 6728.1772181298,
"total_value_mid": 10471.9444181298,
"total_value_exit_net": 10469.1365927298,
"total_value": 10471.9444181298,
"base_cost_quote": 3758.9508102825,
"unrealized_pnl_exit_net": -17.9914356825
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 3690,
"quote_asset_bal": 6667.9120331148,
"total_value_mid": 10433.5570331148,
"total_value_exit_net": 10430.7327993648,
"total_value": 10433.5570331148,
"base_cost_quote": 3819.2159952975,
"unrealized_pnl_exit_net": -56.3952290475
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 3828.6,
"quote_asset_bal": 6527.1526366298,
"total_value_mid": 10404.7587166298,
"total_value_exit_net": 10401.8505120698,
"total_value": 10404.7587166298,
"base_cost_quote": 3959.9964415025,
"unrealized_pnl_exit_net": -85.2985660625
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 3818.6,
"quote_asset_bal": 6537.2575979423,
"total_value_mid": 10411.9910179423,
"total_value_exit_net": 10409.0849678773,
"total_value": 10411.9910179423,
"base_cost_quote": 3949.96601432,
"unrealized_pnl_exit_net": -78.138644385
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 3798.8,
"quote_asset_bal": 6557.4018484148,
"total_value_mid": 10432.1778484148,
"total_value_exit_net": 10429.2717664148,
"total_value": 10432.1778484148,
"base_cost_quote": 3929.8430434025,
"unrealized_pnl_exit_net": -57.9731254025
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 3779,
"quote_asset_bal": 6577.6246670873,
"total_value_mid": 10447.6985670873,
"total_value_exit_net": 10444.7960116623,
"total_value": 10447.6985670873,
"base_cost_quote": 3909.662469315,
"unrealized_pnl_exit_net": -42.49112474
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 3808.8,
"quote_asset_bal": 6547.3042261223,
"total_value_mid": 10420.4729461223,
"total_value_exit_net": 10417.5680695823,
"total_value": 10420.4729461223,
"base_cost_quote": 3939.99334042,
"unrealized_pnl_exit_net": -69.72949696
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 3838.5,
"quote_asset_bal": 6517.1797096673,
"total_value_mid": 10394.8324096673,
"total_value_exit_net": 10391.9241701423,
"total_value": 10394.8324096673,
"base_cost_quote": 3970.117856875,
"unrealized_pnl_exit_net": -95.3733964
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 3848.4,
"quote_asset_bal": 6507.1712289323,
"total_value_mid": 10402.5217089323,
"total_value_exit_net": 10399.6001960723,
"total_value": 10402.5217089323,
"base_cost_quote": 3980.12633761,
"unrealized_pnl_exit_net": -87.69737047
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 3828.6,
"quote_asset_bal": 6527.2294140023,
"total_value_mid": 10409.4298140023,
"total_value_exit_net": 10406.5181637023,
"total_value": 10409.4298140023,
"base_cost_quote": 3960.08956129,
"unrealized_pnl_exit_net": -80.80081159
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 3838.5,
"quote_asset_bal": 6517.1991369323,
"total_value_mid": 10402.9126869323,
"total_value_exit_net": 10399.9984017698,
"total_value": 10402.9126869323,
"base_cost_quote": 3970.11983836,
"unrealized_pnl_exit_net": -87.3205735225
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 3868.4,
"quote_asset_bal": 6487.0124402423,
"total_value_mid": 10402.6069202423,
"total_value_exit_net": 10399.6702243823,
"total_value": 10402.6069202423,
"base_cost_quote": 4000.31738955,
"unrealized_pnl_exit_net": -87.65960541
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 3799,
"quote_asset_bal": 6557.5771866973,
"total_value_mid": 10455.3511866973,
"total_value_exit_net": 10452.4278561973,
"total_value": 10455.3511866973,
"base_cost_quote": 3929.837749435,
"unrealized_pnl_exit_net": -34.987079935
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 3808.8,
"quote_asset_bal": 6547.5223452923,
"total_value_mid": 10438.9733052923,
"total_value_exit_net": 10436.0547170723,
"total_value": 10438.9733052923,
"base_cost_quote": 3939.90303274,
"unrealized_pnl_exit_net": -51.37066096
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 3838.4,
"quote_asset_bal": 6517.2949817598,
"total_value_mid": 10429.7761017598,
"total_value_exit_net": 10426.8417409198,
"total_value": 10429.7761017598,
"base_cost_quote": 3970.1303962725,
"unrealized_pnl_exit_net": -60.5836371125
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 3887.9,
"quote_asset_bal": 6467.0343355448,
"total_value_mid": 10407.4209855448,
"total_value_exit_net": 10404.4656955573,
"total_value": 10407.4209855448,
"base_cost_quote": 4020.4125596325,
"unrealized_pnl_exit_net": -82.98119962
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 3907.9,
"quote_asset_bal": 6446.8867005198,
"total_value_mid": 10388.3946405198,
"total_value_exit_net": 10385.4385095648,
"total_value": 10388.3946405198,
"base_cost_quote": 4040.6028309875,
"unrealized_pnl_exit_net": -102.0510219425
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 3878,
"quote_asset_bal": 6477.2050735323,
"total_value_mid": 10397.4752735323,
"total_value_exit_net": 10394.5350708823,
"total_value": 10397.4752735323,
"base_cost_quote": 4010.359495485,
"unrealized_pnl_exit_net": -93.029498135
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 3908.1,
"quote_asset_bal": 6447.1060993048,
"total_value_mid": 10407.1838293048,
"total_value_exit_net": 10404.2137710073,
"total_value": 10407.1838293048,
"base_cost_quote": 4040.6303315975,
"unrealized_pnl_exit_net": -83.522659895
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 3918.2,
"quote_asset_bal": 6437.0668194923,
"total_value_mid": 10379.9514794923,
"total_value_exit_net": 10376.9943159973,
"total_value": 10379.9514794923,
"base_cost_quote": 4050.76635792,
"unrealized_pnl_exit_net": -110.838861415
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 3918.1,
"quote_asset_bal": 6437.1338871048,
"total_value_mid": 10403.0347071048,
"total_value_exit_net": 10400.0602814898,
"total_value": 10403.0347071048,
"base_cost_quote": 4050.7101658075,
"unrealized_pnl_exit_net": -87.7837714225
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 3958.1,
"quote_asset_bal": 6397.0784416148,
"total_value_mid": 10376.5521816148,
"total_value_exit_net": 10373.5675763098,
"total_value": 10376.5521816148,
"base_cost_quote": 4090.7980892175,
"unrealized_pnl_exit_net": -114.3089545225
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 3988.1,
"quote_asset_bal": 6366.9016461148,
"total_value_mid": 10371.3528561148,
"total_value_exit_net": 10368.3495177073,
"total_value": 10371.3528561148,
"base_cost_quote": 4120.9967212175,
"unrealized_pnl_exit_net": -119.548849625
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 4008.1,
"quote_asset_bal": 6346.8386101148,
"total_value_mid": 10357.3434701148,
"total_value_exit_net": 10354.3355914698,
"total_value": 10357.3434701148,
"base_cost_quote": 4141.0597572175,
"unrealized_pnl_exit_net": -133.5627758625
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 4018.1,
"quote_asset_bal": 6336.8400651148,
"total_value_mid": 10363.7798851148,
"total_value_exit_net": 10360.7596802498,
"total_value": 10363.7798851148,
"base_cost_quote": 4151.0692587175,
"unrealized_pnl_exit_net": -127.1496435825
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 4008.1,
"quote_asset_bal": 6346.8542651148,
"total_value_mid": 10389.0231151148,
"total_value_exit_net": 10385.9914884773,
"total_value": 10389.0231151148,
"base_cost_quote": 4141.0877782175,
"unrealized_pnl_exit_net": -101.950554855
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 3800.2,
"quote_asset_bal": 6560.4824421823,
"total_value_mid": 10500.1497821823,
"total_value_exit_net": 10497.1950316773,
"total_value": 10500.1497821823,
"base_cost_quote": 3929.9993605525,
"unrealized_pnl_exit_net": 6.7132289425
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 3770,
"quote_asset_bal": 6592.2764118798,
"total_value_mid": 10511.9454118798,
"total_value_exit_net": 10509.0056601298,
"total_value": 10511.9454118798,
"base_cost_quote": 3899.8499654525,
"unrealized_pnl_exit_net": 16.8792827975
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 3750.6,
"quote_asset_bal": 6612.5263889373,
"total_value_mid": 10518.0261689373,
"total_value_exit_net": 10515.0970441023,
"total_value": 10518.0261689373,
"base_cost_quote": 3879.6724236375,
"unrealized_pnl_exit_net": 22.8982315275
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 3731.3,
"quote_asset_bal": 6632.6970927098,
"total_value_mid": 10533.0249827098,
"total_value_exit_net": 10530.0997367923,
"total_value": 10533.0249827098,
"base_cost_quote": 3859.5554872425,
"unrealized_pnl_exit_net": 37.84715684
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 3741.1,
"quote_asset_bal": 6622.5920239923,
"total_value_mid": 10513.7101339923,
"total_value_exit_net": 10510.7917954098,
"total_value": 10513.7101339923,
"base_cost_quote": 3869.7360369325,
"unrealized_pnl_exit_net": 18.463734485
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 1825.6,
"quote_asset_bal": 8733.4184569798,
"total_value_mid": 10745.9598969798,
"total_value_exit_net": 10744.4504908998,
"total_value": 10745.9598969798,
"base_cost_quote": 1890.191921505,
"unrealized_pnl_exit_net": 120.840112415
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 1664.3,
"quote_asset_bal": 8922.1032499748,
"total_value_mid": 10817.9073799748,
"total_value_exit_net": 10816.4855268773,
"total_value": 10817.9073799748,
"base_cost_quote": 1723.7975692675,
"unrealized_pnl_exit_net": 170.584707635
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 1797.7,
"quote_asset_bal": 8773.4469437523,
"total_value_mid": 10802.1513937523,
"total_value_exit_net": 10800.6298654148,
"total_value": 10802.1513937523,
"base_cost_quote": 1874.7523404975,
"unrealized_pnl_exit_net": 152.430581165
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 1803.8,
"quote_asset_bal": 8767.8272916873,
"total_value_mid": 10868.1720116873,
"total_value_exit_net": 10866.5967531473,
"total_value": 10868.1720116873,
"base_cost_quote": 1889.6690596525,
"unrealized_pnl_exit_net": 209.1004018075
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 1918.8,
"quote_asset_bal": 8645.0966675973,
"total_value_mid": 10819.4808275973,
"total_value_exit_net": 10817.8500394773,
"total_value": 10819.4808275973,
"base_cost_quote": 2025.52460495,
"unrealized_pnl_exit_net": 147.22876693
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 2120.7,
"quote_asset_bal": 8427.5703883448,
"total_value_mid": 10813.5699583448,
"total_value_exit_net": 10811.7804586673,
"total_value": 10813.5699583448,
"base_cost_quote": 2246.6931270275,
"unrealized_pnl_exit_net": 137.516943295
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 2047.7,
"quote_asset_bal": 8512.2528093323,
"total_value_mid": 10842.5354093323,
"total_value_exit_net": 10840.7876973823,
"total_value": 10842.5354093323,
"base_cost_quote": 2166.419536955,
"unrealized_pnl_exit_net": 162.115351095
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 2074.4,
"quote_asset_bal": 8486.2477804948,
"total_value_mid": 10849.1968204948,
"total_value_exit_net": 10847.4246087148,
"total_value": 10849.1968204948,
"base_cost_quote": 2196.365699745,
"unrealized_pnl_exit_net": 164.811128475
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 2048.1,
"quote_asset_bal": 8517.9334729998,
"total_value_mid": 10853.7915229998,
"total_value_exit_net": 10852.0396294623,
"total_value": 10853.7915229998,
"base_cost_quote": 2166.3637851725,
"unrealized_pnl_exit_net": 167.74237129
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 2083.5,
"quote_asset_bal": 8477.8522917098,
"total_value_mid": 10841.9997417098,
"total_value_exit_net": 10840.2266311223,
"total_value": 10841.9997417098,
"base_cost_quote": 2206.583837605,
"unrealized_pnl_exit_net": 155.7905018075
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 1856.8,
"quote_asset_bal": 8741.5925108373,
"total_value_mid": 10912.0060308373,
"total_value_exit_net": 10910.3782206973,
"total_value": 10912.0060308373,
"base_cost_quote": 1955.1164884375,
"unrealized_pnl_exit_net": 213.6692214225
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 1866.2,
"quote_asset_bal": 8732.6543469573,
"total_value_mid": 10915.3618669573,
"total_value_exit_net": 10913.7248363173,
"total_value": 10915.3618669573,
"base_cost_quote": 1970.26375037,
"unrealized_pnl_exit_net": 210.80673899
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 1894.6,
"quote_asset_bal": 8701.3038457348,
"total_value_mid": 10896.1979457348,
"total_value_exit_net": 10894.5517751598,
"total_value": 10896.1979457348,
"base_cost_quote": 2000.4491824775,
"unrealized_pnl_exit_net": 192.7987469475
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 1973.6,
"quote_asset_bal": 8610.8474921123,
"total_value_mid": 10887.0003721123,
"total_value_exit_net": 10885.2932574523,
"total_value": 10887.0003721123,
"base_cost_quote": 2091.042086235,
"unrealized_pnl_exit_net": 183.403679105
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 1984.3,
"quote_asset_bal": 8602.0321720798,
"total_value_mid": 10879.2148520798,
"total_value_exit_net": 10877.5069650698,
"total_value": 10879.2148520798,
"base_cost_quote": 2101.2393984875,
"unrealized_pnl_exit_net": 174.2353945025
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 1856.1,
"quote_asset_bal": 8754.5380085373,
"total_value_mid": 10906.1291285373,
"total_value_exit_net": 10904.5154351973,
"total_value": 10906.1291285373,
"base_cost_quote": 1955.261206895,
"unrealized_pnl_exit_net": 194.716219765
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 1864.6,
"quote_asset_bal": 8744.9223416223,
"total_value_mid": 10918.6730216223,
"total_value_exit_net": 10917.0427086123,
"total_value": 10918.6730216223,
"base_cost_quote": 1965.1292924125,
"unrealized_pnl_exit_net": 206.9910745775
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 1873.8,
"quote_asset_bal": 8734.4488519398,
"total_value_mid": 10910.1180319397,
"total_value_exit_net": 10908.4862800547,
"total_value": 10910.1180319397,
"base_cost_quote": 1975.260915435,
"unrealized_pnl_exit_net": 198.77651268
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 1874.2,
"quote_asset_bal": 8734.1241506548,
"total_value_mid": 10904.2603306547,
"total_value_exit_net": 10902.6327285198,
"total_value": 10904.2603306547,
"base_cost_quote": 1975.32001973,
"unrealized_pnl_exit_net": 193.188558135
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 1874.4,
"quote_asset_bal": 8734.1039944823,
"total_value_mid": 10904.4717544823,
"total_value_exit_net": 10902.8439786623,
"total_value": 10904.4717544823,
"base_cost_quote": 1975.2530995775,
"unrealized_pnl_exit_net": 193.4868846025
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 1891.8,
"quote_asset_bal": 8714.0194491848,
"total_value_mid": 10900.1835291848,
"total_value_exit_net": 10898.5439061248,
"total_value": 10900.1835291848,
"base_cost_quote": 1995.378232115,
"unrealized_pnl_exit_net": 189.146224825
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 1874.4,
"quote_asset_bal": 8734.1404970723,
"total_value_mid": 10902.0715370723,
"total_value_exit_net": 10900.4455887923,
"total_value": 10902.0715370723,
"base_cost_quote": 1975.2774778475,
"unrealized_pnl_exit_net": 191.0276138725
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 1874.4,
"quote_asset_bal": 8734.1279801648,
"total_value_mid": 10905.8078201648,
"total_value_exit_net": 10904.1790602848,
"total_value": 10905.8078201648,
"base_cost_quote": 1975.3001148125,
"unrealized_pnl_exit_net": 194.7509653075
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 1874.9,
"quote_asset_bal": 8733.7392701073,
"total_value_mid": 10901.1236701073,
"total_value_exit_net": 10899.4981318073,
"total_value": 10901.1236701073,
"base_cost_quote": 1975.3049584425,
"unrealized_pnl_exit_net": 190.4539032575
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 1971.9,
"quote_asset_bal": 8622.9514190798,
"total_value_mid": 10863.2270090798,
"total_value_exit_net": 10861.5468023873,
"total_value": 10863.2270090798,
"base_cost_quote": 2086.218391175,
"unrealized_pnl_exit_net": 152.3769921325
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 2159.1,
"quote_asset_bal": 8411.8390908773,
"total_value_mid": 10856.3721108772,
"total_value_exit_net": 10854.5387111122,
"total_value": 10856.3721108772,
"base_cost_quote": 2297.6510768475,
"unrealized_pnl_exit_net": 145.0485433875
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 2132.2,
"quote_asset_bal": 8442.4651779073,
"total_value_mid": 10883.6209579072,
"total_value_exit_net": 10881.7900910722,
"total_value": 10883.6209579072,
"base_cost_quote": 2267.430638505,
"unrealized_pnl_exit_net": 171.89427466
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 2087.5,
"quote_asset_bal": 8493.8982717698,
"total_value_mid": 10900.1595217697,
"total_value_exit_net": 10898.3548258322,
"total_value": 10900.1595217697,
"base_cost_quote": 2217.02728432,
"unrealized_pnl_exit_net": 187.4292697425
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 2061.2,
"quote_asset_bal": 8524.3287763923,
"total_value_mid": 10908.5188163922,
"total_value_exit_net": 10906.7306738622,
"total_value": 10908.5188163922,
"base_cost_quote": 2186.8638086675,
"unrealized_pnl_exit_net": 195.5380888025
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 2113.5,
"quote_asset_bal": 8464.2477868198,
"total_value_mid": 10877.4420868197,
"total_value_exit_net": 10875.6321910947,
"total_value": 10877.4420868197,
"base_cost_quote": 2247.1407224725,
"unrealized_pnl_exit_net": 164.2436818025
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 2175.8,
"quote_asset_bal": 8393.8455383273,
"total_value_mid": 10849.2358383272,
"total_value_exit_net": 10847.3942956022,
"total_value": 10849.2358383272,
"base_cost_quote": 2317.61695003,
"unrealized_pnl_exit_net": 135.931807245
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 2175.7,
"quote_asset_bal": 8394.0356779448,
"total_value_mid": 10862.8024679447,
"total_value_exit_net": 10860.9508928522,
"total_value": 10862.8024679447,
"base_cost_quote": 2317.5654214125,
"unrealized_pnl_exit_net": 149.349793495
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 2193.5,
"quote_asset_bal": 8373.8868284373,
"total_value_mid": 10852.5418284372,
"total_value_exit_net": 10850.6828371872,
"total_value": 10852.5418284372,
"base_cost_quote": 2337.7675416475,
"unrealized_pnl_exit_net": 139.0284671025
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 2400,
"quote_asset_bal": 8142.8520189223,
"total_value_mid": 10816.6920189222,
"total_value_exit_net": 10814.6866389222,
"total_value": 10816.6920189222,
"base_cost_quote": 2568.93625825,
"unrealized_pnl_exit_net": 102.89836175
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 2993.9,
"quote_asset_bal": 7508.2697574373,
"total_value_mid": 10779.4048974373,
"total_value_exit_net": 10776.9515460823,
"total_value": 10779.4048974373,
"base_cost_quote": 3212.0345104675,
"unrealized_pnl_exit_net": 56.6472781775
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 2899.1,
"quote_asset_bal": 7618.3416539823,
"total_value_mid": 10784.7386739823,
"total_value_exit_net": 10782.3638762173,
"total_value": 10784.7386739823,
"base_cost_quote": 3111.3216724475,
"unrealized_pnl_exit_net": 52.7005497875
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 2864.1,
"quote_asset_bal": 7659.1702675523,
"total_value_mid": 10835.7435775523,
"total_value_exit_net": 10833.3611475698,
"total_value": 10835.7435775523,
"base_cost_quote": 3071.3468738175,
"unrealized_pnl_exit_net": 102.8440062
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 2912.6,
"quote_asset_bal": 7606.8745258623,
"total_value_mid": 10797.9190858623,
"total_value_exit_net": 10795.5258024423,
"total_value": 10797.9190858623,
"base_cost_quote": 3121.5937707475,
"unrealized_pnl_exit_net": 67.0575058325
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 2941.1,
"quote_asset_bal": 7575.8345296498,
"total_value_mid": 10841.3378596497,
"total_value_exit_net": 10838.8887321522,
"total_value": 10841.3378596497,
"base_cost_quote": 3151.8181020075,
"unrealized_pnl_exit_net": 111.236100495
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 2813.7,
"quote_asset_bal": 7718.2229923298,
"total_value_mid": 10877.4453523298,
"total_value_exit_net": 10875.0759355598,
"total_value": 10877.4453523298,
"base_cost_quote": 3010.9438655125,
"unrealized_pnl_exit_net": 145.9090777175
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 2878.1,
"quote_asset_bal": 7646.6993141673,
"total_value_mid": 10828.1510541673,
"total_value_exit_net": 10825.7649653623,
"total_value": 10828.1510541673,
"base_cost_quote": 3081.332007055,
"unrealized_pnl_exit_net": 97.73364414
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 2842.7,
"quote_asset_bal": 7686.1027721898,
"total_value_mid": 10851.4492221898,
"total_value_exit_net": 10849.0752123523,
"total_value": 10851.4492221898,
"base_cost_quote": 3040.9423274975,
"unrealized_pnl_exit_net": 122.030112665
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 2722.8,
"quote_asset_bal": 7829.6395608948,
"total_value_mid": 10802.6648808947,
"total_value_exit_net": 10800.4351119047,
"total_value": 10802.6648808947,
"base_cost_quote": 2905.569564015,
"unrealized_pnl_exit_net": 65.225986995
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 2819.3,
"quote_asset_bal": 7725.0202755398,
"total_value_mid": 10806.7971055397,
"total_value_exit_net": 10804.4857729172,
"total_value": 10806.7971055397,
"base_cost_quote": 3006.0163526475,
"unrealized_pnl_exit_net": 73.44914473
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 2954.4,
"quote_asset_bal": 7588.2095292923,
"total_value_mid": 10844.8446492922,
"total_value_exit_net": 10842.4021729522,
"total_value": 10844.8446492922,
"base_cost_quote": 3151.5232410275,
"unrealized_pnl_exit_net": 102.6694026325
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 2976.1,
"quote_asset_bal": 7566.2594916898,
"total_value_mid": 10847.7073516897,
"total_value_exit_net": 10845.2462657947,
"total_value": 10847.7073516897,
"base_cost_quote": 3171.72869376,
"unrealized_pnl_exit_net": 107.258080345
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 3200,
"quote_asset_bal": 7324.7202770448,
"total_value_mid": 10751.2802770447,
"total_value_exit_net": 10748.7103570447,
"total_value": 10751.2802770447,
"base_cost_quote": 3413.1390658475,
"unrealized_pnl_exit_net": 10.8510141525
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 3191.6,
"quote_asset_bal": 7338.1721924273,
"total_value_mid": 10824.9951924272,
"total_value_exit_net": 10822.3800751772,
"total_value": 10824.9951924272,
"base_cost_quote": 3403.1206576725,
"unrealized_pnl_exit_net": 81.0872250775
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 2032.1,
"quote_asset_bal": 8709.8900256898,
"total_value_mid": 10966.3338656897,
"total_value_exit_net": 10964.6415328097,
"total_value": 10966.3338656897,
"base_cost_quote": 2116.37285007,
"unrealized_pnl_exit_net": 138.3786570499
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 2116.5,
"quote_asset_bal": 8616.7766635523,
"total_value_mid": 10960.3771135522,
"total_value_exit_net": 10958.6194132147,
"total_value": 10960.3771135522,
"base_cost_quote": 2206.85185847,
"unrealized_pnl_exit_net": 134.9908911924
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 2356.1999999999,
"quote_asset_bal": 8359.4494702197,
"total_value_mid": 10923.4663102197,
"total_value_exit_net": 10921.5432975897,
"total_value": 10923.4663102197,
"base_cost_quote": 2463.0757523725,
"unrealized_pnl_exit_net": 99.0180749974
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 2419.2999999999,
"quote_asset_bal": 8299.4674471522,
"total_value_mid": 10995.2934371522,
"total_value_exit_net": 10993.2715676597,
"total_value": 10995.2934371522,
"base_cost_quote": 2518.374825595,
"unrealized_pnl_exit_net": 175.4292949124
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 2356.2999999999,
"quote_asset_bal": 8375.8635511872,
"total_value_mid": 10998.4254511871,
"total_value_exit_net": 10996.4585297621,
"total_value": 10998.4254511871,
"base_cost_quote": 2438.0504974975,
"unrealized_pnl_exit_net": 182.5444810774
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 2339.1999999999,
"quote_asset_bal": 8395.0673729222,
"total_value_mid": 11012.1643329221,
"total_value_exit_net": 11010.2015102021,
"total_value": 11012.1643329221,
"base_cost_quote": 2417.91191488,
"unrealized_pnl_exit_net": 197.2222223999
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 2330.6999999999,
"quote_asset_bal": 8405.6280143622,
"total_value_mid": 11024.8686743621,
"total_value_exit_net": 11022.9042438671,
"total_value": 11024.8686743621,
"base_cost_quote": 2407.8988006725,
"unrealized_pnl_exit_net": 209.3774288324
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 2294.7999999999,
"quote_asset_bal": 8446.6859428597,
"total_value_mid": 11029.9423028596,
"total_value_exit_net": 11028.0048605896,
"total_value": 11029.9423028596,
"base_cost_quote": 2367.698022685,
"unrealized_pnl_exit_net": 213.6208950449
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 2221.4999999999,
"quote_asset_bal": 8530.9359098897,
"total_value_mid": 11025.2361098896,
"total_value_exit_net": 11023.3653847396,
"total_value": 11025.2361098896,
"base_cost_quote": 2287.24759008,
"unrealized_pnl_exit_net": 205.1818847699
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 2239.1999999999,
"quote_asset_bal": 8511.0369095647,
"total_value_mid": 11041.3329095646,
"total_value_exit_net": 11039.4351875646,
"total_value": 11041.3329095646,
"base_cost_quote": 2307.39456899,
"unrealized_pnl_exit_net": 221.0037090099
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 2256.9999999999,
"quote_asset_bal": 8491.0206342872,
"total_value_mid": 11022.6975342871,
"total_value_exit_net": 11020.7987766121,
"total_value": 11022.6975342871,
"base_cost_quote": 2327.464990525,
"unrealized_pnl_exit_net": 202.3131517999
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 2301.9999999999,
"quote_asset_bal": 8440.7102313122,
"total_value_mid": 11001.6852313122,
"total_value_exit_net": 10999.7645000622,
"total_value": 11001.6852313122,
"base_cost_quote": 2377.7956102,
"unrealized_pnl_exit_net": 181.2586585499
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 2338.3999999999,
"quote_asset_bal": 8400.3524256422,
"total_value_mid": 10994.3395456422,
"total_value_exit_net": 10992.3940553022,
"total_value": 10994.3395456422,
"base_cost_quote": 2418.15341587,
"unrealized_pnl_exit_net": 173.8882137899
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 2383.8999999999,
"quote_asset_bal": 8350.1353105822,
"total_value_mid": 10970.7565805822,
"total_value_exit_net": 10968.7911146297,
"total_value": 10970.7565805822,
"base_cost_quote": 2468.2806231,
"unrealized_pnl_exit_net": 150.3751809474
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 2366.2999999999,
"quote_asset_bal": 8369.5926865922,
"total_value_mid": 10995.7124265921,
"total_value_exit_net": 10993.7428367871,
"total_value": 10995.7124265921,
"base_cost_quote": 2448.23467991,
"unrealized_pnl_exit_net": 175.9154702849
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 2375.5999999999,
"quote_asset_bal": 8359.2222180572,
"total_value_mid": 10992.5748180571,
"total_value_exit_net": 10990.5998036071,
"total_value": 10992.5748180571,
"base_cost_quote": 2458.4042713875,
"unrealized_pnl_exit_net": 172.9733141624
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 2384.8999999999,
"quote_asset_bal": 8348.9122833347,
"total_value_mid": 10990.4275233346,
"total_value_exit_net": 10988.4463869046,
"total_value": 10990.4275233346,
"base_cost_quote": 2468.25092084,
"unrealized_pnl_exit_net": 171.2831827299
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 2375.8999999999,
"quote_asset_bal": 8358.9403792097,
"total_value_mid": 10999.9908192096,
"total_value_exit_net": 10998.0100313796,
"total_value": 10999.9908192096,
"base_cost_quote": 2458.1830055625,
"unrealized_pnl_exit_net": 180.8866466074
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 2348.8999999999,
"quote_asset_bal": 8389.1078430347,
"total_value_mid": 11012.1244730346,
"total_value_exit_net": 11010.1572105621,
"total_value": 11012.1244730346,
"base_cost_quote": 2428.1067652875,
"unrealized_pnl_exit_net": 192.9426022399
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 2375.8999999999,
"quote_asset_bal": 8359.0220364347,
"total_value_mid": 10996.5086264346,
"total_value_exit_net": 10994.5305114921,
"total_value": 10996.5086264346,
"base_cost_quote": 2458.2127278375,
"unrealized_pnl_exit_net": 177.2957472199
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 2403.7999999999,
"quote_asset_bal": 8328.1617613247,
"total_value_mid": 10989.8895013246,
"total_value_exit_net": 10987.8932055196,
"total_value": 10989.8895013246,
"base_cost_quote": 2488.4710645825,
"unrealized_pnl_exit_net": 171.2603796124
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 2394.7999999999,
"quote_asset_bal": 8338.1316782747,
"total_value_mid": 10987.2594382746,
"total_value_exit_net": 10985.2725924546,
"total_value": 10987.2594382746,
"base_cost_quote": 2478.4007374975,
"unrealized_pnl_exit_net": 168.7401766824
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 2376.7999999999,
"quote_asset_bal": 8358.1182770747,
"total_value_mid": 10991.3749970746,
"total_value_exit_net": 10989.4000545346,
"total_value": 10991.3749970746,
"base_cost_quote": 2458.2127278375,
"unrealized_pnl_exit_net": 173.0690496224
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 2385.8999999999,
"quote_asset_bal": 8348.0279149747,
"total_value_mid": 10987.5490849746,
"total_value_exit_net": 10985.5694440971,
"total_value": 10987.5490849746,
"base_cost_quote": 2468.3030899375,
"unrealized_pnl_exit_net": 169.2384391849
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 2404.0999999999,
"quote_asset_bal": 8327.8836180747,
"total_value_mid": 10986.0969880746,
"total_value_exit_net": 10984.1033280471,
"total_value": 10986.0969880746,
"base_cost_quote": 2488.4473868375,
"unrealized_pnl_exit_net": 167.7723231349
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 2404.0999999999,
"quote_asset_bal": 8327.8836180747,
"total_value_mid": 10982.0100180746,
"total_value_exit_net": 10980.0194232746,
"total_value": 10982.0100180746,
"base_cost_quote": 2488.4473868375,
"unrealized_pnl_exit_net": 163.6884183624
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 2413.1999999999,
"quote_asset_bal": 8317.8333260047,
"total_value_mid": 10980.3168860046,
"total_value_exit_net": 10978.3200233346,
"total_value": 10980.3168860046,
"base_cost_quote": 2498.4976789075,
"unrealized_pnl_exit_net": 161.9890184224
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 2413.1999999999,
"quote_asset_bal": 8317.8333260047,
"total_value_mid": 10982.9714060046,
"total_value_exit_net": 10980.9725524446,
"total_value": 10982.9714060046,
"base_cost_quote": 2498.4976789075,
"unrealized_pnl_exit_net": 164.6415475324
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 2413.1999999999,
"quote_asset_bal": 8317.8333260047,
"total_value_mid": 10982.9714060046,
"total_value_exit_net": 10980.9725524446,
"total_value": 10982.9714060046,
"base_cost_quote": 2498.4976789075,
"unrealized_pnl_exit_net": 164.6415475324
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 2422.3999999999,
"quote_asset_bal": 8307.6968178397,
"total_value_mid": 10975.2436978396,
"total_value_exit_net": 10973.2430376796,
"total_value": 10975.2436978396,
"base_cost_quote": 2508.53431074,
"unrealized_pnl_exit_net": 157.0119090999
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 2431.4999999999,
"quote_asset_bal": 8297.6483471347,
"total_value_mid": 10981.7811971346,
"total_value_exit_net": 10979.7680974971,
"total_value": 10981.7811971346,
"base_cost_quote": 2518.582781445,
"unrealized_pnl_exit_net": 163.5369689174
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 2431.4999999999,
"quote_asset_bal": 8297.6483471347,
"total_value_mid": 10972.7846471346,
"total_value_exit_net": 10970.7782949096,
"total_value": 10972.7846471346,
"base_cost_quote": 2518.582781445,
"unrealized_pnl_exit_net": 154.5471663299
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 2490.0999999999,
"quote_asset_bal": 8234.1419370897,
"total_value_mid": 10953.5801470896,
"total_value_exit_net": 10951.5405684321,
"total_value": 10953.5801470896,
"base_cost_quote": 2579.01152904,
"unrealized_pnl_exit_net": 138.3871023024
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 2674.9999999999,
"quote_asset_bal": 8033.2633126897,
"total_value_mid": 10935.1033126896,
"total_value_exit_net": 10932.9269326896,
"total_value": 10935.1033126896,
"base_cost_quote": 2780.289554425,
"unrealized_pnl_exit_net": 119.3740655749
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 2665.5999999999,
"quote_asset_bal": 8043.4706760847,
"total_value_mid": 10943.1103560846,
"total_value_exit_net": 10940.9356263246,
"total_value": 10943.1103560846,
"base_cost_quote": 2770.10394094,
"unrealized_pnl_exit_net": 127.3610092999
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 2537.8999999999,
"quote_asset_bal": 8185.1163523797,
"total_value_mid": 10964.1168523796,
"total_value_exit_net": 10962.0326020046,
"total_value": 10964.1168523796,
"base_cost_quote": 2629.35762031,
"unrealized_pnl_exit_net": 147.5586293149
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 2547.6999999999,
"quote_asset_bal": 8174.5577159472,
"total_value_mid": 10963.7796759471,
"total_value_exit_net": 10961.6877594771,
"total_value": 10963.7796759471,
"base_cost_quote": 2639.344845115,
"unrealized_pnl_exit_net": 147.7851984149
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 2686.9999999999,
"quote_asset_bal": 8023.8479024572,
"total_value_mid": 10949.7222024571,
"total_value_exit_net": 10947.5277967321,
"total_value": 10949.7222024571,
"base_cost_quote": 2790.1819381525,
"unrealized_pnl_exit_net": 133.4979561224
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 2686.9999999999,
"quote_asset_bal": 8024.1050019222,
"total_value_mid": 10941.9183019221,
"total_value_exit_net": 10939.7299419471,
"total_value": 10941.9183019221,
"base_cost_quote": 2790.1729714325,
"unrealized_pnl_exit_net": 125.4519685924
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 2696.0999999999,
"quote_asset_bal": 8014.2170380397,
"total_value_mid": 10950.0003280396,
"total_value_exit_net": 10947.7984905721,
"total_value": 10950.0003280396,
"base_cost_quote": 2800.157804445,
"unrealized_pnl_exit_net": 133.4236480874
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 2761.0999999999,
"quote_asset_bal": 7943.8603183522,
"total_value_mid": 10920.6022283521,
"total_value_exit_net": 10918.3696719196,
"total_value": 10920.6022283521,
"base_cost_quote": 2870.5874170675,
"unrealized_pnl_exit_net": 103.9219364999
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 2733.1999999999,
"quote_asset_bal": 7974.1313210347,
"total_value_mid": 10945.6663610346,
"total_value_exit_net": 10943.4377097546,
"total_value": 10945.6663610346,
"base_cost_quote": 2840.400243655,
"unrealized_pnl_exit_net": 128.9061450649
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 2742.4999999999,
"quote_asset_bal": 7964.0970139597,
"total_value_mid": 10932.0305139596,
"total_value_exit_net": 10929.8045638346,
"total_value": 10932.0305139596,
"base_cost_quote": 2850.500172925,
"unrealized_pnl_exit_net": 115.2073769499
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 2723.8999999999,
"quote_asset_bal": 7984.4200217047,
"total_value_mid": 10945.8441017046,
"total_value_exit_net": 10943.6230336446,
"total_value": 10945.8441017046,
"base_cost_quote": 2830.32823531,
"unrealized_pnl_exit_net": 128.8747766299
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 2770.3999999999,
"quote_asset_bal": 7934.1101060497,
"total_value_mid": 10936.9466660496,
"total_value_exit_net": 10934.6945386296,
"total_value": 10936.9466660496,
"base_cost_quote": 2880.725504935,
"unrealized_pnl_exit_net": 119.8589276449
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 2761.0999999999,
"quote_asset_bal": 7944.1763107297,
"total_value_mid": 10933.8953907296,
"total_value_exit_net": 10931.6531014196,
"total_value": 10933.8953907296,
"base_cost_quote": 2870.670249145,
"unrealized_pnl_exit_net": 116.8065415449
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 2812.5999999999,
"quote_asset_bal": 7888.8664453947,
"total_value_mid": 10932.0996453946,
"total_value_exit_net": 10929.8172204946,
"total_value": 10932.0996453946,
"base_cost_quote": 2926.000195505,
"unrealized_pnl_exit_net": 114.9505795949
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 2793.9999999999,
"quote_asset_bal": 7909.0428879297,
"total_value_mid": 10937.7388879296,
"total_value_exit_net": 10935.4673659296,
"total_value": 10937.7388879296,
"base_cost_quote": 2905.87665416,
"unrealized_pnl_exit_net": 120.5478238399
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 2793.9999999999,
"quote_asset_bal": 7909.0538131047,
"total_value_mid": 10931.3236131046,
"total_value_exit_net": 10929.0569107546,
"total_value": 10931.3236131046,
"base_cost_quote": 2905.87665416,
"unrealized_pnl_exit_net": 114.1264434899
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 2793.9999999999,
"quote_asset_bal": 7909.0538131047,
"total_value_mid": 10936.0734131046,
"total_value_exit_net": 10933.8031484046,
"total_value": 10936.0734131046,
"base_cost_quote": 2905.87665416,
"unrealized_pnl_exit_net": 118.8726811399
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 2793.9999999999,
"quote_asset_bal": 7909.0538131047,
"total_value_mid": 10936.0734131046,
"total_value_exit_net": 10933.8031484046,
"total_value": 10936.0734131046,
"base_cost_quote": 2905.87665416,
"unrealized_pnl_exit_net": 118.8726811399
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 2784.6999999999,
"quote_asset_bal": 7919.1606541347,
"total_value_mid": 10942.7879141346,
"total_value_exit_net": 10940.5201936896,
"total_value": 10942.7879141346,
"base_cost_quote": 2895.79161605,
"unrealized_pnl_exit_net": 125.5679235049
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 2803.2999999999,
"quote_asset_bal": 7899.0210212322,
"total_value_mid": 10927.9866712321,
"total_value_exit_net": 10925.7149469946,
"total_value": 10927.9866712321,
"base_cost_quote": 2915.9421476225,
"unrealized_pnl_exit_net": 110.7517781399
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 2793.9999999999,
"quote_asset_bal": 7909.0974482397,
"total_value_mid": 10939.4698482396,
"total_value_exit_net": 10937.1970689396,
"total_value": 10939.4698482396,
"base_cost_quote": 2905.87665416,
"unrealized_pnl_exit_net": 122.2229665399
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 2803.2999999999,
"quote_asset_bal": 7899.0319547772,
"total_value_mid": 10929.3992547771,
"total_value_exit_net": 10927.1264793021,
"total_value": 10929.3992547771,
"base_cost_quote": 2915.9421476225,
"unrealized_pnl_exit_net": 112.1523769024
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 2996.4999999999,
"quote_asset_bal": 7693.1478665372,
"total_value_mid": 10889.5144165371,
"total_value_exit_net": 10887.1171416246,
"total_value": 10889.5144165371,
"base_cost_quote": 3122.21966982,
"unrealized_pnl_exit_net": 71.7496052674
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 3366.5999999999,
"quote_asset_bal": 7306.3760751572,
"total_value_mid": 10791.1437351571,
"total_value_exit_net": 10788.5301594121,
"total_value": 10791.1437351571,
"base_cost_quote": 3509.3411433325,
"unrealized_pnl_exit_net": -27.1870590776
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 3418.8999999999,
"quote_asset_bal": 7251.9404350222,
"total_value_mid": 10857.8542650221,
"total_value_exit_net": 10855.1498296496,
"total_value": 10857.8542650221,
"base_cost_quote": 3564.6234139625,
"unrealized_pnl_exit_net": 38.5859806649
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 3427.4999999999,
"quote_asset_bal": 7243.9509866322,
"total_value_mid": 10937.7677366321,
"total_value_exit_net": 10934.9973740696,
"total_value": 10937.7677366321,
"base_cost_quote": 3574.458774955,
"unrealized_pnl_exit_net": 116.5876124824
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 3640.9999999999,
"quote_asset_bal": 7017.8278641772,
"total_value_mid": 10840.5137641771,
"total_value_exit_net": 10837.6467497521,
"total_value": 10840.5137641771,
"base_cost_quote": 3800.7098861175,
"unrealized_pnl_exit_net": 19.1089994574
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 3655.1999999999,
"quote_asset_bal": 7002.9188041747,
"total_value_mid": 10855.4996041746,
"total_value_exit_net": 10852.6101685746,
"total_value": 10855.4996041746,
"base_cost_quote": 3815.6618717025,
"unrealized_pnl_exit_net": 34.0294926974
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 3736.9999999999,
"quote_asset_bal": 6917.3761937022,
"total_value_mid": 10816.5619937021,
"total_value_exit_net": 10813.6376043521,
"total_value": 10816.5619937021,
"base_cost_quote": 3901.2475328425,
"unrealized_pnl_exit_net": -4.9861221926
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 3736.8999999999,
"quote_asset_bal": 6917.4629125322,
"total_value_mid": 10832.6130425321,
"total_value_exit_net": 10829.6766799346,
"total_value": 10832.6130425321,
"base_cost_quote": 3901.2480532325,
"unrealized_pnl_exit_net": 10.9657141699
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 3727.2999999999,
"quote_asset_bal": 6927.5429588522,
"total_value_mid": 10835.6170088521,
"total_value_exit_net": 10832.6859533146,
"total_value": 10835.6170088521,
"base_cost_quote": 3891.2114113925,
"unrealized_pnl_exit_net": 13.9315830699
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 3727.2999999999,
"quote_asset_bal": 6927.5429588522,
"total_value_mid": 10821.0805388521,
"total_value_exit_net": 10818.1603856671,
"total_value": 10821.0805388521,
"base_cost_quote": 3891.2114113925,
"unrealized_pnl_exit_net": -0.5939845776
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 3746.4999999999,
"quote_asset_bal": 6907.4667930122,
"total_value_mid": 10822.5592930121,
"total_value_exit_net": 10819.6229736371,
"total_value": 10822.5592930121,
"base_cost_quote": 3911.2875772325,
"unrealized_pnl_exit_net": 0.8686033924
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 3892.2999999999,
"quote_asset_bal": 6756.4844191747,
"total_value_mid": 10778.0087791746,
"total_value_exit_net": 10774.9926359046,
"total_value": 10778.0087791746,
"base_cost_quote": 4062.290294395,
"unrealized_pnl_exit_net": -43.7820776651
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 1702.9999999999,
"quote_asset_bal": 9298.0936353247,
"total_value_mid": 11264.3774353246,
"total_value_exit_net": 11262.9027224746,
"total_value": 11264.3774353246,
"base_cost_quote": 1734.5646985625,
"unrealized_pnl_exit_net": 230.2443885874
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 1739.7999999999,
"quote_asset_bal": 9264.6520767372,
"total_value_mid": 11316.5721967371,
"total_value_exit_net": 11315.0332566471,
"total_value": 11316.5721967371,
"base_cost_quote": 1774.9024091725,
"unrealized_pnl_exit_net": 275.4787707374
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 1489.4999999999,
"quote_asset_bal": 9588.2248468097,
"total_value_mid": 11346.8774968096,
"total_value_exit_net": 11345.5585073221,
"total_value": 11346.8774968096,
"base_cost_quote": 1488.0714271575,
"unrealized_pnl_exit_net": 269.2622333549
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 1505.3999999999,
"quote_asset_bal": 9570.7283777172,
"total_value_mid": 11376.4556777171,
"total_value_exit_net": 11375.1013822421,
"total_value": 11376.4556777171,
"base_cost_quote": 1508.087437915,
"unrealized_pnl_exit_net": 296.2855666099
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 1458.5999999999,
"quote_asset_bal": 9634.3846681547,
"total_value_mid": 11471.4913681546,
"total_value_exit_net": 11470.1135381296,
"total_value": 11471.4913681546,
"base_cost_quote": 1457.5477115275,
"unrealized_pnl_exit_net": 378.1811584474
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 1723.1999999999,
"quote_asset_bal": 9319.5343952347,
"total_value_mid": 11387.3743952346,
"total_value_exit_net": 11385.8235152346,
"total_value": 11387.3743952346,
"base_cost_quote": 1795.881201475,
"unrealized_pnl_exit_net": 270.4079185249
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 1723.1999999999,
"quote_asset_bal": 9319.6221559147,
"total_value_mid": 11375.3997559146,
"total_value_exit_net": 11373.8579227146,
"total_value": 11375.3997559146,
"base_cost_quote": 1795.884563995,
"unrealized_pnl_exit_net": 258.3512028049
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 1808.4999999999,
"quote_asset_bal": 9220.4034203872,
"total_value_mid": 11379.5715703871,
"total_value_exit_net": 11377.9521942746,
"total_value": 11379.5715703871,
"base_cost_quote": 1896.5685604,
"unrealized_pnl_exit_net": 260.9802134874
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 1885.7999999999,
"quote_asset_bal": 9129.2878917672,
"total_value_mid": 11339.0683317671,
"total_value_exit_net": 11337.4109964371,
"total_value": 11339.0683317671,
"base_cost_quote": 1987.35988286,
"unrealized_pnl_exit_net": 220.7632218099
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 1902.9999999999,
"quote_asset_bal": 9109.0565137822,
"total_value_mid": 11366.0145137821,
"total_value_exit_net": 11364.3217952821,
"total_value": 11366.0145137821,
"base_cost_quote": 2007.4263714475,
"unrealized_pnl_exit_net": 247.8389100524
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 1902.9999999999,
"quote_asset_bal": 9109.1269812597,
"total_value_mid": 11375.5999812596,
"total_value_exit_net": 11373.9001265096,
"total_value": 11375.5999812596,
"base_cost_quote": 2007.417855065,
"unrealized_pnl_exit_net": 257.3552901849
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 1894.4999999999,
"quote_asset_bal": 9119.3257780697,
"total_value_mid": 11380.0326280696,
"total_value_exit_net": 11378.3370979321,
"total_value": 11380.0326280696,
"base_cost_quote": 1997.341983825,
"unrealized_pnl_exit_net": 261.6693360374
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 1962.7999999999,
"quote_asset_bal": 9038.6485669272,
"total_value_mid": 11352.7897669271,
"total_value_exit_net": 11351.0541610271,
"total_value": 11352.7897669271,
"base_cost_quote": 2077.8014532025,
"unrealized_pnl_exit_net": 234.6041408974
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 1954.2999999999,
"quote_asset_bal": 9048.6750815022,
"total_value_mid": 11371.1652015021,
"total_value_exit_net": 11369.4233339121,
"total_value": 11371.1652015021,
"base_cost_quote": 2067.9204480025,
"unrealized_pnl_exit_net": 252.8278044074
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 1928.8999999999,
"quote_asset_bal": 9079.1157387872,
"total_value_mid": 11385.8872487871,
"total_value_exit_net": 11384.1571701546,
"total_value": 11385.8872487871,
"base_cost_quote": 2037.7471549925,
"unrealized_pnl_exit_net": 267.2942763749
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 1700.4999999999,
"quote_asset_bal": 9359.9190025647,
"total_value_mid": 11364.8085025646,
"total_value_exit_net": 11363.3048354396,
"total_value": 11364.8085025646,
"base_cost_quote": 1765.65841137,
"unrealized_pnl_exit_net": 237.7274215049
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 1776.8999999999,
"quote_asset_bal": 9269.5440775347,
"total_value_mid": 11402.7125275346,
"total_value_exit_net": 11401.1126511971,
"total_value": 11402.7125275346,
"base_cost_quote": 1856.289313605,
"unrealized_pnl_exit_net": 275.2792600574
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 1827.4999999999,
"quote_asset_bal": 9209.3322211297,
"total_value_mid": 11376.7472211296,
"total_value_exit_net": 11375.1216598796,
"total_value": 11376.7472211296,
"base_cost_quote": 1916.674968905,
"unrealized_pnl_exit_net": 249.1144698449
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 1776.8999999999,
"quote_asset_bal": 9269.9223209547,
"total_value_mid": 11398.8262109546,
"total_value_exit_net": 11397.2295330371,
"total_value": 11398.8262109546,
"base_cost_quote": 1856.289313605,
"unrealized_pnl_exit_net": 271.0178984774
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 1810.4999999999,
"quote_asset_bal": 9229.8039049197,
"total_value_mid": 11383.7557549196,
"total_value_exit_net": 11382.1402910321,
"total_value": 11383.7557549196,
"base_cost_quote": 1896.509255955,
"unrealized_pnl_exit_net": 255.8271301574
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 2131.3999999999,
"quote_asset_bal": 8855.9052391997,
"total_value_mid": 11325.9846991996,
"total_value_exit_net": 11324.1321396046,
"total_value": 11325.9846991996,
"base_cost_quote": 2268.9808302775,
"unrealized_pnl_exit_net": 199.2460701274
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 2265.8999999999,
"quote_asset_bal": 8699.0006954972,
"total_value_mid": 11327.8978754971,
"total_value_exit_net": 11325.9262026121,
"total_value": 11327.8978754971,
"base_cost_quote": 2425.0684282425,
"unrealized_pnl_exit_net": 201.8570788724
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 2197.6999999999,
"quote_asset_bal": 8779.3214820847,
"total_value_mid": 11373.0470220846,
"total_value_exit_net": 11371.1017279296,
"total_value": 11373.0470220846,
"base_cost_quote": 2344.50830343,
"unrealized_pnl_exit_net": 247.2719424149
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 2303.9999999999,
"quote_asset_bal": 8657.6314294622,
"total_value_mid": 11328.1978294621,
"total_value_exit_net": 11326.1949046621,
"total_value": 11328.1978294621,
"base_cost_quote": 2465.2856485525,
"unrealized_pnl_exit_net": 203.2778266474
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 2244.3999999999,
"quote_asset_bal": 8728.1822349097,
"total_value_mid": 11393.1827949096,
"total_value_exit_net": 11391.1840444896,
"total_value": 11393.1827949096,
"base_cost_quote": 2394.703501615,
"unrealized_pnl_exit_net": 268.2983079649
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 2269.8999999999,
"quote_asset_bal": 8698.0727760722,
"total_value_mid": 11379.5056460721,
"total_value_exit_net": 11377.4945714196,
"total_value": 11379.5056460721,
"base_cost_quote": 2424.9275026275,
"unrealized_pnl_exit_net": 254.4942927199
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 2330.3999999999,
"quote_asset_bal": 8627.3247937297,
"total_value_mid": 11331.0548737296,
"total_value_exit_net": 11329.0270761696,
"total_value": 11331.0548737296,
"base_cost_quote": 2495.4804977175,
"unrealized_pnl_exit_net": 206.2217847224
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 2365.2999999999,
"quote_asset_bal": 8586.9087073872,
"total_value_mid": 11336.5699573871,
"total_value_exit_net": 11334.5077114496,
"total_value": 11336.5699573871,
"base_cost_quote": 2535.88480824,
"unrealized_pnl_exit_net": 211.7141958224
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 2580.2999999999,
"quote_asset_bal": 8340.3774992472,
"total_value_mid": 11306.6903792471,
"total_value_exit_net": 11304.4656445871,
"total_value": 11306.6903792471,
"base_cost_quote": 2782.3938014275,
"unrealized_pnl_exit_net": 181.6943439124
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 2787.9999999999,
"quote_asset_bal": 8104.0858556247,
"total_value_mid": 11258.9866556246,
"total_value_exit_net": 11256.6204800246,
"total_value": 11258.9866556246,
"base_cost_quote": 3018.7453922725,
"unrealized_pnl_exit_net": 133.7892321274
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 2970.3999999999,
"quote_asset_bal": 7898.2286990197,
"total_value_mid": 11234.8790190196,
"total_value_exit_net": 11232.3765312796,
"total_value": 11234.8790190196,
"base_cost_quote": 3224.7096496975,
"unrealized_pnl_exit_net": 109.4381825624
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 2983.9999999999,
"quote_asset_bal": 7883.1206157722,
"total_value_mid": 11258.6214157721,
"total_value_exit_net": 11256.0897901721,
"total_value": 11258.6214157721,
"base_cost_quote": 3239.893158795,
"unrealized_pnl_exit_net": 133.0760156049
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 2966.1999999999,
"quote_asset_bal": 7903.3858897397,
"total_value_mid": 11278.6248697396,
"total_value_exit_net": 11276.0934405046,
"total_value": 11278.6248697396,
"base_cost_quote": 3219.7346812675,
"unrealized_pnl_exit_net": 152.9728694974
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 2988.3999999999,
"quote_asset_bal": 7878.2090164622,
"total_value_mid": 11284.3873364621,
"total_value_exit_net": 11281.8327027221,
"total_value": 11284.3873364621,
"base_cost_quote": 3244.97546767,
"unrealized_pnl_exit_net": 158.6482185899
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 2997.2999999999,
"quote_asset_bal": 7868.1025493722,
"total_value_mid": 11273.9345393721,
"total_value_exit_net": 11271.3801653796,
"total_value": 11273.9345393721,
"base_cost_quote": 3255.0925598025,
"unrealized_pnl_exit_net": 148.1850562049
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 2646.5999999999,
"quote_asset_bal": 8277.4494781122,
"total_value_mid": 11338.5070381121,
"total_value_exit_net": 11336.2112449421,
"total_value": 11338.5070381121,
"base_cost_quote": 2852.380862385,
"unrealized_pnl_exit_net": 206.3809044449
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 2682.4999999999,
"quote_asset_bal": 8235.2931311147,
"total_value_mid": 11369.2578811146,
"total_value_exit_net": 11366.9074075521,
"total_value": 11369.2578811146,
"base_cost_quote": 2892.74517293,
"unrealized_pnl_exit_net": 238.8691035074
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 2649.2999999999,
"quote_asset_bal": 8274.3942283797,
"total_value_mid": 11391.5606083796,
"total_value_exit_net": 11389.2227335946,
"total_value": 11391.5606083796,
"base_cost_quote": 2852.2918857025,
"unrealized_pnl_exit_net": 262.5366195124
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 2658.6999999999,
"quote_asset_bal": 8263.4043856772,
"total_value_mid": 11401.4679956771,
"total_value_exit_net": 11399.1144479696,
"total_value": 11401.4679956771,
"base_cost_quote": 2862.35067414,
"unrealized_pnl_exit_net": 273.3593881524
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 2658.9999999999,
"quote_asset_bal": 8263.1367729422,
"total_value_mid": 11393.8433729421,
"total_value_exit_net": 11391.4953429921,
"total_value": 11393.8433729421,
"base_cost_quote": 2862.3600311525,
"unrealized_pnl_exit_net": 265.9985388974
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 2970.4999999999,
"quote_asset_bal": 7906.0758573122,
"total_value_mid": 11243.7296573121,
"total_value_exit_net": 11241.2264169621,
"total_value": 11243.7296573121,
"base_cost_quote": 3219.538023885,
"unrealized_pnl_exit_net": 115.6125357649
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 2894.8999999999,
"quote_asset_bal": 7993.3893815447,
"total_value_mid": 11361.8950215446,
"total_value_exit_net": 11359.3686423146,
"total_value": 11361.8950215446,
"base_cost_quote": 3133.8635461825,
"unrealized_pnl_exit_net": 232.1157145874
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 2790.7999999999,
"quote_asset_bal": 8115.2379821097,
"total_value_mid": 11408.1029021096,
"total_value_exit_net": 11405.6332534196,
"total_value": 11408.1029021096,
"base_cost_quote": 3013.2350826375,
"unrealized_pnl_exit_net": 277.1601886724
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 2712.5999999999,
"quote_asset_bal": 8207.5143371747,
"total_value_mid": 11401.3295771746,
"total_value_exit_net": 11398.9342157446,
"total_value": 11401.3295771746,
"base_cost_quote": 2922.8328117475,
"unrealized_pnl_exit_net": 268.5870668224
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 2729.5999999999,
"quote_asset_bal": 8187.4761462622,
"total_value_mid": 11402.3990262621,
"total_value_exit_net": 11399.9878341021,
"total_value": 11402.3990262621,
"base_cost_quote": 2942.76377877,
"unrealized_pnl_exit_net": 269.7479090699
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 2720.7999999999,
"quote_asset_bal": 8198.1638605997,
"total_value_mid": 11392.9272205995,
"total_value_exit_net": 11390.5311480795,
"total_value": 11392.9272205995,
"base_cost_quote": 2932.8394110725,
"unrealized_pnl_exit_net": 259.5278764074
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 2703.8999999999,
"quote_asset_bal": 8219.5676587922,
"total_value_mid": 11362.310628792,
"total_value_exit_net": 11359.9535715645,
"total_value": 11362.310628792,
"base_cost_quote": 2912.6093098675,
"unrealized_pnl_exit_net": 227.7766029049
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 2695.8999999999,
"quote_asset_bal": 8231.1710771497,
"total_value_mid": 11343.3180371495,
"total_value_exit_net": 11340.9839269295,
"total_value": 11343.3180371495,
"base_cost_quote": 2902.35925809,
"unrealized_pnl_exit_net": 207.4535916899
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 2566.7999999999,
"quote_asset_bal": 8384.1827668597,
"total_value_mid": 11434.8245668595,
"total_value_exit_net": 11432.5365855095,
"total_value": 11434.8245668595,
"base_cost_quote": 2751.1966611075,
"unrealized_pnl_exit_net": 297.1571575424
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 2653.5999999999,
"quote_asset_bal": 8282.2551202172,
"total_value_mid": 11376.352720217,
"total_value_exit_net": 11374.032147017,
"total_value": 11376.352720217,
"base_cost_quote": 2851.876484385,
"unrealized_pnl_exit_net": 239.9005424149
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 2819.3999999999,
"quote_asset_bal": 8091.0304824697,
"total_value_mid": 11351.9485224695,
"total_value_exit_net": 11349.5028339395,
"total_value": 11351.9485224695,
"base_cost_quote": 3043.1604498425,
"unrealized_pnl_exit_net": 215.3119016274
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 2827.9999999999,
"quote_asset_bal": 8081.3984439622,
"total_value_mid": 11345.758843962,
"total_value_exit_net": 11343.310573662,
"total_value": 11345.758843962,
"base_cost_quote": 3053.2627809125,
"unrealized_pnl_exit_net": 208.6493487874
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 2810.5999999999,
"quote_asset_bal": 8101.6168594222,
"total_value_mid": 11352.356819422,
"total_value_exit_net": 11349.918764452,
"total_value": 11352.356819422,
"base_cost_quote": 3033.1158820625,
"unrealized_pnl_exit_net": 215.1860229674
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 2827.9999999999,
"quote_asset_bal": 8081.4543194947,
"total_value_mid": 11348.0771194946,
"total_value_exit_net": 11345.6271523946,
"total_value": 11348.0771194946,
"base_cost_quote": 3053.3289505025,
"unrealized_pnl_exit_net": 210.8438823974
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 2942.1999999999,
"quote_asset_bal": 7950.7658081672,
"total_value_mid": 11297.2240881671,
"total_value_exit_net": 11294.7142444571,
"total_value": 11297.2240881671,
"base_cost_quote": 3184.1110435625,
"unrealized_pnl_exit_net": 159.8373927274
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 2942.2999999999,
"quote_asset_bal": 7950.7117512847,
"total_value_mid": 11306.9933612846,
"total_value_exit_net": 11304.4761500771,
"total_value": 11306.9933612846,
"base_cost_quote": 3184.2071355775,
"unrealized_pnl_exit_net": 169.5572632149
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 2942.2999999999,
"quote_asset_bal": 7950.7921463247,
"total_value_mid": 11297.9526263246,
"total_value_exit_net": 11295.4422559646,
"total_value": 11297.9526263246,
"base_cost_quote": 3184.1895223775,
"unrealized_pnl_exit_net": 160.4605872624
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 2951.0999999999,
"quote_asset_bal": 7940.8819877522,
"total_value_mid": 11313.1039577521,
"total_value_exit_net": 11310.5747912746,
"total_value": 11313.1039577521,
"base_cost_quote": 3194.2969973025,
"unrealized_pnl_exit_net": 175.3958062199
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 2959.8999999999,
"quote_asset_bal": 7930.8787362522,
"total_value_mid": 11322.9241362521,
"total_value_exit_net": 11320.3801022021,
"total_value": 11322.9241362521,
"base_cost_quote": 3204.3523731825,
"unrealized_pnl_exit_net": 185.1489927674
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 2959.8999999999,
"quote_asset_bal": 7930.9413662922,
"total_value_mid": 11316.7709762921,
"total_value_exit_net": 11314.2316040846,
"total_value": 11316.7709762921,
"base_cost_quote": 3204.3523731825,
"unrealized_pnl_exit_net": 178.9378646099
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 2968.6999999999,
"quote_asset_bal": 7920.9122951522,
"total_value_mid": 11307.6052551521,
"total_value_exit_net": 11305.0652354321,
"total_value": 11307.6052551521,
"base_cost_quote": 3214.3918971825,
"unrealized_pnl_exit_net": 169.7610430974
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 2977.4999999999,
"quote_asset_bal": 7910.8797185322,
"total_value_mid": 11306.4207185321,
"total_value_exit_net": 11303.8740627821,
"total_value": 11306.4207185321,
"base_cost_quote": 3224.4349438225,
"unrealized_pnl_exit_net": 168.5594004274
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 2968.6999999999,
"quote_asset_bal": 7920.9864899322,
"total_value_mid": 11319.8511199321,
"total_value_exit_net": 11317.3019714596,
"total_value": 11319.8511199321,
"base_cost_quote": 3214.3804486025,
"unrealized_pnl_exit_net": 181.9350329249
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 2977.4999999999,
"quote_asset_bal": 7910.9976476647,
"total_value_mid": 11303.2633976646,
"total_value_exit_net": 11300.7191983521,
"total_value": 11303.2633976646,
"base_cost_quote": 3224.4217339225,
"unrealized_pnl_exit_net": 165.2998167649
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 2942.2999999999,
"quote_asset_bal": 7951.4519429172,
"total_value_mid": 11347.7488329171,
"total_value_exit_net": 11345.2016102496,
"total_value": 11347.7488329171,
"base_cost_quote": 3184.1745711725,
"unrealized_pnl_exit_net": 209.5750961599
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 2942.2999999999,
"quote_asset_bal": 7951.7953831947,
"total_value_mid": 11306.9000731946,
"total_value_exit_net": 11304.3837446771,
"total_value": 11306.9000731946,
"base_cost_quote": 3184.2158421025,
"unrealized_pnl_exit_net": 168.3725193799
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 2959.7999999999,
"quote_asset_bal": 7931.8575820397,
"total_value_mid": 11343.9150220396,
"total_value_exit_net": 11341.3559789596,
"total_value": 11343.9150220396,
"base_cost_quote": 3204.20527294,
"unrealized_pnl_exit_net": 205.2931239799
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 2951.0999999999,
"quote_asset_bal": 7941.9067323647,
"total_value_mid": 11344.8201423646,
"total_value_exit_net": 11342.2679573071,
"total_value": 11344.8201423646,
"base_cost_quote": 3194.1866746225,
"unrealized_pnl_exit_net": 206.1745503199
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.0071852822,
"total_value_mid": 11338.7095852821,
"total_value_exit_net": 11336.1695584821,
"total_value": 11338.7095852821,
"base_cost_quote": 3184.157628475,
"unrealized_pnl_exit_net": 200.0047447249
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.0377046647,
"total_value_mid": 11334.3265046646,
"total_value_exit_net": 11331.7897880646,
"total_value": 11334.3265046646,
"base_cost_quote": 3184.157628475,
"unrealized_pnl_exit_net": 195.5944549249
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.0891091097,
"total_value_mid": 11350.2668691096,
"total_value_exit_net": 11347.7182357896,
"total_value": 11350.2668691096,
"base_cost_quote": 3184.157628475,
"unrealized_pnl_exit_net": 211.4714982049
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.1196702522,
"total_value_mid": 11356.4764702521,
"total_value_exit_net": 11353.9232026521,
"total_value": 11356.4764702521,
"base_cost_quote": 3184.157628475,
"unrealized_pnl_exit_net": 217.6459039249
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.1971806797,
"total_value_mid": 11338.8995806796,
"total_value_exit_net": 11336.3595538796,
"total_value": 11338.8995806796,
"base_cost_quote": 3184.1515339075,
"unrealized_pnl_exit_net": 200.0108392924
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 2942.3999999999,
"quote_asset_bal": 7952.1971806797,
"total_value_mid": 11345.6671006796,
"total_value_exit_net": 11343.1219982396,
"total_value": 11345.6671006796,
"base_cost_quote": 3184.1515339075,
"unrealized_pnl_exit_net": 206.7732836524
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 2933.6999999999,
"quote_asset_bal": 7962.2407523472,
"total_value_mid": 11348.9040323471,
"total_value_exit_net": 11346.3640348871,
"total_value": 11348.9040323471,
"base_cost_quote": 3174.1181344975,
"unrealized_pnl_exit_net": 210.0051480424
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 2890.1999999999,
"quote_asset_bal": 8012.6533445247,
"total_value_mid": 11375.9790845246,
"total_value_exit_net": 11373.4565902196,
"total_value": 11375.9790845246,
"base_cost_quote": 3123.7561112875,
"unrealized_pnl_exit_net": 237.0471344074
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 2828.8999999999,
"quote_asset_bal": 8084.2067754772,
"total_value_mid": 11385.8159654771,
"total_value_exit_net": 11383.3397585846,
"total_value": 11385.8159654771,
"base_cost_quote": 3053.2515925275,
"unrealized_pnl_exit_net": 245.8813905799
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 2829.8999999999,
"quote_asset_bal": 8083.4140924797,
"total_value_mid": 11357.6083924796,
"total_value_exit_net": 11355.1527467546,
"total_value": 11357.6083924796,
"base_cost_quote": 3053.1732338025,
"unrealized_pnl_exit_net": 218.5654204724
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 2873.3999999999,
"quote_asset_bal": 8033.4645201747,
"total_value_mid": 11346.4947201746,
"total_value_exit_net": 11344.0099475246,
"total_value": 11346.4947201746,
"base_cost_quote": 3103.45776894,
"unrealized_pnl_exit_net": 207.0876584099
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 2847.2999999999,
"quote_asset_bal": 8064.0909155022,
"total_value_mid": 11363.8268855021,
"total_value_exit_net": 11361.3520835246,
"total_value": 11363.8268855021,
"base_cost_quote": 3073.3392870075,
"unrealized_pnl_exit_net": 223.9218810149
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 2855.9999999999,
"quote_asset_bal": 8054.6370344022,
"total_value_mid": 11348.1762344021,
"total_value_exit_net": 11345.7060800021,
"total_value": 11348.1762344021,
"base_cost_quote": 3083.4022886025,
"unrealized_pnl_exit_net": 207.6667569974
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 2864.6999999999,
"quote_asset_bal": 8044.5870925947,
"total_value_mid": 11349.3050125946,
"total_value_exit_net": 11346.8264741546,
"total_value": 11349.3050125946,
"base_cost_quote": 3093.45223041,
"unrealized_pnl_exit_net": 208.7871511499
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 2873.3999999999,
"quote_asset_bal": 8034.5580464472,
"total_value_mid": 11346.1515464471,
"total_value_exit_net": 11343.6678513221,
"total_value": 11346.1515464471,
"base_cost_quote": 3103.4812765575,
"unrealized_pnl_exit_net": 205.6285283174
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 2864.6999999999,
"quote_asset_bal": 8044.5972713772,
"total_value_mid": 11356.7634113771,
"total_value_exit_net": 11354.2792867721,
"total_value": 11356.7634113771,
"base_cost_quote": 3093.45223041,
"unrealized_pnl_exit_net": 216.2297849849
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 2804.6999999999,
"quote_asset_bal": 8114.4424383072,
"total_value_mid": 11335.9208583071,
"total_value_exit_net": 11333.5047494921,
"total_value": 11335.9208583071,
"base_cost_quote": 3023.0318647175,
"unrealized_pnl_exit_net": 196.0304464674
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 2813.3999999999,
"quote_asset_bal": 8104.4278286897,
"total_value_mid": 11342.0885486896,
"total_value_exit_net": 11339.6603031496,
"total_value": 11342.0885486896,
"base_cost_quote": 3033.0670054325,
"unrealized_pnl_exit_net": 202.1654690274
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 2813.3999999999,
"quote_asset_bal": 8104.4278286897,
"total_value_mid": 11347.7153486896,
"total_value_exit_net": 11345.2828830496,
"total_value": 11347.7153486896,
"base_cost_quote": 3033.0670054325,
"unrealized_pnl_exit_net": 207.7880489274
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 2804.6999999999,
"quote_asset_bal": 8114.4676160747,
"total_value_mid": 11360.9078660746,
"total_value_exit_net": 11358.4730358871,
"total_value": 11360.9078660746,
"base_cost_quote": 3023.0475364625,
"unrealized_pnl_exit_net": 220.9578833499
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 2795.9999999999,
"quote_asset_bal": 8124.5409280397,
"total_value_mid": 11371.5357280396,
"total_value_exit_net": 11369.1004819396,
"total_value": 11371.5357280396,
"base_cost_quote": 3013.004559875,
"unrealized_pnl_exit_net": 231.5549940249
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 2813.3999999999,
"quote_asset_bal": 8104.4351793197,
"total_value_mid": 11367.9791793196,
"total_value_exit_net": 11365.5315213196,
"total_value": 11367.9791793196,
"base_cost_quote": 3033.130563065,
"unrealized_pnl_exit_net": 227.9657789349
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 2830.7999999999,
"quote_asset_bal": 8084.3425621622,
"total_value_mid": 11342.5933621621,
"total_value_exit_net": 11340.1496740621,
"total_value": 11342.5933621621,
"base_cost_quote": 3053.2435064675,
"unrealized_pnl_exit_net": 202.5636054324
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 2839.4999999999,
"quote_asset_bal": 8074.3835003572,
"total_value_mid": 11347.1912003571,
"total_value_exit_net": 11344.7365945821,
"total_value": 11347.1912003571,
"base_cost_quote": 3063.26384609,
"unrealized_pnl_exit_net": 207.0892481349
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 2839.4999999999,
"quote_asset_bal": 8074.3989108847,
"total_value_mid": 11328.4659108846,
"total_value_exit_net": 11326.0253606346,
"total_value": 11328.4659108846,
"base_cost_quote": 3063.258622175,
"unrealized_pnl_exit_net": 188.3678275749
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 2839.5999999999,
"quote_asset_bal": 8074.3247721247,
"total_value_mid": 11348.0996121246,
"total_value_exit_net": 11345.6442809946,
"total_value": 11348.0996121246,
"base_cost_quote": 3063.3429553775,
"unrealized_pnl_exit_net": 207.9765534924
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 2830.7999999999,
"quote_asset_bal": 8084.4380614647,
"total_value_mid": 11335.8949414646,
"total_value_exit_net": 11333.4563488046,
"total_value": 11335.8949414646,
"base_cost_quote": 3053.2400238575,
"unrealized_pnl_exit_net": 195.7782634824
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 2839.5999999999,
"quote_asset_bal": 8074.3210393847,
"total_value_mid": 11332.7620393846,
"total_value_exit_net": 11330.3182086346,
"total_value": 11332.7620393846,
"base_cost_quote": 3063.3570459375,
"unrealized_pnl_exit_net": 192.6401233124
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 2830.8999999999,
"quote_asset_bal": 8084.3914466072,
"total_value_mid": 11323.7903166071,
"total_value_exit_net": 11321.3607674546,
"total_value": 11323.7903166071,
"base_cost_quote": 3053.33820744,
"unrealized_pnl_exit_net": 183.6311134074
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 2821.9999999999,
"quote_asset_bal": 8094.5720776822,
"total_value_mid": 11337.0500776821,
"total_value_exit_net": 11334.6182191821,
"total_value": 11337.0500776821,
"base_cost_quote": 3043.2296016675,
"unrealized_pnl_exit_net": 196.8165398324
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 2336.4999999999,
"quote_asset_bal": 8677.5132965672,
"total_value_mid": 11538.3238965671,
"total_value_exit_net": 11536.1782886171,
"total_value": 11538.3238965671,
"base_cost_quote": 2489.76536458,
"unrealized_pnl_exit_net": 368.8996274699
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 2506.9999999999,
"quote_asset_bal": 8474.5766186047,
"total_value_mid": 11468.9374186046,
"total_value_exit_net": 11466.6916480046,
"total_value": 11468.9374186046,
"base_cost_quote": 2696.2474600925,
"unrealized_pnl_exit_net": 295.8675693074
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 2472.2999999999,
"quote_asset_bal": 8517.2723871197,
"total_value_mid": 11519.6335071196,
"total_value_exit_net": 11517.3817362796,
"total_value": 11519.6335071196,
"base_cost_quote": 2655.9769398375,
"unrealized_pnl_exit_net": 344.1324093224
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 2547.5999999999,
"quote_asset_bal": 8427.1598925522,
"total_value_mid": 11470.0133325521,
"total_value_exit_net": 11467.7311924721,
"total_value": 11470.0133325521,
"base_cost_quote": 2746.57570799,
"unrealized_pnl_exit_net": 293.9955919299
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 2547.5999999999,
"quote_asset_bal": 8427.2574308322,
"total_value_mid": 11470.6203908321,
"total_value_exit_net": 11468.3378686121,
"total_value": 11470.6203908321,
"base_cost_quote": 2746.5395609,
"unrealized_pnl_exit_net": 294.5408768799
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 2547.5999999999,
"quote_asset_bal": 8427.2642113122,
"total_value_mid": 11472.4104913121,
"total_value_exit_net": 11470.1266316021,
"total_value": 11472.4104913121,
"base_cost_quote": 2746.55301098,
"unrealized_pnl_exit_net": 296.3094093099
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 2795.1999999999,
"quote_asset_bal": 8134.7045114547,
"total_value_mid": 11427.7296314546,
"total_value_exit_net": 11425.2598626146,
"total_value": 11427.7296314546,
"base_cost_quote": 3038.610069615,
"unrealized_pnl_exit_net": 251.9452815449
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 2786.9999999999,
"quote_asset_bal": 8144.4915319072,
"total_value_mid": 11428.1349319071,
"total_value_exit_net": 11425.6721993571,
"total_value": 11428.1349319071,
"base_cost_quote": 3028.596364965,
"unrealized_pnl_exit_net": 252.5843024849
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 2786.9999999999,
"quote_asset_bal": 8144.5002881822,
"total_value_mid": 11419.5039881821,
"total_value_exit_net": 11417.0477354071,
"total_value": 11419.5039881821,
"base_cost_quote": 3028.59806624,
"unrealized_pnl_exit_net": 243.9493809849
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 2745.2999999999,
"quote_asset_bal": 8194.4066764347,
"total_value_mid": 11473.6675264346,
"total_value_exit_net": 11471.2080807971,
"total_value": 11473.6675264346,
"base_cost_quote": 2978.2258654025,
"unrealized_pnl_exit_net": 298.5755389599
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 2753.4999999999,
"quote_asset_bal": 8184.9778718397,
"total_value_mid": 11456.6865718396,
"total_value_exit_net": 11454.2327903146,
"total_value": 11456.6865718396,
"base_cost_quote": 2988.138244115,
"unrealized_pnl_exit_net": 281.1166743599
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 2745.0999999999,
"quote_asset_bal": 8195.0510826547,
"total_value_mid": 11438.9357526546,
"total_value_exit_net": 11436.5028391521,
"total_value": 11438.9357526546,
"base_cost_quote": 2978.08553023,
"unrealized_pnl_exit_net": 263.3662262674
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 2744.9999999999,
"quote_asset_bal": 8195.1547133272,
"total_value_mid": 11465.5477133271,
"total_value_exit_net": 11463.0949185771,
"total_value": 11465.5477133271,
"base_cost_quote": 2978.0233536325,
"unrealized_pnl_exit_net": 289.9168516174
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 2702.6999999999,
"quote_asset_bal": 8246.0656972022,
"total_value_mid": 11460.1165372021,
"total_value_exit_net": 11457.7059990721,
"total_value": 11460.1165372021,
"base_cost_quote": 2927.6185383525,
"unrealized_pnl_exit_net": 284.0217635174
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 2719.6999999999,
"quote_asset_bal": 8225.8454609397,
"total_value_mid": 11459.2967909396,
"total_value_exit_net": 11456.8717024421,
"total_value": 11459.2967909396,
"base_cost_quote": 2947.859457665,
"unrealized_pnl_exit_net": 283.1667838374
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 2719.6999999999,
"quote_asset_bal": 8225.8703614772,
"total_value_mid": 11450.3466814771,
"total_value_exit_net": 11447.9283242371,
"total_value": 11450.3466814771,
"base_cost_quote": 2947.8552044775,
"unrealized_pnl_exit_net": 274.2027582824
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 2702.6999999999,
"quote_asset_bal": 8246.1692157272,
"total_value_mid": 11469.9497757271,
"total_value_exit_net": 11467.5319403071,
"total_value": 11469.9497757271,
"base_cost_quote": 2927.6185383525,
"unrealized_pnl_exit_net": 293.7441862274
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 2728.0999999999,
"quote_asset_bal": 8216.0665771772,
"total_value_mid": 11455.1397071771,
"total_value_exit_net": 11452.7104023296,
"total_value": 11455.1397071771,
"base_cost_quote": 2957.8348035675,
"unrealized_pnl_exit_net": 278.8090215849
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 2737.1999999999,
"quote_asset_bal": 8205.5955150797,
"total_value_mid": 11442.6082350796,
"total_value_exit_net": 11440.1804755396,
"total_value": 11442.6082350796,
"base_cost_quote": 2967.9605521875,
"unrealized_pnl_exit_net": 266.6244082724
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 2737.1999999999,
"quote_asset_bal": 8205.6059394797,
"total_value_mid": 11440.1551794796,
"total_value_exit_net": 11437.7292675496,
"total_value": 11440.1551794796,
"base_cost_quote": 2967.9605521875,
"unrealized_pnl_exit_net": 264.1627758824
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 2745.6999999999,
"quote_asset_bal": 8195.6167195047,
"total_value_mid": 11430.8750295046,
"total_value_exit_net": 11428.4485857721,
"total_value": 11430.8750295046,
"base_cost_quote": 2977.9810619375,
"unrealized_pnl_exit_net": 254.8508043299
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 2779.8999999999,
"quote_asset_bal": 8155.3842249122,
"total_value_mid": 11422.0447149121,
"total_value_exit_net": 11419.5947195446,
"total_value": 11422.0447149121,
"base_cost_quote": 3018.22401153,
"unrealized_pnl_exit_net": 245.9864831024
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 2840.0999999999,
"quote_asset_bal": 8084.9430135972,
"total_value_mid": 11411.5521435971,
"total_value_exit_net": 11409.0571867496,
"total_value": 11411.5521435971,
"base_cost_quote": 3088.665222845,
"unrealized_pnl_exit_net": 235.4489503074
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 2849.1999999999,
"quote_asset_bal": 8074.3118057672,
"total_value_mid": 11418.7027657671,
"total_value_exit_net": 11416.1944725471,
"total_value": 11418.7027657671,
"base_cost_quote": 3098.76489192,
"unrealized_pnl_exit_net": 243.1177748599
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 2849.3999999999,
"quote_asset_bal": 8074.0796761547,
"total_value_mid": 11410.7270761546,
"total_value_exit_net": 11408.2245906046,
"total_value": 11410.7270761546,
"base_cost_quote": 3098.78382611,
"unrealized_pnl_exit_net": 235.3610883399
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 2858.5999999999,
"quote_asset_bal": 8063.3487420247,
"total_value_mid": 11418.4875620246,
"total_value_exit_net": 11415.9712079096,
"total_value": 11418.4875620246,
"base_cost_quote": 3108.87574938,
"unrealized_pnl_exit_net": 243.7467165049
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 2850.0999999999,
"quote_asset_bal": 8073.3279020372,
"total_value_mid": 11413.6451020371,
"total_value_exit_net": 11411.1398641371,
"total_value": 11413.6451020371,
"base_cost_quote": 3098.789850625,
"unrealized_pnl_exit_net": 239.0221114749
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 2867.3999999999,
"quote_asset_bal": 8053.0832581322,
"total_value_mid": 11401.9197181321,
"total_value_exit_net": 11399.4080907871,
"total_value": 11401.9197181321,
"base_cost_quote": 3118.92808298,
"unrealized_pnl_exit_net": 227.3967496749
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 2876.0999999999,
"quote_asset_bal": 8042.9271287647,
"total_value_mid": 11406.8136887646,
"total_value_exit_net": 11404.2907738446,
"total_value": 11406.8136887646,
"base_cost_quote": 3128.977834645,
"unrealized_pnl_exit_net": 232.3858104349
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 99-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (12,634 closed trades) via GET /backtests/04897270-b17a-4b7f-b239-3a448196c79e/trades (paginate through all pages).99-row audit sample from 12,634 closed trades (RFC 4180 CSV)
99-row audit sample from 12,634 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-24T02:52:00Z,2024-04-25T08:42:00Z,1.07,1.0727,9.4,,,0.010273965,0.1021471963,0.0075435,0.007562535,,,TP
,,2024-04-24T02:52:00Z,2025-07-03T03:51:00Z,1.07,1.1771,14.1,,,1.4863469175,9.851838785,0.01131525,0.0124478325,,,TP
,,2024-04-24T02:52:00Z,2024-08-25T07:13:00Z,1.07,1.1236,9.4,,,0.48837512,4.855588785,0.0075435,0.00792138,,,TP
,,2024-04-24T02:52:00Z,2024-05-20T20:19:00Z,1.07,1.0968,9.4,,,0.23664406,2.3527943925,0.0075435,0.00773244,,,TP
,,2024-04-24T03:07:00Z,2025-07-09T20:59:00Z,1.0712,1.1784,14.1,,,1.48773048,9.8499626587,0.01132794,0.01246158,,,TP
,,2024-04-24T03:07:00Z,2024-04-25T16:52:00Z,1.0712,1.0739,9.4,,,0.010257045,0.1018647311,0.00755196,0.007570995,,,TP
,,2024-04-24T03:07:00Z,2024-08-25T07:17:00Z,1.0712,1.1248,9.4,,,0.4883582,4.8499813294,0.00755196,0.00792984,,,TP
,,2024-04-24T03:07:00Z,2024-05-20T20:19:00Z,1.0712,1.098,9.4,,,0.23662714,2.3499906647,0.00755196,0.0077409,,,TP
,,2024-04-24T13:42:00Z,2025-07-03T03:51:00Z,1.0689,1.1758,14.1,,,1.4835522975,9.8434348396,0.0113036175,0.012434085,,,TP
,,2024-04-24T13:42:00Z,2024-08-25T06:35:00Z,1.0689,1.1224,9.4,,,0.487451335,4.8513916176,0.007535745,0.00791292,,,TP
,,2024-04-24T13:42:00Z,2024-05-20T20:17:00Z,1.0689,1.0957,9.4,,,0.23665957,2.3553700065,0.007535745,0.007724685,,,TP
,,2024-04-24T13:42:00Z,2024-04-25T06:25:00Z,1.0689,1.0716,9.4,,,0.010289475,0.1024066798,0.007535745,0.00755478,,,TP
,,2024-04-25T10:37:00Z,2025-07-09T20:59:00Z,1.0729,1.1802,14,,,1.47854245,9.8434313543,0.01126545,0.0123921,,,TP
,,2024-04-25T10:37:00Z,2024-05-20T20:36:00Z,1.0729,1.0998,9.4,,,0.237542465,2.3553429956,0.007563945,0.00775359,,,TP
,,2024-04-25T10:37:00Z,2024-08-25T07:51:00Z,1.0729,1.1266,9.4,,,0.489273525,4.8513724485,0.007563945,0.00794253,,,TP
,,2024-04-25T10:37:00Z,2024-05-03T12:30:00Z,1.0729,1.0756,9.4,,,0.010233075,0.1014656538,0.007563945,0.00758298,,,TP
,,2024-04-25T13:43:00Z,2024-04-25T15:35:00Z,1.0691,1.0718,9.4,,,0.010286655,0.1023594612,0.007537155,0.00755619,,,TP
,,2024-04-26T16:26:00Z,2024-04-29T02:41:00Z,1.0687,1.0714,9.4,,,0.010292295,0.102453916,0.007534335,0.00755337,,,TP
,,2024-04-29T02:28:00Z,2024-05-03T04:07:00Z,1.0709,1.0736,9.4,,,0.010261275,0.1019352881,0.007549845,0.00756888,,,TP
,,2024-05-01T07:26:00Z,2024-05-01T18:52:00Z,1.0668,1.0695,9.4,,,0.010319085,0.1029035433,0.00752094,0.007539975,,,TP
,,2024-05-01T07:26:00Z,2024-05-20T19:33:00Z,1.0668,1.0935,9.4,,,0.235749885,2.3509350394,0.00752094,0.007709175,,,TP
,,2024-05-01T07:26:00Z,2024-08-25T06:58:00Z,1.0668,1.1202,9.4,,,0.48654165,4.8518700787,0.00752094,0.00789741,,,TP
,,2024-05-01T07:26:00Z,2025-07-02T20:01:00Z,1.0668,1.1735,14.1,,,1.4807788275,9.8443733596,0.01128141,0.0124097625,,,TP
,,2024-05-01T07:54:00Z,2025-07-02T20:01:00Z,1.0655,1.1721,14.1,,,1.47939738,9.8471891131,0.0112676625,0.0123949575,,,TP
,,2024-05-01T07:54:00Z,2024-07-13T17:40:00Z,1.0655,1.1188,9.4,,,0.485620685,4.8485945565,0.007511775,0.00788754,,,TP
,,2024-05-03T14:00:00Z,2025-07-03T03:50:00Z,1.0781,1.186,14,,,1.48682695,9.8508417586,0.01132005,0.012453,,,TP
,,2024-05-15T12:32:00Z,2025-08-16T10:15:00Z,1.0861,1.1948,13.9,,,1.4871516175,9.8507803149,0.0113225925,0.01245579,,,TP
,,2024-05-20T19:34:00Z,2025-10-22T07:03:00Z,1.094,1.2035,13.8,,,1.487320875,9.8516339122,0.0113229,0.012456225,,,TP
,,2024-05-30T06:02:00Z,2024-05-30T12:53:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2024-08-02T03:38:00Z,2024-08-02T10:58:00Z,1.0799,1.0826,9.3,,,0.0100265625,0.0998356329,0.0075323025,0.007551135,,,TP
,,2024-08-05T01:11:00Z,2024-08-05T01:14:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2024-08-05T06:08:00Z,2024-08-05T06:10:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2024-08-20T14:49:00Z,2025-10-22T07:02:00Z,1.1105,1.2216,13.6,,,1.48717258,9.8469990995,0.0113271,0.01246032,,,TP
,,2024-08-23T19:23:00Z,2025-10-22T07:02:00Z,1.1191,1.2311,13.5,,,1.488204225,9.8505361451,0.0113308875,0.0124648875,,,TP
,,2024-10-23T08:42:00Z,2024-10-24T18:00:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2024-10-29T12:56:00Z,2024-10-29T14:00:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2024-11-06T05:05:00Z,2024-11-06T06:27:00Z,1.0798,1.0825,9.3,,,0.0100279575,0.0998587701,0.007531605,0.0075504375,,,TP
,,2024-11-06T08:30:00Z,2024-11-06T22:53:00Z,1.0798,1.0825,9.3,,,0.0100279575,0.0998587701,0.007531605,0.0075504375,,,TP
,,2024-11-22T09:00:00Z,2025-06-29T16:31:00Z,1.0481,1.153,14.4,,,1.48678812,9.8510805267,0.01131948,0.0124524,,,TP
,,2024-12-12T05:58:00Z,2025-06-29T16:31:00Z,1.041,1.1452,14.5,,,1.487125075,9.8520989433,0.011320875,0.01245405,,,TP
,,2024-12-13T08:03:00Z,2025-06-29T16:45:00Z,1.0272,1.13,14.7,,,1.48737687,9.8502823209,0.01132488,0.01245825,,,TP
,,2024-12-16T14:59:00Z,2025-06-29T08:41:00Z,1.0135,1.1149,14.9,,,1.48707513,9.8474296991,0.0113258625,0.0124590075,,,TP
,,2024-12-18T08:11:00Z,2025-02-14T16:01:00Z,0.9491,1.0441,15.9,,,1.48673109,9.8519755558,0.0113180175,0.0124508925,,,TP
,,2024-12-18T09:18:00Z,2025-02-15T19:27:00Z,0.9612,1.0574,15.7,,,1.486570985,9.8508166875,0.01131813,0.012450885,,,TP
,,2024-12-18T09:54:00Z,2024-12-18T09:54:00Z,0.9193,0.9216,10.9,,,0.0100206425,0.1000027195,0.0075152775,0.00753408,,,TP
,,2024-12-18T09:59:00Z,2024-12-18T09:59:00Z,0.9188,0.9211,10.9,,,0.0100288175,0.100138768,0.00751119,0.0075299925,,,TP
,,2025-01-27T12:15:00Z,2025-02-11T21:23:00Z,0.9371,1.0309,16.1,,,1.4864164,9.8520968947,0.0113154825,0.0124481175,,,TP
,,2025-01-27T19:02:00Z,2025-01-27T19:03:00Z,0.9187,0.921,10.9,,,0.0100304525,0.1001659954,0.0075103725,0.007529175,,,TP
,,2025-02-02T20:20:00Z,2025-02-03T17:50:00Z,0.9187,0.921,10.9,,,0.0100304525,0.1001659954,0.0075103725,0.007529175,,,TP
,,2025-02-09T21:57:00Z,2025-02-09T23:01:00Z,1,1.0025,10,,,0.00998125,0.0998125,0.0075,0.00751875,,,TP
,,2025-06-29T16:34:00Z,2025-10-22T07:02:00Z,1.1359,1.2495,13.3,,,1.487085635,9.8433796989,0.0113306025,0.0124637625,,,TP
,,2025-06-30T13:46:00Z,2025-10-22T07:02:00Z,1.1276,1.2404,13.4,,,1.4877216,9.8460446967,0.01133238,0.01246602,,,TP
,,2025-06-30T17:07:00Z,2025-10-24T20:40:00Z,1.144,1.2585,13.2,,,1.48761525,9.8512347028,0.0113256,0.01245915,,,TP
,,2025-07-03T10:59:00Z,2025-10-27T00:40:00Z,1.1531,1.2685,13.1,,,1.48794778,9.8502991935,0.0113292075,0.0124630125,,,TP
,,2025-07-04T16:23:00Z,2025-07-04T16:56:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2025-08-02T14:48:00Z,2025-08-16T10:15:00Z,1.078,1.1859,14,,,1.48682905,9.8517694805,0.011319,0.01245195,,,TP
,,2025-08-18T21:36:00Z,2025-10-22T07:03:00Z,1.0862,1.1949,13.9,,,1.4871495325,9.8498596023,0.011323635,0.0124568325,,,TP
,,2025-08-19T06:08:00Z,2025-10-22T07:03:00Z,1.0784,1.1863,14,,,1.48682065,9.8480596254,0.0113232,0.01245615,,,TP
,,2025-08-19T06:11:00Z,2025-08-19T06:28:00Z,1.0796,1.0823,9.3,,,0.0100307475,0.0999050574,0.00753021,0.0075490425,,,TP
,,2025-09-22T13:25:00Z,2025-09-22T13:50:00Z,1.0796,1.0823,9.3,,,0.0100307475,0.0999050574,0.00753021,0.0075490425,,,TP
,,2025-10-02T11:45:00Z,2025-10-02T12:59:00Z,1.0799,1.0826,9.3,,,0.0100265625,0.0998356329,0.0075323025,0.007551135,,,TP
,,2025-10-10T20:59:00Z,2025-10-10T21:46:00Z,1.08,1.0827,9.3,,,0.0100251675,0.0998125,0.007533,0.0075518325,,,TP
,,2025-10-10T21:59:00Z,2025-10-22T03:09:00Z,1.0486,1.1535,14.4,,,1.48677732,9.846311749,0.01132488,0.0124578,,,TP
,,2025-10-10T22:01:00Z,2025-10-22T07:03:00Z,1.0637,1.1701,14.2,,,1.48709003,9.8453182288,0.011328405,0.012461565,,,TP
,,2025-10-11T06:01:00Z,2025-10-22T03:09:00Z,1.0411,1.1453,14.5,,,1.4871229,9.8511382192,0.0113219625,0.0124551375,,,TP
,,2025-10-12T19:53:00Z,2025-10-22T03:08:00Z,1.0563,1.162,14.3,,,1.4877187325,9.8491219351,0.0113288175,0.01246245,,,TP
,,2025-10-22T07:34:00Z,2025-10-24T20:36:00Z,1.1363,1.25,13.3,,,1.4884066575,9.8486557247,0.0113345925,0.01246875,,,TP
,,2025-10-26T23:29:00Z,2025-10-26T23:29:00Z,1.2348,1.2379,8.1,,,0.0099638,0.1008645125,0.00750141,0.0074274,,,TP
,,2025-10-26T23:41:00Z,2025-10-26T23:41:00Z,1.2394,1.2425,8.1,,,0.0099086,0.0999334355,0.007529355,0.007455,,,TP
,,2026-01-28T08:47:00Z,2026-01-28T09:19:00Z,1.2381,1.2412,8.1,,,0.0099242,0.1001958646,0.0075214575,0.0074472,,,TP
,,2026-01-28T08:47:00Z,2026-01-28T08:48:00Z,1.2366,1.2397,8.1,,,0.0099422,0.1004993531,0.007512345,0.0074382,,,TP
,,2026-01-28T09:24:00Z,2026-01-29T07:31:00Z,1.2382,1.2413,8.1,,,0.009923,0.1001756582,0.007522065,0.0074478,,,TP
,,2026-01-28T10:33:00Z,2026-01-29T07:30:00Z,1.2364,1.2395,8.1,,,0.0099446,0.1005398738,0.00751113,0.007437,,,TP
,,2026-01-29T07:33:00Z,2026-01-29T09:36:00Z,1.2375,1.2406,8.1,,,0.0099314,0.1003171717,0.0075178125,0.0074436,,,TP
,,2026-02-15T15:59:00Z,2026-02-15T19:51:00Z,1.1776,1.1806,8.5,,,0.010466475,0.1045643682,0.0075072,0.007526325,,,TP
,,2026-02-15T16:43:00Z,2026-02-15T17:59:00Z,1.1757,1.1787,8.6,,,0.0104907,0.1049757591,0.007583265,0.0075142125,,,TP
,,2026-02-15T17:24:00Z,2026-02-15T17:36:00Z,1.1744,1.1774,8.6,,,0.010507275,0.1052580041,0.00757488,0.007505925,,,TP
,,2026-02-15T19:07:00Z,2026-02-17T19:06:00Z,1.1823,1.1853,8.5,,,0.01040655,0.1035523979,0.0075371625,0.0075562875,,,TP
,,2026-02-15T23:29:00Z,2026-02-15T23:59:00Z,1.1804,1.1834,8.5,,,0.010430775,0.1039605219,0.00752505,0.007544175,,,TP
,,2026-02-16T01:23:00Z,2026-02-16T01:57:00Z,1.1809,1.1839,8.5,,,0.0104244,0.1038529935,0.0075282375,0.0075473625,,,TP
,,2026-02-17T08:40:00Z,2026-02-17T17:57:00Z,1.1802,1.1832,8.5,,,0.010433325,0.1040035587,0.007523775,0.0075429,,,TP
,,2026-02-17T14:39:00Z,2026-02-17T16:20:00Z,1.1789,1.1819,8.5,,,0.0104499,0.1042836543,0.0075154875,0.0075346125,,,TP
,,2026-02-17T23:22:00Z,2026-02-18T04:01:00Z,1.1785,1.1815,8.5,,,0.010455,0.1043699618,0.0075129375,0.0075320625,,,TP
,,2026-02-19T18:00:00Z,2026-02-20T00:36:00Z,1.1689,1.1719,8.6,,,0.0105774,0.1064590641,0.007539405,0.0074708625,,,TP
,,2026-02-19T21:59:00Z,2026-02-20T00:36:00Z,1.1676,1.1706,8.6,,,0.010593975,0.1067446043,0.00753102,0.007462575,,,TP
,,2026-02-20T01:16:00Z,2026-02-20T23:50:00Z,1.1705,1.1735,8.6,,,0.010557,0.1061085006,0.007549725,0.0074810625,,,TP
,,2026-02-20T02:59:00Z,2026-02-21T01:14:00Z,1.169,1.172,8.6,,,0.010576125,0.1064371257,0.00754005,0.0074715,,,TP
,,2026-02-20T03:00:00Z,2026-02-20T04:00:00Z,1.1667,1.1697,8.6,,,0.01060545,0.1069426588,0.007525215,0.0074568375,,,TP
,,2026-02-20T08:22:00Z,2026-02-20T13:01:00Z,1.1667,1.1697,8.6,,,0.01060545,0.1069426588,0.007525215,0.0074568375,,,TP
,,2026-02-21T01:14:00Z,2026-02-21T12:00:00Z,1.1723,1.1753,8.6,,,0.01053405,0.1057152606,0.007561335,0.0074925375,,,TP
,,2026-02-21T20:59:00Z,2026-02-22T12:26:00Z,1.1712,1.1742,8.6,,,0.010548075,0.1059554303,0.00755424,0.007485525,,,TP
,,2026-02-22T00:02:00Z,2026-02-22T12:26:00Z,1.169,1.172,8.6,,,0.010576125,0.1064371257,0.00754005,0.0074715,,,TP
,,2026-02-22T12:27:00Z,2026-02-22T13:57:00Z,1.1696,1.1726,8.6,,,0.010568475,0.1063055746,0.00754392,0.007475325,,,TP
,,2026-02-22T12:27:00Z,2026-02-22T12:27:00Z,1.169,1.172,8.6,,,0.010576125,0.1064371257,0.00754005,0.0074715,,,TP
,,2026-02-22T13:59:00Z,2026-02-22T14:59:00Z,1.1704,1.1734,8.6,,,0.010558275,0.1061303828,0.00754908,0.007480425,,,TP
,,2026-02-22T13:59:00Z,2026-02-22T13:59:00Z,1.1696,1.1726,8.6,,,0.010568475,0.1063055746,0.00754392,0.007475325,,,TP
,,2026-02-22T14:26:00Z,2026-02-23T02:12:00Z,1.1719,1.1749,8.6,,,0.01053915,0.1058025429,0.007558755,0.0074899875,,,TP
,,2026-02-24T13:49:00Z,2026-02-24T20:17:00Z,1.169,1.172,8.6,,,0.010576125,0.1064371257,0.00754005,0.0074715,,,TP
,,2026-02-24T22:02:00Z,2026-02-25T01:07:00Z,1.1687,1.1717,8.6,,,0.01057995,0.106502952,0.007538115,0.0074695875,,,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 AEURUSDT?
Did it beat Buy & Hold of AEURUSDT?
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 AEURUSDT (Mode: 1FullBullMarket.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 11,404.29 USDT
P&L: +1,404.29 USDT (+14.04%)
Result: PROFIT
Completed trades: 12634
Open orders at end: 268
Win rate: 100.0%
Avg. profit/trade: 0.106301 USDT
Best trade: 1.488407 USDT
Worst trade: 0.009909 USDT
Total profit (trades only): 1,343.001279 USDT
Max drawdown: -5.56%
Profit factor: inf (no losing trades)
Sharpe ratio: 0.95
Total fees: 194.00 USDT
Avg hold time: 231.6h
TP / SL / TSL: 12634 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 6
Sell targets: [0.25, 2.5, 5.0, 10.0, 20.0, 30.0]
Investment per buy: 50.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 570.5s
bt.summary_textAre these results guaranteed for live trading?
Are these results guaranteed for live trading?
static disclaimerGlossary
| Term | Definition |
|---|---|
| Return % | Total percentage change of portfolio value over the backtest window: (final_value - start_balance) / start_balance x 100. |
| CAGR | Compound Annual Growth Rate. Annualized return assuming compounding: (final/start)^(365.25/days) - 1. |
| Win Rate | Share of closed trades with positive net P&L (after fees): wins / (wins + losses) x 100. |
| Max Drawdown | Largest peak-to-trough decline of equity, measured in % of the previous peak. The single most important risk metric. |
| Drawdown Duration | Number of days spent below the previous equity peak before recovering (or end of window if not recovered). |
| Sharpe Ratio (annualized) | Mean daily return divided by standard deviation of daily returns, scaled by 365. Risk-adjusted return - higher is better, > 1 is decent. |
| Sortino Ratio (annualized) | Like Sharpe but only penalizes downside volatility. Often more representative for asymmetric strategies. |
| Volatility (ann.) | Standard deviation of daily returns x 365, expressed as a percentage. |
| Time in Market | Fraction of the period where the strategy held base-asset exposure (not 100% cash). |
| Buy & Hold | Reference benchmark: simply buying the underlying token at the start and holding to the end of the window. |
| Outperformance (pp) | Strategy return minus Buy & Hold return, in percentage points (not percent change). |
| Fulfilled Trades | Round-trip trades that have both an entry fill and an exit fill within the window. |
| Active Orders | Open positions still pending exit at the end of the backtest - their unrealized P&L is included in final_value. |
| Lookahead Bias | Using information that wouldn’t have been available at trade time. The validator flags trades whose buy_time precedes the configured from date. |
How to Read This Report
GET /backtests/{id} * Fields used: return_pct, fulfilled_trades, win_rateCheck the headline return
Reproduce This Run
GET /backtests/{id} * Fields used: symbol, mode_name, config (replayed verbatim)X-API-Key. Payload fields are validated against ENGINE.md Section 20; non-engine keys are stripped so the replay produces the exact same run.curl -X POST https://uncoded-backtest-api-production.up.railway.app/backtests \
-H "X-API-Key: $UNCODED_API_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"AEURUSDT","mode_name":"1FullBullMarket.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":0.1,"stopLoss":false,"tickSize":0.0001,"buySplits":6,"buyVolumes":[20,20,20,30,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,2.5,5,10,20,30],"triggerCoolDown":1,"investmentPerBuy":50,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":20,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0],"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": "AEURUSDT FullBullMarket Backtest",
"alternateName": "AEURUSDT-1FullBullMarket.json-04897270-b17a-4b7f-b239-3a448196c79e",
"description": "Backtest of the FullBullMarket strategy on AEURUSDT: +14.04% return over 2024-04-24 to 2026-02-25.",
"identifier": "04897270-b17a-4b7f-b239-3a448196c79e",
"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": [
"AEURUSDT",
"FullBullMarket",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "AEURUSDT",
"description": "Trading pair: AEURUSDT"
},
{
"@type": "Thing",
"name": "FullBullMarket",
"description": "Trading strategy: FullBullMarket"
}
],
"measurementTechnique": "Historical OHLCV replay with deterministic order-fill simulation (TP / SL / Trailing-SL)",
"variableMeasured": [
{
"@type": "PropertyValue",
"name": "Return",
"value": 14.0429,
"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": 1343.00127948,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 11404.29077384,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 12634,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 268,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 1.48840666,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.0099086,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.10630056,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 570.49,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": 7.403427224538195,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -5.55604813575497,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -561.1111912449996,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 31,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Recovery Duration",
"value": 3,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": 0.9526662905247568,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": 1.2737736283437997,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 7.810871578207893,
"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.497915461212121,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.497915461212121,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.010576125,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 49.29363065999998,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 1.7548584300000003,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 2342.7909299999997,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 99,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 33.3,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 1881.7593189964155,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 571.3574764700563,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T10:00:20.563Z",
"dateModified": "2026-05-15T13:00:51.603Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:00:51 UTC