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.
KSMUSDT * LongTimeLong
KSMUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -14.10% | 100,628 closed trades | 100.0% closed WR | 635 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,409.25 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 757.34 USDT | Buy + sell fees across all trades. |
| Fee Drag | 53.7% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 19.6 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 100,628 | 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 KSMUSDT, the strategy’s profit factor of inf (no losing trades) indicates gross winners materially exceeded gross losers in this window, exits are TP-dominant (100.0%), so most profit comes from hitting take-profit targets, fees ate 53.7% of gross profit - over-trading risk.Chunking & Headings Guide
Chunk markers
Every section is delimited by paired JSX comments - invisible to readers, trivial for splitters. (Earlier versions of this exporter used HTML comments; we switched to JSX comments in v2.4.0 because MDX 3 - the parser Mintlify uses - forbids HTML comments at the document level.) The example below uses uppercaseRAG-CHUNK so it doesn’t accidentally match a splitter that scans this very page; real markers use lowercase rag-chunk:
{/* RAG-CHUNK:start id="tldr" type="summary" title="TL;DR" tokens~="120" backtest_id="6116f7f2-f5ed-4025-a973-e6e76498031a" */}
...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 KSMUSDT, with intrabar fill simulation in “OLHC” mode and a synthetic order latency of 2s applied to each fill to approximate real-world routing delay. The simulator processes every minute sequentially, evaluates the LongTimeLong rule set, and books fills against the next available bar - a standard event-driven backtesting approach that avoids look-ahead bias. Equity is marked-to-market on every closed trade and aggregated into the equity curve shown above. Configured backtest window: approximately 22.1 months (673 days fromconfig.from to config.to) of KSMUSDT 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: KSMUSDT 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.10% return on KSMUSDT a good backtest result?
Is a -14.10% return on KSMUSDT 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 KSMUSDT backtest?
What is the annualised return for this KSMUSDT backtest?
Can I run this exact LongTimeLong configuration live?
Can I run this exact LongTimeLong configuration live?
How is this backtest different from others on KSMUSDT?
How is this backtest different from others on KSMUSDT?
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 | KSMUSDT |
| Strategy | LongTimeLong |
| Period | 2024-04-24 -> 2026-02-25 |
| Configured window (inclusive elapsed) | 673.0 days (1.84 years) - (config.to - config.from) / 86 400 000 ms |
| Configured window (calendar days) | 673 days - Math.round of the elapsed value above; this is what the narrative paragraph quotes |
| Equity-stat duration | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 8,589.60 USDT |
| Avg Profit / Trade | +0.0065 USDT |
| Trades / Month | 4550.8 |
| Status | completed |
| Created | 2026-05-08 13:39:06 UTC |
| Started | 2026-05-09 10:57:42 UTC |
| Completed | 2026-05-09 11:16:24 UTC |
| Compute Time | 16m 35s |
| Backtest ID | 6116f7f2-f5ed-4025-a973-e6e76498031a |
| Engine summary: |
Backtest KSMUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 8,589.60 USDT
P&L: -1,410.40 USDT (-14.10%)
Result: LOSS
Completed trades: 100628
Open orders at end: 635
Win rate: 100.0%
Avg. profit/trade: 0.006478 USDT
Best trade: 0.017239 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 651.906353 USDT
Max drawdown: -20.56%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.63
Total fees: 757.34 USDT
Avg hold time: 19.6h
TP / SL / TSL: 100628 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 995.3s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -14.10% over the tested window | return_pct = -14.104 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 8,589.60 USDT | final_value - start_balance = -1,410.40 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 100628 of 100628 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 20.56% | max_drawdown_pct = 20.5635 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.63 | sharpe_annualized = -0.6327 | 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.001 |
stopLoss | false |
tickSize | 0.01 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "KSMUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.001,
"stopLoss": false,
"tickSize": 0.01,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 25 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 25 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5,10,15] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.001 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.01 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,0,0,0,0,0,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: KSMUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.001
stopLoss: false
tickSize: 0.01
buySplits: 9
buyVolumes:
- 20
- 15
- 10
- 10
- 10
- 10
- 5
- 5
- 5
canBuyDown: false
minNotional: 5
buyPercentage: 0.1
fees_in_quote: true
intrabar_mode: OLHC
maker_fee_bps: 7.5
taker_fee_bps: 7.5
sellPercentages:
- 0.25
- 0.35
- 0.5
- 0.75
- 1
- 2.5
- 5
- 10
- 15
triggerCoolDown: 1
investmentPerBuy: 25
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 25
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
sellCancelDistancePercentage: 1
dontBuyBelowQuoteAssetBalance: 1
investmentPerFreeQuotePercent: 0.01
sellActivateDistancePercentage: 0.1
Strategy Logic
strategyLogic object to buildVerifiableMdx (or wire up getModes() so the exporter can derive a sketch) to remove this notice.GET /modes and select the entry whose filename == "3LongTimeLong.json" to inspect the public rule fields, or consult the engine source for the executable logic.
Engine Specification
engine_version field in this document’s frontmatter (see also the Data Source Metadata section).Engine Specification
uncoded.ch/docs/engine; this report only pins which revision applied (engine_version in the frontmatter).
Data Source Metadata
buildVerifiableMdx({ dataSource: ... }) to fill it in. The engine spec describes deterministic execution semantics (segment order, fill rules, fee classification) that cannot be reverse-engineered from trades alone.| Field | Value | Source |
|---|---|---|
| Market-data provider | Binance Spot | caller DataSourceInput.provider |
| Exchange / venue | binance | caller DataSourceInput.exchange |
| Symbol | KSMUSDT | GET /backtests/{id} -> $.symbol |
| Candle interval | 1m | platform invariant - all backtests run on 1-minute OHLCV candles |
| First candle (UTC) | 2024-04-24 00:00:01 | GET /backtests/{id} -> $.config.from |
| Last candle (UTC) | 2026-02-25 23:59:59 | GET /backtests/{id} -> $.config.to |
| Timezone | UTC | default assumption (UTC) |
| Engine version | uncoded-engine (FastAPI backend) | caller DataSourceInput.engineVersion |
| Engine spec version | 1.1 | caller DataSourceInput.engineSpecVersion |
| Engine spec document | https://uncoded.ch/docs/engine | caller DataSourceInput.engineSpecPath |
Equity Curve
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value 10,353 | ## #
| ## ::#:##
|##::##### ### #::::::
|:::::::::###:::###:::::::### ## #
|::::::::::::::::::::::::::::### #::# #####:##
|::::::::::::::::::::::::::::::: #::::###::::::::# #
|:::::::::::::::::::::::::::::::#:::::::::::::::::#:## #
|:::::::::::::::::::::::::::::::::::::::::::::::::::::##:##
|::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
8,376 |::::::::::::::::::::::::::::::::::::::::::::::::::::::::::##
+------------------------------------------------------------
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,425.36 USDT @ 2024-12-06 23:59:00 UTC |
| Trough | 8,281.54 USDT @ 2026-02-05 23:59:00 UTC |
| Drawdown Duration | 426.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,425.36 USDT |
Final Portfolio Allocation
GET /backtests/{id}/equity * Fields used: total_value_exit_net, quote_asset_bal, base_asset_bal, base_value_exit_net, base_value_mid, unrealized_pnl_exit_net| Asset | Quantity | Value (USDT) | Allocation |
|---|---|---|---|
| USDT (Cash) | 7,467.14 | 7,467.14 | 86.9% |
| KSM | 209.96300000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 1,122.46 | 13.1% |
| Total | - | 8,589.60 | 100.0% |
Trade Analytics
GET /backtests/{id}/trades * Fields used: profit, profit_percentage, fill_type, buy_time, sell_time, buy_price, sell_price, buy_quantity, buy_fee_in_quote, sell_fee_in_quoteWins
Losses
Breakeven
Profit Factor
Payoff Ratio
Expectancy / Trade
Avg Win
Avg Loss
Median Trade
Max Win Streak
Max Loss Streak
Avg Holding
Median Holding
Total Volume
Total Fees
Gross Performance
| Metric | Value | Source |
|---|---|---|
| Gross Profit (winners only) | +0.98 USDT | Sum profit where profit > 0 (client-side from /trades) |
| Gross Loss (losers only) | -0.00 USDT | Sum -profit where profit < 0 (client-side from /trades) |
| Net Profit | +0.98 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.38 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.38 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.75 USDT | buy + sell on matched pairs |
| Open-position buy fees | 756.59 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 635 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 757.34 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 | 77544.41% | 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/6116f7f2-f5ed-4025-a973-e6e76498031a/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.375359 + 0.376656
= 0.752015 USDT
(B) bt.total_fees = 757.341767 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 757.341767 - 0.752015
= 756.589752 USDT
Identity check: (A) + (C) ?= (B)
0.752015 + 756.589752 = 757.341767 USDT
vs bt.total_fees = 757.341767 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 635 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.2h | 93.8h | 748.5h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:03:00 UTC | 2026-02-25 23:57:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +0.98 USDT | +0.20% |
Monthly Performance
GET /backtests/{id}/trades * Fields used: sell_time (bucket key), profit| Month | Trades | Wins | Win Rate | Net P&L (USDT) |
|---|---|---|---|---|
| 2024-04 | 13 | 13 | 100.0% | +0.08 |
| 2024-05 | 12 | 12 | 100.0% | +0.08 |
| 2024-09 | 3 | 3 | 100.0% | +0.01 |
| 2024-11 | 2 | 2 | 100.0% | +0.01 |
| 2024-12 | 2 | 2 | 100.0% | +0.01 |
| 2025-02 | 13 | 13 | 100.0% | +0.06 |
| 2025-05 | 3 | 3 | 100.0% | +0.01 |
| 2026-01 | 2 | 2 | 100.0% | +0.01 |
| 2026-02 | 50 | 50 | 100.0% | +0.70 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2026-02-06 -> 2026-02-06 | 4.040000 | 4.060000 | +0.0172 | +0.34% |
| 2 | TP | 2026-02-06 -> 2026-02-06 | 4.040000 | 4.060000 | +0.0172 | +0.34% |
| 3 | TP | 2026-02-06 -> 2026-02-06 | 4.070000 | 4.090000 | +0.0171 | +0.34% |
| 4 | TP | 2026-02-06 -> 2026-02-06 | 4.080000 | 4.100000 | +0.0170 | +0.34% |
| 5 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0169 | +0.34% |
| 6 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0169 | +0.34% |
| 7 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0169 | +0.34% |
| 8 | TP | 2026-02-06 -> 2026-02-06 | 4.090000 | 4.110000 | +0.0169 | +0.34% |
| 9 | TP | 2026-02-05 -> 2026-02-05 | 4.110000 | 4.130000 | +0.0168 | +0.34% |
| 10 | TP | 2026-02-06 -> 2026-02-06 | 4.110000 | 4.130000 | +0.0168 | +0.34% |
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 | -20.56% @ 2026-02-05 23:59:00 UTC |
| Mean | -7.08% |
| Std Dev | 5.33% |
| Last | -17.61% |
| Points | 673 |
| Across 673 points the series ranged from -20.56% (2026-02-05 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -7.08%. 0% of points were positive, 97% negative. The most recent value is -17.61%. | |
| 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.08265300085157137},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.004410273149619677},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.20590275621904228},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-1.0586650375608109},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-1.1058400079971435},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-1.5825951210989373},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-1.912322503012944},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-4.439139531137912},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-3.806264919779575},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-1.96398656781746},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-2.627364017496282},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-1.2732785557439548},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-1.6015995387659738},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-2.3660087581846128},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-2.4111058648436208},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-4.703215918555458},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-1.1048083763203895},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-1.144629744981268},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.16361978171565958},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-3.2279712970361736},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-2.0186889281237286},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-2.5764231289816966},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-3.6085418219119534},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-6.67387871044975},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-6.844782262220954},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-7.161880290953874},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-9.715643728996847},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-8.937188365509286},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-9.910195546158413},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-11.723185962541793},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-10.217420602870154},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-10.987927687745332},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-6.615370005966476},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-6.254341729862406},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-8.405017922875096},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-10.215516985480802},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-12.227135740895251},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-10.014214838864573},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-8.800438041207572},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-9.830343171119745},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-9.156563669532297},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-8.57973123389211},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-8.320564430199154},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-8.079663623000638},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-9.149863937266433},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-12.385646064523106},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-12.138792696114999},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-13.362199310682188},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-11.738110811381507},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-13.094289139395517},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-13.895774154501291},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-15.277146095682214},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-15.1648613434381},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-14.058298691027355},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-15.664147925678693},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-17.628407568110156},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-18.763108885470906},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-17.608598951591404}]
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 | 230.46 USDT @ 2024-11-23 23:59:00 UTC |
| Worst Unrealized | -2,347.58 USDT @ 2026-02-05 23:59:00 UTC |
| Mean | -765.90 USDT |
| Std Dev | 616.81 USDT |
| Last | -2,062.31 USDT |
| Points | 673 |
| Sum | -515,447.59 USDT |
| Across 673 points the series ranged from -2,347.58 USDT (2026-02-05 23:59:00 UTC) to 230.46 USDT (2024-11-23 23:59:00 UTC), averaging -765.90 USDT. 7% of points were positive, 93% negative. The most recent value is -2,062.31 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-11.364502935},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-15.68799895},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":-5.6354562},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":2.8106270325},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-18.466562065},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-115.0928373525},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-125.2751152675},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-183.13553977},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-222.704628165},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-489.9135084625},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-438.1666171775},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-260.63104688},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-337.646552445},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-209.6271580375},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-248.52486476},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-334.4523335825},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-346.737210085},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-584.0471933},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-241.37868353},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":99.904054745},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":185.20338984},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-153.495313295},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-46.223975155},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-114.208046205},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-236.6875789375},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-571.5191754025},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-602.8744310375},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-648.65698844},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-931.3894928475},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-862.669809185},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-971.4566933725},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-1170.8601549475},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-1020.4861820975},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-1109.05878077},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-670.7711517825},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-645.148673875},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-878.246452345},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-1074.769603865},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-1292.5966257875},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-1069.7481406875},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-960.311536505},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-1075.894185905},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-1014.2807435025},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-963.818598325},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-943.528535525},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-925.0445667025},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-1042.961916485},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-1389.2072960275},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-1373.89094192},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-1510.3108254175},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-1365.601675245},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-1519.0739379575},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-1609.53878119},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-1761.2062876625},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-1755.9882291975},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-1647.0544893775},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-1820.858609035},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-2035.585564655},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-2169.768371445},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-2062.30892282}]
Balance Composition (Cash vs. Coin)
GET /backtests/{id}/equity * Fields used: quote_asset_bal, base_value_exit_net, total_value_exit_net * Transform: stack(quote, base, total)total).| Stat | Value |
|---|---|
| Peak Total Equity | 10,425.36 USDT @ 2024-12-06 23:59:00 UTC |
| Trough Total Equity | 8,281.54 USDT @ 2026-02-05 23:59:00 UTC |
| Mean | 9,566.26 USDT |
| Std Dev | 447.80 USDT |
| Last | 8,589.60 USDT |
| Points | 673 |
| Sum | 6,438,092.58 USDT |
| Across 673 points the series ranged from 8,281.54 USDT (2026-02-05 23:59:00 UTC) to 10,425.36 USDT (2024-12-06 23:59:00 UTC), averaging 9,566.26 USDT. 100% of points were positive, 0% negative. The most recent value is 8,589.60 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9770.5284267075,"base":219.49717355999928,"total":9990.0256002675},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9701.8738504175,"base":295.52101288499944,"total":9997.3948633025},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9807.6059217801,"base":210.15506540000024,"total":10017.7609871801},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9896.6723212077,"base":138.3128275199997,"total":10034.9851487277},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9727.1376025853,"base":292.7081840899991,"total":10019.8457866753},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9226.3094779978,"base":707.9145455899998,"total":9934.2240235878},{"timestamp":"2024-07-01T23:59:00+00:00","quote":9201.6615905603,"base":727.8258209249998,"total":9929.4874114853},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9021.1051709852,"base":860.5135504350001,"total":9881.6187214202},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8947.3496387052,"base":901.16274066,"total":9848.5123793652},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8434.5416751026,"base":1160.2651480000004,"total":9594.8068231026},{"timestamp":"2024-08-16T23:59:00+00:00","quote":8456.3057322226,"base":1202.044989600001,"total":9658.3507218226},{"timestamp":"2024-08-27T23:59:00+00:00","quote":8879.8455208701,"base":963.4795179975008,"total":9843.3250388676},{"timestamp":"2024-09-08T23:59:00+00:00","quote":8714.7942177101,"base":1061.9242790099997,"total":9776.7184967201},{"timestamp":"2024-09-19T23:59:00+00:00","quote":9088.7391776724,"base":823.9365337875006,"total":9912.6757114599},{"timestamp":"2024-09-30T23:59:00+00:00","quote":8974.2905538598,"base":905.4200252999999,"total":9879.7105791598},{"timestamp":"2024-10-12T23:59:00+00:00","quote":8707.6723247374,"base":1095.28759774,"total":9802.9599224774},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8715.4378339125,"base":1082.9941047800003,"total":9798.4319386925},{"timestamp":"2024-11-04T23:59:00+00:00","quote":8236.4754741874,"base":1331.8167077599992,"total":9568.2921819474},{"timestamp":"2024-11-15T23:59:00+00:00","quote":8996.9613898648,"base":932.6296028000997,"total":9929.5909926649},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9780.6025882223,"base":516.584470849999,"total":10297.1870590723},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9876.6532942175,"base":531.6454366475009,"total":10408.298730865},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9127.4043054099,"base":961.4248501549991,"total":10088.8291555649},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9261.7595884725,"base":953.1415672799994,"total":10214.9011557525},{"timestamp":"2025-01-11T23:59:00+00:00","quote":9161.0796932551,"base":995.6756827499994,"total":10156.7553760051},{"timestamp":"2025-01-22T23:59:00+00:00","quote":8914.9764320602,"base":1134.1768888799998,"total":10049.1533209402},{"timestamp":"2025-02-03T23:59:00+00:00","quote":8388.5902649051,"base":1340.9907520625002,"total":9729.5810169676},{"timestamp":"2025-02-14T23:59:00+00:00","quote":8392.0817364823,"base":1319.68197564,"total":9711.7637121223},{"timestamp":"2025-02-26T23:59:00+00:00","quote":8364.6923208921,"base":1314.0127907200003,"total":9678.7051116121},{"timestamp":"2025-03-09T23:59:00+00:00","quote":7884.9041958919,"base":1527.5619686250002,"total":9412.4661645169},{"timestamp":"2025-03-20T23:59:00+00:00","quote":7987.5226157694,"base":1506.1002969599995,"total":9493.6229127294},{"timestamp":"2025-04-01T23:59:00+00:00","quote":7899.6396916568,"base":1492.5437520000005,"total":9392.1834436568},{"timestamp":"2025-04-12T23:59:00+00:00","quote":7684.4949494644,"base":1518.6777767699996,"total":9203.1727262344},{"timestamp":"2025-04-23T23:59:00+00:00","quote":7821.4476317444,"base":1538.7065039500003,"total":9360.1541356944},{"timestamp":"2025-05-05T23:59:00+00:00","quote":7649.2735660944,"base":1630.5524577825,"total":9279.8260238769},{"timestamp":"2025-05-16T23:59:00+00:00","quote":8443.8278549869,"base":1291.8529031100006,"total":9735.6807580969},{"timestamp":"2025-05-28T23:59:00+00:00","quote":8511.0032911345,"base":1262.3159524499988,"total":9773.3192435845},{"timestamp":"2025-06-08T23:59:00+00:00","quote":8098.810295867,"base":1450.293283635,"total":9549.103579502},{"timestamp":"2025-06-19T23:59:00+00:00","quote":7865.9995905545,"base":1494.3530040424994,"total":9360.352594597},{"timestamp":"2025-07-01T23:59:00+00:00","quote":7638.5984423196,"base":1512.03572205,"total":9150.6341643696},{"timestamp":"2025-07-12T23:59:00+00:00","quote":7907.0459811021,"base":1474.2930802775,"total":9381.3390613796},{"timestamp":"2025-07-24T23:59:00+00:00","quote":8029.3587047744,"base":1478.5209170199996,"total":9507.8796217944},{"timestamp":"2025-08-04T23:59:00+00:00","quote":7912.2358407244,"base":1488.2724978449996,"total":9400.5083385694},{"timestamp":"2025-08-15T23:59:00+00:00","quote":8036.1310283243,"base":1434.6212265000995,"total":9470.7522548244},{"timestamp":"2025-08-27T23:59:00+00:00","quote":8080.9724973043,"base":1449.9165963624991,"total":9530.8890936668},{"timestamp":"2025-09-07T23:59:00+00:00","quote":8313.2692171794,"base":1244.638940159999,"total":9557.9081573394},{"timestamp":"2025-09-19T23:59:00+00:00","quote":8234.7082007669,"base":1348.3147249600006,"total":9583.0229257269},{"timestamp":"2025-09-30T23:59:00+00:00","quote":8110.7706418295,"base":1360.6800839799998,"total":9471.4507258095},{"timestamp":"2025-10-11T23:59:00+00:00","quote":7979.441947962,"base":1154.6669498,"total":9134.108897762},{"timestamp":"2025-10-23T23:59:00+00:00","quote":7899.674318707,"base":1260.1699231800003,"total":9159.844241887},{"timestamp":"2025-11-03T23:59:00+00:00","quote":7818.4129471295,"base":1213.8867915824994,"total":9032.299738712},{"timestamp":"2025-11-14T23:59:00+00:00","quote":8068.5096856644,"base":1133.107071845,"total":9201.6167575094},{"timestamp":"2025-11-26T23:59:00+00:00","quote":7920.3134090168,"base":1139.9169206249999,"total":9060.2303296418},{"timestamp":"2025-12-07T23:59:00+00:00","quote":7827.0521106642,"base":1149.6205474424996,"total":8976.6726581067},{"timestamp":"2025-12-19T23:59:00+00:00","quote":7679.4717663167,"base":1153.1879398899991,"total":8832.6597062067},{"timestamp":"2025-12-30T23:59:00+00:00","quote":7781.1030377217,"base":1063.2627543999997,"total":8844.3657921217},{"timestamp":"2026-01-10T23:59:00+00:00","quote":7832.6000066392,"base":1127.1288888475,"total":8959.7288954867},{"timestamp":"2026-01-22T23:59:00+00:00","quote":7668.7483213617,"base":1123.5650637225008,"total":8792.3133850842},{"timestamp":"2026-02-02T23:59:00+00:00","quote":7483.4131721917,"base":1104.1191391124994,"total":8587.5323113042},{"timestamp":"2026-02-14T23:59:00+00:00","quote":7349.0997842041,"base":1120.1358675499996,"total":8469.2356517541},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7467.1378567665,"base":1122.4595734625,"total":8589.597430229}]
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 | 17.78% @ 2025-05-04 23:59:00 UTC |
| Min Exposure | 0.80% @ 2024-05-25 23:59:00 UTC |
| Mean | 11.71% |
| Std Dev | 3.91% |
| Last | 13.07% |
| Points | 673 |
| Across 673 points the series ranged from 0.80% (2024-05-25 23:59:00 UTC) to 17.78% (2025-05-04 23:59:00 UTC), averaging 11.71%. 100% of points were positive, 0% negative. The most recent value is 13.07%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.1971632740773144},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.955980202100152},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.0978247102215684},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":1.378306250284146},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":2.921284322352062},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":7.126017532009837},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":7.329943538506669},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":8.708224580348165},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.1502422492572},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":12.092636875255131},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":12.445654793670263},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":9.788150997687076},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":10.861765932672142},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":8.311948839756349},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":9.164438756028817},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":11.173029436023638},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":11.052728758602926},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":13.91906395033329},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":9.392427175389638},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":5.016753292782655},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":5.107899479008492},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":9.529597888221614},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":9.33089368900295},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":9.80308815059424},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":11.286293010542762},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":13.7826156103117},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":13.588489328593967},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":13.57632839896634},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":16.229136359433628},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":15.864336626858908},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":15.891339441501431},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":16.50167634516827},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":16.43890134332546},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":17.570937791151522},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":13.269261135494833},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":12.915939006889813},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":15.187742719098612},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.96470847588661},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":16.523835341789848},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.715166786229487},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":15.550479979057222},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":15.831829984541985},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.147912097154729},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":15.212815741670493},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":13.022085164150235},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":14.069826769800061},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":14.36612112938703},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":12.641265423088088},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":13.757547507384201},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":13.43939889837623},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":12.314217182760585},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":12.581544609253518},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":12.806755812848921},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":13.055953452838848},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":12.02192197146711},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":12.579944125488781},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":12.778946956424267},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":12.857234174933957},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":13.22593813194941},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":13.067662164378932}]
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 | 331.23 USDT @ 2024-11-23 23:59:00 UTC |
| Worst Day | -354.95 USDT @ 2025-10-10 23:59:00 UTC |
| Mean | -2.08 USDT |
| Std Dev | 58.76 USDT |
| Last | 134.68 USDT |
| Points | 672 |
| Sum | -1,400.43 USDT |
| Across 672 points the series ranged from -354.95 USDT (2025-10-10 23:59:00 UTC) to 331.23 USDT (2024-11-23 23:59:00 UTC), averaging -2.08 USDT. 48% of points were positive, 52% negative. The most recent value is 134.68 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":2.5800316849999945},{"timestamp":"2024-05-06T23:59:00+00:00","delta":-11.481878274998962},{"timestamp":"2024-05-18T23:59:00+00:00","delta":2.568062385000303},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-0.050698059998467215},{"timestamp":"2024-06-09T23:59:00+00:00","delta":4.560683247600537},{"timestamp":"2024-06-21T23:59:00+00:00","delta":0.3237363650005136},{"timestamp":"2024-07-02T23:59:00+00:00","delta":11.23316621000049},{"timestamp":"2024-07-14T23:59:00+00:00","delta":37.09912531500049},{"timestamp":"2024-07-25T23:59:00+00:00","delta":-11.417421820000527},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-97.86026681999829},{"timestamp":"2024-08-17T23:59:00+00:00","delta":8.122574377499404},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-31.073668192600962},{"timestamp":"2024-09-08T23:59:00+00:00","delta":47.58554670999911},{"timestamp":"2024-09-20T23:59:00+00:00","delta":-2.791216332499971},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-75.43295572500028},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-2.497903384899473},{"timestamp":"2024-10-24T23:59:00+00:00","delta":12.047280840000894},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-47.74668350250067},{"timestamp":"2024-11-16T23:59:00+00:00","delta":92.54843844239986},{"timestamp":"2024-11-27T23:59:00+00:00","delta":19.773858167500293},{"timestamp":"2024-12-08T23:59:00+00:00","delta":7.1491765925002255},{"timestamp":"2024-12-20T23:59:00+00:00","delta":66.78774235750097},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-36.2646108075005},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-19.979839497500507},{"timestamp":"2025-01-23T23:59:00+00:00","delta":2.6032790074987133},{"timestamp":"2025-02-03T23:59:00+00:00","delta":47.18435181250061},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-35.77398404499945},{"timestamp":"2025-02-26T23:59:00+00:00","delta":17.983837622499777},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-89.55142026999965},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-28.456269444999634},{"timestamp":"2025-04-01T23:59:00+00:00","delta":17.765461637500266},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-72.97278691999963},{"timestamp":"2025-04-24T23:59:00+00:00","delta":47.97890155250025},{"timestamp":"2025-05-05T23:59:00+00:00","delta":13.107420140000613},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-46.481307930000185},{"timestamp":"2025-05-28T23:59:00+00:00","delta":67.8312628499989},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-2.3773027549996186},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-42.56583156749912},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-69.53052518749973},{"timestamp":"2025-07-13T23:59:00+00:00","delta":44.46813178249977},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-28.30899178999971},{"timestamp":"2025-08-04T23:59:00+00:00","delta":37.27727499499997},{"timestamp":"2025-08-16T23:59:00+00:00","delta":38.540227679899544},{"timestamp":"2025-08-27T23:59:00+00:00","delta":19.060605384898736},{"timestamp":"2025-09-07T23:59:00+00:00","delta":19.734912062600415},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-35.57510251500025},{"timestamp":"2025-09-30T23:59:00+00:00","delta":2.4941254799996386},{"timestamp":"2025-10-12T23:59:00+00:00","delta":127.57210509499964},{"timestamp":"2025-10-23T23:59:00+00:00","delta":18.947082962500644},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-175.02445846750015},{"timestamp":"2025-11-15T23:59:00+00:00","delta":29.8366544849996},{"timestamp":"2025-11-26T23:59:00+00:00","delta":4.5988356999987445},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-22.322838012500142},{"timestamp":"2025-12-19T23:59:00+00:00","delta":88.1119883124993},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-13.204286660000434},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-34.92868388249917},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-12.956678970000212},{"timestamp":"2026-02-02T23:59:00+00:00","delta":38.477876792499956},{"timestamp":"2026-02-14T23:59:00+00:00","delta":74.65189476500018},{"timestamp":"2026-02-25T23:59:00+00:00","delta":134.67959906739998}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 6.97% @ 2024-11 |
| Worst Month | -5.53% @ 2025-10 |
| Mean | -0.53% |
| Std Dev | 2.49% |
| Last | 0.47% |
| Points | 23 |
| Across 23 points the series ranged from -5.53% (2025-10) to 6.97% (2024-11), averaging -0.53%. 30% of points were positive, 70% negative. The most recent value is 0.47%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.02243164604543096},{"month":"2024-05","returnPct":0.32551193955628166},{"month":"2024-06","returnPct":-0.9290238139231013},{"month":"2024-07","returnPct":-0.9134542497157089},{"month":"2024-08","returnPct":-0.7058170292218778},{"month":"2024-09","returnPct":1.7193229393979441},{"month":"2024-10","returnPct":-1.0616769908789403},{"month":"2024-11","returnPct":6.965498949942263},{"month":"2024-12","returnPct":-1.4438111842652328},{"month":"2025-01","returnPct":-2.462976936031384},{"month":"2025-02","returnPct":-2.437308500227073},{"month":"2025-03","returnPct":-2.5625396179189193},{"month":"2025-04","returnPct":-0.47937749765533466},{"month":"2025-05","returnPct":1.3807856427070568},{"month":"2025-06","returnPct":-3.30545438346767},{"month":"2025-07","returnPct":2.446910301437291},{"month":"2025-08","returnPct":2.5324411169841663},{"month":"2025-09","returnPct":-0.30002823800906664},{"month":"2025-10","returnPct":-5.526557504343645},{"month":"2025-11","returnPct":-0.6179885654926335},{"month":"2025-12","returnPct":-1.5996679434914265},{"month":"2026-01","returnPct":-3.7570184924438887},{"month":"2026-02","returnPct":0.4742395317268299}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 651.91 USDT @ 2026-02-25 |
| Trough Cum. | 1.39 USDT @ 2024-04-24 |
| Mean | 332.15 USDT |
| Std Dev | 197.01 USDT |
| Last | 651.91 USDT |
| Points | 673 |
| Sum | 223,540.17 USDT |
| Across 673 points the series ranged from 1.39 USDT (2024-04-24) to 651.91 USDT (2026-02-25), averaging 332.15 USDT. 100% of points were positive, 0% negative. The most recent value is 651.91 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":1.390103},{"timestamp":"2024-05-05","cumProfit":13.082861999999999},{"timestamp":"2024-05-17","cumProfit":23.396441999999997},{"timestamp":"2024-05-28","cumProfit":32.174521},{"timestamp":"2024-06-09","cumProfit":38.312349},{"timestamp":"2024-06-20","cumProfit":49.31686099999998},{"timestamp":"2024-07-01","cumProfit":54.76252699999998},{"timestamp":"2024-07-13","cumProfit":64.75426199999997},{"timestamp":"2024-07-24","cumProfit":71.21700699999995},{"timestamp":"2024-08-05","cumProfit":84.72033199999994},{"timestamp":"2024-08-16","cumProfit":96.51733799999994},{"timestamp":"2024-08-27","cumProfit":103.95608699999994},{"timestamp":"2024-09-08","cumProfit":114.36504999999993},{"timestamp":"2024-09-19","cumProfit":122.30286899999993},{"timestamp":"2024-09-30","cumProfit":128.23544199999992},{"timestamp":"2024-10-12","cumProfit":137.41225299999996},{"timestamp":"2024-10-23","cumProfit":145.16914399999996},{"timestamp":"2024-11-04","cumProfit":152.33936899999995},{"timestamp":"2024-11-15","cumProfit":170.96966799999996},{"timestamp":"2024-11-26","cumProfit":197.28299599999994},{"timestamp":"2024-12-08","cumProfit":223.09533299999998},{"timestamp":"2024-12-19","cumProfit":242.324459},{"timestamp":"2024-12-31","cumProfit":261.125122},{"timestamp":"2025-01-11","cumProfit":270.96341399999994},{"timestamp":"2025-01-22","cumProfit":285.84089199999994},{"timestamp":"2025-02-03","cumProfit":301.100183},{"timestamp":"2025-02-14","cumProfit":314.638134},{"timestamp":"2025-02-26","cumProfit":327.362091},{"timestamp":"2025-03-09","cumProfit":343.8556480000001},{"timestamp":"2025-03-20","cumProfit":356.2927120000001},{"timestamp":"2025-04-01","cumProfit":363.6401270000001},{"timestamp":"2025-04-12","cumProfit":374.0328690000002},{"timestamp":"2025-04-23","cumProfit":380.6403060000002},{"timestamp":"2025-05-05","cumProfit":388.88479400000017},{"timestamp":"2025-05-16","cumProfit":406.4519000000002},{"timestamp":"2025-05-28","cumProfit":418.4679070000001},{"timestamp":"2025-06-08","cumProfit":427.3500210000001},{"timestamp":"2025-06-19","cumProfit":435.12218700000017},{"timestamp":"2025-07-01","cumProfit":443.2307780000001},{"timestamp":"2025-07-12","cumProfit":451.08719100000013},{"timestamp":"2025-07-24","cumProfit":468.19114800000017},{"timestamp":"2025-08-04","cumProfit":476.40251400000017},{"timestamp":"2025-08-15","cumProfit":485.0329890000001},{"timestamp":"2025-08-27","cumProfit":494.7076820000001},{"timestamp":"2025-09-07","cumProfit":501.4366840000001},{"timestamp":"2025-09-19","cumProfit":508.0674820000002},{"timestamp":"2025-09-30","cumProfit":514.4126330000001},{"timestamp":"2025-10-11","cumProfit":523.3161840000001},{"timestamp":"2025-10-23","cumProfit":533.7351740000004},{"timestamp":"2025-11-03","cumProfit":542.6105540000004},{"timestamp":"2025-11-14","cumProfit":567.2184240000005},{"timestamp":"2025-11-26","cumProfit":579.3042590000005},{"timestamp":"2025-12-07","cumProfit":586.2114310000004},{"timestamp":"2025-12-19","cumProfit":593.8659850000003},{"timestamp":"2025-12-30","cumProfit":600.3540120000001},{"timestamp":"2026-01-10","cumProfit":606.7833750000001},{"timestamp":"2026-01-22","cumProfit":613.1719850000001},{"timestamp":"2026-02-02","cumProfit":623.1178659999999},{"timestamp":"2026-02-14","cumProfit":639.0040140000001},{"timestamp":"2026-02-25","cumProfit":651.9063430000001}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 5.99 USDT @ 2025-11-08 |
| Worst Day | 0.1542 USDT @ 2024-06-01 |
| Mean | 0.9687 USDT |
| Std Dev | 0.6648 USDT |
| Last | 3.45 USDT |
| Points | 673 |
| Sum | 651.91 USDT |
| Across 673 points the series ranged from 0.1542 USDT (2024-06-01) to 5.99 USDT (2025-11-08), averaging 0.9687 USDT. 100% of points were positive, 0% negative. The most recent value is 3.45 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":1.390103},{"day":"2024-05-05","profit":1.069644},{"day":"2024-05-17","profit":0.617067},{"day":"2024-05-28","profit":0.883694},{"day":"2024-06-09","profit":0.409416},{"day":"2024-06-20","profit":1.110136},{"day":"2024-07-01","profit":0.455847},{"day":"2024-07-13","profit":0.26325},{"day":"2024-07-24","profit":0.402436},{"day":"2024-08-05","profit":3.779244},{"day":"2024-08-16","profit":0.788278},{"day":"2024-08-27","profit":0.769839},{"day":"2024-09-08","profit":0.720762},{"day":"2024-09-19","profit":0.465322},{"day":"2024-09-30","profit":0.711012},{"day":"2024-10-12","profit":0.300831},{"day":"2024-10-23","profit":0.526337},{"day":"2024-11-04","profit":0.528754},{"day":"2024-11-15","profit":1.927735},{"day":"2024-11-26","profit":3.328462},{"day":"2024-12-08","profit":0.970388},{"day":"2024-12-19","profit":2.213535},{"day":"2024-12-31","profit":1.025769},{"day":"2025-01-11","profit":0.453653},{"day":"2025-01-22","profit":0.939192},{"day":"2025-02-03","profit":3.737884},{"day":"2025-02-14","profit":0.744271},{"day":"2025-02-26","profit":2.06948},{"day":"2025-03-09","profit":1.232741},{"day":"2025-03-20","profit":0.455472},{"day":"2025-04-01","profit":0.705908},{"day":"2025-04-12","profit":0.382489},{"day":"2025-04-23","profit":0.845899},{"day":"2025-05-05","profit":0.497387},{"day":"2025-05-16","profit":1.068647},{"day":"2025-05-28","profit":1.278961},{"day":"2025-06-08","profit":0.357013},{"day":"2025-06-19","profit":0.406254},{"day":"2025-07-01","profit":0.606527},{"day":"2025-07-12","profit":0.90622},{"day":"2025-07-24","profit":1.226797},{"day":"2025-08-04","profit":0.395349},{"day":"2025-08-15","profit":0.852295},{"day":"2025-08-27","profit":0.840732},{"day":"2025-09-07","profit":0.306362},{"day":"2025-09-19","profit":0.859031},{"day":"2025-09-30","profit":0.571472},{"day":"2025-10-11","profit":2.428275},{"day":"2025-10-23","profit":0.469498},{"day":"2025-11-03","profit":1.646142},{"day":"2025-11-14","profit":1.278852},{"day":"2025-11-26","profit":0.534807},{"day":"2025-12-07","profit":0.59439},{"day":"2025-12-19","profit":0.848995},{"day":"2025-12-30","profit":0.276477},{"day":"2026-01-10","profit":0.369359},{"day":"2026-01-22","profit":0.286652},{"day":"2026-02-02","profit":1.954742},{"day":"2026-02-14","profit":0.932004},{"day":"2026-02-25","profit":3.447047}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 803 trades @ 2025-11-08 |
| Quietest Day | 26 trades @ 2026-02-22 |
| Mean | 150 trades |
| Std Dev | 108 trades |
| Last | 301 trades |
| Points | 673 |
| Sum | 100628 trades |
| Across 673 points the series ranged from 26 trades (2026-02-22) to 803 trades (2025-11-08), averaging 150 trades. The most recent value is 301 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":244},{"day":"2024-05-05","count":167},{"day":"2024-05-17","count":102},{"day":"2024-05-28","count":152},{"day":"2024-06-09","count":63},{"day":"2024-06-20","count":176},{"day":"2024-07-01","count":73},{"day":"2024-07-13","count":41},{"day":"2024-07-24","count":60},{"day":"2024-08-05","count":620},{"day":"2024-08-16","count":106},{"day":"2024-08-27","count":119},{"day":"2024-09-08","count":114},{"day":"2024-09-19","count":68},{"day":"2024-09-30","count":106},{"day":"2024-10-12","count":50},{"day":"2024-10-23","count":83},{"day":"2024-11-04","count":95},{"day":"2024-11-15","count":324},{"day":"2024-11-26","count":598},{"day":"2024-12-08","count":165},{"day":"2024-12-19","count":371},{"day":"2024-12-31","count":175},{"day":"2025-01-11","count":82},{"day":"2025-01-22","count":156},{"day":"2025-02-03","count":589},{"day":"2025-02-14","count":109},{"day":"2025-02-26","count":333},{"day":"2025-03-09","count":165},{"day":"2025-03-20","count":68},{"day":"2025-04-01","count":97},{"day":"2025-04-12","count":54},{"day":"2025-04-23","count":151},{"day":"2025-05-05","count":80},{"day":"2025-05-16","count":200},{"day":"2025-05-28","count":210},{"day":"2025-06-08","count":47},{"day":"2025-06-19","count":62},{"day":"2025-07-01","count":71},{"day":"2025-07-12","count":142},{"day":"2025-07-24","count":226},{"day":"2025-08-04","count":59},{"day":"2025-08-15","count":147},{"day":"2025-08-27","count":155},{"day":"2025-09-07","count":56},{"day":"2025-09-19","count":124},{"day":"2025-09-30","count":86},{"day":"2025-10-11","count":377},{"day":"2025-10-23","count":72},{"day":"2025-11-03","count":212},{"day":"2025-11-14","count":179},{"day":"2025-11-26","count":54},{"day":"2025-12-07","count":62},{"day":"2025-12-19","count":119},{"day":"2025-12-30","count":42},{"day":"2026-01-10","count":66},{"day":"2026-01-22","count":39},{"day":"2026-02-02","count":178},{"day":"2026-02-14","count":70},{"day":"2026-02-25","count":301}]
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 | 757.34 USDT @ 2026-02-25 |
| Start | 1.84 USDT @ 2024-04-24 |
| Mean | 405.63 USDT |
| Std Dev | 236.70 USDT |
| Last | 757.34 USDT |
| Points | 673 |
| Sum | 272,992.18 USDT |
| Across 673 points the series ranged from 1.84 USDT (2024-04-24) to 757.34 USDT (2026-02-25), averaging 405.63 USDT. 100% of points were positive, 0% negative. The most recent value is 757.34 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.838367},{"index":11,"timestamp":"2024-05-05","cumFees":16.389727999999998},{"index":23,"timestamp":"2024-05-17","cumFees":29.118378},{"index":34,"timestamp":"2024-05-28","cumFees":40.403878999999996},{"index":46,"timestamp":"2024-06-09","cumFees":48.223350999999994},{"index":57,"timestamp":"2024-06-20","cumFees":62.15379899999999},{"index":68,"timestamp":"2024-07-01","cumFees":69.342423},{"index":80,"timestamp":"2024-07-13","cumFees":81.045258},{"index":91,"timestamp":"2024-07-24","cumFees":89.407373},{"index":103,"timestamp":"2024-08-05","cumFees":105.65182800000002},{"index":114,"timestamp":"2024-08-16","cumFees":118.17950200000003},{"index":125,"timestamp":"2024-08-27","cumFees":126.90936300000004},{"index":137,"timestamp":"2024-09-08","cumFees":139.37693000000002},{"index":148,"timestamp":"2024-09-19","cumFees":149.618581},{"index":159,"timestamp":"2024-09-30","cumFees":156.452478},{"index":171,"timestamp":"2024-10-12","cumFees":167.474907},{"index":182,"timestamp":"2024-10-23","cumFees":177.105366},{"index":194,"timestamp":"2024-11-04","cumFees":185.155461},{"index":205,"timestamp":"2024-11-15","cumFees":208.27743199999998},{"index":216,"timestamp":"2024-11-26","cumFees":241.64721399999996},{"index":228,"timestamp":"2024-12-08","cumFees":275.803587},{"index":239,"timestamp":"2024-12-19","cumFees":301.409741},{"index":251,"timestamp":"2024-12-31","cumFees":326.272988},{"index":262,"timestamp":"2025-01-11","cumFees":339.33938600000005},{"index":273,"timestamp":"2025-01-22","cumFees":358.522738},{"index":285,"timestamp":"2025-02-03","cumFees":377.35881699999993},{"index":296,"timestamp":"2025-02-14","cumFees":394.83190599999995},{"index":308,"timestamp":"2025-02-26","cumFees":410.664339},{"index":319,"timestamp":"2025-03-09","cumFees":430.37769199999997},{"index":330,"timestamp":"2025-03-20","cumFees":444.604068},{"index":342,"timestamp":"2025-04-01","cumFees":453.18871299999984},{"index":353,"timestamp":"2025-04-12","cumFees":464.05680099999984},{"index":364,"timestamp":"2025-04-23","cumFees":470.93148399999984},{"index":376,"timestamp":"2025-05-05","cumFees":480.74069599999984},{"index":387,"timestamp":"2025-05-16","cumFees":502.35921999999977},{"index":399,"timestamp":"2025-05-28","cumFees":517.5574129999998},{"index":410,"timestamp":"2025-06-08","cumFees":527.7663489999999},{"index":421,"timestamp":"2025-06-19","cumFees":536.6879829999999},{"index":433,"timestamp":"2025-07-01","cumFees":544.592712},{"index":444,"timestamp":"2025-07-12","cumFees":552.692819},{"index":456,"timestamp":"2025-07-24","cumFees":572.620372},{"index":467,"timestamp":"2025-08-04","cumFees":582.360866},{"index":478,"timestamp":"2025-08-15","cumFees":592.8616609999999},{"index":490,"timestamp":"2025-08-27","cumFees":604.5204879999998},{"index":501,"timestamp":"2025-09-07","cumFees":613.1628359999999},{"index":513,"timestamp":"2025-09-19","cumFees":621.4148179999997},{"index":524,"timestamp":"2025-09-30","cumFees":628.6803069999995},{"index":535,"timestamp":"2025-10-11","cumFees":639.6528759999995},{"index":547,"timestamp":"2025-10-23","cumFees":652.4645969999993},{"index":558,"timestamp":"2025-11-03","cumFees":661.7429069999991},{"index":569,"timestamp":"2025-11-14","cumFees":686.2204969999989},{"index":581,"timestamp":"2025-11-26","cumFees":696.7556819999988},{"index":592,"timestamp":"2025-12-07","cumFees":702.8009599999988},{"index":604,"timestamp":"2025-12-19","cumFees":710.9570159999987},{"index":615,"timestamp":"2025-12-30","cumFees":718.4137889999986},{"index":626,"timestamp":"2026-01-10","cumFees":725.9903659999986},{"index":638,"timestamp":"2026-01-22","cumFees":733.2210759999986},{"index":649,"timestamp":"2026-02-02","cumFees":741.4900749999985},{"index":661,"timestamp":"2026-02-14","cumFees":749.8075469999985},{"index":672,"timestamp":"2026-02-25","cumFees":757.3417779999985}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 10314 trades @ 0.10% |
| Least Populated Bin | 3 trades @ 0.34% |
| Mean | 1677 trades |
| Std Dev | 2950 trades |
| Last | 3 trades |
| Points | 60 |
| Sum | 100628 trades |
| Across 60 points the series ranged from 3 trades (0.34%) to 10314 trades (0.10%), averaging 1677 trades. The most recent value is 3 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":10314,"from":0.099812},{"bin":"0.10%","count":9751,"from":0.103894},{"bin":"0.11%","count":8239,"from":0.107975},{"bin":"0.11%","count":8457,"from":0.112056},{"bin":"0.12%","count":8903,"from":0.116137},{"bin":"0.12%","count":8623,"from":0.120218},{"bin":"0.12%","count":7710,"from":0.124299},{"bin":"0.13%","count":6011,"from":0.12838},{"bin":"0.13%","count":5637,"from":0.132461},{"bin":"0.14%","count":4741,"from":0.136542},{"bin":"0.14%","count":3665,"from":0.140623},{"bin":"0.14%","count":3626,"from":0.144705},{"bin":"0.15%","count":2703,"from":0.148786},{"bin":"0.15%","count":1957,"from":0.152867},{"bin":"0.16%","count":2164,"from":0.156948},{"bin":"0.16%","count":1194,"from":0.161029},{"bin":"0.17%","count":668,"from":0.16511},{"bin":"0.17%","count":848,"from":0.169191},{"bin":"0.17%","count":754,"from":0.173272},{"bin":"0.18%","count":466,"from":0.177353},{"bin":"0.18%","count":121,"from":0.181434},{"bin":"0.19%","count":143,"from":0.185516},{"bin":"0.19%","count":195,"from":0.189597},{"bin":"0.19%","count":257,"from":0.193678},{"bin":"0.20%","count":236,"from":0.197759},{"bin":"0.20%","count":194,"from":0.20184},{"bin":"0.21%","count":160,"from":0.205921},{"bin":"0.21%","count":203,"from":0.210002},{"bin":"0.21%","count":245,"from":0.214083},{"bin":"0.22%","count":271,"from":0.218164},{"bin":"0.22%","count":208,"from":0.222245},{"bin":"0.23%","count":111,"from":0.226326},{"bin":"0.23%","count":63,"from":0.230408},{"bin":"0.23%","count":47,"from":0.234489},{"bin":"0.24%","count":58,"from":0.23857},{"bin":"0.24%","count":28,"from":0.242651},{"bin":"0.25%","count":45,"from":0.246732},{"bin":"0.25%","count":64,"from":0.250813},{"bin":"0.25%","count":81,"from":0.254894},{"bin":"0.26%","count":197,"from":0.258975},{"bin":"0.26%","count":125,"from":0.263056},{"bin":"0.27%","count":60,"from":0.267137},{"bin":"0.27%","count":66,"from":0.271219},{"bin":"0.28%","count":81,"from":0.2753},{"bin":"0.28%","count":80,"from":0.279381},{"bin":"0.28%","count":141,"from":0.283462},{"bin":"0.29%","count":121,"from":0.287543},{"bin":"0.29%","count":31,"from":0.291624},{"bin":"0.30%","count":51,"from":0.295705},{"bin":"0.30%","count":81,"from":0.299786},{"bin":"0.30%","count":86,"from":0.303867},{"bin":"0.31%","count":70,"from":0.307948},{"bin":"0.31%","count":65,"from":0.312029},{"bin":"0.32%","count":26,"from":0.316111},{"bin":"0.32%","count":39,"from":0.320192},{"bin":"0.32%","count":57,"from":0.324273},{"bin":"0.33%","count":60,"from":0.328354},{"bin":"0.33%","count":22,"from":0.332435},{"bin":"0.34%","count":5,"from":0.336516},{"bin":"0.34%","count":3,"from":0.340597}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1006 |
| Coldest Window | 100.00% @ 1006 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1006) to 100.00% (1006), 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":1006,"winRate":100},{"index":2701,"winRate":100},{"index":4397,"winRate":100},{"index":6092,"winRate":100},{"index":7787,"winRate":100},{"index":9482,"winRate":100},{"index":11178,"winRate":100},{"index":12873,"winRate":100},{"index":14468,"winRate":100},{"index":16164,"winRate":100},{"index":17859,"winRate":100},{"index":19554,"winRate":100},{"index":21250,"winRate":100},{"index":22945,"winRate":100},{"index":24640,"winRate":100},{"index":26335,"winRate":100},{"index":28031,"winRate":100},{"index":29726,"winRate":100},{"index":31421,"winRate":100},{"index":33116,"winRate":100},{"index":34812,"winRate":100},{"index":36507,"winRate":100},{"index":38202,"winRate":100},{"index":39798,"winRate":100},{"index":41493,"winRate":100},{"index":43188,"winRate":100},{"index":44884,"winRate":100},{"index":46579,"winRate":100},{"index":48274,"winRate":100},{"index":49969,"winRate":100},{"index":51665,"winRate":100},{"index":53360,"winRate":100},{"index":55055,"winRate":100},{"index":56750,"winRate":100},{"index":58446,"winRate":100},{"index":60141,"winRate":100},{"index":61836,"winRate":100},{"index":63432,"winRate":100},{"index":65127,"winRate":100},{"index":66822,"winRate":100},{"index":68518,"winRate":100},{"index":70213,"winRate":100},{"index":71908,"winRate":100},{"index":73603,"winRate":100},{"index":75299,"winRate":100},{"index":76994,"winRate":100},{"index":78689,"winRate":100},{"index":80384,"winRate":100},{"index":82080,"winRate":100},{"index":83775,"winRate":100},{"index":85470,"winRate":100},{"index":87166,"winRate":100},{"index":88761,"winRate":100},{"index":90456,"winRate":100},{"index":92152,"winRate":100},{"index":93847,"winRate":100},{"index":95542,"winRate":100},{"index":97237,"winRate":100},{"index":98933,"winRate":100},{"index":100628,"winRate":100}]
Gross vs. Net PnL (Fee Impact)
GET /backtests/{id}/trades * Fields used: sell_time, profit, buy_fee_in_quote, sell_fee_in_quote * Transform: grossVsNetPnL(trades)net).| Stat | Value |
|---|---|
| Peak Net | 0.9767 USDT @ 2026-02-25 23:57:00 UTC |
| Trough Net | 0.0063 USDT @ 2024-04-24 00:08:00 UTC |
| Mean | 0.4103 USDT |
| Std Dev | 0.3021 USDT |
| Last | 0.9767 USDT |
| Points | 100 |
| Sum | 41.03 USDT |
| Across 100 points the series ranged from 0.0063 USDT (2024-04-24 00:08:00 UTC) to 0.9767 USDT (2026-02-25 23:57:00 UTC), averaging 0.4103 USDT. 100% of points were positive, 0% negative. The most recent value is 0.9767 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:08:00Z","net":0.006312075,"gross":0.01386},{"timestamp":"2024-04-24T00:31:00Z","net":0.019132125,"gross":0.041760000000000005},{"timestamp":"2024-04-24T00:32:00Z","net":0.0255316875,"gross":0.05571000000000001},{"timestamp":"2024-04-24T00:51:00Z","net":0.038218207500000004,"gross":0.08343},{"timestamp":"2024-04-24T01:30:00Z","net":0.05098308000000001,"gross":0.11124},{"timestamp":"2024-04-24T01:33:00Z","net":0.05740356750000001,"gross":0.12519},{"timestamp":"2024-04-24T04:52:00Z","net":0.06754266750000001,"gross":0.15039},{"timestamp":"2024-04-24T04:57:00Z","net":0.07758595750000001,"gross":0.17550999999999997},{"timestamp":"2024-05-20T19:24:00Z","net":0.08411338750000001,"gross":0.18954999999999997},{"timestamp":"2024-05-20T19:25:00Z","net":0.09714016750000001,"gross":0.21762999999999996},{"timestamp":"2024-05-20T19:33:00Z","net":0.11006465500000001,"gross":0.24561999999999995},{"timestamp":"2024-05-20T19:33:00Z","net":0.11654762500000002,"gross":0.25965999999999995},{"timestamp":"2024-05-20T19:36:00Z","net":0.12935605000000003,"gross":0.28756},{"timestamp":"2024-05-21T00:30:00Z","net":0.14202178000000004,"gross":0.31527999999999995},{"timestamp":"2024-05-25T04:33:00Z","net":0.14833385500000004,"gross":0.32913999999999993},{"timestamp":"2024-09-10T16:19:00Z","net":0.15957950250000005,"gross":0.35540999999999995},{"timestamp":"2024-09-18T18:13:00Z","net":0.16956075250000005,"gross":0.38040999999999997},{"timestamp":"2024-11-25T23:56:00Z","net":0.17954200250000005,"gross":0.40541},{"timestamp":"2024-12-12T08:48:00Z","net":0.18453262750000005,"gross":0.41791},{"timestamp":"2025-02-03T16:10:00Z","net":0.19451387750000004,"gross":0.44291},{"timestamp":"2025-02-04T16:44:00Z","net":0.20449512750000004,"gross":0.46791000000000005},{"timestamp":"2025-02-04T17:03:00Z","net":0.20948575250000004,"gross":0.48041000000000006},{"timestamp":"2025-02-11T01:35:00Z","net":0.21946700250000004,"gross":0.50541},{"timestamp":"2025-02-12T16:17:00Z","net":0.22944825250000003,"gross":0.5304099999999999},{"timestamp":"2025-02-17T06:05:00Z","net":0.23443887750000003,"gross":0.5429099999999999},{"timestamp":"2025-02-20T17:54:00Z","net":0.24442012750000003,"gross":0.5679099999999998},{"timestamp":"2025-02-26T17:21:00Z","net":0.2544013775,"gross":0.5929099999999997},{"timestamp":"2025-05-16T11:00:00Z","net":0.25939200250000005,"gross":0.6054099999999997},{"timestamp":"2025-05-22T20:43:00Z","net":0.2693732525000001,"gross":0.6304099999999996},{"timestamp":"2026-01-14T12:00:00Z","net":0.27935450250000016,"gross":0.6554099999999995},{"timestamp":"2026-02-05T20:26:00Z","net":0.29617344250000016,"gross":0.6797499999999995},{"timestamp":"2026-02-05T20:55:00Z","net":0.32957282250000014,"gross":0.7281899999999996},{"timestamp":"2026-02-05T22:24:00Z","net":0.3629722025000001,"gross":0.7766299999999996},{"timestamp":"2026-02-05T23:54:00Z","net":0.3796718925000001,"gross":0.8008499999999996},{"timestamp":"2026-02-06T00:08:00Z","net":0.4134293825000001,"gross":0.8496499999999997},{"timestamp":"2026-02-06T00:12:00Z","net":0.44766702250000007,"gross":0.8989299999999997},{"timestamp":"2026-02-06T00:35:00Z","net":0.46490617250000005,"gross":0.9236899999999997},{"timestamp":"2026-02-06T00:38:00Z","net":0.4987836325000001,"gross":0.9726099999999998},{"timestamp":"2026-02-06T00:42:00Z","net":0.5324218725000001,"gross":1.0212899999999998},{"timestamp":"2026-02-06T00:43:00Z","net":0.5493604225000001,"gross":1.0457499999999997},{"timestamp":"2026-02-06T00:50:00Z","net":0.5831179125,"gross":1.0945499999999997},{"timestamp":"2026-02-06T00:52:00Z","net":0.6165768725,"gross":1.1430499999999997},{"timestamp":"2026-02-06T01:03:00Z","net":0.6333958125,"gross":1.1673899999999997},{"timestamp":"2026-02-06T01:05:00Z","net":0.6667951925000001,"gross":1.2158299999999995},{"timestamp":"2026-02-11T10:58:00Z","net":0.7003138225000001,"gross":1.2643899999999995},{"timestamp":"2026-02-25T21:51:00Z","net":0.7223367725000001,"gross":1.3014499999999993},{"timestamp":"2026-02-25T21:52:00Z","net":0.7333422825000001,"gross":1.3199699999999994},{"timestamp":"2026-02-25T21:58:00Z","net":0.7552901225000002,"gross":1.3569499999999994},{"timestamp":"2026-02-25T22:24:00Z","net":0.7771369275000002,"gross":1.3938299999999995},{"timestamp":"2026-02-25T22:31:00Z","net":0.7880790925000002,"gross":1.4122899999999994},{"timestamp":"2026-02-25T22:34:00Z","net":0.8097879525000002,"gross":1.4490299999999994},{"timestamp":"2026-02-25T22:47:00Z","net":0.8317101525000002,"gross":1.4859899999999993},{"timestamp":"2026-02-25T22:56:00Z","net":0.8428289125000002,"gross":1.5046299999999992},{"timestamp":"2026-02-25T23:05:00Z","net":0.8650286225000002,"gross":1.5418699999999992},{"timestamp":"2026-02-25T23:08:00Z","net":0.8870515725000002,"gross":1.578929999999999},{"timestamp":"2026-02-25T23:11:00Z","net":0.8979562125000002,"gross":1.5973499999999992},{"timestamp":"2026-02-25T23:36:00Z","net":0.9202834975000003,"gross":1.634709999999999},{"timestamp":"2026-02-25T23:39:00Z","net":0.9426486975000004,"gross":1.6721099999999989},{"timestamp":"2026-02-25T23:45:00Z","net":0.9540097375000004,"gross":1.6909899999999989},{"timestamp":"2026-02-25T23:57:00Z","net":0.9766554775000005,"gross":1.7286699999999988}]
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) | 7.01 @ 2024-12-04 23:59:00 UTC |
| Worst Sharpe (30d) | -8.25 @ 2026-02-05 23:59:00 UTC |
| Mean | -0.97 |
| Std Dev | 2.89 |
| Last | -2.09 |
| Points | 643 |
| Across 643 points the series ranged from -8.25 (2026-02-05 23:59:00 UTC) to 7.01 (2024-12-04 23:59:00 UTC), averaging -0.97. The most recent value is -2.09. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":2.7779566104551665,"sharpe90":-1.325184543254386},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":2.8706684399752085,"sharpe90":-2.552134744173443},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-1.3014008438603344,"sharpe90":-2.072776877263282},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-5.813932882009631,"sharpe90":-0.5784878314490234},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-5.000824883897944,"sharpe90":-1.7724945610388518},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":-0.6813697918873435,"sharpe90":-0.3017136413163363},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":-0.9872247404952057,"sharpe90":0.26360433608163425},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":-1.771292907833965,"sharpe90":-0.3056207338277362},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-2.9526375540536955,"sharpe90":-0.6463969336581313},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-0.7212076000400314,"sharpe90":-0.3059337663782492},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":3.130104912730952,"sharpe90":0.8326091168705368},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":0.7121177806905458,"sharpe90":0.24190577240653482},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":0.07471613857633295,"sharpe90":2.2299105424272123},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":-1.0629347238399618,"sharpe90":1.641932439571368},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-2.336978179482573,"sharpe90":0.6948094548756626},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-3.1771663424019465,"sharpe90":1.6194144435927162},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":0.355459189040994,"sharpe90":1.0652997532239281},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":4.9620146357775035,"sharpe90":1.0971956712417472},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":5.806014354714946,"sharpe90":-0.3504364380542367},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":2.478925361433052,"sharpe90":-0.9070798431364601},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-0.43734641362262144,"sharpe90":-2.314340244614151},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-1.284998789179305,"sharpe90":-2.9065546770755573},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":1.33267293981255,"sharpe90":-1.7047374840144052},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-4.074815196585899,"sharpe90":-2.9493158021109456},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-5.560374501436732,"sharpe90":-3.28979404140338},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":-4.4049157613194225,"sharpe90":-2.8101293512604975},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-2.973206667456301,"sharpe90":-1.5615844727723465},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-2.979201444811608,"sharpe90":0.5752886334146092},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-0.7913242721573223,"sharpe90":0.06338695152540896},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-3.2266959162567623,"sharpe90":-0.025640372704065363},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-3.124359340147892,"sharpe90":0.035470612513166785},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":-0.9635270838766152,"sharpe90":-0.9288418650172474},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":2.579907501364482,"sharpe90":0.40620458467155907},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":5.558039065201791,"sharpe90":1.5074178148161579},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":1.8437998441157024,"sharpe90":0.2969832588699473},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-1.1604368098540312,"sharpe90":-0.8096684891883555},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-4.718488903101146,"sharpe90":-1.280732723239863},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-4.16293139615344,"sharpe90":0.27141517029770407},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":-1.8775397064270556,"sharpe90":-0.085718211397925},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":5.23747239014352,"sharpe90":1.4678738308322754},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":0.4287456700079035,"sharpe90":0.9995938318592588},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":2.1737475110065523,"sharpe90":-0.5230532114245684},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.30058003491879526,"sharpe90":-1.2556046761181772},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":1.5762983671829252,"sharpe90":-0.9331808080219359},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":0.35681705118196055,"sharpe90":-0.8400707780411931},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-1.1727523934315238,"sharpe90":-1.371883280084213},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-0.5598357512907395,"sharpe90":-1.6345361140691306},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-3.708253350567861,"sharpe90":-2.179793088174409},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-3.4696154753721307,"sharpe90":-1.861606751758644},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":0.1428990307851782,"sharpe90":-1.6157482212933658},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":0.10465238177208497,"sharpe90":-0.9672950087253066},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":0.13819416646487803,"sharpe90":-1.0206782674385142},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-6.435156546385195,"sharpe90":-4.182345211950312},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-2.509196211542148,"sharpe90":-2.267919120153871},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-1.6818146412777026,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-0.8501222352121109,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":-0.43809282189868426,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-5.410478125105455,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-4.757321849259633,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-2.0879692148690534,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.11% @ 2 |
| Deepest Episode | -20.56% @ 445 |
| Mean | -3.87% |
| Std Dev | 6.98% |
| Last | -20.56% |
| Points | 7 |
| Across 7 points the series ranged from -20.56% (445) to -0.11% (2), averaging -3.87%. 0% of points were positive, 100% negative. The most recent value is -20.56%. | |
| Full series - 7 points. |
[{"start":"2024-05-04T23:59:00+00:00","end":"2024-05-09T23:59:00+00:00","depth":-0.19740677735951262,"durationDays":5},{"start":"2024-05-10T23:59:00+00:00","end":"2024-05-15T23:59:00+00:00","depth":-0.27280665604102683,"durationDays":5},{"start":"2024-05-19T23:59:00+00:00","end":"2024-05-20T23:59:00+00:00","depth":-0.12445668927949088,"durationDays":1},{"start":"2024-06-02T23:59:00+00:00","end":"2024-06-04T23:59:00+00:00","depth":-0.11023483184534279,"durationDays":2},{"start":"2024-06-07T23:59:00+00:00","end":"2024-11-22T23:59:00+00:00","depth":-4.703215918555458,"durationDays":168},{"start":"2024-11-24T23:59:00+00:00","end":"2024-12-06T23:59:00+00:00","depth":-1.144629744981268,"durationDays":12},{"start":"2024-12-07T23:59:00+00:00","end":"ongoing","depth":-20.563463320748276,"durationDays":445}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 100 trades @ win |
| Shortest Streak | 100 trades @ win |
| Mean | 100 trades |
| Std Dev | 0 trades |
| Last | 100 trades |
| Points | 1 |
| Sum | 100 trades |
| Across 1 points the series ranged from 100 trades (win) to 100 trades (win), averaging 100 trades. The most recent value is 100 trades. | |
| Full series - 1 points. |
[{"type":"win","length":100,"index":0}]
Capital Utilization (% Invested)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Utilization | 17.78% @ 2025-05-04 23:59:00 UTC |
| Min Utilization | 0.80% @ 2024-05-25 23:59:00 UTC |
| Mean | 11.71% |
| Std Dev | 3.91% |
| Last | 13.07% |
| Points | 673 |
| Across 673 points the series ranged from 0.80% (2024-05-25 23:59:00 UTC) to 17.78% (2025-05-04 23:59:00 UTC), averaging 11.71%. 100% of points were positive, 0% negative. The most recent value is 13.07%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.1971632740773144},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.955980202100152},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.0978247102215684},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":1.378306250284146},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":2.921284322352062},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":7.126017532009837},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":7.329943538506669},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":8.708224580348165},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.1502422492572},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":12.092636875255131},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":12.445654793670263},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":9.788150997687076},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":10.861765932672142},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":8.311948839756349},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":9.164438756028817},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":11.173029436023638},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":11.052728758602926},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":13.91906395033329},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":9.392427175389638},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":5.016753292782655},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":5.107899479008492},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":9.529597888221614},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":9.33089368900295},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":9.80308815059424},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":11.286293010542762},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":13.7826156103117},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":13.588489328593967},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":13.57632839896634},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":16.229136359433628},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":15.864336626858908},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":15.891339441501431},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":16.50167634516827},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":16.43890134332546},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":17.570937791151522},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":13.269261135494833},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":12.915939006889813},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":15.187742719098612},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.96470847588661},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":16.523835341789848},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":15.715166786229487},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":15.550479979057222},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":15.831829984541985},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.147912097154729},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":15.212815741670493},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":13.022085164150235},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":14.069826769800061},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":14.36612112938703},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":12.641265423088088},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":13.757547507384201},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":13.43939889837623},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":12.314217182760585},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":12.581544609253518},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":12.806755812848921},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":13.055953452838848},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":12.02192197146711},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":12.579944125488781},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":12.778946956424267},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":12.857234174933957},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":13.22593813194941},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":13.067662164378932}]
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 | 40.10 @ 2024-11-25 23:56:00 UTC |
| Lowest Price | 4.04 @ 2026-02-06 00:12:00 UTC |
| Mean | 16.16 |
| Std Dev | 12.26 |
| Last | 5.34 |
| Points | 179 |
| Across 179 points the series ranged from 4.04 (2026-02-06 00:12:00 UTC) to 40.10 (2024-11-25 23:56:00 UTC), averaging 16.16. The most recent value is 5.34. | |
| Showing 60 of 179 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:03:00Z","price":32.63},{"timestamp":"2024-04-24T00:10:00Z","price":32.63},{"timestamp":"2024-04-24T00:18:00Z","price":32.41},{"timestamp":"2024-04-24T00:32:00Z","price":32.43},{"timestamp":"2024-04-24T00:51:00Z","price":32.59},{"timestamp":"2024-04-24T01:03:00Z","price":32.56},{"timestamp":"2024-04-24T01:30:00Z","price":32.45},{"timestamp":"2024-04-24T01:36:00Z","price":32.32},{"timestamp":"2024-04-24T02:01:00Z","price":32.14},{"timestamp":"2024-04-24T02:10:00Z","price":31.99},{"timestamp":"2024-04-24T02:23:00Z","price":31.81},{"timestamp":"2024-04-24T04:57:00Z","price":32.07},{"timestamp":"2024-05-20T19:26:00Z","price":32.27},{"timestamp":"2024-05-20T19:36:00Z","price":32.52},{"timestamp":"2024-05-25T04:33:00Z","price":32.72},{"timestamp":"2024-09-10T16:19:00Z","price":20.05},{"timestamp":"2024-09-18T18:12:00Z","price":20},{"timestamp":"2024-11-25T23:36:00Z","price":40},{"timestamp":"2024-12-12T08:48:00Z","price":40.1},{"timestamp":"2025-02-03T16:09:00Z","price":20},{"timestamp":"2025-02-03T17:04:00Z","price":20.05},{"timestamp":"2025-02-04T17:02:00Z","price":20},{"timestamp":"2025-02-05T08:06:00Z","price":20.05},{"timestamp":"2025-02-12T08:35:00Z","price":20},{"timestamp":"2025-02-12T16:17:00Z","price":20.05},{"timestamp":"2025-02-20T14:46:00Z","price":20},{"timestamp":"2025-02-20T17:54:00Z","price":20.05},{"timestamp":"2025-02-26T17:20:00Z","price":20},{"timestamp":"2025-05-16T11:00:00Z","price":20.05},{"timestamp":"2025-05-22T20:12:00Z","price":20},{"timestamp":"2026-01-14T11:59:00Z","price":8},{"timestamp":"2026-02-05T20:32:00Z","price":4.13},{"timestamp":"2026-02-05T21:20:00Z","price":4.13},{"timestamp":"2026-02-05T22:24:00Z","price":4.15},{"timestamp":"2026-02-06T00:05:00Z","price":4.09},{"timestamp":"2026-02-06T00:10:00Z","price":4.08},{"timestamp":"2026-02-06T00:13:00Z","price":4.04},{"timestamp":"2026-02-06T00:38:00Z","price":4.13},{"timestamp":"2026-02-06T00:42:00Z","price":4.11},{"timestamp":"2026-02-06T00:47:00Z","price":4.12},{"timestamp":"2026-02-06T00:51:00Z","price":4.14},{"timestamp":"2026-02-06T01:02:00Z","price":4.11},{"timestamp":"2026-02-06T01:05:00Z","price":4.13},{"timestamp":"2026-02-11T10:58:00Z","price":4.13},{"timestamp":"2026-02-25T21:36:00Z","price":5.43},{"timestamp":"2026-02-25T21:41:00Z","price":5.4},{"timestamp":"2026-02-25T21:52:00Z","price":5.42},{"timestamp":"2026-02-25T21:57:00Z","price":5.39},{"timestamp":"2026-02-25T22:05:00Z","price":5.43},{"timestamp":"2026-02-25T22:31:00Z","price":5.44},{"timestamp":"2026-02-25T22:34:00Z","price":5.48},{"timestamp":"2026-02-25T22:44:00Z","price":5.39},{"timestamp":"2026-02-25T22:56:00Z","price":5.39},{"timestamp":"2026-02-25T23:04:00Z","price":5.38},{"timestamp":"2026-02-25T23:07:00Z","price":5.41},{"timestamp":"2026-02-25T23:27:00Z","price":5.36},{"timestamp":"2026-02-25T23:36:00Z","price":5.37},{"timestamp":"2026-02-25T23:39:00Z","price":5.35},{"timestamp":"2026-02-25T23:45:00Z","price":5.32},{"timestamp":"2026-02-25T23:57:00Z","price":5.34}]
Trade Size Distribution (Notional)
GET /backtests/{id}/trades * Fields used: buy_price, buy_quantity * Transform: tradeSizeDistribution(trades, 25)buy_price x buy_quantity) in quote currency.How to read it. A tight peak => uniform sizing. A long right-tail => a few oversized positions that dominate PnL and risk.Why it matters. Position-size variance is a hidden risk factor - strategies that ape into one mega-trade are not as repeatable as their headline numbers suggest.Insights (auto-derived from count).| Stat | Value |
|---|---|
| Most Populated Bin | 27 trades @ $5.00 |
| Least Populated Bin | 1 trades @ $5.01 |
| Mean | 6 trades |
| Std Dev | 8 trades |
| Last | 1 trades |
| Points | 18 |
| Sum | 100 trades |
| Across 18 points the series ranged from 1 trades (5.01)to∗∗27trades∗∗(5.00), averaging 6 trades. The most recent value is 1 trades. | |
| Full series - 18 points. |
[
{
"bin": "$5.00",
"count": 27,
"from": 5
},
{
"bin": "$5.00",
"count": 18,
"from": 5.001
},
{
"bin": "$5.00",
"count": 23,
"from": 5.002
},
{
"bin": "$5.00",
"count": 7,
"from": 5.003
},
{
"bin": "$5.00",
"count": 2,
"from": 5.004
},
{
"bin": "$5.00",
"count": 4,
"from": 5.005
},
{
"bin": "$5.01",
"count": 2,
"from": 5.008
},
{
"bin": "$5.01",
"count": 1,
"from": 5.01
},
{
"bin": "$5.01",
"count": 1,
"from": 5.013
},
{
"bin": "$5.01",
"count": 2,
"from": 5.014
},
{
"bin": "$5.02",
"count": 3,
"from": 5.016
},
{
"bin": "$5.02",
"count": 2,
"from": 5.02
},
{
"bin": "$5.02",
"count": 1,
"from": 5.022
},
{
"bin": "$5.02",
"count": 1,
"from": 5.024
},
{
"bin": "$5.03",
"count": 2,
"from": 5.025
},
{
"bin": "$5.03",
"count": 1,
"from": 5.026
},
{
"bin": "$5.03",
"count": 2,
"from": 5.027
},
{
"bin": "$5.03",
"count": 1,
"from": 5.031
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 29 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.11 |
| Mean | 5 trades |
| Std Dev | 9 trades |
| Last | 25 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.11) to 29 trades (0.1), averaging 5 trades. The most recent value is 25 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 29,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 21,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.19,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.2,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.21,
"TP": 18,
"SL": 0,
"TSL": 0
},
{
"bin": 0.22,
"TP": 7,
"SL": 0,
"TSL": 0
},
{
"bin": 0.23,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.25,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.26,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.27,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.28,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.3,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.31,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.32,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.33,
"TP": 25,
"SL": 0,
"TSL": 0
}
]
Monthly Equity Comparison (YoY)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyEquityYoY(equity)2025).| Stat | Value |
|---|---|
| Best Indexed Value | 97.54 @ Jan |
| Worst Indexed Value | 85.94 @ Dec |
| Mean | 91.34 |
| Std Dev | 3.00 |
| Last | 85.94 |
| Points | 12 |
| Across 12 points the series ranged from 85.94 (Dec) to 97.54 (Jan), averaging 91.34. The most recent value is 85.94. | |
| Full series - 12 points. |
[
{
"2025": 97.53702306396862,
"2026": 96.24298150755611,
"month": "Jan"
},
{
"2025": 94.1402102985298,
"2026": 96.2796433129466,
"month": "Feb"
},
{
"2025": 91.42080609103944,
"month": "Mar"
},
{
"2024": 99.97756835395457,
"2025": 91.15497637962119,
"month": "Apr"
},
{
"2024": 100.3583716647507,
"2025": 93.01805507837547,
"month": "May"
},
{
"2024": 99.42691228953741,
"2025": 89.91650359821912,
"month": "Jun"
},
{
"2024": 98.48609483529901,
"2025": 91.4220152841849,
"month": "Jul"
},
{
"2024": 97.68581676038238,
"2025": 93.22580786306564,
"month": "Aug"
},
{
"2024": 98.89574836420094,
"2025": 92.36708474764939,
"month": "Sep"
},
{
"2024": 97.0987287912972,
"2025": 87.8716314711177,
"month": "Oct"
},
{
"2024": 103.70286500401956,
"2025": 88.05338666931999,
"month": "Nov"
},
{
"2024": 102.25100079302076,
"2025": 85.94125503710329,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 109.39 USDT @ Sun |
| Worst Weekday | 73.62 USDT @ Fri |
| Mean | 93.13 USDT |
| Std Dev | 11.47 USDT |
| Last | 109.39 USDT |
| Points | 7 |
| Sum | 651.91 USDT |
| Across 7 points the series ranged from 73.62 USDT (Fri) to 109.39 USDT (Sun), averaging 93.13 USDT. 100% of points were positive, 0% negative. The most recent value is 109.39 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 99.679798
},
{
"day": "Tue",
"profit": 100.741169
},
{
"day": "Wed",
"profit": 90.447966
},
{
"day": "Thu",
"profit": 97.173502
},
{
"day": "Fri",
"profit": 73.62474
},
{
"day": "Sat",
"profit": 80.845008
},
{
"day": "Sun",
"profit": 109.394169
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 41.71 USDT @ 14:00 |
| Worst Hour (UTC) | 20.43 USDT @ 23:00 |
| Mean | 27.16 USDT |
| Std Dev | 5.77 USDT |
| Last | 20.43 USDT |
| Points | 24 |
| Sum | 651.91 USDT |
| Across 24 points the series ranged from 20.43 USDT (23:00) to 41.71 USDT (14:00), averaging 27.16 USDT. 100% of points were positive, 0% negative. The most recent value is 20.43 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":30.308743},{"hour":"1:00","profit":29.081148},{"hour":"2:00","profit":25.625444},{"hour":"3:00","profit":21.716042},{"hour":"4:00","profit":22.123077},{"hour":"5:00","profit":20.899366},{"hour":"6:00","profit":22.064426},{"hour":"7:00","profit":22.223594},{"hour":"8:00","profit":25.476224},{"hour":"9:00","profit":23.721109},{"hour":"10:00","profit":22.205008},{"hour":"11:00","profit":22.574351},{"hour":"12:00","profit":28.437605},{"hour":"13:00","profit":34.076616},{"hour":"14:00","profit":41.711823},{"hour":"15:00","profit":39.02026},{"hour":"16:00","profit":36.810499},{"hour":"17:00","profit":31.057159},{"hour":"18:00","profit":29.799058},{"hour":"19:00","profit":26.839767},{"hour":"20:00","profit":26.824646},{"hour":"21:00","profit":24.990899},{"hour":"22:00","profit":23.890877},{"hour":"23:00","profit":20.428611}]
Profit vs. Hold Time
GET /backtests/{id}/trades * Fields used: buy_time, sell_time, profit_percentage * Transform: holdTimes(trades)profitPct).| Stat | Value |
|---|---|
| Best Trade Return | 0.34% @ 0 |
| Worst Trade Return | 0.10% @ 0.4166666666666667 |
| Mean | 0.20% |
| Std Dev | 0.09% |
| Last | 0.23% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0.4166666666666667) to 0.34% (0), averaging 0.20%. 100% of points were positive, 0% negative. The most recent value is 0.23%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":0.08333333333333333,"profitPct":0.1256129329,"profit":0.006312075},{"hours":748.3833333333333,"profitPct":0.1256129329,"profit":0.006312075},{"hours":648.25,"profitPct":0.1262054668,"profit":0.006328245},{"hours":0.21666666666666667,"profitPct":0.1274838013,"profit":0.0064042125},{"hours":0,"profitPct":0.1273126735,"profit":0.0063995625},{"hours":0.16666666666666666,"profitPct":0.1267153846,"profit":0.006342105},{"hours":0.15,"profitPct":0.1269710502,"profit":0.006349035},{"hours":0.21666666666666667,"profitPct":0.1279125464,"profit":0.0064158375},{"hours":0.03333333333333333,"profitPct":0.1280844156,"profit":0.0064204875},{"hours":641.95,"profitPct":0.1282564975,"profit":0.0064251375},{"hours":641.5666666666667,"profitPct":0.1294670603,"profit":0.00649935},{"hours":641.4,"profitPct":0.1298148724,"profit":0.00650871},{"hours":641.2666666666667,"profitPct":0.1305131004,"profit":0.00652743},{"hours":2.7333333333333334,"profitPct":0.1002034429,"profit":0.005026355},{"hours":2.5,"profitPct":0.1009102323,"profit":0.00504755},{"hours":0.4166666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.3333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.21666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":111.5,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.11666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.8,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.11666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":16.716666666666665,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.5166666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.3362530414,"profit":0.01681894},{"hours":0.03333333333333333,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0.016666666666666666,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0.016666666666666666,"profitPct":0.3386308068,"profit":0.01693855},{"hours":0,"profitPct":0.3362530414,"profit":0.01681894},{"hours":0,"profitPct":0.3398284314,"profit":0.01699849},{"hours":0,"profitPct":0.3446782178,"profit":0.01723915},{"hours":0.016666666666666666,"profitPct":0.3386308068,"profit":0.01693855},{"hours":0.06666666666666667,"profitPct":0.3362530414,"profit":0.01681894},{"hours":0.06666666666666667,"profitPct":0.3350728155,"profit":0.01675927},{"hours":0,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0.13333333333333333,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0,"profitPct":0.3338983051,"profit":0.01669969},{"hours":0.15,"profitPct":0.3362530414,"profit":0.01681894},{"hours":11.5,"profitPct":0.2194085028,"profit":0.01097975},{"hours":0.95,"profitPct":0.2173713235,"profit":0.010879},{"hours":0.18333333333333332,"profitPct":0.2200925926,"profit":0.01100551},{"hours":0.13333333333333333,"profitPct":0.2187269373,"profit":0.010942165},{"hours":0.016666666666666666,"profitPct":0.2207792208,"profit":0.0110432},{"hours":0.03333333333333333,"profitPct":0.2187269373,"profit":0.010942165},{"hours":0.6,"profitPct":0.2180478821,"profit":0.01090464},{"hours":0.43333333333333335,"profitPct":0.2194085028,"profit":0.01097975},{"hours":0.1,"profitPct":0.222160149,"profit":0.01111876},{"hours":0.016666666666666666,"profitPct":0.2214684015,"profit":0.01108095},{"hours":0.016666666666666666,"profitPct":0.2207792208,"profit":0.0110432},{"hours":0.06666666666666667,"profitPct":0.2235514019,"profit":0.0111826},{"hours":0,"profitPct":0.2235514019,"profit":0.0111826},{"hours":0.26666666666666666,"profitPct":0.2256578947,"profit":0.0112847},{"hours":0.05,"profitPct":0.2270754717,"profit":0.01136104}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 100 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 47 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 100 trades |
| Across 3 points the series ranged from 0 trades (SL) to 100 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 100
},
{
"type": "SL",
"count": 0
},
{
"type": "TSL",
"count": 0
}
]
Machine-Readable Facts
facts_sha256 in the frontmatter - re-hash it to verify.- JSON
- Flat Table
{
"backtest_id": "6116f7f2-f5ed-4025-a973-e6e76498031a",
"symbol": "KSMUSDT",
"strategy": "3LongTimeLong.json",
"strategy_label": "LongTimeLong",
"status": "completed",
"period_from": "2024-04-24",
"period_to": "2026-02-25",
"duration_days": 672,
"start_balance_usdt": 10000,
"final_value_usdt": 8589.59743023,
"return_pct": -14.104,
"total_profit_usdt": 651.90635305,
"avg_profit_per_trade_usdt": 0.00647838,
"fulfilled_trades": 100628,
"active_orders": 635,
"win_rate_pct": 100,
"best_trade_usdt": 0.01723915,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 4550.780445007823,
"max_drawdown_pct": 20.563463320748276,
"max_drawdown_abs_usdt": 2143.8143962709,
"drawdown_duration_days": 426,
"recovery_days": null,
"cagr_pct": -7.93120614097611,
"volatility_annualized_pct": 11.854144988817557,
"sharpe_annualized": -0.6327090579742121,
"sortino_annualized": -0.6385328940173934,
"time_in_market_pct": 100,
"final_cash_usdt": 7467.1378567665,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -2062.30892282,
"median_hold_hours": 0.21666666666666667,
"avg_hold_hours": 93.81060606060599,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 6116f7f2-f5ed-4025-a973-e6e76498031a |
symbol | KSMUSDT |
strategy | 3LongTimeLong.json |
strategy_label | LongTimeLong |
status | completed |
period_from | 2024-04-24 |
period_to | 2026-02-25 |
duration_days | 672 |
start_balance_usdt | 10000 |
final_value_usdt | 8589.59743023 |
return_pct | -14.104 |
total_profit_usdt | 651.90635305 |
avg_profit_per_trade_usdt | 0.00647838 |
fulfilled_trades | 100628 |
active_orders | 635 |
win_rate_pct | 100 |
best_trade_usdt | 0.01723915 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 4550.780445007823 |
max_drawdown_pct | 20.563463320748276 |
max_drawdown_abs_usdt | 2143.8143962709 |
drawdown_duration_days | 426 |
recovery_days | null |
cagr_pct | -7.93120614097611 |
volatility_annualized_pct | 11.854144988817557 |
sharpe_annualized | -0.6327090579742121 |
sortino_annualized | -0.6385328940173934 |
time_in_market_pct | 100 |
final_cash_usdt | 7467.1378567665 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -2062.30892282 |
median_hold_hours | 0.21666666666666667 |
avg_hold_hours | 93.81060606060599 |
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 | KSMUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 3LongTimeLong.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 8,589.60 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -14.10% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +651.91 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)) | 100,628 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0172 USDT |
| Worst trade | GET /backtests/{id} | $.min_profit | direct API value (cross-check: min(trades[].profit)) | +0.0050 USDT |
| Avg profit / trade | GET /backtests/{id} | $.avg_profit | direct API value | +0.0065 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 4550.8 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -20.56% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -2,143.81 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -7.93% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 11.85% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.63 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | -0.64 |
| Time in market % | GET /backtests/{id}/equity | $[*].base_asset_bal | count(samples where base_asset_bal>0) / count(samples) * 100 | 100.0% |
| Total fees | GET /backtests/{id}/trades | $[*].buy_fee_in_quote, $[*].sell_fee_in_quote | Sum (buy_fee_in_quote + sell_fee_in_quote) | 0.75 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +0.98 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.0098 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 100 |
| Max consecutive losses | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit < 0 | 0 |
| Avg holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | mean(sell_time - buy_time) / 3600 | 93.8h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.2h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,003 USDT |
Raw API Attachments
/trades. Full trade population: 100,628 closed trades - fetch the complete list via GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a - backtest summary (verbatim)
GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a - backtest summary (verbatim)
{
"id": "6116f7f2-f5ed-4025-a973-e6e76498031a",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:06.169805Z",
"started_at": "2026-05-09T10:57:42.634461Z",
"completed_at": "2026-05-09T11:16:24.583276Z",
"mode_name": "3LongTimeLong.json",
"symbol": "KSMUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 8589.59743023,
"return_pct": -14.104,
"total_profit": 651.90635305,
"fulfilled_trades": 100628,
"active_orders": 635,
"win_rate": 100,
"avg_profit": 0.00647838,
"max_profit": 0.01723915,
"min_profit": 0.00499063,
"elapsed_sec": 995.32,
"max_drawdown": -20.5635,
"profit_factor": null,
"sharpe_ratio": -0.6327,
"total_fees": 757.34176695,
"avg_hold_time_hours": 19.6331,
"tp_count": 100628,
"sl_count": 0,
"tsl_count": 0,
"start_price": 29.6,
"end_price": 5.35,
"gross_profit_quote": 1409.24812,
"gross_loss_quote": 0,
"wins": 100628,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 100628,
"consecutive_losses_max": 0,
"holding_minutes_p50": 12,
"holding_minutes_p95": 1439,
"holding_minutes_max": 351462,
"description": "KSMUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -14.10% | 100628 trades | 100% WR",
"summary_text": "Backtest KSMUSDT (Mode: 3LongTimeLong.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 8,589.60 USDT\nP&L: -1,410.40 USDT (-14.10%)\nResult: LOSS\nCompleted trades: 100628\nOpen orders at end: 635\nWin rate: 100.0%\nAvg. profit/trade: 0.006478 USDT\nBest trade: 0.017239 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 651.906353 USDT\nMax drawdown: -20.56%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.63\nTotal fees: 757.34 USDT\nAvg hold time: 19.6h\nTP / SL / TSL: 100628 / 0 / 0\n\nStrategy parameters:\n Buy trigger: -0.1% from last buy\n Buy splits: 9\n Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]\n Investment per buy: 25.0 USDT\n Fees: maker 7.5 bps / taker 7.5 bps\n\nElapsed: 995.3s",
"share_token": null,
"config_hash": "d712f558075129f29ef40685c71a0b10054f669f66e1a13145e2e6c1d2139c54",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "KSMUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.001,
"stopLoss": false,
"tickSize": 0.01,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/equity - equity series (verbatim, 673 points)
GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 7.416,
"quote_asset_bal": 9770.5284267075,
"total_value_mid": 9990.1903467075,
"total_value_exit_net": 9990.0256002675,
"total_value": 9990.1903467075,
"base_cost_quote": 230.861676495,
"unrealized_pnl_exit_net": -11.364502935
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 7.405,
"quote_asset_bal": 9771.880150315,
"total_value_mid": 9992.771300315,
"total_value_exit_net": 9992.6056319525,
"total_value": 9992.771300315,
"base_cost_quote": 230.8769979775,
"unrealized_pnl_exit_net": -10.15151634
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 10.641,
"quote_asset_bal": 9677.5921298625,
"total_value_mid": 9985.5426698625,
"total_value_exit_net": 9985.3117069575,
"total_value": 9985.5426698625,
"base_cost_quote": 326.212375925,
"unrealized_pnl_exit_net": -18.49279883
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 7.748,
"quote_asset_bal": 9763.9719325325,
"total_value_mid": 9994.3199725325,
"total_value_exit_net": 9994.1472115025,
"total_value": 9994.3199725325,
"base_cost_quote": 240.939469175,
"unrealized_pnl_exit_net": -10.764190205
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 8.424,
"quote_asset_bal": 9744.415928615,
"total_value_mid": 9993.513608615,
"total_value_exit_net": 9993.326785355,
"total_value": 9993.513608615,
"base_cost_quote": 260.9821198975,
"unrealized_pnl_exit_net": -12.0712631575
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 7.407,
"quote_asset_bal": 9775.593032525,
"total_value_mid": 9996.617912525,
"total_value_exit_net": 9996.452143865,
"total_value": 9996.617912525,
"base_cost_quote": 230.8995548825,
"unrealized_pnl_exit_net": -10.0404435425
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 11.549,
"quote_asset_bal": 9656.4615619275,
"total_value_mid": 9988.0333519275,
"total_value_exit_net": 9987.784673085,
"total_value": 9988.0333519275,
"base_cost_quote": 351.3186615275,
"unrealized_pnl_exit_net": -19.99555037
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 11.386,
"quote_asset_bal": 9663.2375152275,
"total_value_mid": 9993.5453752275,
"total_value_exit_net": 9993.2976443325,
"total_value": 9993.5453752275,
"base_cost_quote": 346.32382821,
"unrealized_pnl_exit_net": -16.263699105
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 7.102,
"quote_asset_bal": 9789.95681917,
"total_value_mid": 10002.51967917,
"total_value_exit_net": 10002.360257025,
"total_value": 10002.51967917,
"base_cost_quote": 220.8897331425,
"unrealized_pnl_exit_net": -8.4862952875
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 5.775,
"quote_asset_bal": 9830.8135824275,
"total_value_mid": 10005.7960824275,
"total_value_exit_net": 10005.6648455525,
"total_value": 10005.7960824275,
"base_cost_quote": 180.70935044,
"unrealized_pnl_exit_net": -5.858087315
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 11.218,
"quote_asset_bal": 9670.7010857125,
"total_value_mid": 9993.2185857125,
"total_value_exit_net": 9992.9766975875,
"total_value": 9993.2185857125,
"base_cost_quote": 341.312132255,
"unrealized_pnl_exit_net": -19.03652038
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 10.191,
"quote_asset_bal": 9701.8738504175,
"total_value_mid": 9997.6166704175,
"total_value_exit_net": 9997.3948633025,
"total_value": 9997.6166704175,
"base_cost_quote": 311.209011835,
"unrealized_pnl_exit_net": -15.68799895
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 13.169,
"quote_asset_bal": 9617.58912526,
"total_value_mid": 9986.18943526,
"total_value_exit_net": 9985.9129850275,
"total_value": 9986.18943526,
"base_cost_quote": 396.48390007,
"unrealized_pnl_exit_net": -28.1600403025
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 13.336,
"quote_asset_bal": 9613.4839869326,
"total_value_mid": 9987.0253469326,
"total_value_exit_net": 9986.7451909126,
"total_value": 9987.0253469326,
"base_cost_quote": 401.5073548375,
"unrealized_pnl_exit_net": -28.2461508575
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 8.894,
"quote_asset_bal": 9745.5261438601,
"total_value_mid": 9999.6277238601,
"total_value_exit_net": 9999.4371476751,
"total_value": 9999.6277238601,
"base_cost_quote": 270.9714062475,
"unrealized_pnl_exit_net": -17.0604024325
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 5.768,
"quote_asset_bal": 9836.8363339826,
"total_value_mid": 10010.9722539826,
"total_value_exit_net": 10010.8416520426,
"total_value": 10010.9722539826,
"base_cost_quote": 180.65410904,
"unrealized_pnl_exit_net": -6.64879098
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 10.874,
"quote_asset_bal": 9686.9482998226,
"total_value_mid": 9998.8146198226,
"total_value_exit_net": 9998.5807200826,
"total_value": 9998.8146198226,
"base_cost_quote": 331.277171675,
"unrealized_pnl_exit_net": -19.644751415
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 12.652,
"quote_asset_bal": 9637.2890052551,
"total_value_mid": 9992.4306452551,
"total_value_exit_net": 9992.1642890251,
"total_value": 9992.4306452551,
"base_cost_quote": 381.4340911725,
"unrealized_pnl_exit_net": -26.5588074025
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 13.373,
"quote_asset_bal": 9617.6163931426,
"total_value_mid": 9988.9846031426,
"total_value_exit_net": 9988.7060769851,
"total_value": 9988.9846031426,
"base_cost_quote": 401.470777425,
"unrealized_pnl_exit_net": -30.3810935825
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 11.998,
"quote_asset_bal": 9658.8433247451,
"total_value_mid": 9994.0674447451,
"total_value_exit_net": 9993.8160266551,
"total_value": 9994.0674447451,
"base_cost_quote": 361.3116706675,
"unrealized_pnl_exit_net": -26.3389687575
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 14.369,
"quote_asset_bal": 9594.4235596151,
"total_value_mid": 9983.8234596151,
"total_value_exit_net": 9983.5314096901,
"total_value": 9983.8234596151,
"base_cost_quote": 426.5259647325,
"unrealized_pnl_exit_net": -37.4181146575
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 8.65,
"quote_asset_bal": 9756.1312684576,
"total_value_mid": 10010.4412684576,
"total_value_exit_net": 10010.2505359576,
"total_value": 10010.4412684576,
"base_cost_quote": 265.9592899775,
"unrealized_pnl_exit_net": -11.8400224775
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 10.543,
"quote_asset_bal": 9701.6009629876,
"total_value_mid": 10007.1371029876,
"total_value_exit_net": 10006.9079508826,
"total_value": 10007.1371029876,
"base_cost_quote": 321.1784132825,
"unrealized_pnl_exit_net": -15.8714253875
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 6.964,
"quote_asset_bal": 9807.6059217801,
"total_value_mid": 10017.9187217801,
"total_value_exit_net": 10017.7609871801,
"total_value": 10017.9187217801,
"base_cost_quote": 215.7905216,
"unrealized_pnl_exit_net": -5.6354562
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 6.632,
"quote_asset_bal": 9818.2710268251,
"total_value_mid": 10020.4807068251,
"total_value_exit_net": 10020.3290495651,
"total_value": 10020.4807068251,
"base_cost_quote": 205.799774155,
"unrealized_pnl_exit_net": -3.741751415
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 11.241,
"quote_asset_bal": 9683.4614798351,
"total_value_mid": 10008.1015598351,
"total_value_exit_net": 10007.8580797751,
"total_value": 10008.1015598351,
"base_cost_quote": 341.25827189,
"unrealized_pnl_exit_net": -16.86167195
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 3.303,
"quote_asset_bal": 9925.7747811551,
"total_value_mid": 10032.3956211551,
"total_value_exit_net": 10032.3156555251,
"total_value": 10032.3956211551,
"base_cost_quote": 100.3076843825,
"unrealized_pnl_exit_net": 6.2331899875
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 3.303,
"quote_asset_bal": 9926.6054423326,
"total_value_mid": 10032.7968923326,
"total_value_exit_net": 10032.7172487451,
"total_value": 10032.7968923326,
"base_cost_quote": 100.32206516,
"unrealized_pnl_exit_net": 5.7897412525
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 4.254,
"quote_asset_bal": 9897.2790700827,
"total_value_mid": 10031.1524500827,
"total_value_exit_net": 10031.0520450477,
"total_value": 10031.1524500827,
"base_cost_quote": 130.450584615,
"unrealized_pnl_exit_net": 3.32239035
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 6.325,
"quote_asset_bal": 9833.1079189527,
"total_value_mid": 10024.2494189527,
"total_value_exit_net": 10024.1060628277,
"total_value": 10024.2494189527,
"base_cost_quote": 195.6924693575,
"unrealized_pnl_exit_net": -4.6943254825
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 2.946,
"quote_asset_bal": 9939.3029370227,
"total_value_mid": 10033.4570970227,
"total_value_exit_net": 10033.3864814027,
"total_value": 10033.4570970227,
"base_cost_quote": 90.328595675,
"unrealized_pnl_exit_net": 3.754948705
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 2.464,
"quote_asset_bal": 9954.8659063077,
"total_value_mid": 10035.0937463077,
"total_value_exit_net": 10035.0335754277,
"total_value": 10035.0937463077,
"base_cost_quote": 75.2642158575,
"unrealized_pnl_exit_net": 4.9034532625
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 3.687,
"quote_asset_bal": 9915.2849422702,
"total_value_mid": 10034.2644322702,
"total_value_exit_net": 10034.1751976527,
"total_value": 10034.2644322702,
"base_cost_quote": 115.3657094375,
"unrealized_pnl_exit_net": 3.524545945
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 3.217,
"quote_asset_bal": 9930.9215070052,
"total_value_mid": 10035.5061770052,
"total_value_exit_net": 10035.4277385027,
"total_value": 10035.5061770052,
"base_cost_quote": 100.369320575,
"unrealized_pnl_exit_net": 4.1369109225
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 4.304,
"quote_asset_bal": 9896.6723212077,
"total_value_mid": 10035.0889612077,
"total_value_exit_net": 10034.9851487277,
"total_value": 10035.0889612077,
"base_cost_quote": 135.5022004875,
"unrealized_pnl_exit_net": 2.8106270325
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 4.462,
"quote_asset_bal": 9892.4358848077,
"total_value_mid": 10035.0414048077,
"total_value_exit_net": 10034.9344506677,
"total_value": 10035.0414048077,
"base_cost_quote": 140.5289677375,
"unrealized_pnl_exit_net": 1.9695981225
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 7.026,
"quote_asset_bal": 9812.6217769077,
"total_value_mid": 10028.5307569077,
"total_value_exit_net": 10028.3688251727,
"total_value": 10028.5307569077,
"base_cost_quote": 220.93185471,
"unrealized_pnl_exit_net": -5.184806445
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 8.008,
"quote_asset_bal": 9782.8864834802,
"total_value_mid": 10026.0093634802,
"total_value_exit_net": 10025.8270213202,
"total_value": 10026.0093634802,
"base_cost_quote": 251.0037817525,
"unrealized_pnl_exit_net": -8.0632439125
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 8.009,
"quote_asset_bal": 9783.0263040227,
"total_value_mid": 10026.0994540227,
"total_value_exit_net": 10025.9171491602,
"total_value": 10026.0994540227,
"base_cost_quote": 251.01816253,
"unrealized_pnl_exit_net": -8.1273173925
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 8.02,
"quote_asset_bal": 9783.3846726602,
"total_value_mid": 10024.5460726602,
"total_value_exit_net": 10024.3652016102,
"total_value": 10024.5460726602,
"base_cost_quote": 251.0607844725,
"unrealized_pnl_exit_net": -10.0802555225
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 6.367,
"quote_asset_bal": 9834.2292484652,
"total_value_mid": 10033.0706584652,
"total_value_exit_net": 10032.9215274077,
"total_value": 10033.0706584652,
"base_cost_quote": 200.8018585275,
"unrealized_pnl_exit_net": -2.109579585
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 3.831,
"quote_asset_bal": 9915.1713573152,
"total_value_mid": 10039.5639273152,
"total_value_exit_net": 10039.4706328877,
"total_value": 10039.5639273152,
"base_cost_quote": 120.410980555,
"unrealized_pnl_exit_net": 3.8882950175
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 3.525,
"quote_asset_bal": 9925.5497850502,
"total_value_mid": 10040.6057850502,
"total_value_exit_net": 10040.5194930502,
"total_value": 10040.6057850502,
"base_cost_quote": 110.4318518175,
"unrealized_pnl_exit_net": 4.5378561825
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 3.829,
"quote_asset_bal": 9916.0664823952,
"total_value_mid": 10040.2409523952,
"total_value_exit_net": 10040.1478215427,
"total_value": 10040.2409523952,
"base_cost_quote": 120.45671483,
"unrealized_pnl_exit_net": 3.6246243175
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 5.386,
"quote_asset_bal": 9866.6086561102,
"total_value_mid": 10028.9965561102,
"total_value_exit_net": 10028.8747651852,
"total_value": 10028.9965561102,
"base_cost_quote": 170.69348417,
"unrealized_pnl_exit_net": -8.427375095
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 11.734,
"quote_asset_bal": 9681.5859256577,
"total_value_mid": 10015.5355656577,
"total_value_exit_net": 10015.2851034277,
"total_value": 10015.5355656577,
"base_cost_quote": 356.3170074775,
"unrealized_pnl_exit_net": -22.6178297075
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 10.157,
"quote_asset_bal": 9727.1376025853,
"total_value_mid": 10020.0654825853,
"total_value_exit_net": 10019.8457866753,
"total_value": 10020.0654825853,
"base_cost_quote": 311.174746155,
"unrealized_pnl_exit_net": -18.466562065
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 11.732,
"quote_asset_bal": 9682.6591836003,
"total_value_mid": 10016.1999436003,
"total_value_exit_net": 10015.9497880303,
"total_value": 10016.1999436003,
"base_cost_quote": 356.33116809,
"unrealized_pnl_exit_net": -23.04056366
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 12.999,
"quote_asset_bal": 9648.5820889303,
"total_value_mid": 10006.1845789303,
"total_value_exit_net": 10005.9163770628,
"total_value": 10006.1845789303,
"base_cost_quote": 391.45140853,
"unrealized_pnl_exit_net": -34.1171203975
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 7.748,
"quote_asset_bal": 9795.6198219328,
"total_value_mid": 10028.6796619328,
"total_value_exit_net": 10028.5048670528,
"total_value": 10028.6796619328,
"base_cost_quote": 246.0770694875,
"unrealized_pnl_exit_net": -13.1920243675
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 13.819,
"quote_asset_bal": 9620.8945086653,
"total_value_mid": 10006.7209886653,
"total_value_exit_net": 10006.4316188053,
"total_value": 10006.7209886653,
"base_cost_quote": 421.6230503025,
"unrealized_pnl_exit_net": -36.0859401625
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 17.329,
"quote_asset_bal": 9526.3498988228,
"total_value_mid": 9982.6224688228,
"total_value_exit_net": 9982.2802643953,
"total_value": 9982.6224688228,
"base_cost_quote": 517.01419004,
"unrealized_pnl_exit_net": -61.0838244675
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 18.073,
"quote_asset_bal": 9506.6317791528,
"total_value_mid": 9986.1084691528,
"total_value_exit_net": 9985.7488616353,
"total_value": 9986.1084691528,
"base_cost_quote": 537.08779396,
"unrealized_pnl_exit_net": -57.9707114775
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 17.88,
"quote_asset_bal": 9512.0535813028,
"total_value_mid": 9991.0587813028,
"total_value_exit_net": 9990.6995274028,
"total_value": 9991.0587813028,
"base_cost_quote": 532.0934009725,
"unrealized_pnl_exit_net": -53.4474548725
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 25.133,
"quote_asset_bal": 9327.5507892128,
"total_value_mid": 9949.0898792128,
"total_value_exit_net": 9948.6237248953,
"total_value": 9949.0898792128,
"base_cost_quote": 717.6403568975,
"unrealized_pnl_exit_net": -96.567421215
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 28.478,
"quote_asset_bal": 9248.8034846378,
"total_value_mid": 9928.0037846378,
"total_value_exit_net": 9927.4943844128,
"total_value": 9928.0037846378,
"base_cost_quote": 797.90289869,
"unrealized_pnl_exit_net": -119.211998915
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 27.874,
"quote_asset_bal": 9265.3463493753,
"total_value_mid": 9934.6010893753,
"total_value_exit_net": 9934.0991483203,
"total_value": 9934.6010893753,
"base_cost_quote": 782.8603752525,
"unrealized_pnl_exit_net": -114.1075763075
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 29.494,
"quote_asset_bal": 9226.3094779978,
"total_value_mid": 9934.7553579978,
"total_value_exit_net": 9934.2240235878,
"total_value": 9934.7553579978,
"base_cost_quote": 823.0073829425,
"unrealized_pnl_exit_net": -115.0928373525
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 29.488,
"quote_asset_bal": 9227.0718851128,
"total_value_mid": 9935.0787651128,
"total_value_exit_net": 9934.5477599528,
"total_value": 9935.0787651128,
"base_cost_quote": 823.0029796425,
"unrealized_pnl_exit_net": -115.5271048025
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 29.071,
"quote_asset_bal": 9237.3452383778,
"total_value_mid": 9935.9213683778,
"total_value_exit_net": 9935.3974362803,
"total_value": 9935.9213683778,
"base_cost_quote": 812.9875136725,
"unrealized_pnl_exit_net": -114.93531577
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 32.677,
"quote_asset_bal": 9152.3665919928,
"total_value_mid": 9906.8785219928,
"total_value_exit_net": 9906.3126380453,
"total_value": 9906.8785219928,
"base_cost_quote": 898.2404654675,
"unrealized_pnl_exit_net": -144.294419415
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 32.249,
"quote_asset_bal": 9163.6286994528,
"total_value_mid": 9912.4504794528,
"total_value_exit_net": 9911.8888631178,
"total_value": 9912.4504794528,
"base_cost_quote": 888.1985997125,
"unrealized_pnl_exit_net": -139.9384360475
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 29.481,
"quote_asset_bal": 9229.4324492303,
"total_value_mid": 9932.8491092303,
"total_value_exit_net": 9932.3215467353,
"total_value": 9932.8491092303,
"base_cost_quote": 823.00655232,
"unrealized_pnl_exit_net": -120.117454815
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 32.019,
"quote_asset_bal": 9169.6207606253,
"total_value_mid": 9908.6192806253,
"total_value_exit_net": 9908.0650317353,
"total_value": 9908.6192806253,
"base_cost_quote": 883.176145695,
"unrealized_pnl_exit_net": -144.731874585
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 28.842,
"quote_asset_bal": 9245.3615429253,
"total_value_mid": 9942.7611029253,
"total_value_exit_net": 9942.2380532553,
"total_value": 9942.7611029253,
"base_cost_quote": 807.9396305975,
"unrealized_pnl_exit_net": -111.0631202675
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 31.173,
"quote_asset_bal": 9190.6461096978,
"total_value_mid": 9916.6652796978,
"total_value_exit_net": 9916.1207653203,
"total_value": 9916.6652796978,
"base_cost_quote": 863.1477056225,
"unrealized_pnl_exit_net": -137.67305
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 32.244,
"quote_asset_bal": 9165.7225726928,
"total_value_mid": 9911.2038526928,
"total_value_exit_net": 9910.6447417328,
"total_value": 9911.2038526928,
"base_cost_quote": 888.2368283625,
"unrealized_pnl_exit_net": -143.3146593225
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 30.314,
"quote_asset_bal": 9211.2360708903,
"total_value_mid": 9933.3155508903,
"total_value_exit_net": 9932.7739912803,
"total_value": 9933.3155508903,
"base_cost_quote": 843.070609085,
"unrealized_pnl_exit_net": -121.532688695
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 30.733,
"quote_asset_bal": 9201.6615905603,
"total_value_mid": 9930.0336905603,
"total_value_exit_net": 9929.4874114853,
"total_value": 9930.0336905603,
"base_cost_quote": 853.1009361925,
"unrealized_pnl_exit_net": -125.2751152675
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 29.472,
"quote_asset_bal": 9232.1560799353,
"total_value_mid": 9941.2523999353,
"total_value_exit_net": 9940.7205776953,
"total_value": 9941.2523999353,
"base_cost_quote": 823.0129270975,
"unrealized_pnl_exit_net": -114.4484293375
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 33.157,
"quote_asset_bal": 9147.5995717503,
"total_value_mid": 9904.2423117503,
"total_value_exit_net": 9903.6748296953,
"total_value": 9904.2423117503,
"base_cost_quote": 908.25251888,
"unrealized_pnl_exit_net": -152.177260935
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 41.514,
"quote_asset_bal": 8967.9044760228,
"total_value_mid": 9822.2625960228,
"total_value_exit_net": 9821.6218274328,
"total_value": 9822.2625960228,
"base_cost_quote": 1088.7765804575,
"unrealized_pnl_exit_net": -235.0592290475
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 44.808,
"quote_asset_bal": 8905.0181192152,
"total_value_mid": 9818.6532392152,
"total_value_exit_net": 9817.9680128752,
"total_value": 9818.6532392152,
"base_cost_quote": 1153.9403966925,
"unrealized_pnl_exit_net": -240.9905030325
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 38.583,
"quote_asset_bal": 9036.2994657627,
"total_value_mid": 9878.9521857627,
"total_value_exit_net": 9878.3201962227,
"total_value": 9878.9521857627,
"base_cost_quote": 1023.5800997425,
"unrealized_pnl_exit_net": -181.5593692825
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 45.032,
"quote_asset_bal": 8901.5696733552,
"total_value_mid": 9809.4147933552,
"total_value_exit_net": 9808.7339095152,
"total_value": 9809.4147933552,
"base_cost_quote": 1159.011507175,
"unrealized_pnl_exit_net": -251.847271015
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 44.509,
"quote_asset_bal": 8913.2190687177,
"total_value_mid": 9830.5495587177,
"total_value_exit_net": 9829.8615608502,
"total_value": 9830.5495587177,
"base_cost_quote": 1148.9306622075,
"unrealized_pnl_exit_net": -232.288170075
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 41.864,
"quote_asset_bal": 8969.1197004152,
"total_value_mid": 9850.3569004152,
"total_value_exit_net": 9849.6959725152,
"total_value": 9850.3569004152,
"base_cost_quote": 1093.777418275,
"unrealized_pnl_exit_net": -213.201146175
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 40.69,
"quote_asset_bal": 8994.8317044477,
"total_value_mid": 9852.9838044477,
"total_value_exit_net": 9852.3401903727,
"total_value": 9852.9838044477,
"base_cost_quote": 1068.6994939275,
"unrealized_pnl_exit_net": -211.1910080025
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 42.821,
"quote_asset_bal": 8950.1755486052,
"total_value_mid": 9844.7062386052,
"total_value_exit_net": 9844.0353405877,
"total_value": 9844.7062386052,
"base_cost_quote": 1113.852143035,
"unrealized_pnl_exit_net": -219.9923510525
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 40.932,
"quote_asset_bal": 8990.7620180702,
"total_value_mid": 9867.9347780702,
"total_value_exit_net": 9867.2768985002,
"total_value": 9867.9347780702,
"base_cost_quote": 1073.728993225,
"unrealized_pnl_exit_net": -197.214112795
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 39.539,
"quote_asset_bal": 9021.1051709852,
"total_value_mid": 9882.2645909852,
"total_value_exit_net": 9881.6187214202,
"total_value": 9882.2645909852,
"base_cost_quote": 1043.649090205,
"unrealized_pnl_exit_net": -183.13553977
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 36.158,
"quote_asset_bal": 9096.7402926102,
"total_value_mid": 9919.3347926102,
"total_value_exit_net": 9918.7178467352,
"total_value": 9919.3347926102,
"base_cost_quote": 968.42869719,
"unrealized_pnl_exit_net": -146.451143065
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 33.349,
"quote_asset_bal": 9162.4961626827,
"total_value_mid": 9945.8641726827,
"total_value_exit_net": 9945.2766466752,
"total_value": 9945.8641726827,
"base_cost_quote": 903.2081484375,
"unrealized_pnl_exit_net": -120.427664445
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 34.63,
"quote_asset_bal": 9133.1836102402,
"total_value_mid": 9936.9459102402,
"total_value_exit_net": 9936.3430885152,
"total_value": 9936.9459102402,
"base_cost_quote": 933.313080215,
"unrealized_pnl_exit_net": -130.15360194
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 36.611,
"quote_asset_bal": 9088.7304400827,
"total_value_mid": 9917.9695900827,
"total_value_exit_net": 9917.3476607202,
"total_value": 9917.9695900827,
"base_cost_quote": 978.4354065975,
"unrealized_pnl_exit_net": -149.81818596
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 39.534,
"quote_asset_bal": 9024.1058267027,
"total_value_mid": 9894.6445067027,
"total_value_exit_net": 9893.9916026927,
"total_value": 9894.6445067027,
"base_cost_quote": 1043.6345292925,
"unrealized_pnl_exit_net": -173.7487533025
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 37.277,
"quote_asset_bal": 9074.9855309302,
"total_value_mid": 9914.8363409302,
"total_value_exit_net": 9914.2064528227,
"total_value": 9914.8363409302,
"base_cost_quote": 993.48027179,
"unrealized_pnl_exit_net": -154.2593498975
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 34.42,
"quote_asset_bal": 9140.6096198052,
"total_value_mid": 9937.0884198052,
"total_value_exit_net": 9936.4910607052,
"total_value": 9937.0884198052,
"base_cost_quote": 928.2957,
"unrealized_pnl_exit_net": -132.4142591
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 33.337,
"quote_asset_bal": 9166.3026060702,
"total_value_mid": 9949.7221060702,
"total_value_exit_net": 9949.1345414452,
"total_value": 9949.7221060702,
"base_cost_quote": 903.215804175,
"unrealized_pnl_exit_net": -120.3838688
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 38.407,
"quote_asset_bal": 9051.3656349827,
"total_value_mid": 9896.3196349827,
"total_value_exit_net": 9895.6859194827,
"total_value": 9896.3196349827,
"base_cost_quote": 1018.6371352975,
"unrealized_pnl_exit_net": -174.3168507975
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 41.651,
"quote_asset_bal": 8982.0573655127,
"total_value_mid": 9862.1429955127,
"total_value_exit_net": 9861.4829312902,
"total_value": 9862.1429955127,
"base_cost_quote": 1088.7572059375,
"unrealized_pnl_exit_net": -209.33164016
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 43.316,
"quote_asset_bal": 8947.3496387052,
"total_value_mid": 9849.1887587052,
"total_value_exit_net": 9848.5123793652,
"total_value": 9849.1887587052,
"base_cost_quote": 1123.867368825,
"unrealized_pnl_exit_net": -222.704628165
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 43.551,
"quote_asset_bal": 8943.2283207002,
"total_value_mid": 9837.7658607002,
"total_value_exit_net": 9837.0949575452,
"total_value": 9837.7658607002,
"base_cost_quote": 1128.8967680475,
"unrealized_pnl_exit_net": -235.0301312025
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 39.504,
"quote_asset_bal": 9029.0698031752,
"total_value_mid": 9881.9611631752,
"total_value_exit_net": 9881.3214946552,
"total_value": 9881.9611631752,
"base_cost_quote": 1043.6473188775,
"unrealized_pnl_exit_net": -191.3956273975
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 38.35,
"quote_asset_bal": 9054.8120563427,
"total_value_mid": 9891.9925563427,
"total_value_exit_net": 9891.3646709677,
"total_value": 9891.9925563427,
"base_cost_quote": 1018.616649945,
"unrealized_pnl_exit_net": -182.06403532
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 42.311,
"quote_asset_bal": 8969.9793624501,
"total_value_mid": 9867.8187824501,
"total_value_exit_net": 9867.1454028851,
"total_value": 9867.8187824501,
"base_cost_quote": 1103.8345054375,
"unrealized_pnl_exit_net": -206.6684650025
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 42.335,
"quote_asset_bal": 8970.9935681326,
"total_value_mid": 9864.6854181326,
"total_value_exit_net": 9864.0151492451,
"total_value": 9864.6854181326,
"base_cost_quote": 1103.82957174,
"unrealized_pnl_exit_net": -210.8079906275
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 42.573,
"quote_asset_bal": 8966.6891050876,
"total_value_mid": 9856.4648050876,
"total_value_exit_net": 9855.7974733126,
"total_value": 9856.4648050876,
"base_cost_quote": 1108.86410481,
"unrealized_pnl_exit_net": -219.755736585
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 44.992,
"quote_asset_bal": 8917.1418387501,
"total_value_mid": 9839.4778387501,
"total_value_exit_net": 9838.7860867501,
"total_value": 9839.4778387501,
"base_cost_quote": 1158.9802537525,
"unrealized_pnl_exit_net": -237.3360057525
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 45.203,
"quote_asset_bal": 8913.0813423051,
"total_value_mid": 9828.8941223051,
"total_value_exit_net": 9828.2072627201,
"total_value": 9828.8941223051,
"base_cost_quote": 1163.9960527825,
"unrealized_pnl_exit_net": -248.8701323675
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 52.152,
"quote_asset_bal": 8778.9617119401,
"total_value_mid": 9762.5484319401,
"total_value_exit_net": 9761.8107419001,
"total_value": 9762.5484319401,
"base_cost_quote": 1299.33288934,
"unrealized_pnl_exit_net": -316.48385938
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 58.367,
"quote_asset_bal": 8664.7773438076,
"total_value_mid": 9725.8894038076,
"total_value_exit_net": 9725.0935697626,
"total_value": 9725.8894038076,
"base_cost_quote": 1414.620390165,
"unrealized_pnl_exit_net": -354.30416421
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 62.1,
"quote_asset_bal": 8601.1473441726,
"total_value_mid": 9693.4863441726,
"total_value_exit_net": 9692.6670899226,
"total_value": 9693.4863441726,
"base_cost_quote": 1479.7937435475,
"unrealized_pnl_exit_net": -388.2739977975
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 72.571,
"quote_asset_bal": 8434.5416751026,
"total_value_mid": 9595.6776751026,
"total_value_exit_net": 9594.8068231026,
"total_value": 9595.6776751026,
"base_cost_quote": 1650.1786564625,
"unrealized_pnl_exit_net": -489.9135084625
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 69.701,
"quote_asset_bal": 8482.1064816201,
"total_value_mid": 9655.1743116201,
"total_value_exit_net": 9654.2945107476,
"total_value": 9655.1743116201,
"base_cost_quote": 1605.095059105,
"unrealized_pnl_exit_net": -432.9070299775
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 74.857,
"quote_asset_bal": 8398.9243637626,
"total_value_mid": 9602.6249237626,
"total_value_exit_net": 9601.7221483426,
"total_value": 9602.6249237626,
"base_cost_quote": 1690.2873154125,
"unrealized_pnl_exit_net": -487.4895308325
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 61.559,
"quote_asset_bal": 8625.9543757276,
"total_value_mid": 9734.6319657276,
"total_value_exit_net": 9733.8004575351,
"total_value": 9734.6319657276,
"base_cost_quote": 1464.784945385,
"unrealized_pnl_exit_net": -356.9388635775
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 66.367,
"quote_asset_bal": 8541.4725673251,
"total_value_mid": 9698.9130473251,
"total_value_exit_net": 9698.0449669651,
"total_value": 9698.9130473251,
"base_cost_quote": 1550.021985255,
"unrealized_pnl_exit_net": -393.449585615
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 60.991,
"quote_asset_bal": 8637.2979724076,
"total_value_mid": 9736.9657024076,
"total_value_exit_net": 9736.1409516101,
"total_value": 9736.9657024076,
"base_cost_quote": 1454.744700845,
"unrealized_pnl_exit_net": -355.9017216425
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 70.223,
"quote_asset_bal": 8477.2794668851,
"total_value_mid": 9659.1325568851,
"total_value_exit_net": 9658.2461670676,
"total_value": 9659.1325568851,
"base_cost_quote": 1615.1950584275,
"unrealized_pnl_exit_net": -434.228358245
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 64.387,
"quote_asset_bal": 8578.7810453251,
"total_value_mid": 9710.7045053251,
"total_value_exit_net": 9709.8555627301,
"total_value": 9710.7045053251,
"base_cost_quote": 1514.9412244025,
"unrealized_pnl_exit_net": -383.8667069975
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 62.959,
"quote_asset_bal": 8604.5160945151,
"total_value_mid": 9729.5934245151,
"total_value_exit_net": 9728.7496165176,
"total_value": 9729.5934245151,
"base_cost_quote": 1489.85843641,
"unrealized_pnl_exit_net": -365.6249144075
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 66.377,
"quote_asset_bal": 8545.0253162852,
"total_value_mid": 9696.0024962852,
"total_value_exit_net": 9695.1392634002,
"total_value": 9696.0024962852,
"base_cost_quote": 1549.978232465,
"unrealized_pnl_exit_net": -399.86428535
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 71.626,
"quote_asset_bal": 8455.4971189202,
"total_value_mid": 9664.5439989202,
"total_value_exit_net": 9663.6372137602,
"total_value": 9664.5439989202,
"base_cost_quote": 1640.2319420175,
"unrealized_pnl_exit_net": -432.0918471775
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 71.604,
"quote_asset_bal": 8456.3057322226,
"total_value_mid": 9659.2529322226,
"total_value_exit_net": 9658.3507218226,
"total_value": 9659.2529322226,
"base_cost_quote": 1640.2116067775,
"unrealized_pnl_exit_net": -438.1666171775
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 71.6,
"quote_asset_bal": 8456.6253632001,
"total_value_mid": 9667.3813632001,
"total_value_exit_net": 9666.4732962001,
"total_value": 9667.3813632001,
"base_cost_quote": 1640.1911114175,
"unrealized_pnl_exit_net": -430.3431784175
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 68.355,
"quote_asset_bal": 8512.2872810851,
"total_value_mid": 9692.7781310851,
"total_value_exit_net": 9691.8927629476,
"total_value": 9692.7781310851,
"base_cost_quote": 1585.076256255,
"unrealized_pnl_exit_net": -405.4707743925
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 63.493,
"quote_asset_bal": 8598.1683639551,
"total_value_mid": 9726.4389739551,
"total_value_exit_net": 9725.5927709976,
"total_value": 9726.4389739551,
"base_cost_quote": 1499.8594015125,
"unrealized_pnl_exit_net": -372.43499447
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 59.304,
"quote_asset_bal": 8673.9717428201,
"total_value_mid": 9752.1184628201,
"total_value_exit_net": 9751.3098527801,
"total_value": 9752.1184628201,
"base_cost_quote": 1424.64420239,
"unrealized_pnl_exit_net": -347.30609243
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 50.282,
"quote_asset_bal": 8845.4930173277,
"total_value_mid": 9840.5737973277,
"total_value_exit_net": 9839.8274867427,
"total_value": 9840.5737973277,
"base_cost_quote": 1254.268976735,
"unrealized_pnl_exit_net": -259.93450732
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 43.65,
"quote_asset_bal": 8981.7141187701,
"total_value_mid": 9888.7611187701,
"total_value_exit_net": 9888.0808335201,
"total_value": 9888.7611187701,
"base_cost_quote": 1118.86644094,
"unrealized_pnl_exit_net": -212.49972619
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 41.748,
"quote_asset_bal": 9022.4566382101,
"total_value_mid": 9918.3687182101,
"total_value_exit_net": 9917.6967841501,
"total_value": 9918.3687182101,
"base_cost_quote": 1078.75742172,
"unrealized_pnl_exit_net": -183.51727578
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 37.863,
"quote_asset_bal": 9108.3218081401,
"total_value_mid": 9952.6667081401,
"total_value_exit_net": 9952.0334494651,
"total_value": 9952.6667081401,
"base_cost_quote": 993.49436235,
"unrealized_pnl_exit_net": -149.782721025
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 39.678,
"quote_asset_bal": 9068.9489414726,
"total_value_mid": 9941.8649414726,
"total_value_exit_net": 9941.2102544726,
"total_value": 9941.8649414726,
"base_cost_quote": 1033.6185829625,
"unrealized_pnl_exit_net": -161.3572699625
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 44.593,
"quote_asset_bal": 8964.2809581576,
"total_value_mid": 9888.2479181576,
"total_value_exit_net": 9887.5549429376,
"total_value": 9888.2479181576,
"base_cost_quote": 1138.9052888125,
"unrealized_pnl_exit_net": -215.6313040325
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 48.771,
"quote_asset_bal": 8879.8455208701,
"total_value_mid": 9844.0481908701,
"total_value_exit_net": 9843.3250388676,
"total_value": 9844.0481908701,
"base_cost_quote": 1224.1105648775,
"unrealized_pnl_exit_net": -260.63104688
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 53.874,
"quote_asset_bal": 8780.799700055,
"total_value_mid": 9813.025540055,
"total_value_exit_net": 9812.251370675,
"total_value": 9813.025540055,
"base_cost_quote": 1324.3989447925,
"unrealized_pnl_exit_net": -292.9472741725
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 55.468,
"quote_asset_bal": 8751.634073925,
"total_value_mid": 9792.768433925,
"total_value_exit_net": 9791.987583155,
"total_value": 9792.768433925,
"base_cost_quote": 1354.4507267375,
"unrealized_pnl_exit_net": -314.0972175075
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 58.428,
"quote_asset_bal": 8697.2851352426,
"total_value_mid": 9782.8773752426,
"total_value_exit_net": 9782.0631810626,
"total_value": 9782.8773752426,
"base_cost_quote": 1409.5966952175,
"unrealized_pnl_exit_net": -324.8186493975
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 61.962,
"quote_asset_bal": 8632.5946387776,
"total_value_mid": 9759.6834187776,
"total_value_exit_net": 9758.8381021926,
"total_value": 9759.6834187776,
"base_cost_quote": 1474.7658154275,
"unrealized_pnl_exit_net": -348.5223520125
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 66.202,
"quote_asset_bal": 8558.3591161426,
"total_value_mid": 9713.5840161426,
"total_value_exit_net": 9712.7175974676,
"total_value": 9713.5840161426,
"base_cost_quote": 1549.9616100075,
"unrealized_pnl_exit_net": -395.6031286825
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 59.499,
"quote_asset_bal": 8679.7301708376,
"total_value_mid": 9779.2716908376,
"total_value_exit_net": 9778.4470346976,
"total_value": 9779.2716908376,
"base_cost_quote": 1429.6526359,
"unrealized_pnl_exit_net": -330.93577204
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 67.308,
"quote_asset_bal": 8539.9549416051,
"total_value_mid": 9714.4795416051,
"total_value_exit_net": 9713.5986481551,
"total_value": 9714.4795416051,
"base_cost_quote": 1570.0253265175,
"unrealized_pnl_exit_net": -396.3816199675
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 62.505,
"quote_asset_bal": 8626.2979012401,
"total_value_mid": 9760.1386012401,
"total_value_exit_net": 9759.2882207151,
"total_value": 9760.1386012401,
"base_cost_quote": 1484.81369569,
"unrealized_pnl_exit_net": -351.823376215
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 67.017,
"quote_asset_bal": 8546.8586262976,
"total_value_mid": 9714.9649362976,
"total_value_exit_net": 9714.0888565651,
"total_value": 9714.9649362976,
"base_cost_quote": 1564.987641085,
"unrealized_pnl_exit_net": -397.7574108175
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 69.034,
"quote_asset_bal": 8512.8929988526,
"total_value_mid": 9693.3743988526,
"total_value_exit_net": 9692.4890378026,
"total_value": 9693.3743988526,
"base_cost_quote": 1600.100395915,
"unrealized_pnl_exit_net": -420.504356965
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 64.697,
"quote_asset_bal": 8588.7338113201,
"total_value_mid": 9729.9888913201,
"total_value_exit_net": 9729.1329500101,
"total_value": 9729.9888913201,
"base_cost_quote": 1524.9104757375,
"unrealized_pnl_exit_net": -384.5113370475
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 57.788,
"quote_asset_bal": 8714.7942177101,
"total_value_mid": 9777.5155377101,
"total_value_exit_net": 9776.7184967201,
"total_value": 9777.5155377101,
"base_cost_quote": 1399.570831455,
"unrealized_pnl_exit_net": -337.646552445
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 48.063,
"quote_asset_bal": 8901.5428651451,
"total_value_mid": 9861.3609751451,
"total_value_exit_net": 9860.6411115626,
"total_value": 9861.3609751451,
"base_cost_quote": 1214.0885540025,
"unrealized_pnl_exit_net": -254.990307585
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 47.309,
"quote_asset_bal": 8917.1454037476,
"total_value_mid": 9862.3792237476,
"total_value_exit_net": 9861.6702983826,
"total_value": 9862.3792237476,
"base_cost_quote": 1199.08195749,
"unrealized_pnl_exit_net": -254.557062855
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 48.559,
"quote_asset_bal": 8892.7822490325,
"total_value_mid": 9858.1351690325,
"total_value_exit_net": 9857.4111543425,
"total_value": 9858.1351690325,
"base_cost_quote": 1224.1113854925,
"unrealized_pnl_exit_net": -259.4824801825
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 47.802,
"quote_asset_bal": 8908.420636225,
"total_value_mid": 9858.724396225,
"total_value_exit_net": 9858.011668405,
"total_value": 9858.724396225,
"base_cost_quote": 1209.09314025,
"unrealized_pnl_exit_net": -259.50210807
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 49.076,
"quote_asset_bal": 8883.868455315,
"total_value_mid": 9862.443895315,
"total_value_exit_net": 9861.709963735,
"total_value": 9862.443895315,
"base_cost_quote": 1234.165790645,
"unrealized_pnl_exit_net": -256.324282225
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 37.667,
"quote_asset_bal": 9125.367264005,
"total_value_mid": 9939.727804005,
"total_value_exit_net": 9939.1170336,
"total_value": 9939.727804005,
"base_cost_quote": 993.4888682325,
"unrealized_pnl_exit_net": -179.7390986375
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 42.016,
"quote_asset_bal": 9035.9962961275,
"total_value_mid": 9892.2823761275,
"total_value_exit_net": 9891.6401615675,
"total_value": 9892.2823761275,
"base_cost_quote": 1083.76953799,
"unrealized_pnl_exit_net": -228.12567255
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 45.267,
"quote_asset_bal": 8971.534922255,
"total_value_mid": 9862.842152255,
"total_value_exit_net": 9862.1736718325,
"total_value": 9862.842152255,
"base_cost_quote": 1148.9468343275,
"unrealized_pnl_exit_net": -258.30808475
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 43.237,
"quote_asset_bal": 9012.2323059699,
"total_value_mid": 9886.0520759699,
"total_value_exit_net": 9885.3967111424,
"total_value": 9886.0520759699,
"base_cost_quote": 1108.8531265825,
"unrealized_pnl_exit_net": -235.68872141
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 39.799,
"quote_asset_bal": 9083.2200486174,
"total_value_mid": 9909.8452786174,
"total_value_exit_net": 9909.2253096949,
"total_value": 9909.8452786174,
"base_cost_quote": 1038.61749934,
"unrealized_pnl_exit_net": -212.6122382625
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 39.547,
"quote_asset_bal": 9088.7391776724,
"total_value_mid": 9913.2941276724,
"total_value_exit_net": 9912.6757114599,
"total_value": 9913.2941276724,
"base_cost_quote": 1033.563691825,
"unrealized_pnl_exit_net": -209.6271580375
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 39.802,
"quote_asset_bal": 9084.2146922674,
"total_value_mid": 9910.5042122674,
"total_value_exit_net": 9909.8844951274,
"total_value": 9910.5042122674,
"base_cost_quote": 1038.60424941,
"unrealized_pnl_exit_net": -212.93444655
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 36.699,
"quote_asset_bal": 9149.8452068874,
"total_value_mid": 9932.2678868874,
"total_value_exit_net": 9931.6810698774,
"total_value": 9932.2678868874,
"base_cost_quote": 973.438711885,
"unrealized_pnl_exit_net": -191.602848895
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 40.541,
"quote_asset_bal": 9070.0113429324,
"total_value_mid": 9900.6964329324,
"total_value_exit_net": 9900.0734191149,
"total_value": 9900.6964329324,
"base_cost_quote": 1053.676605205,
"unrealized_pnl_exit_net": -223.6145290225
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 39.556,
"quote_asset_bal": 9090.7492924374,
"total_value_mid": 9919.0519324374,
"total_value_exit_net": 9918.4307054574,
"total_value": 9919.0519324374,
"base_cost_quote": 1033.60230076,
"unrealized_pnl_exit_net": -205.92088774
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 36.943,
"quote_asset_bal": 9146.4831562999,
"total_value_mid": 9935.5856362999,
"total_value_exit_net": 9934.9938094399,
"total_value": 9935.5856362999,
"base_cost_quote": 978.4375081725,
"unrealized_pnl_exit_net": -189.9268550325
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 39.42,
"quote_asset_bal": 9091.9126723524,
"total_value_mid": 9942.9904723524,
"total_value_exit_net": 9942.3521640024,
"total_value": 9942.9904723524,
"base_cost_quote": 1033.596236215,
"unrealized_pnl_exit_net": -183.156744565
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 37.584,
"quote_asset_bal": 9132.6254981924,
"total_value_mid": 9966.6144581924,
"total_value_exit_net": 9965.9889664724,
"total_value": 9966.6144581924,
"base_cost_quote": 993.469643825,
"unrealized_pnl_exit_net": -160.106175545
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 36.459,
"quote_asset_bal": 9158.2722706724,
"total_value_mid": 9977.8705906724,
"total_value_exit_net": 9977.2558919324,
"total_value": 9977.8705906724,
"base_cost_quote": 968.38362341,
"unrealized_pnl_exit_net": -149.40000215
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 38.724,
"quote_asset_bal": 9108.4107517549,
"total_value_mid": 9956.8535917549,
"total_value_exit_net": 9956.2172596249,
"total_value": 9956.8535917549,
"base_cost_quote": 1018.5718263525,
"unrealized_pnl_exit_net": -170.7653184825
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 39.2,
"quote_asset_bal": 9098.9327763049,
"total_value_mid": 9953.8847763049,
"total_value_exit_net": 9953.2435623049,
"total_value": 9953.8847763049,
"base_cost_quote": 1028.5916555925,
"unrealized_pnl_exit_net": -174.2808695925
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 45.192,
"quote_asset_bal": 8974.2905538598,
"total_value_mid": 9880.3901538598,
"total_value_exit_net": 9879.7105791598,
"total_value": 9880.3901538598,
"base_cost_quote": 1153.94489006,
"unrealized_pnl_exit_net": -248.52486476
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 56.921,
"quote_asset_bal": 8749.7537699398,
"total_value_mid": 9805.0691099398,
"total_value_exit_net": 9804.2776234348,
"total_value": 9805.0691099398,
"base_cost_quote": 1379.597102385,
"unrealized_pnl_exit_net": -325.07324889
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 59.142,
"quote_asset_bal": 8710.9371778299,
"total_value_mid": 9783.7730578299,
"total_value_exit_net": 9782.9684309199,
"total_value": 9783.7730578299,
"base_cost_quote": 1419.66847339,
"unrealized_pnl_exit_net": -347.6372203
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 61.361,
"quote_asset_bal": 8672.0380312949,
"total_value_mid": 9771.6271512949,
"total_value_exit_net": 9770.8024594549,
"total_value": 9771.6271512949,
"base_cost_quote": 1459.80687463,
"unrealized_pnl_exit_net": -361.04244647
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 57.757,
"quote_asset_bal": 8737.9367183399,
"total_value_mid": 9798.9328083399,
"total_value_exit_net": 9798.1370612724,
"total_value": 9798.9328083399,
"base_cost_quote": 1394.61433687,
"unrealized_pnl_exit_net": -334.4139939375
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 58.844,
"quote_asset_bal": 8718.3319804299,
"total_value_mid": 9796.3540604299,
"total_value_exit_net": 9795.5455438699,
"total_value": 9796.3540604299,
"base_cost_quote": 1414.644127955,
"unrealized_pnl_exit_net": -337.430564515
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 55.061,
"quote_asset_bal": 8789.1514629449,
"total_value_mid": 9829.8043629449,
"total_value_exit_net": 9829.0238732699,
"total_value": 9829.8043629449,
"base_cost_quote": 1344.47668181,
"unrealized_pnl_exit_net": -304.604271485
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 59.367,
"quote_asset_bal": 8709.7671860574,
"total_value_mid": 9793.2149360574,
"total_value_exit_net": 9792.4023502449,
"total_value": 9793.2149360574,
"base_cost_quote": 1424.6965316075,
"unrealized_pnl_exit_net": -342.06136742
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 62.407,
"quote_asset_bal": 8655.3453122849,
"total_value_mid": 9775.5509622849,
"total_value_exit_net": 9774.7108080474,
"total_value": 9775.5509622849,
"base_cost_quote": 1479.884701715,
"unrealized_pnl_exit_net": -360.5192059525
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 66.076,
"quote_asset_bal": 8590.8173180124,
"total_value_mid": 9753.0941580124,
"total_value_exit_net": 9752.2224503824,
"total_value": 9753.0941580124,
"base_cost_quote": 1545.02966382,
"unrealized_pnl_exit_net": -383.62453145
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 65.798,
"quote_asset_bal": 8596.5478338824,
"total_value_mid": 9747.3548538825,
"total_value_exit_net": 9746.4917486174,
"total_value": 9747.3548538825,
"base_cost_quote": 1540.0193489,
"unrealized_pnl_exit_net": -390.075434165
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 58.822,
"quote_asset_bal": 8722.4089132074,
"total_value_mid": 9805.9101532074,
"total_value_exit_net": 9805.0975272774,
"total_value": 9805.9101532074,
"base_cost_quote": 1414.70251171,
"unrealized_pnl_exit_net": -332.01389764
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 59.636,
"quote_asset_bal": 8707.6723247374,
"total_value_mid": 9803.7820047374,
"total_value_exit_net": 9802.9599224774,
"total_value": 9803.7820047374,
"base_cost_quote": 1429.7399313225,
"unrealized_pnl_exit_net": -334.4523335825
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 60.454,
"quote_asset_bal": 8693.1712904574,
"total_value_mid": 9801.2931104575,
"total_value_exit_net": 9800.4620190925,
"total_value": 9801.2931104575,
"base_cost_quote": 1444.77120633,
"unrealized_pnl_exit_net": -337.480477695
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 52.939,
"quote_asset_bal": 8834.3572798875,
"total_value_mid": 9842.3158398875,
"total_value_exit_net": 9841.5598709675,
"total_value": 9842.3158398875,
"base_cost_quote": 1304.4285982575,
"unrealized_pnl_exit_net": -297.2260071775
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 55.62,
"quote_asset_bal": 8785.4823405,
"total_value_mid": 9815.5647405,
"total_value_exit_net": 9814.7921787,
"total_value": 9815.5647405,
"base_cost_quote": 1354.530876805,
"unrealized_pnl_exit_net": -325.221038605
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 58.909,
"quote_asset_bal": 8726.0442920999,
"total_value_mid": 9791.1190120999,
"total_value_exit_net": 9790.3202060599,
"total_value": 9791.1190120999,
"base_cost_quote": 1414.69526628,
"unrealized_pnl_exit_net": -350.41935232
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 62.028,
"quote_asset_bal": 8672.0323447849,
"total_value_mid": 9764.9657047849,
"total_value_exit_net": 9764.1460047649,
"total_value": 9764.9657047849,
"base_cost_quote": 1469.8043971525,
"unrealized_pnl_exit_net": -377.6907371725
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 55.873,
"quote_asset_bal": 8782.9356891199,
"total_value_mid": 9813.79253912,
"total_value_exit_net": 9813.0193964825,
"total_value": 9813.79253912,
"base_cost_quote": 1359.5309940825,
"unrealized_pnl_exit_net": -329.44728672
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 55.871,
"quote_asset_bal": 8783.2644806475,
"total_value_mid": 9811.2908806475,
"total_value_exit_net": 9810.5198608475,
"total_value": 9811.2908806475,
"base_cost_quote": 1359.55878491,
"unrealized_pnl_exit_net": -332.30340471
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 49.799,
"quote_asset_bal": 8899.2159979025,
"total_value_mid": 9873.2844379025,
"total_value_exit_net": 9872.5538865725,
"total_value": 9873.2844379025,
"base_cost_quote": 1244.24180199,
"unrealized_pnl_exit_net": -270.90391332
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 52.67,
"quote_asset_bal": 8844.6917691849,
"total_value_mid": 9848.0552691849,
"total_value_exit_net": 9847.3027465599,
"total_value": 9848.0552691849,
"base_cost_quote": 1299.4217859625,
"unrealized_pnl_exit_net": -296.8108085875
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 55.053,
"quote_asset_bal": 8800.12990234,
"total_value_mid": 9831.27259234,
"total_value_exit_net": 9830.4992353225,
"total_value": 9831.27259234,
"base_cost_quote": 1344.51290896,
"unrealized_pnl_exit_net": -314.1435759775
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 59.681,
"quote_asset_bal": 8715.4378339125,
"total_value_mid": 9799.2447939125,
"total_value_exit_net": 9798.4319386925,
"total_value": 9799.2447939125,
"base_cost_quote": 1429.731314865,
"unrealized_pnl_exit_net": -346.737210085
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 57.749,
"quote_asset_bal": 8751.0027832625,
"total_value_mid": 9811.2744232625,
"total_value_exit_net": 9810.4792195325,
"total_value": 9811.2744232625,
"base_cost_quote": 1394.648942805,
"unrealized_pnl_exit_net": -335.172506535
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 69.93,
"quote_asset_bal": 8536.0778840975,
"total_value_mid": 9696.9158840975,
"total_value_exit_net": 9696.0452555975,
"total_value": 9696.9158840975,
"base_cost_quote": 1610.1938503325,
"unrealized_pnl_exit_net": -450.2264788325
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 70.818,
"quote_asset_bal": 8521.75025642,
"total_value_mid": 9721.40717642,
"total_value_exit_net": 9720.50743373,
"total_value": 9721.40717642,
"base_cost_quote": 1625.2411673625,
"unrealized_pnl_exit_net": -426.4839900525
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 65.86,
"quote_asset_bal": 8607.4393484124,
"total_value_mid": 9751.4275484125,
"total_value_exit_net": 9750.5695572625,
"total_value": 9751.4275484125,
"base_cost_quote": 1539.993709685,
"unrealized_pnl_exit_net": -396.863500835
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 67.306,
"quote_asset_bal": 8583.1231485649,
"total_value_mid": 9750.2091885649,
"total_value_exit_net": 9749.3338740349,
"total_value": 9750.2091885649,
"base_cost_quote": 1565.079630025,
"unrealized_pnl_exit_net": -398.868904555
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 63.603,
"quote_asset_bal": 8648.9075730224,
"total_value_mid": 9778.4968530224,
"total_value_exit_net": 9777.6496610624,
"total_value": 9778.4968530224,
"base_cost_quote": 1499.9131417875,
"unrealized_pnl_exit_net": -371.1710537475
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 65.31,
"quote_asset_bal": 8619.5344558299,
"total_value_mid": 9764.4187558299,
"total_value_exit_net": 9763.5600926049,
"total_value": 9764.4187558299,
"base_cost_quote": 1529.9953265175,
"unrealized_pnl_exit_net": -385.9696897425
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 73.234,
"quote_asset_bal": 8484.6834363399,
"total_value_mid": 9701.1001763399,
"total_value_exit_net": 9700.1878637849,
"total_value": 9701.1001763399,
"base_cost_quote": 1665.3272493925,
"unrealized_pnl_exit_net": -449.8228219475
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 76.888,
"quote_asset_bal": 8425.2949491299,
"total_value_mid": 9686.2581491299,
"total_value_exit_net": 9685.3124267299,
"total_value": 9686.2581491299,
"base_cost_quote": 1725.461386195,
"unrealized_pnl_exit_net": -465.443908595
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 79.375,
"quote_asset_bal": 8385.5769150674,
"total_value_mid": 9656.3706650674,
"total_value_exit_net": 9655.4175697549,
"total_value": 9656.3706650674,
"base_cost_quote": 1765.5568052225,
"unrealized_pnl_exit_net": -495.716150535
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 84.467,
"quote_asset_bal": 8306.0942213299,
"total_value_mid": 9617.0220613299,
"total_value_exit_net": 9616.0388654499,
"total_value": 9617.0220613299,
"base_cost_quote": 1845.7163998625,
"unrealized_pnl_exit_net": -535.7717557425
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 89.092,
"quote_asset_bal": 8236.4754741874,
"total_value_mid": 9569.2917941874,
"total_value_exit_net": 9568.2921819474,
"total_value": 9569.2917941874,
"base_cost_quote": 1915.86390106,
"unrealized_pnl_exit_net": -584.0471933
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 82.537,
"quote_asset_bal": 8337.2218126574,
"total_value_mid": 9631.4019726574,
"total_value_exit_net": 9630.4313375374,
"total_value": 9631.4019726574,
"base_cost_quote": 1815.658743515,
"unrealized_pnl_exit_net": -522.449218635
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 69.464,
"quote_asset_bal": 8554.2161521124,
"total_value_mid": 9754.5540721124,
"total_value_exit_net": 9753.6538186724,
"total_value": 9754.5540721124,
"base_cost_quote": 1600.1769032525,
"unrealized_pnl_exit_net": -400.7392366925
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 70.353,
"quote_asset_bal": 8540.1829319524,
"total_value_mid": 9756.5863019524,
"total_value_exit_net": 9755.6739994249,
"total_value": 9756.5863019524,
"base_cost_quote": 1615.1862117975,
"unrealized_pnl_exit_net": -399.695144325
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 67.191,
"quote_asset_bal": 8596.6231058849,
"total_value_mid": 9783.8880758849,
"total_value_exit_net": 9782.9976271574,
"total_value": 9783.8880758849,
"base_cost_quote": 1560.0467882225,
"unrealized_pnl_exit_net": -373.67226695
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 62.696,
"quote_asset_bal": 8677.9339623899,
"total_value_mid": 9815.2394023899,
"total_value_exit_net": 9814.3864233099,
"total_value": 9815.2394023899,
"base_cost_quote": 1479.842309945,
"unrealized_pnl_exit_net": -343.389849025
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 51.019,
"quote_asset_bal": 8900.9313587774,
"total_value_mid": 9892.2305287774,
"total_value_exit_net": 9891.4870543999,
"total_value": 9892.2305287774,
"base_cost_quote": 1259.23043504,
"unrealized_pnl_exit_net": -268.6747394175
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 47.225,
"quote_asset_bal": 8978.0108400748,
"total_value_mid": 9939.9840900748,
"total_value_exit_net": 9939.2626101373,
"total_value": 9939.9840900748,
"base_cost_quote": 1184.04052487,
"unrealized_pnl_exit_net": -222.7887548075
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 50.072,
"quote_asset_bal": 8925.3452583573,
"total_value_mid": 9903.2514183573,
"total_value_exit_net": 9902.5179887373,
"total_value": 9903.2514183573,
"base_cost_quote": 1239.1493555175,
"unrealized_pnl_exit_net": -261.9766251375
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 50.849,
"quote_asset_bal": 8912.9555624648,
"total_value_mid": 9881.6290124648,
"total_value_exit_net": 9880.9025073773,
"total_value": 9881.6290124648,
"base_cost_quote": 1254.22588444,
"unrealized_pnl_exit_net": -286.2789395275
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 58.845,
"quote_asset_bal": 8764.4412603873,
"total_value_mid": 9841.8932103873,
"total_value_exit_net": 9841.0851214248,
"total_value": 9841.8932103873,
"base_cost_quote": 1404.600681015,
"unrealized_pnl_exit_net": -327.9568199775
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 46.76,
"quote_asset_bal": 8996.9613898648,
"total_value_mid": 9930.2909898649,
"total_value_exit_net": 9929.5909926649,
"total_value": 9930.2909898649,
"base_cost_quote": 1174.00828633,
"unrealized_pnl_exit_net": -241.37868353
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 40.799,
"quote_asset_bal": 9124.0115625848,
"total_value_mid": 10022.8135325848,
"total_value_exit_net": 10022.1394311073,
"total_value": 10022.8135325848,
"base_cost_quote": 1048.6470959,
"unrealized_pnl_exit_net": -150.5192273775
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 46.275,
"quote_asset_bal": 9010.3072900898,
"total_value_mid": 9960.3330400898,
"total_value_exit_net": 9959.6205207773,
"total_value": 9960.3330400898,
"base_cost_quote": 1163.973185645,
"unrealized_pnl_exit_net": -214.6599549575
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 40.123,
"quote_asset_bal": 9142.2708836148,
"total_value_mid": 10026.1805736148,
"total_value_exit_net": 10025.5176413473,
"total_value": 10026.1805736148,
"base_cost_quote": 1033.645713295,
"unrealized_pnl_exit_net": -150.3989555625
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 45.267,
"quote_asset_bal": 9032.8235499848,
"total_value_mid": 9985.6938999848,
"total_value_exit_net": 9984.9792472223,
"total_value": 9985.6938999848,
"base_cost_quote": 1143.944815625,
"unrealized_pnl_exit_net": -191.7891183875
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 50.16,
"quote_asset_bal": 8933.9640237173,
"total_value_mid": 9937.6656237173,
"total_value_exit_net": 9936.9128475173,
"total_value": 9937.6656237173,
"base_cost_quote": 1244.1642738875,
"unrealized_pnl_exit_net": -241.2154500875
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 45.754,
"quote_asset_bal": 9025.5830522848,
"total_value_mid": 9980.0114922848,
"total_value_exit_net": 9979.2956709548,
"total_value": 9980.0114922848,
"base_cost_quote": 1153.9760834375,
"unrealized_pnl_exit_net": -200.2634647675
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 36.417,
"quote_asset_bal": 9232.9356399998,
"total_value_mid": 10085.8217799998,
"total_value_exit_net": 10085.1821153948,
"total_value": 10085.8217799998,
"base_cost_quote": 948.2923762675,
"unrealized_pnl_exit_net": -96.0459008725
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 7.213,
"quote_asset_bal": 10045.5859418748,
"total_value_mid": 10416.6947918748,
"total_value_exit_net": 10416.4164602373,
"total_value": 10416.6947918748,
"base_cost_quote": 140.374702125,
"unrealized_pnl_exit_net": 230.4558162375
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 9.204,
"quote_asset_bal": 9964.3758539548,
"total_value_mid": 10339.6229339548,
"total_value_exit_net": 10339.3414986448,
"total_value": 10339.6229339548,
"base_cost_quote": 225.880583475,
"unrealized_pnl_exit_net": 149.085061215
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 9.832,
"quote_asset_bal": 9942.9520914873,
"total_value_mid": 10337.4119314873,
"total_value_exit_net": 10337.1160866073,
"total_value": 10337.4119314873,
"base_cost_quote": 251.002450755,
"unrealized_pnl_exit_net": 143.161544365
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 14.281,
"quote_asset_bal": 9780.6025882223,
"total_value_mid": 10297.5747882223,
"total_value_exit_net": 10297.1870590723,
"total_value": 10297.5747882223,
"base_cost_quote": 416.680416105,
"unrealized_pnl_exit_net": 99.904054745
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 12.385,
"quote_asset_bal": 9853.4905309273,
"total_value_mid": 10317.3087809273,
"total_value_exit_net": 10316.9609172398,
"total_value": 10317.3087809273,
"base_cost_quote": 346.362036845,
"unrealized_pnl_exit_net": 117.1083494675
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 14.008,
"quote_asset_bal": 9794.8272846673,
"total_value_mid": 10310.1816046673,
"total_value_exit_net": 10309.7950889273,
"total_value": 10310.1816046673,
"base_cost_quote": 406.6001315575,
"unrealized_pnl_exit_net": 108.3676727025
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 8.056,
"quote_asset_bal": 10028.4340436223,
"total_value_mid": 10368.1555636223,
"total_value_exit_net": 10367.9007724823,
"total_value": 10368.1555636223,
"base_cost_quote": 175.543058625,
"unrealized_pnl_exit_net": 163.923670235
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 9.954,
"quote_asset_bal": 9949.9466100224,
"total_value_mid": 10360.2504900224,
"total_value_exit_net": 10359.9427621124,
"total_value": 10360.2504900224,
"base_cost_quote": 255.9822428,
"unrealized_pnl_exit_net": 154.01390929
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 10.294,
"quote_asset_bal": 9936.5335346849,
"total_value_mid": 10364.8668746849,
"total_value_exit_net": 10364.5456246799,
"total_value": 10364.8668746849,
"base_cost_quote": 271.0178410475,
"unrealized_pnl_exit_net": 156.9942489475
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 9.604,
"quote_asset_bal": 9969.5428622849,
"total_value_mid": 10371.9504622849,
"total_value_exit_net": 10371.6486565849,
"total_value": 10371.9504622849,
"base_cost_quote": 240.8912230175,
"unrealized_pnl_exit_net": 161.2145712825
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 8.625,
"quote_asset_bal": 10012.8480197699,
"total_value_mid": 10400.8867697699,
"total_value_exit_net": 10400.5957407074,
"total_value": 10400.8867697699,
"base_cost_quote": 200.7281032525,
"unrealized_pnl_exit_net": 187.019617685
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 11.38,
"quote_asset_bal": 9885.0407574774,
"total_value_mid": 10403.6273574774,
"total_value_exit_net": 10403.2384175274,
"total_value": 10403.6273574774,
"base_cost_quote": 331.3947097625,
"unrealized_pnl_exit_net": 186.8029502875
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 11.603,
"quote_asset_bal": 9877.461358235,
"total_value_mid": 10397.275758235,
"total_value_exit_net": 10396.885897435,
"total_value": 10397.275758235,
"base_cost_quote": 341.4079740825,
"unrealized_pnl_exit_net": 178.0165651175
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 9.314,
"quote_asset_bal": 9985.1348908525,
"total_value_mid": 10425.6870908525,
"total_value_exit_net": 10425.3566767025,
"total_value": 10425.6870908525,
"base_cost_quote": 235.881118255,
"unrealized_pnl_exit_net": 204.340667595
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 12.363,
"quote_asset_bal": 9845.4788800775,
"total_value_mid": 10401.5666200775,
"total_value_exit_net": 10401.1495542725,
"total_value": 10401.5666200775,
"base_cost_quote": 376.64607285,
"unrealized_pnl_exit_net": 179.024601345
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 11.701,
"quote_asset_bal": 9876.6532942175,
"total_value_mid": 10408.6977642175,
"total_value_exit_net": 10408.298730865,
"total_value": 10408.6977642175,
"base_cost_quote": 346.4420468075,
"unrealized_pnl_exit_net": 185.20338984
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 20.49,
"quote_asset_bal": 9511.671271745,
"total_value_mid": 10264.268971745,
"total_value_exit_net": 10263.70452347,
"total_value": 10264.268971745,
"base_cost_quote": 713.1954256975,
"unrealized_pnl_exit_net": 38.8378260275
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 22.988,
"quote_asset_bal": 9424.052096895,
"total_value_mid": 10242.884656895,
"total_value_exit_net": 10242.270532475,
"total_value": 10242.884656895,
"base_cost_quote": 803.559477945,
"unrealized_pnl_exit_net": 14.658957635
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 20.345,
"quote_asset_bal": 9521.389353715,
"total_value_mid": 10296.940753715,
"total_value_exit_net": 10296.359090165,
"total_value": 10296.940753715,
"base_cost_quote": 708.210699955,
"unrealized_pnl_exit_net": 66.759036495
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 19.296,
"quote_asset_bal": 9563.4826318149,
"total_value_mid": 10323.552071815,
"total_value_exit_net": 10322.982019735,
"total_value": 10323.552071815,
"base_cost_quote": 668.02484315,
"unrealized_pnl_exit_net": 91.47454477
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 19.418,
"quote_asset_bal": 9560.0370527175,
"total_value_mid": 10326.0771527175,
"total_value_exit_net": 10325.5026226425,
"total_value": 10326.0771527175,
"base_cost_quote": 673.0056059225,
"unrealized_pnl_exit_net": 92.4599640025
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 23.616,
"quote_asset_bal": 9399.9871886374,
"total_value_mid": 10284.1702286375,
"total_value_exit_net": 10283.5070913575,
"total_value": 10284.1702286375,
"base_cost_quote": 833.7814174125,
"unrealized_pnl_exit_net": 49.7384853075
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 18.736,
"quote_asset_bal": 9592.4966538474,
"total_value_mid": 10326.5731338475,
"total_value_exit_net": 10326.0225764875,
"total_value": 10326.5731338475,
"base_cost_quote": 642.8456829325,
"unrealized_pnl_exit_net": 90.6802397075
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 20.414,
"quote_asset_bal": 9528.6647851699,
"total_value_mid": 10306.4381851699,
"total_value_exit_net": 10305.8548551199,
"total_value": 10306.4381851699,
"base_cost_quote": 708.12529595,
"unrealized_pnl_exit_net": 69.064774
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 25.042,
"quote_asset_bal": 9359.5111870999,
"total_value_mid": 10256.2652070999,
"total_value_exit_net": 10255.5926415849,
"total_value": 10256.2652070999,
"base_cost_quote": 878.87354116,
"unrealized_pnl_exit_net": 17.207913325
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 27.482,
"quote_asset_bal": 9280.8121288224,
"total_value_mid": 10170.9541088224,
"total_value_exit_net": 10170.2865023374,
"total_value": 10170.9541088224,
"base_cost_quote": 959.2988049025,
"unrealized_pnl_exit_net": -69.8244313875
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 32.483,
"quote_asset_bal": 9127.4043054099,
"total_value_mid": 10089.5507654099,
"total_value_exit_net": 10088.8291555649,
"total_value": 10089.5507654099,
"base_cost_quote": 1114.92016345,
"unrealized_pnl_exit_net": -153.495313295
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 29.873,
"quote_asset_bal": 9210.8455582599,
"total_value_mid": 10156.3260082599,
"total_value_exit_net": 10155.6168979224,
"total_value": 10156.3260082599,
"base_cost_quote": 1034.58515735,
"unrealized_pnl_exit_net": -89.8138176875
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 32.763,
"quote_asset_bal": 9117.8315979824,
"total_value_mid": 10130.8635579824,
"total_value_exit_net": 10130.1037840124,
"total_value": 10130.8635579824,
"base_cost_quote": 1129.8291267925,
"unrealized_pnl_exit_net": -117.5569407625
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 34.241,
"quote_asset_bal": 9074.0848022425,
"total_value_mid": 10109.8750522425,
"total_value_exit_net": 10109.098209555,
"total_value": 10109.8750522425,
"base_cost_quote": 1175.0961916475,
"unrealized_pnl_exit_net": -140.082784335
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 30.426,
"quote_asset_bal": 9196.5873019525,
"total_value_mid": 10199.1240019525,
"total_value_exit_net": 10198.3720994275,
"total_value": 10199.1240019525,
"base_cost_quote": 1054.56861371,
"unrealized_pnl_exit_net": -52.783816235
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 24.238,
"quote_asset_bal": 9414.422648675,
"total_value_mid": 10304.199628675,
"total_value_exit_net": 10303.53229594,
"total_value": 10304.199628675,
"base_cost_quote": 838.63382399,
"unrealized_pnl_exit_net": 50.475823275
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 24.538,
"quote_asset_bal": 9405.9012112,
"total_value_mid": 10298.8390312,
"total_value_exit_net": 10298.169327835,
"total_value": 10298.8390312,
"base_cost_quote": 848.671126325,
"unrealized_pnl_exit_net": 43.59699031
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 28.389,
"quote_asset_bal": 9271.160070875,
"total_value_mid": 10239.792750875,
"total_value_exit_net": 10239.066276365,
"total_value": 10239.792750875,
"base_cost_quote": 984.3154733425,
"unrealized_pnl_exit_net": -16.4092678525
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 29.71,
"quote_asset_bal": 9227.18616012,
"total_value_mid": 10230.78996012,
"total_value_exit_net": 10230.03725727,
"total_value": 10230.78996012,
"base_cost_quote": 1029.593516425,
"unrealized_pnl_exit_net": -26.742419275
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 26.944,
"quote_asset_bal": 9323.6243213675,
"total_value_mid": 10274.7475213675,
"total_value_exit_net": 10274.0341789675,
"total_value": 10274.7475213675,
"base_cost_quote": 934.1162121125,
"unrealized_pnl_exit_net": 16.2936454875
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 26.411,
"quote_asset_bal": 9344.7779045525,
"total_value_mid": 10260.9754945525,
"total_value_exit_net": 10260.28834636,
"total_value": 10260.9754945525,
"base_cost_quote": 913.9541619075,
"unrealized_pnl_exit_net": 1.5562799
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 27.115,
"quote_asset_bal": 9321.0059600225,
"total_value_mid": 10251.8639100225,
"total_value_exit_net": 10251.16576656,
"total_value": 10251.8639100225,
"base_cost_quote": 939.0934022075,
"unrealized_pnl_exit_net": -8.93359567
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 28.896,
"quote_asset_bal": 9261.7595884725,
"total_value_mid": 10215.6165484725,
"total_value_exit_net": 10214.9011557525,
"total_value": 10215.6165484725,
"base_cost_quote": 999.365542435,
"unrealized_pnl_exit_net": -46.223975155
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 27.593,
"quote_asset_bal": 9307.859070465,
"total_value_mid": 10254.850830465,
"total_value_exit_net": 10254.140586645,
"total_value": 10254.850830465,
"base_cost_quote": 954.22293085,
"unrealized_pnl_exit_net": -7.94141467
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 28.178,
"quote_asset_bal": 9288.716606765,
"total_value_mid": 10251.840646765,
"total_value_exit_net": 10251.118303735,
"total_value": 10251.840646765,
"base_cost_quote": 974.286587315,
"unrealized_pnl_exit_net": -11.884890345
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 24.889,
"quote_asset_bal": 9405.269896515,
"total_value_mid": 10317.700636515,
"total_value_exit_net": 10317.01631346,
"total_value": 10317.700636515,
"base_cost_quote": 858.782504175,
"unrealized_pnl_exit_net": 52.96391277
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 25.573,
"quote_asset_bal": 9380.6835616075,
"total_value_mid": 10306.4261616075,
"total_value_exit_net": 10305.7318546575,
"total_value": 10306.4261616075,
"base_cost_quote": 883.8880892525,
"unrealized_pnl_exit_net": 41.1602037975
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 25.573,
"quote_asset_bal": 9381.367255935,
"total_value_mid": 10309.667155935,
"total_value_exit_net": 10308.97093101,
"total_value": 10309.667155935,
"base_cost_quote": 883.89218232,
"unrealized_pnl_exit_net": 43.711492755
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 25.027,
"quote_asset_bal": 9402.4540549125,
"total_value_mid": 10313.1865849125,
"total_value_exit_net": 10312.503535515,
"total_value": 10313.1865849125,
"base_cost_quote": 863.80624916,
"unrealized_pnl_exit_net": 46.2432314425
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 30.177,
"quote_asset_bal": 9227.4777417975,
"total_value_mid": 10208.8337817975,
"total_value_exit_net": 10208.0977647675,
"total_value": 10208.8337817975,
"base_cost_quote": 1039.588847305,
"unrealized_pnl_exit_net": -58.968824335
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 31.24,
"quote_asset_bal": 9193.6271116025,
"total_value_mid": 10163.6291116025,
"total_value_exit_net": 10162.9016101025,
"total_value": 10163.6291116025,
"base_cost_quote": 1074.7195455825,
"unrealized_pnl_exit_net": -105.4450470825
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 34.041,
"quote_asset_bal": 9109.507724885,
"total_value_mid": 10135.503464885,
"total_value_exit_net": 10134.73396808,
"total_value": 10135.503464885,
"base_cost_quote": 1160.05242728,
"unrealized_pnl_exit_net": -134.826184085
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 32.727,
"quote_asset_bal": 9150.5732767976,
"total_value_mid": 10164.7830067976,
"total_value_exit_net": 10164.0223495001,
"total_value": 10164.7830067976,
"base_cost_quote": 1119.9364928775,
"unrealized_pnl_exit_net": -106.487420175
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 32.404,
"quote_asset_bal": 9161.0796932551,
"total_value_mid": 10157.5026932551,
"total_value_exit_net": 10156.7553760051,
"total_value": 10157.5026932551,
"base_cost_quote": 1109.883728955,
"unrealized_pnl_exit_net": -114.208046205
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 33.548,
"quote_asset_bal": 9126.3971690476,
"total_value_mid": 10137.5338890476,
"total_value_exit_net": 10136.7755365076,
"total_value": 10137.5338890476,
"base_cost_quote": 1144.9659709175,
"unrealized_pnl_exit_net": -134.5876034575
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 34.563,
"quote_asset_bal": 9098.1172207726,
"total_value_mid": 10119.1082407726,
"total_value_exit_net": 10118.3424975076,
"total_value": 10119.1082407726,
"base_cost_quote": 1175.0942602,
"unrealized_pnl_exit_net": -154.868983465
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 30.276,
"quote_asset_bal": 9229.4086590551,
"total_value_mid": 10185.5247390551,
"total_value_exit_net": 10184.8076519951,
"total_value": 10185.5247390551,
"base_cost_quote": 1044.6381814675,
"unrealized_pnl_exit_net": -89.2391885275
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 28.256,
"quote_asset_bal": 9295.6910647676,
"total_value_mid": 10225.5960247676,
"total_value_exit_net": 10224.8985960476,
"total_value": 10225.5960247676,
"base_cost_quote": 979.370997765,
"unrealized_pnl_exit_net": -50.163466485
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 29.808,
"quote_asset_bal": 9246.6166671226,
"total_value_mid": 10195.1072271226,
"total_value_exit_net": 10194.3958592026,
"total_value": 10195.1072271226,
"base_cost_quote": 1029.54862278,
"unrealized_pnl_exit_net": -81.7694307
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 25.398,
"quote_asset_bal": 9393.2775888552,
"total_value_mid": 10262.1431688552,
"total_value_exit_net": 10261.4915196702,
"total_value": 10262.1431688552,
"base_cost_quote": 883.965937595,
"unrealized_pnl_exit_net": -15.75200678
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 30.423,
"quote_asset_bal": 9228.5569297002,
"total_value_mid": 10190.2279597002,
"total_value_exit_net": 10189.5067064277,
"total_value": 10190.2279597002,
"base_cost_quote": 1049.6427720975,
"unrealized_pnl_exit_net": -88.69299537
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 38.94,
"quote_asset_bal": 8979.4935273402,
"total_value_mid": 10029.3159273402,
"total_value_exit_net": 10028.5285605402,
"total_value": 10029.3159273402,
"base_cost_quote": 1300.5838968925,
"unrealized_pnl_exit_net": -251.5488636925
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 41,
"quote_asset_bal": 8922.1678957302,
"total_value_mid": 10042.6978957302,
"total_value_exit_net": 10041.8574982302,
"total_value": 10042.6978957302,
"base_cost_quote": 1360.78594459,
"unrealized_pnl_exit_net": -241.09634209
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 39.198,
"quote_asset_bal": 8974.2345142627,
"total_value_mid": 10085.4978142627,
"total_value_exit_net": 10084.6643667877,
"total_value": 10085.4978142627,
"base_cost_quote": 1310.6671936975,
"unrealized_pnl_exit_net": -200.2373411725
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 41.364,
"quote_asset_bal": 8914.9764320602,
"total_value_mid": 10050.0045920602,
"total_value_exit_net": 10049.1533209402,
"total_value": 10050.0045920602,
"base_cost_quote": 1370.8644678175,
"unrealized_pnl_exit_net": -236.6875789375
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 41.718,
"quote_asset_bal": 8906.2057679277,
"total_value_mid": 10052.6164079277,
"total_value_exit_net": 10051.7565999477,
"total_value": 10052.6164079277,
"base_cost_quote": 1380.939068105,
"unrealized_pnl_exit_net": -235.388236085
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 43.362,
"quote_asset_bal": 8862.0318052177,
"total_value_mid": 10044.5135452177,
"total_value_exit_net": 10043.6266839127,
"total_value": 10044.5135452177,
"base_cost_quote": 1426.0169812025,
"unrealized_pnl_exit_net": -244.4221025075
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 42.626,
"quote_asset_bal": 8882.5168941252,
"total_value_mid": 10049.1905141252,
"total_value_exit_net": 10048.3155089102,
"total_value": 10049.1905141252,
"base_cost_quote": 1405.9524640925,
"unrealized_pnl_exit_net": -240.1538493075
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 43.754,
"quote_asset_bal": 8852.9035381352,
"total_value_mid": 10009.7592981352,
"total_value_exit_net": 10008.8916563152,
"total_value": 10009.7592981352,
"base_cost_quote": 1436.05051071,
"unrealized_pnl_exit_net": -280.06239253
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 46.453,
"quote_asset_bal": 8784.3953597477,
"total_value_mid": 9990.3152397477,
"total_value_exit_net": 9989.4107998377,
"total_value": 9990.3152397477,
"base_cost_quote": 1506.2815545175,
"unrealized_pnl_exit_net": -301.2661144275
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 54.334,
"quote_asset_bal": 8589.6197052002,
"total_value_mid": 9878.4221852002,
"total_value_exit_net": 9877.4555833402,
"total_value": 9878.4221852002,
"base_cost_quote": 1701.883956375,
"unrealized_pnl_exit_net": -414.048078235
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 51.031,
"quote_asset_bal": 8671.1594194852,
"total_value_mid": 9919.3776794852,
"total_value_exit_net": 9918.4415157902,
"total_value": 9919.3776794852,
"base_cost_quote": 1621.66317588,
"unrealized_pnl_exit_net": -374.381079575
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 45.888,
"quote_asset_bal": 8802.4926749202,
"total_value_mid": 9991.4507549202,
"total_value_exit_net": 9990.5590363602,
"total_value": 9991.4507549202,
"base_cost_quote": 1491.2624386225,
"unrealized_pnl_exit_net": -303.1960771825
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 46.047,
"quote_asset_bal": 8798.3575157951,
"total_value_mid": 10002.4865657952,
"total_value_exit_net": 10001.5834690077,
"total_value": 10002.4865657952,
"base_cost_quote": 1496.2881851075,
"unrealized_pnl_exit_net": -293.062231895
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 54.294,
"quote_asset_bal": 8593.4335860526,
"total_value_mid": 9895.4037060526,
"total_value_exit_net": 9894.4272284626,
"total_value": 9895.4037060526,
"base_cost_quote": 1701.947524015,
"unrealized_pnl_exit_net": -400.953881605
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 67.326,
"quote_asset_bal": 8304.5943125151,
"total_value_mid": 9683.4307925151,
"total_value_exit_net": 9682.3966651551,
"total_value": 9683.4307925151,
"base_cost_quote": 1992.767995905,
"unrealized_pnl_exit_net": -614.965643265
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 62.975,
"quote_asset_bal": 8388.5902649051,
"total_value_mid": 9730.5875149051,
"total_value_exit_net": 9729.5810169676,
"total_value": 9730.5875149051,
"base_cost_quote": 1912.509927465,
"unrealized_pnl_exit_net": -571.5191754025
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 67.373,
"quote_asset_bal": 8300.4065237575,
"total_value_mid": 9643.1504137575,
"total_value_exit_net": 9642.14335584,
"total_value": 9643.1504137575,
"base_cost_quote": 2002.8195789425,
"unrealized_pnl_exit_net": -661.08274686
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 71.934,
"quote_asset_bal": 8211.474170855,
"total_value_mid": 9613.467830855,
"total_value_exit_net": 9612.41633561,
"total_value": 9613.467830855,
"base_cost_quote": 2093.0731383825,
"unrealized_pnl_exit_net": -692.1309736275
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 74.887,
"quote_asset_bal": 8157.8267570924,
"total_value_mid": 9552.9715670924,
"total_value_exit_net": 9551.9252084849,
"total_value": 9552.9715670924,
"base_cost_quote": 2148.1912860125,
"unrealized_pnl_exit_net": -754.09283462
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 74.673,
"quote_asset_bal": 8164.4344444324,
"total_value_mid": 9557.8326244324,
"total_value_exit_net": 9556.7875757974,
"total_value": 9557.8326244324,
"base_cost_quote": 2143.2034279225,
"unrealized_pnl_exit_net": -750.8502965575
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 70.98,
"quote_asset_bal": 8235.5311601324,
"total_value_mid": 9610.4137601324,
"total_value_exit_net": 9609.3825981824,
"total_value": 9610.4137601324,
"base_cost_quote": 2073.02228151,
"unrealized_pnl_exit_net": -699.17084346
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 73.521,
"quote_asset_bal": 8186.2855929924,
"total_value_mid": 9587.5958529924,
"total_value_exit_net": 9586.5448702974,
"total_value": 9587.5958529924,
"base_cost_quote": 2123.178290325,
"unrealized_pnl_exit_net": -722.91901302
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 71.159,
"quote_asset_bal": 8232.7324071849,
"total_value_mid": 9615.3517771849,
"total_value_exit_net": 9614.3148126574,
"total_value": 9615.3517771849,
"base_cost_quote": 2078.0161741225,
"unrealized_pnl_exit_net": -696.43376865
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 67.335,
"quote_asset_bal": 8308.9802293874,
"total_value_mid": 9648.2733793874,
"total_value_exit_net": 9647.2689095249,
"total_value": 9648.2733793874,
"base_cost_quote": 2002.87827293,
"unrealized_pnl_exit_net": -664.5895927925
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 63.169,
"quote_asset_bal": 8395.4740874873,
"total_value_mid": 9732.7618174873,
"total_value_exit_net": 9731.7588516898,
"total_value": 9732.7618174873,
"base_cost_quote": 1917.5836198825,
"unrealized_pnl_exit_net": -581.29885568
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 63.871,
"quote_asset_bal": 8381.3008938698,
"total_value_mid": 9691.2951038698,
"total_value_exit_net": 9690.3126082123,
"total_value": 9691.2951038698,
"base_cost_quote": 1932.592978465,
"unrealized_pnl_exit_net": -623.5812641225
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 63.372,
"quote_asset_bal": 8392.0817364823,
"total_value_mid": 9712.7542164823,
"total_value_exit_net": 9711.7637121223,
"total_value": 9712.7542164823,
"base_cost_quote": 1922.5564066775,
"unrealized_pnl_exit_net": -602.8744310375
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 65.319,
"quote_asset_bal": 8352.3139100673,
"total_value_mid": 9676.9832300673,
"total_value_exit_net": 9675.9897280773,
"total_value": 9676.9832300673,
"base_cost_quote": 1962.6600218475,
"unrealized_pnl_exit_net": -638.9842038375
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 65.569,
"quote_asset_bal": 8347.7414538373,
"total_value_mid": 9672.8909438373,
"total_value_exit_net": 9671.8970817198,
"total_value": 9672.8909438373,
"base_cost_quote": 1967.7038719,
"unrealized_pnl_exit_net": -643.5482440175
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 66.316,
"quote_asset_bal": 8333.5023233048,
"total_value_mid": 9659.8223233048,
"total_value_exit_net": 9658.8275833048,
"total_value": 9659.8223233048,
"base_cost_quote": 1982.7341061275,
"unrealized_pnl_exit_net": -657.4088461275
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 73.04,
"quote_asset_bal": 8204.2071075873,
"total_value_mid": 9589.7759075873,
"total_value_exit_net": 9588.7367309873,
"total_value": 9589.7759075873,
"base_cost_quote": 2113.0346783175,
"unrealized_pnl_exit_net": -728.5050549175
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 69.402,
"quote_asset_bal": 8275.1859400798,
"total_value_mid": 9634.0771000798,
"total_value_exit_net": 9633.0579317098,
"total_value": 9634.0771000798,
"base_cost_quote": 2042.8689734775,
"unrealized_pnl_exit_net": -684.9969818475
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 66.621,
"quote_asset_bal": 8330.9286206822,
"total_value_mid": 9664.0148306822,
"total_value_exit_net": 9663.0150160247,
"total_value": 9664.0148306822,
"base_cost_quote": 1987.74309005,
"unrealized_pnl_exit_net": -655.6566947075
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 69.386,
"quote_asset_bal": 8276.6709864397,
"total_value_mid": 9647.7383464397,
"total_value_exit_net": 9646.7100459197,
"total_value": 9647.7383464397,
"base_cost_quote": 2042.8813227325,
"unrealized_pnl_exit_net": -672.8422632525
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 66.633,
"quote_asset_bal": 8332.3056974572,
"total_value_mid": 9688.9535774572,
"total_value_exit_net": 9687.9360915472,
"total_value": 9688.9535774572,
"base_cost_quote": 1987.7426397125,
"unrealized_pnl_exit_net": -632.1122456225
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 66.887,
"quote_asset_bal": 8327.6123895147,
"total_value_mid": 9673.3788295147,
"total_value_exit_net": 9672.3695046847,
"total_value": 9673.3788295147,
"base_cost_quote": 1992.781365925,
"unrealized_pnl_exit_net": -648.024250755
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 75.514,
"quote_asset_bal": 8163.9692768096,
"total_value_mid": 9531.5278168096,
"total_value_exit_net": 9530.5021479046,
"total_value": 9531.5278168096,
"base_cost_quote": 2158.2296291275,
"unrealized_pnl_exit_net": -791.6967580325
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 68.412,
"quote_asset_bal": 8302.3943438196,
"total_value_mid": 9661.7407838196,
"total_value_exit_net": 9660.7212739896,
"total_value": 9661.7407838196,
"base_cost_quote": 2022.89827668,
"unrealized_pnl_exit_net": -664.57134651
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 65.488,
"quote_asset_bal": 8364.6923208921,
"total_value_mid": 9679.6913608921,
"total_value_exit_net": 9678.7051116121,
"total_value": 9679.6913608921,
"base_cost_quote": 1962.66977916,
"unrealized_pnl_exit_net": -648.65698844
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 68.025,
"quote_asset_bal": 8315.768205967,
"total_value_mid": 9668.785455967,
"total_value_exit_net": 9667.7706930295,
"total_value": 9668.785455967,
"base_cost_quote": 2012.8235563025,
"unrealized_pnl_exit_net": -660.82106924
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 68.27,
"quote_asset_bal": 8312.7701416995,
"total_value_mid": 9654.2756416995,
"total_value_exit_net": 9653.2695125745,
"total_value": 9654.2756416995,
"base_cost_quote": 2017.8271661975,
"unrealized_pnl_exit_net": -677.3277953225
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 72.924,
"quote_asset_bal": 8223.325556287,
"total_value_mid": 9622.007876287,
"total_value_exit_net": 9620.958864547,
"total_value": 9622.007876287,
"base_cost_quote": 2108.0776233125,
"unrealized_pnl_exit_net": -710.4443150525
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 61.316,
"quote_asset_bal": 8455.436179567,
"total_value_mid": 9747.364299567,
"total_value_exit_net": 9746.395353477,
"total_value": 9747.364299567,
"base_cost_quote": 1877.4540452575,
"unrealized_pnl_exit_net": -586.4948713475
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 79.111,
"quote_asset_bal": 8111.1825836419,
"total_value_mid": 9532.016143642,
"total_value_exit_net": 9530.950518472,
"total_value": 9532.016143642,
"base_cost_quote": 2223.3613012725,
"unrealized_pnl_exit_net": -803.5933664425
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 80.256,
"quote_asset_bal": 8093.9211398644,
"total_value_mid": 9521.6753798644,
"total_value_exit_net": 9520.6045641844,
"total_value": 9521.6753798644,
"base_cost_quote": 2243.406313765,
"unrealized_pnl_exit_net": -816.722889445
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 76.609,
"quote_asset_bal": 8160.5287349694,
"total_value_mid": 9577.7952349694,
"total_value_exit_net": 9576.7322850944,
"total_value": 9577.7952349694,
"base_cost_quote": 2178.2772836,
"unrealized_pnl_exit_net": -762.073733475
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 79.597,
"quote_asset_bal": 8106.6958095694,
"total_value_mid": 9554.5652395694,
"total_value_exit_net": 9553.4793374969,
"total_value": 9554.5652395694,
"base_cost_quote": 2233.40055507,
"unrealized_pnl_exit_net": -786.6170271425
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 81.584,
"quote_asset_bal": 8073.2644594619,
"total_value_mid": 9529.5388594619,
"total_value_exit_net": 9528.4466536619,
"total_value": 9529.5388594619,
"base_cost_quote": 2268.5284512475,
"unrealized_pnl_exit_net": -813.3462570475
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 84.999,
"quote_asset_bal": 8013.9519916469,
"total_value_mid": 9503.1344716469,
"total_value_exit_net": 9502.0175847869,
"total_value": 9503.1344716469,
"base_cost_quote": 2328.6709242975,
"unrealized_pnl_exit_net": -840.6053311575
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 92.649,
"quote_asset_bal": 7884.9041958919,
"total_value_mid": 9413.6126958919,
"total_value_exit_net": 9412.4661645169,
"total_value": 9413.6126958919,
"base_cost_quote": 2458.9514614725,
"unrealized_pnl_exit_net": -931.3894928475
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 100.229,
"quote_asset_bal": 7766.9756296369,
"total_value_mid": 9337.5640596369,
"total_value_exit_net": 9336.3861183144,
"total_value": 9337.5640596369,
"base_cost_quote": 2579.264178385,
"unrealized_pnl_exit_net": -1009.8536897075
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 96.4,
"quote_asset_bal": 7829.2021011669,
"total_value_mid": 9371.6021011669,
"total_value_exit_net": 9370.4453011669,
"total_value": 9371.6021011669,
"base_cost_quote": 2519.1562812475,
"unrealized_pnl_exit_net": -977.9130812475
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 95.469,
"quote_asset_bal": 7845.4105609794,
"total_value_mid": 9372.9145609794,
"total_value_exit_net": 9371.7689329794,
"total_value": 9372.9145609794,
"base_cost_quote": 2504.09798599,
"unrealized_pnl_exit_net": -977.73961399
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 96.105,
"quote_asset_bal": 7836.3675780919,
"total_value_mid": 9364.4370780919,
"total_value_exit_net": 9363.2910259669,
"total_value": 9364.4370780919,
"base_cost_quote": 2514.1258512525,
"unrealized_pnl_exit_net": -987.2024033775
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 92.68,
"quote_asset_bal": 7892.2962979244,
"total_value_mid": 9419.6626979244,
"total_value_exit_net": 9418.5171731244,
"total_value": 9419.6626979244,
"base_cost_quote": 2458.99722577,
"unrealized_pnl_exit_net": -932.77635057
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 88.77,
"quote_asset_bal": 7957.9605092394,
"total_value_mid": 9457.2858092394,
"total_value_exit_net": 9456.1613152644,
"total_value": 9457.2858092394,
"base_cost_quote": 2393.8279954775,
"unrealized_pnl_exit_net": -895.6271894525
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 93.296,
"quote_asset_bal": 7883.5161511694,
"total_value_mid": 9412.6375911694,
"total_value_exit_net": 9411.4907500894,
"total_value": 9412.6375911694,
"base_cost_quote": 2469.0182859325,
"unrealized_pnl_exit_net": -941.0436870125
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 82.412,
"quote_asset_bal": 8070.3741333444,
"total_value_mid": 9505.1670533444,
"total_value_exit_net": 9504.0909586544,
"total_value": 9505.1670533444,
"base_cost_quote": 2283.5478073225,
"unrealized_pnl_exit_net": -849.8309820125
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 82.696,
"quote_asset_bal": 8066.1423484094,
"total_value_mid": 9514.1493084094,
"total_value_exit_net": 9513.0633031894,
"total_value": 9514.1493084094,
"base_cost_quote": 2288.58339118,
"unrealized_pnl_exit_net": -841.6624364
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 77.939,
"quote_asset_bal": 8152.5068002044,
"total_value_mid": 9585.0256202044,
"total_value_exit_net": 9583.9512310894,
"total_value": 9585.0256202044,
"base_cost_quote": 2203.3304493925,
"unrealized_pnl_exit_net": -771.8860185075
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 87.224,
"quote_asset_bal": 7987.5226157694,
"total_value_mid": 9494.7533357694,
"total_value_exit_net": 9493.6229127294,
"total_value": 9494.7533357694,
"base_cost_quote": 2368.770106145,
"unrealized_pnl_exit_net": -862.669809185
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 89.576,
"quote_asset_bal": 7947.9921781844,
"total_value_mid": 9466.3053781844,
"total_value_exit_net": 9465.1666432844,
"total_value": 9466.3053781844,
"base_cost_quote": 2408.88551015,
"unrealized_pnl_exit_net": -891.71104505
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 90.452,
"quote_asset_bal": 7933.2816933094,
"total_value_mid": 9466.4430933094,
"total_value_exit_net": 9465.2932222594,
"total_value": 9466.4430933094,
"base_cost_quote": 2423.9188467025,
"unrealized_pnl_exit_net": -891.9073177525
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 83.505,
"quote_asset_bal": 8054.3644156719,
"total_value_mid": 9537.4132156719,
"total_value_exit_net": 9536.3009290719,
"total_value": 9537.4132156719,
"base_cost_quote": 2303.5880062075,
"unrealized_pnl_exit_net": -821.6514928075
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 75.813,
"quote_asset_bal": 8195.7441030019,
"total_value_mid": 9578.5732230019,
"total_value_exit_net": 9577.5361011619,
"total_value": 9578.5732230019,
"base_cost_quote": 2163.247279545,
"unrealized_pnl_exit_net": -781.455281385
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 76.085,
"quote_asset_bal": 8191.2508374493,
"total_value_mid": 9583.6063374494,
"total_value_exit_net": 9582.5620708244,
"total_value": 9583.6063374494,
"base_cost_quote": 2168.2804015575,
"unrealized_pnl_exit_net": -776.9691681825
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 77.464,
"quote_asset_bal": 8166.7600444293,
"total_value_mid": 9567.3091644294,
"total_value_exit_net": 9566.2587525894,
"total_value": 9567.3091644294,
"base_cost_quote": 2193.3552135725,
"unrealized_pnl_exit_net": -793.8565054125
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 77.186,
"quote_asset_bal": 8172.4089828993,
"total_value_mid": 9569.4755828993,
"total_value_exit_net": 9568.4277829493,
"total_value": 9569.4755828993,
"base_cost_quote": 2188.341325975,
"unrealized_pnl_exit_net": -792.322525925
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 88.442,
"quote_asset_bal": 7977.4607395768,
"total_value_mid": 9458.8642395768,
"total_value_exit_net": 9457.7531869518,
"total_value": 9458.8642395768,
"base_cost_quote": 2383.840320335,
"unrealized_pnl_exit_net": -903.54787296
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 93.045,
"quote_asset_bal": 7902.8807227193,
"total_value_mid": 9379.5048727193,
"total_value_exit_net": 9378.3974046068,
"total_value": 9379.5048727193,
"base_cost_quote": 2459.0127874325,
"unrealized_pnl_exit_net": -983.496105545
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 94.609,
"quote_asset_bal": 7878.2076542068,
"total_value_mid": 9380.5985742068,
"total_value_exit_net": 9379.4717810168,
"total_value": 9380.5985742068,
"base_cost_quote": 2484.06116964,
"unrealized_pnl_exit_net": -982.79704283
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 95.874,
"quote_asset_bal": 7858.8288470293,
"total_value_mid": 9375.5555270293,
"total_value_exit_net": 9374.4179820193,
"total_value": 9375.5555270293,
"base_cost_quote": 2504.1053815325,
"unrealized_pnl_exit_net": -988.5162465425
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 93.354,
"quote_asset_bal": 7899.6396916568,
"total_value_mid": 9393.3036916568,
"total_value_exit_net": 9392.1834436568,
"total_value": 9393.3036916568,
"base_cost_quote": 2464.0004453725,
"unrealized_pnl_exit_net": -971.4566933725
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 100.885,
"quote_asset_bal": 7785.2411553643,
"total_value_mid": 9283.3834053643,
"total_value_exit_net": 9282.2597986768,
"total_value": 9283.3834053643,
"base_cost_quote": 2579.271864145,
"unrealized_pnl_exit_net": -1082.2532208325
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 100.841,
"quote_asset_bal": 7786.0190052143,
"total_value_mid": 9299.6424152143,
"total_value_exit_net": 9298.5071976568,
"total_value": 9299.6424152143,
"base_cost_quote": 2579.267941205,
"unrealized_pnl_exit_net": -1066.7797487625
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 100.839,
"quote_asset_bal": 7786.7591773618,
"total_value_mid": 9296.3190073618,
"total_value_exit_net": 9295.1868374893,
"total_value": 9296.3190073618,
"base_cost_quote": 2579.2625871925,
"unrealized_pnl_exit_net": -1070.834927065
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 100.843,
"quote_asset_bal": 7786.9933457043,
"total_value_mid": 9290.5624757043,
"total_value_exit_net": 9289.4347988568,
"total_value": 9290.5624757043,
"base_cost_quote": 2579.26491894,
"unrealized_pnl_exit_net": -1076.8234657875
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 116.556,
"quote_asset_bal": 7572.3627830918,
"total_value_mid": 9074.7696230918,
"total_value_exit_net": 9073.6428179618,
"total_value": 9074.7696230918,
"base_cost_quote": 2794.7262638425,
"unrealized_pnl_exit_net": -1293.4462289725
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 115.125,
"quote_asset_bal": 7594.9685270069,
"total_value_mid": 9063.9635270069,
"total_value_exit_net": 9062.8617807569,
"total_value": 9063.9635270069,
"base_cost_quote": 2774.7091822825,
"unrealized_pnl_exit_net": -1306.8159285325
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 120.66,
"quote_asset_bal": 7525.8315524694,
"total_value_mid": 9014.7759524694,
"total_value_exit_net": 9013.6592441694,
"total_value": 9014.7759524694,
"base_cost_quote": 2844.835927925,
"unrealized_pnl_exit_net": -1357.008236225
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 110.494,
"quote_asset_bal": 7657.8530154969,
"total_value_mid": 9166.0961154969,
"total_value_exit_net": 9164.9649331719,
"total_value": 9166.0961154969,
"base_cost_quote": 2714.564777785,
"unrealized_pnl_exit_net": -1207.45286011
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 114.963,
"quote_asset_bal": 7598.4162549369,
"total_value_mid": 9111.3293349369,
"total_value_exit_net": 9110.1946501269,
"total_value": 9111.3293349369,
"base_cost_quote": 2774.71247475,
"unrealized_pnl_exit_net": -1262.93407956
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 112.319,
"quote_asset_bal": 7634.0196188144,
"total_value_mid": 9137.9710288144,
"total_value_exit_net": 9136.8430652569,
"total_value": 9137.9710288144,
"base_cost_quote": 2739.6307731925,
"unrealized_pnl_exit_net": -1236.80732675
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 108.636,
"quote_asset_bal": 7684.4949494644,
"total_value_mid": 9204.3125894644,
"total_value_exit_net": 9203.1727262344,
"total_value": 9204.3125894644,
"base_cost_quote": 2689.5379317175,
"unrealized_pnl_exit_net": -1170.8601549475
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 113.092,
"quote_asset_bal": 7624.9442883944,
"total_value_mid": 9131.3297283944,
"total_value_exit_net": 9130.1999393144,
"total_value": 9131.3297283944,
"base_cost_quote": 2749.6519634525,
"unrealized_pnl_exit_net": -1244.3963125325
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 113.052,
"quote_asset_bal": 7625.6826772444,
"total_value_mid": 9136.0573972444,
"total_value_exit_net": 9134.9246162044,
"total_value": 9136.0573972444,
"base_cost_quote": 2749.6737798025,
"unrealized_pnl_exit_net": -1240.4318408425
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 119.191,
"quote_asset_bal": 7545.9994773119,
"total_value_mid": 9069.2604573119,
"total_value_exit_net": 9068.1180115769,
"total_value": 9069.2604573119,
"base_cost_quote": 2829.8612053,
"unrealized_pnl_exit_net": -1307.742671035
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 124.397,
"quote_asset_bal": 7481.7939098069,
"total_value_mid": 9019.3408298069,
"total_value_exit_net": 9018.1876696169,
"total_value": 9019.3408298069,
"base_cost_quote": 2894.955529455,
"unrealized_pnl_exit_net": -1358.561769645
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 124.402,
"quote_asset_bal": 7482.3566160794,
"total_value_mid": 9032.4055360794,
"total_value_exit_net": 9031.2429993894,
"total_value": 9032.4055360794,
"base_cost_quote": 2894.9560598525,
"unrealized_pnl_exit_net": -1346.0696765425
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 120.404,
"quote_asset_bal": 7532.8177530619,
"total_value_mid": 9058.3364330619,
"total_value_exit_net": 9057.1922940519,
"total_value": 9058.3364330619,
"base_cost_quote": 2844.865670215,
"unrealized_pnl_exit_net": -1320.491129225
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 113.896,
"quote_asset_bal": 7618.3830983519,
"total_value_mid": 9148.0063783519,
"total_value_exit_net": 9146.8591608919,
"total_value": 9148.0063783519,
"base_cost_quote": 2759.67772714,
"unrealized_pnl_exit_net": -1231.2016646
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 111.331,
"quote_asset_bal": 7653.9611159744,
"total_value_mid": 9190.3289159744,
"total_value_exit_net": 9189.1766401244,
"total_value": 9190.3289159744,
"base_cost_quote": 2724.5808742275,
"unrealized_pnl_exit_net": -1189.3653500775
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 111.657,
"quote_asset_bal": 7649.4976449669,
"total_value_mid": 9200.4133749669,
"total_value_exit_net": 9199.2501881694,
"total_value": 9200.4133749669,
"base_cost_quote": 2729.57985065,
"unrealized_pnl_exit_net": -1179.8273074475
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 105.667,
"quote_asset_bal": 7735.4076448344,
"total_value_mid": 9286.5992048344,
"total_value_exit_net": 9285.4358111644,
"total_value": 9286.5992048344,
"base_cost_quote": 2644.3867737275,
"unrealized_pnl_exit_net": -1094.3586073975
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 99.991,
"quote_asset_bal": 7821.4476317444,
"total_value_mid": 9361.3090317444,
"total_value_exit_net": 9360.1541356944,
"total_value": 9361.3090317444,
"base_cost_quote": 2559.1926860475,
"unrealized_pnl_exit_net": -1020.4861820975
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 97.735,
"quote_asset_bal": 7857.2652610969,
"total_value_mid": 9409.2970610969,
"total_value_exit_net": 9408.1330372469,
"total_value": 9409.2970610969,
"base_cost_quote": 2524.12851763,
"unrealized_pnl_exit_net": -973.26074148
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 94.617,
"quote_asset_bal": 7908.4519675119,
"total_value_mid": 9452.6014075119,
"total_value_exit_net": 9451.4432954319,
"total_value": 9452.6014075119,
"base_cost_quote": 2474.00287157,
"unrealized_pnl_exit_net": -931.01154365
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 93.091,
"quote_asset_bal": 7934.4811167119,
"total_value_mid": 9462.1044267119,
"total_value_exit_net": 9460.9587092294,
"total_value": 9462.1044267119,
"base_cost_quote": 2448.9550898125,
"unrealized_pnl_exit_net": -922.477497295
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 98.376,
"quote_asset_bal": 7849.9430653669,
"total_value_mid": 9408.2189053669,
"total_value_exit_net": 9407.0501984869,
"total_value": 9408.2189053669,
"base_cost_quote": 2534.13229484,
"unrealized_pnl_exit_net": -977.02516172
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 94.335,
"quote_asset_bal": 7916.0699662119,
"total_value_mid": 9459.3905662119,
"total_value_exit_net": 9458.2330757619,
"total_value": 9459.3905662119,
"base_cost_quote": 2468.994137835,
"unrealized_pnl_exit_net": -926.831028285
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 99.895,
"quote_asset_bal": 7826.4306046944,
"total_value_mid": 9414.7611046944,
"total_value_exit_net": 9413.5698568194,
"total_value": 9414.7611046944,
"base_cost_quote": 2559.2390207725,
"unrealized_pnl_exit_net": -972.0997686475
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 105.073,
"quote_asset_bal": 7747.0478940794,
"total_value_mid": 9348.3604140794,
"total_value_exit_net": 9347.1594296894,
"total_value": 9348.3604140794,
"base_cost_quote": 2639.4433289225,
"unrealized_pnl_exit_net": -1039.3317933125
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 100.227,
"quote_asset_bal": 7822.8903041694,
"total_value_mid": 9409.4837141694,
"total_value_exit_net": 9408.2937691119,
"total_value": 9409.4837141694,
"base_cost_quote": 2564.238197345,
"unrealized_pnl_exit_net": -978.8347324025
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 102.124,
"quote_asset_bal": 7793.3111483119,
"total_value_mid": 9400.7429083119,
"total_value_exit_net": 9399.5373344919,
"total_value": 9400.7429083119,
"base_cost_quote": 2594.31343687,
"unrealized_pnl_exit_net": -988.08725069
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 108.309,
"quote_asset_bal": 7698.4259889193,
"total_value_mid": 9324.1440789194,
"total_value_exit_net": 9322.9247903519,
"total_value": 9324.1440789194,
"base_cost_quote": 2689.4993628125,
"unrealized_pnl_exit_net": -1065.00056138
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 113.741,
"quote_asset_bal": 7618.7110371119,
"total_value_mid": 9267.9555371119,
"total_value_exit_net": 9266.7186037369,
"total_value": 9267.9555371119,
"base_cost_quote": 2769.67638051,
"unrealized_pnl_exit_net": -1121.668813885
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 111.689,
"quote_asset_bal": 7649.2735660944,
"total_value_mid": 9281.0498560944,
"total_value_exit_net": 9279.8260238769,
"total_value": 9281.0498560944,
"base_cost_quote": 2739.6112385525,
"unrealized_pnl_exit_net": -1109.05878077
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 111.689,
"quote_asset_bal": 7650.0426634769,
"total_value_mid": 9282.9358434769,
"total_value_exit_net": 9281.7111735919,
"total_value": 9282.9358434769,
"base_cost_quote": 2739.600980865,
"unrealized_pnl_exit_net": -1107.93247075
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 112.026,
"quote_asset_bal": 7645.5484784894,
"total_value_mid": 9294.5711984894,
"total_value_exit_net": 9293.3344314494,
"total_value": 9294.5711984894,
"base_cost_quote": 2744.6195719875,
"unrealized_pnl_exit_net": -1096.8336190275
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 91.019,
"quote_asset_bal": 7977.7383299669,
"total_value_mid": 9512.3186699669,
"total_value_exit_net": 9511.1677347119,
"total_value": 9512.3186699669,
"base_cost_quote": 2413.865102045,
"unrealized_pnl_exit_net": -880.4356973
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 80.948,
"quote_asset_bal": 8155.2592104544,
"total_value_mid": 9616.3706104544,
"total_value_exit_net": 9615.2747769044,
"total_value": 9616.3706104544,
"base_cost_quote": 2238.405445925,
"unrealized_pnl_exit_net": -778.389879475
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 72.682,
"quote_asset_bal": 8312.4492644894,
"total_value_mid": 9739.1969244894,
"total_value_exit_net": 9738.1268637444,
"total_value": 9739.1969244894,
"base_cost_quote": 2082.978403005,
"unrealized_pnl_exit_net": -657.30080375
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 76.334,
"quote_asset_bal": 8243.6261908269,
"total_value_mid": 9680.9954108269,
"total_value_exit_net": 9679.9173839119,
"total_value": 9680.9954108269,
"base_cost_quote": 2153.148150875,
"unrealized_pnl_exit_net": -716.85695779
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 53.786,
"quote_asset_bal": 8733.7209611945,
"total_value_mid": 9934.7623411945,
"total_value_exit_net": 9933.8615601595,
"total_value": 9934.7623411945,
"base_cost_quote": 1666.7649068275,
"unrealized_pnl_exit_net": -466.6243078625
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 52.691,
"quote_asset_bal": 8760.9820971145,
"total_value_mid": 9932.3030271145,
"total_value_exit_net": 9931.424536417,
"total_value": 9932.3030271145,
"base_cost_quote": 1641.7069674575,
"unrealized_pnl_exit_net": -471.264528155
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 58.032,
"quote_asset_bal": 8646.865555197,
"total_value_mid": 9869.019475197,
"total_value_exit_net": 9868.102859757,
"total_value": 9869.019475197,
"base_cost_quote": 1757.019557085,
"unrealized_pnl_exit_net": -535.782252525
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 67.038,
"quote_asset_bal": 8467.8815157994,
"total_value_mid": 9766.4075757994,
"total_value_exit_net": 9765.4336812544,
"total_value": 9766.4075757994,
"base_cost_quote": 1937.5017472825,
"unrealized_pnl_exit_net": -639.9495818275
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 68.331,
"quote_asset_bal": 8443.8278549869,
"total_value_mid": 9736.6503749869,
"total_value_exit_net": 9735.6807580969,
"total_value": 9736.6503749869,
"base_cost_quote": 1962.6240548925,
"unrealized_pnl_exit_net": -670.7711517825
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 74.805,
"quote_asset_bal": 8324.2846046419,
"total_value_mid": 9690.2239046419,
"total_value_exit_net": 9689.1994501669,
"total_value": 9690.2239046419,
"base_cost_quote": 2082.9133642625,
"unrealized_pnl_exit_net": -717.9985187375
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 65.758,
"quote_asset_bal": 8496.0194071919,
"total_value_mid": 9772.3821871919,
"total_value_exit_net": 9771.4249151069,
"total_value": 9772.3821871919,
"base_cost_quote": 1912.44033531,
"unrealized_pnl_exit_net": -637.034827395
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 71.899,
"quote_asset_bal": 8381.8875829394,
"total_value_mid": 9709.1431229394,
"total_value_exit_net": 9708.1476812844,
"total_value": 9709.1431229394,
"base_cost_quote": 2027.7473607675,
"unrealized_pnl_exit_net": -701.4872624225
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 71.364,
"quote_asset_bal": 8392.9737537419,
"total_value_mid": 9721.771433742,
"total_value_exit_net": 9720.774835482,
"total_value": 9721.771433742,
"base_cost_quote": 2017.7492478025,
"unrealized_pnl_exit_net": -689.9481660625
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 69.198,
"quote_asset_bal": 8434.5891785745,
"total_value_mid": 9744.5073185745,
"total_value_exit_net": 9743.5248799695,
"total_value": 9744.5073185745,
"base_cost_quote": 1977.6397482225,
"unrealized_pnl_exit_net": -668.7040468275
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 63.296,
"quote_asset_bal": 8550.9938119045,
"total_value_mid": 9822.6104519045,
"total_value_exit_net": 9821.6567394245,
"total_value": 9822.6104519045,
"base_cost_quote": 1862.329920665,
"unrealized_pnl_exit_net": -591.666993145
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 74.109,
"quote_asset_bal": 8346.647357367,
"total_value_mid": 9699.136607367,
"total_value_exit_net": 9698.1222404295,
"total_value": 9699.136607367,
"base_cost_quote": 2067.88074825,
"unrealized_pnl_exit_net": -716.4058651875
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 73.837,
"quote_asset_bal": 8352.3664435895,
"total_value_mid": 9696.1998435895,
"total_value_exit_net": 9695.1919685395,
"total_value": 9696.1998435895,
"base_cost_quote": 2062.8559925075,
"unrealized_pnl_exit_net": -720.0304675575
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 75.234,
"quote_asset_bal": 8328.0408582495,
"total_value_mid": 9701.0613582495,
"total_value_exit_net": 9700.0315928745,
"total_value": 9701.0613582495,
"base_cost_quote": 2087.9164137375,
"unrealized_pnl_exit_net": -715.9256791125
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 74.692,
"quote_asset_bal": 8338.612727677,
"total_value_mid": 9692.031767677,
"total_value_exit_net": 9691.016703397,
"total_value": 9692.031767677,
"base_cost_quote": 2077.8975652325,
"unrealized_pnl_exit_net": -725.4935895125
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 74.124,
"quote_asset_bal": 8349.2954485645,
"total_value_mid": 9706.5058885645,
"total_value_exit_net": 9705.4879807345,
"total_value": 9706.5058885645,
"base_cost_quote": 2067.8935078125,
"unrealized_pnl_exit_net": -711.7009756425
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 65.59,
"quote_asset_bal": 8511.0032911345,
"total_value_mid": 9774.2666911345,
"total_value_exit_net": 9773.3192435845,
"total_value": 9774.2666911345,
"base_cost_quote": 1907.464626325,
"unrealized_pnl_exit_net": -645.148673875
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 78.115,
"quote_asset_bal": 8281.407135032,
"total_value_mid": 9664.823785032,
"total_value_exit_net": 9663.7862225445,
"total_value": 9664.823785032,
"base_cost_quote": 2138.057681505,
"unrealized_pnl_exit_net": -755.6785939925
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 91.843,
"quote_asset_bal": 8052.423498312,
"total_value_mid": 9518.237778312,
"total_value_exit_net": 9517.138417602,
"total_value": 9518.237778312,
"base_cost_quote": 2368.62349627,
"unrealized_pnl_exit_net": -903.90857698
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 89.655,
"quote_asset_bal": 8088.6722021245,
"total_value_mid": 9539.2901021245,
"total_value_exit_net": 9538.2021386995,
"total_value": 9539.2901021245,
"base_cost_quote": 2333.5737386525,
"unrealized_pnl_exit_net": -884.0438020775
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 90.596,
"quote_asset_bal": 8074.228604297,
"total_value_mid": 9536.448044297,
"total_value_exit_net": 9535.351379717,
"total_value": 9536.448044297,
"base_cost_quote": 2348.6073854375,
"unrealized_pnl_exit_net": -887.4846100175
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 86.924,
"quote_asset_bal": 8135.047026117,
"total_value_mid": 9573.639226117,
"total_value_exit_net": 9572.560281967,
"total_value": 9573.639226117,
"base_cost_quote": 2288.4479396675,
"unrealized_pnl_exit_net": -850.9346838175
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 86.621,
"quote_asset_bal": 8140.7909392745,
"total_value_mid": 9577.8333292745,
"total_value_exit_net": 9576.755547482,
"total_value": 9577.8333292745,
"base_cost_quote": 2283.4401666525,
"unrealized_pnl_exit_net": -847.475558445
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 88.176,
"quote_asset_bal": 8116.561381142,
"total_value_mid": 9545.894341142,
"total_value_exit_net": 9544.822341422,
"total_value": 9545.894341142,
"base_cost_quote": 2308.5081535525,
"unrealized_pnl_exit_net": -880.2471932725
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 95.555,
"quote_asset_bal": 8002.2395417995,
"total_value_mid": 9451.8088917995,
"total_value_exit_net": 9450.721714787,
"total_value": 9451.8088917995,
"base_cost_quote": 2423.761799005,
"unrealized_pnl_exit_net": -975.2796260175
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 95.53,
"quote_asset_bal": 8002.7182901045,
"total_value_mid": 9481.5226901045,
"total_value_exit_net": 9480.4135868045,
"total_value": 9481.5226901045,
"base_cost_quote": 2423.77739069,
"unrealized_pnl_exit_net": -946.08209399
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 88.868,
"quote_asset_bal": 8108.458961007,
"total_value_mid": 9552.563961007,
"total_value_exit_net": 9551.480882257,
"total_value": 9552.563961007,
"base_cost_quote": 2318.534057345,
"unrealized_pnl_exit_net": -875.512136095
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 89.481,
"quote_asset_bal": 8098.810295867,
"total_value_mid": 9550.192115867,
"total_value_exit_net": 9549.103579502,
"total_value": 9550.192115867,
"base_cost_quote": 2328.53973598,
"unrealized_pnl_exit_net": -878.246452345
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 86.115,
"quote_asset_bal": 8154.564341317,
"total_value_mid": 9599.574041317,
"total_value_exit_net": 9598.490284042,
"total_value": 9599.574041317,
"base_cost_quote": 2273.40893887,
"unrealized_pnl_exit_net": -829.482996145
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 79.948,
"quote_asset_bal": 8260.941811727,
"total_value_mid": 9655.234931727,
"total_value_exit_net": 9654.189211887,
"total_value": 9655.234931727,
"base_cost_quote": 2168.12815746,
"unrealized_pnl_exit_net": -774.8807573
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 86.091,
"quote_asset_bal": 8156.4793082195,
"total_value_mid": 9597.6426482195,
"total_value_exit_net": 9596.5617757145,
"total_value": 9597.6426482195,
"base_cost_quote": 2273.388463525,
"unrealized_pnl_exit_net": -833.30599603
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 94.111,
"quote_asset_bal": 8026.972379662,
"total_value_mid": 9492.280649662,
"total_value_exit_net": 9491.1816684595,
"total_value": 9492.280649662,
"base_cost_quote": 2403.706688945,
"unrealized_pnl_exit_net": -939.4974001475
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 95.735,
"quote_asset_bal": 8003.129893787,
"total_value_mid": 9456.387193787,
"total_value_exit_net": 9455.297250812,
"total_value": 9456.387193787,
"base_cost_quote": 2428.80175614,
"unrealized_pnl_exit_net": -976.634399115
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 99.423,
"quote_asset_bal": 7948.325299342,
"total_value_mid": 9424.756849342,
"total_value_exit_net": 9423.6495256795,
"total_value": 9424.756849342,
"base_cost_quote": 2483.948224995,
"unrealized_pnl_exit_net": -1008.6239986575
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 99.756,
"quote_asset_bal": 7943.6527478995,
"total_value_mid": 9417.0488678995,
"total_value_exit_net": 9415.9438208095,
"total_value": 9417.0488678995,
"base_cost_quote": 2488.9397958675,
"unrealized_pnl_exit_net": -1016.6487229575
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 99.739,
"quote_asset_bal": 7944.259165767,
"total_value_mid": 9414.412025767,
"total_value_exit_net": 9413.309411122,
"total_value": 9414.412025767,
"base_cost_quote": 2488.95623819,
"unrealized_pnl_exit_net": -1019.905992835
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 105.25,
"quote_asset_bal": 7864.7719310095,
"total_value_mid": 9361.4269310095,
"total_value_exit_net": 9360.3044397595,
"total_value": 9361.4269310095,
"base_cost_quote": 2569.1247495125,
"unrealized_pnl_exit_net": -1073.5922407625
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 104.196,
"quote_asset_bal": 7880.6208184395,
"total_value_mid": 9380.0012584395,
"total_value_exit_net": 9378.8767231095,
"total_value": 9380.0012584395,
"base_cost_quote": 2554.0951257425,
"unrealized_pnl_exit_net": -1055.8392210725
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 105.241,
"quote_asset_bal": 7865.9995905545,
"total_value_mid": 9361.4742005545,
"total_value_exit_net": 9360.352594597,
"total_value": 9361.4742005545,
"base_cost_quote": 2569.1226079075,
"unrealized_pnl_exit_net": -1074.769603865
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 108.515,
"quote_asset_bal": 7821.4028932795,
"total_value_mid": 9318.9098932795,
"total_value_exit_net": 9317.7867630295,
"total_value": 9318.9098932795,
"base_cost_quote": 2614.2386796025,
"unrealized_pnl_exit_net": -1117.8548098525
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 110.711,
"quote_asset_bal": 7791.9157239945,
"total_value_mid": 9245.5511539945,
"total_value_exit_net": 9244.460927422,
"total_value": 9245.5511539945,
"base_cost_quote": 2644.2942043525,
"unrealized_pnl_exit_net": -1191.749000925
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 116.118,
"quote_asset_bal": 7723.053503502,
"total_value_mid": 9187.301483502,
"total_value_exit_net": 9186.203297517,
"total_value": 9187.301483502,
"base_cost_quote": 2714.462901435,
"unrealized_pnl_exit_net": -1251.31310742
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 104.822,
"quote_asset_bal": 7874.414127592,
"total_value_mid": 9341.922127592,
"total_value_exit_net": 9340.821496592,
"total_value": 9341.922127592,
"base_cost_quote": 2564.134479615,
"unrealized_pnl_exit_net": -1097.727110615
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 105.876,
"quote_asset_bal": 7859.940747727,
"total_value_mid": 9341.145987727,
"total_value_exit_net": 9340.035083797,
"total_value": 9341.145987727,
"base_cost_quote": 2579.178474155,
"unrealized_pnl_exit_net": -1099.084138085
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 114.751,
"quote_asset_bal": 7740.2302366995,
"total_value_mid": 9245.7633566995,
"total_value_exit_net": 9244.6342068595,
"total_value": 9245.7633566995,
"base_cost_quote": 2699.4333477175,
"unrealized_pnl_exit_net": -1195.0293775575
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 115.918,
"quote_asset_bal": 7725.901109002,
"total_value_mid": 9205.014789002,
"total_value_exit_net": 9203.905453742,
"total_value": 9205.014789002,
"base_cost_quote": 2714.46600376,
"unrealized_pnl_exit_net": -1236.46165902
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 114.348,
"quote_asset_bal": 7746.552353272,
"total_value_mid": 9234.2198332721,
"total_value_exit_net": 9233.1040826621,
"total_value": 9234.2198332721,
"base_cost_quote": 2694.45536703,
"unrealized_pnl_exit_net": -1207.90363764
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 109.811,
"quote_asset_bal": 7807.084925567,
"total_value_mid": 9286.2390955671,
"total_value_exit_net": 9285.1297299396,
"total_value": 9286.2390955671,
"base_cost_quote": 2634.30748993,
"unrealized_pnl_exit_net": -1156.2626855575
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 107.237,
"quote_asset_bal": 7842.6456760521,
"total_value_mid": 9324.6610160521,
"total_value_exit_net": 9323.5495045471,
"total_value": 9324.6610160521,
"base_cost_quote": 2599.214009545,
"unrealized_pnl_exit_net": -1118.31018105
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 115.446,
"quote_asset_bal": 7733.1818237621,
"total_value_mid": 9221.2807637621,
"total_value_exit_net": 9220.1646895571,
"total_value": 9221.2807637621,
"base_cost_quote": 2709.44243891,
"unrealized_pnl_exit_net": -1222.459573115
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 123.022,
"quote_asset_bal": 7638.5984423196,
"total_value_mid": 9151.7690423196,
"total_value_exit_net": 9150.6341643696,
"total_value": 9151.7690423196,
"base_cost_quote": 2804.6323478375,
"unrealized_pnl_exit_net": -1292.5966257875
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 114.345,
"quote_asset_bal": 7749.5268194096,
"total_value_mid": 9266.8849694096,
"total_value_exit_net": 9265.7469507971,
"total_value": 9266.8849694096,
"base_cost_quote": 2694.4277963675,
"unrealized_pnl_exit_net": -1178.20766498
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 114.704,
"quote_asset_bal": 7745.1878758596,
"total_value_mid": 9267.3099558596,
"total_value_exit_net": 9266.1683642996,
"total_value": 9267.3099558596,
"base_cost_quote": 2699.4292846725,
"unrealized_pnl_exit_net": -1178.4487962325
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 122.149,
"quote_asset_bal": 7650.4973174746,
"total_value_mid": 9173.6953474746,
"total_value_exit_net": 9172.5529489521,
"total_value": 9173.6953474746,
"base_cost_quote": 2794.6223059325,
"unrealized_pnl_exit_net": -1272.566674455
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 118.562,
"quote_asset_bal": 7696.0298382121,
"total_value_mid": 9197.0247582121,
"total_value_exit_net": 9195.8990120221,
"total_value": 9197.0247582121,
"base_cost_quote": 2749.541630765,
"unrealized_pnl_exit_net": -1249.672456955
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 119.334,
"quote_asset_bal": 7686.5456701471,
"total_value_mid": 9200.8941301471,
"total_value_exit_net": 9199.7583688021,
"total_value": 9200.8941301471,
"base_cost_quote": 2759.555295385,
"unrealized_pnl_exit_net": -1246.34259673
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 121.715,
"quote_asset_bal": 7657.0562108321,
"total_value_mid": 9185.7966108321,
"total_value_exit_net": 9184.6500555321,
"total_value": 9185.7966108321,
"base_cost_quote": 2789.62052741,
"unrealized_pnl_exit_net": -1262.02668271
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 119.328,
"quote_asset_bal": 7687.6839716896,
"total_value_mid": 9207.9226916896,
"total_value_exit_net": 9206.7825126496,
"total_value": 9207.9226916896,
"base_cost_quote": 2759.5490607125,
"unrealized_pnl_exit_net": -1240.4505197525
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 109.799,
"quote_asset_bal": 7813.7050066096,
"total_value_mid": 9299.2854766096,
"total_value_exit_net": 9298.1712912571,
"total_value": 9299.2854766096,
"base_cost_quote": 2634.3009350175,
"unrealized_pnl_exit_net": -1149.83465037
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 98.396,
"quote_asset_bal": 7974.9347999571,
"total_value_mid": 9409.5484799571,
"total_value_exit_net": 9408.4725196971,
"total_value": 9409.5484799571,
"base_cost_quote": 2473.930877615,
"unrealized_pnl_exit_net": -1040.393157875
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 98.749,
"quote_asset_bal": 7971.2357863821,
"total_value_mid": 9407.0462463821,
"total_value_exit_net": 9405.9693885371,
"total_value": 9407.0462463821,
"base_cost_quote": 2478.945195535,
"unrealized_pnl_exit_net": -1044.21159338
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 103.247,
"quote_asset_bal": 7907.0459811021,
"total_value_mid": 9382.4456111021,
"total_value_exit_net": 9381.3390613796,
"total_value": 9382.4456111021,
"base_cost_quote": 2544.041220965,
"unrealized_pnl_exit_net": -1069.7481406875
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 98.082,
"quote_asset_bal": 7983.1229784421,
"total_value_mid": 9426.8900184421,
"total_value_exit_net": 9425.8071931621,
"total_value": 9426.8900184421,
"base_cost_quote": 2468.897225205,
"unrealized_pnl_exit_net": -1026.213010485
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 99.11,
"quote_asset_bal": 7969.3620351771,
"total_value_mid": 9431.2345351771,
"total_value_exit_net": 9430.1381308021,
"total_value": 9431.2345351771,
"base_cost_quote": 2483.916361115,
"unrealized_pnl_exit_net": -1023.14026549
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 94.401,
"quote_asset_bal": 8040.7334754796,
"total_value_mid": 9465.2445654796,
"total_value_exit_net": 9464.1761821621,
"total_value": 9465.2445654796,
"base_cost_quote": 2413.7508063875,
"unrealized_pnl_exit_net": -990.308099705
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 91.148,
"quote_asset_bal": 8092.2479331046,
"total_value_mid": 9528.7404131046,
"total_value_exit_net": 9527.6630437446,
"total_value": 9528.7404131046,
"base_cost_quote": 2363.652710975,
"unrealized_pnl_exit_net": -928.237600335
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 88.312,
"quote_asset_bal": 8138.9606871021,
"total_value_mid": 9555.4851671021,
"total_value_exit_net": 9554.4227737421,
"total_value": 9555.4851671021,
"base_cost_quote": 2318.5591061175,
"unrealized_pnl_exit_net": -903.0970194775
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 85.022,
"quote_asset_bal": 8196.4529517695,
"total_value_mid": 9580.6111117695,
"total_value_exit_net": 9579.5729931495,
"total_value": 9580.6111117695,
"base_cost_quote": 2263.4080738425,
"unrealized_pnl_exit_net": -880.2880324625
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 82.577,
"quote_asset_bal": 8237.815402067,
"total_value_mid": 9601.987442067,
"total_value_exit_net": 9600.964313037,
"total_value": 9601.987442067,
"base_cost_quote": 2223.3499927975,
"unrealized_pnl_exit_net": -860.2010818275
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 77.512,
"quote_asset_bal": 8324.3799938895,
"total_value_mid": 9656.0361538895,
"total_value_exit_net": 9655.0374117695,
"total_value": 9656.0361538895,
"base_cost_quote": 2138.1342088575,
"unrealized_pnl_exit_net": -807.4767909775
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 78.35,
"quote_asset_bal": 8310.765844007,
"total_value_mid": 9662.303344007,
"total_value_exit_net": 9661.289690882,
"total_value": 9662.303344007,
"base_cost_quote": 2153.137342775,
"unrealized_pnl_exit_net": -802.6134959
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 78.351,
"quote_asset_bal": 8312.5588186644,
"total_value_mid": 9671.1651586644,
"total_value_exit_net": 9670.1462039094,
"total_value": 9671.1651586644,
"base_cost_quote": 2153.128175905,
"unrealized_pnl_exit_net": -795.54079066
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 92.637,
"quote_asset_bal": 8078.2501381469,
"total_value_mid": 9537.2828881469,
"total_value_exit_net": 9536.1886135844,
"total_value": 9537.2828881469,
"base_cost_quote": 2388.7142230225,
"unrealized_pnl_exit_net": -930.775747585
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 95.831,
"quote_asset_bal": 8029.3587047744,
"total_value_mid": 9508.9893447744,
"total_value_exit_net": 9507.8796217944,
"total_value": 9508.9893447744,
"base_cost_quote": 2438.832453525,
"unrealized_pnl_exit_net": -960.311536505
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 89.157,
"quote_asset_bal": 8135.7901970769,
"total_value_mid": 9557.8443470769,
"total_value_exit_net": 9556.7778064644,
"total_value": 9557.8443470769,
"base_cost_quote": 2333.5884496775,
"unrealized_pnl_exit_net": -912.60084029
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 91.044,
"quote_asset_bal": 8106.0413144944,
"total_value_mid": 9549.0887144944,
"total_value_exit_net": 9548.0064289444,
"total_value": 9549.0887144944,
"base_cost_quote": 2363.6796411575,
"unrealized_pnl_exit_net": -921.7145267075
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 86.365,
"quote_asset_bal": 8181.8704736444,
"total_value_mid": 9591.3472736444,
"total_value_exit_net": 9590.2901660444,
"total_value": 9591.3472736444,
"base_cost_quote": 2288.4754602925,
"unrealized_pnl_exit_net": -880.0557678925
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 96.084,
"quote_asset_bal": 8027.3226287469,
"total_value_mid": 9512.7812687469,
"total_value_exit_net": 9511.6671747669,
"total_value": 9512.7812687469,
"base_cost_quote": 2443.8358532625,
"unrealized_pnl_exit_net": -959.4913072425
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 96.122,
"quote_asset_bal": 8028.0321927669,
"total_value_mid": 9493.8926927669,
"total_value_exit_net": 9492.7932973919,
"total_value": 9493.8926927669,
"base_cost_quote": 2443.8386353475,
"unrealized_pnl_exit_net": -979.0775307225
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 100.809,
"quote_asset_bal": 7958.8064442369,
"total_value_mid": 9465.9009942369,
"total_value_exit_net": 9464.7706733244,
"total_value": 9465.9009942369,
"base_cost_quote": 2514.0266168825,
"unrealized_pnl_exit_net": -1008.062387795
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 106.005,
"quote_asset_bal": 7884.1702421469,
"total_value_mid": 9375.6605921469,
"total_value_exit_net": 9374.5419743844,
"total_value": 9375.6605921469,
"base_cost_quote": 2589.2205300525,
"unrealized_pnl_exit_net": -1098.848797815
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 111.055,
"quote_asset_bal": 7815.2903683769,
"total_value_mid": 9324.5278183769,
"total_value_exit_net": 9323.3958902894,
"total_value": 9324.5278183769,
"base_cost_quote": 2659.3696824875,
"unrealized_pnl_exit_net": -1151.264160575
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 112.175,
"quote_asset_bal": 7801.0458713469,
"total_value_mid": 9303.0691213469,
"total_value_exit_net": 9301.9426039094,
"total_value": 9303.0691213469,
"base_cost_quote": 2674.4346727625,
"unrealized_pnl_exit_net": -1173.5379402
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 106.712,
"quote_asset_bal": 7876.7814575344,
"total_value_mid": 9364.3467375344,
"total_value_exit_net": 9363.2310635744,
"total_value": 9364.3467375344,
"base_cost_quote": 2599.22571832,
"unrealized_pnl_exit_net": -1112.77611228
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 104.226,
"quote_asset_bal": 7912.2358407244,
"total_value_mid": 9401.6253807244,
"total_value_exit_net": 9400.5083385694,
"total_value": 9401.6253807244,
"base_cost_quote": 2564.16668375,
"unrealized_pnl_exit_net": -1075.894185905
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 109.591,
"quote_asset_bal": 7837.7775078094,
"total_value_mid": 9340.2701178094,
"total_value_exit_net": 9339.1432483519,
"total_value": 9340.2701178094,
"base_cost_quote": 2639.32100725,
"unrealized_pnl_exit_net": -1137.9552667075
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 108.171,
"quote_asset_bal": 7858.4263320794,
"total_value_mid": 9367.4117820794,
"total_value_exit_net": 9366.2800429919,
"total_value": 9367.4117820794,
"base_cost_quote": 2619.280167885,
"unrealized_pnl_exit_net": -1111.4264569725
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 101.155,
"quote_asset_bal": 7959.1709959569,
"total_value_mid": 9446.1494959569,
"total_value_exit_net": 9445.0342620819,
"total_value": 9446.1494959569,
"base_cost_quote": 2519.0526035475,
"unrealized_pnl_exit_net": -1033.1893374225
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 97.812,
"quote_asset_bal": 8010.1361023969,
"total_value_mid": 9491.0097823969,
"total_value_exit_net": 9489.8991271369,
"total_value": 9491.0097823969,
"base_cost_quote": 2468.9324415975,
"unrealized_pnl_exit_net": -989.1694168575
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 93.891,
"quote_asset_bal": 8070.7025545269,
"total_value_mid": 9541.9745245269,
"total_value_exit_net": 9540.8710705494,
"total_value": 9541.9745245269,
"base_cost_quote": 2408.7891279175,
"unrealized_pnl_exit_net": -938.620611895
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 96.761,
"quote_asset_bal": 8026.4032745869,
"total_value_mid": 9531.0368245869,
"total_value_exit_net": 9529.9083494244,
"total_value": 9531.0368245869,
"base_cost_quote": 2453.89956539,
"unrealized_pnl_exit_net": -950.3944905525
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 101.351,
"quote_asset_bal": 7956.9542138519,
"total_value_mid": 9463.0300738519,
"total_value_exit_net": 9461.9005169569,
"total_value": 9463.0300738519,
"base_cost_quote": 2524.058244965,
"unrealized_pnl_exit_net": -1019.11194186
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 93.802,
"quote_asset_bal": 8073.0580915544,
"total_value_mid": 9563.5718715544,
"total_value_exit_net": 9562.4539862194,
"total_value": 9563.5718715544,
"base_cost_quote": 2408.7756778375,
"unrealized_pnl_exit_net": -919.3797831725
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 86.044,
"quote_asset_bal": 8199.5291417619,
"total_value_mid": 9616.6738217619,
"total_value_exit_net": 9615.6109632519,
"total_value": 9616.6738217619,
"base_cost_quote": 2283.46223319,
"unrealized_pnl_exit_net": -867.3804117
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 94.697,
"quote_asset_bal": 8065.3827740244,
"total_value_mid": 9494.3605040244,
"total_value_exit_net": 9493.2887707269,
"total_value": 9494.3605040244,
"base_cost_quote": 2418.7979288925,
"unrealized_pnl_exit_net": -990.89193219
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 96.68,
"quote_asset_bal": 8036.1310283243,
"total_value_mid": 9471.8290283243,
"total_value_exit_net": 9470.7522548244,
"total_value": 9471.8290283243,
"base_cost_quote": 2448.9019700025,
"unrealized_pnl_exit_net": -1014.2807435025
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 94.343,
"quote_asset_bal": 8071.6407805668,
"total_value_mid": 9510.3715305668,
"total_value_exit_net": 9509.2924825043,
"total_value": 9510.3715305668,
"base_cost_quote": 2413.81376357,
"unrealized_pnl_exit_net": -976.1620616325
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 94.927,
"quote_asset_bal": 8062.0572820718,
"total_value_mid": 9523.9330820718,
"total_value_exit_net": 9522.8366752218,
"total_value": 9523.9330820718,
"base_cost_quote": 2423.81429835,
"unrealized_pnl_exit_net": -963.0349052
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 100.935,
"quote_asset_bal": 7972.3882540293,
"total_value_mid": 9453.1047040293,
"total_value_exit_net": 9451.9941666918,
"total_value": 9453.1047040293,
"base_cost_quote": 2514.0462115675,
"unrealized_pnl_exit_net": -1034.440298905
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 109.006,
"quote_asset_bal": 7857.8870625669,
"total_value_mid": 9378.5207625669,
"total_value_exit_net": 9377.3802872919,
"total_value": 9378.5207625669,
"base_cost_quote": 2629.266291865,
"unrealized_pnl_exit_net": -1109.77306714
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 101.614,
"quote_asset_bal": 7963.9381947569,
"total_value_mid": 9454.6155747569,
"total_value_exit_net": 9453.4975667219,
"total_value": 9454.6155747569,
"base_cost_quote": 2524.05866528,
"unrealized_pnl_exit_net": -1034.499293315
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 103.343,
"quote_asset_bal": 7939.5984613044,
"total_value_mid": 9427.7376613044,
"total_value_exit_net": 9426.6215569044,
"total_value": 9427.7376613044,
"base_cost_quote": 2549.1072676525,
"unrealized_pnl_exit_net": -1062.0841720525
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 90.628,
"quote_asset_bal": 8136.2119148194,
"total_value_mid": 9591.6975948194,
"total_value_exit_net": 9590.6059805594,
"total_value": 9591.6975948194,
"base_cost_quote": 2353.648213225,
"unrealized_pnl_exit_net": -899.254147485
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 86.619,
"quote_asset_bal": 8202.5194430619,
"total_value_mid": 9638.6624630619,
"total_value_exit_net": 9637.5853557969,
"total_value": 9638.6624630619,
"base_cost_quote": 2288.4594282775,
"unrealized_pnl_exit_net": -853.3935155425
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 89.41,
"quote_asset_bal": 8158.5777474019,
"total_value_mid": 9588.2436474019,
"total_value_exit_net": 9587.1713979769,
"total_value": 9588.2436474019,
"base_cost_quote": 2333.53872241,
"unrealized_pnl_exit_net": -904.945071835
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 103.113,
"quote_asset_bal": 7948.9629728919,
"total_value_mid": 9450.2882528919,
"total_value_exit_net": 9449.1622589319,
"total_value": 9450.2882528919,
"base_cost_quote": 2544.03495627,
"unrealized_pnl_exit_net": -1043.83567023
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 96.368,
"quote_asset_bal": 8050.0593979618,
"total_value_mid": 9512.9256379619,
"total_value_exit_net": 9511.8284882819,
"total_value": 9512.9256379619,
"base_cost_quote": 2443.80756206,
"unrealized_pnl_exit_net": -982.03847174
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 94.405,
"quote_asset_bal": 8080.9724973043,
"total_value_mid": 9531.9773473043,
"total_value_exit_net": 9530.8890936668,
"total_value": 9531.9773473043,
"base_cost_quote": 2413.7351946875,
"unrealized_pnl_exit_net": -963.818598325
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 92.144,
"quote_asset_bal": 8116.6041223093,
"total_value_mid": 9556.8148423093,
"total_value_exit_net": 9555.7346842693,
"total_value": 9556.8148423093,
"base_cost_quote": 2378.6566454925,
"unrealized_pnl_exit_net": -939.5260835325
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 95.419,
"quote_asset_bal": 8067.3009662243,
"total_value_mid": 9489.0440662243,
"total_value_exit_net": 9487.9777588993,
"total_value": 9489.0440662243,
"base_cost_quote": 2428.7809505475,
"unrealized_pnl_exit_net": -1008.1041578725
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 83.977,
"quote_asset_bal": 8248.7680887218,
"total_value_mid": 9616.7534187218,
"total_value_exit_net": 9615.7274297243,
"total_value": 9616.7534187218,
"base_cost_quote": 2248.365830615,
"unrealized_pnl_exit_net": -881.4064896125
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 82.383,
"quote_asset_bal": 8290.1123007093,
"total_value_mid": 9560.4581607093,
"total_value_exit_net": 9559.5054013143,
"total_value": 9560.4581607093,
"base_cost_quote": 2208.20483244,
"unrealized_pnl_exit_net": -938.811731835
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 88.734,
"quote_asset_bal": 8195.6550860668,
"total_value_mid": 9500.9322260668,
"total_value_exit_net": 9499.9532682118,
"total_value": 9500.9322260668,
"base_cost_quote": 2303.4071306525,
"unrealized_pnl_exit_net": -999.1089485075
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 84.712,
"quote_asset_bal": 8256.4300708519,
"total_value_mid": 9538.9697508519,
"total_value_exit_net": 9538.0078460919,
"total_value": 9538.9697508519,
"base_cost_quote": 2243.2775672775,
"unrealized_pnl_exit_net": -961.6997920375
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 83.061,
"quote_asset_bal": 8281.9410121018,
"total_value_mid": 9551.9437021019,
"total_value_exit_net": 9550.9912000844,
"total_value": 9551.9437021019,
"base_cost_quote": 2218.2092401225,
"unrealized_pnl_exit_net": -949.15905214
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 87.021,
"quote_asset_bal": 8222.1159100818,
"total_value_mid": 9514.3777600819,
"total_value_exit_net": 9513.4085636944,
"total_value": 9514.3777600819,
"base_cost_quote": 2278.3501720175,
"unrealized_pnl_exit_net": -987.057518405
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 83.699,
"quote_asset_bal": 8272.6513214568,
"total_value_mid": 9545.7131114568,
"total_value_exit_net": 9544.7583151143,
"total_value": 9545.7131114568,
"base_cost_quote": 2228.2458819625,
"unrealized_pnl_exit_net": -956.138888305
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 84.354,
"quote_asset_bal": 8262.8544322918,
"total_value_mid": 9539.1304522918,
"total_value_exit_net": 9538.1732452768,
"total_value": 9539.1304522918,
"base_cost_quote": 2238.2758988375,
"unrealized_pnl_exit_net": -962.9570858525
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 81.092,
"quote_asset_bal": 8313.2692171794,
"total_value_mid": 9558.8423371794,
"total_value_exit_net": 9557.9081573394,
"total_value": 9558.8423371794,
"base_cost_quote": 2188.167475685,
"unrealized_pnl_exit_net": -943.528535525
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 80.442,
"quote_asset_bal": 8323.6404646344,
"total_value_mid": 9569.6870446344,
"total_value_exit_net": 9568.7525096994,
"total_value": 9569.6870446344,
"base_cost_quote": 2178.166380485,
"unrealized_pnl_exit_net": -933.05433542
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 80.435,
"quote_asset_bal": 8324.2938555344,
"total_value_mid": 9572.6450555344,
"total_value_exit_net": 9571.7087921344,
"total_value": 9572.6450555344,
"base_cost_quote": 2178.14414382,
"unrealized_pnl_exit_net": -930.72920722
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 79.459,
"quote_asset_bal": 8339.7678630019,
"total_value_mid": 9589.6579330019,
"total_value_exit_net": 9588.7205154494,
"total_value": 9589.6579330019,
"base_cost_quote": 2163.1287006775,
"unrealized_pnl_exit_net": -914.17604823
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 78.507,
"quote_asset_bal": 8355.1462395119,
"total_value_mid": 9593.2016295119,
"total_value_exit_net": 9592.2730879694,
"total_value": 9593.2016295119,
"base_cost_quote": 2148.0825245025,
"unrealized_pnl_exit_net": -910.955676045
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 75.67,
"quote_asset_bal": 8400.5657254394,
"total_value_mid": 9612.0424254394,
"total_value_exit_net": 9611.1338179144,
"total_value": 9612.0424254394,
"base_cost_quote": 2102.9700154775,
"unrealized_pnl_exit_net": -892.4019230025
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 77.038,
"quote_asset_bal": 8376.3938296094,
"total_value_mid": 9660.6172896094,
"total_value_exit_net": 9659.6541220144,
"total_value": 9660.6172896094,
"base_cost_quote": 2128.05200287,
"unrealized_pnl_exit_net": -844.791710465
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 85.372,
"quote_asset_bal": 8241.5904437544,
"total_value_mid": 9594.7366437544,
"total_value_exit_net": 9593.7217841044,
"total_value": 9594.7366437544,
"base_cost_quote": 2263.3992272125,
"unrealized_pnl_exit_net": -911.2678868625
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 91.171,
"quote_asset_bal": 8151.9142094894,
"total_value_mid": 9545.0070894894,
"total_value_exit_net": 9543.9622698294,
"total_value": 9545.0070894894,
"base_cost_quote": 2353.6002272625,
"unrealized_pnl_exit_net": -961.5521669225
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 86.317,
"quote_asset_bal": 8227.5499831369,
"total_value_mid": 9591.3585831369,
"total_value_exit_net": 9590.3357266869,
"total_value": 9591.3585831369,
"base_cost_quote": 2278.438248025,
"unrealized_pnl_exit_net": -915.652504475
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 83.174,
"quote_asset_bal": 8278.2923807894,
"total_value_mid": 9612.4033407894,
"total_value_exit_net": 9611.4027575694,
"total_value": 9612.4033407894,
"base_cost_quote": 2228.310520405,
"unrealized_pnl_exit_net": -895.200143625
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 82.548,
"quote_asset_bal": 8288.9222735619,
"total_value_mid": 9619.5960335619,
"total_value_exit_net": 9618.5980282419,
"total_value": 9619.5960335619,
"base_cost_quote": 2218.28618779,
"unrealized_pnl_exit_net": -888.61043311
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 86.054,
"quote_asset_bal": 8234.7082007669,
"total_value_mid": 9584.0349207669,
"total_value_exit_net": 9583.0229257269,
"total_value": 9584.0349207669,
"base_cost_quote": 2273.3592916625,
"unrealized_pnl_exit_net": -925.0445667025
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 83.836,
"quote_asset_bal": 8270.1153193094,
"total_value_mid": 9603.1077193094,
"total_value_exit_net": 9602.1079750094,
"total_value": 9603.1077193094,
"base_cost_quote": 2238.27973171,
"unrealized_pnl_exit_net": -906.28707601
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 87.039,
"quote_asset_bal": 8220.2500952644,
"total_value_mid": 9558.0395252644,
"total_value_exit_net": 9557.0361831919,
"total_value": 9558.0395252644,
"base_cost_quote": 2288.38592319,
"unrealized_pnl_exit_net": -951.5998352625
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 93.38,
"quote_asset_bal": 8125.7227964344,
"total_value_mid": 9465.7257964344,
"total_value_exit_net": 9464.7207941844,
"total_value": 9465.7257964344,
"base_cost_quote": 2383.61152887,
"unrealized_pnl_exit_net": -1044.61353112
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 95.504,
"quote_asset_bal": 8096.1676283444,
"total_value_mid": 9448.5042683444,
"total_value_exit_net": 9447.4900158644,
"total_value": 9448.5042683444,
"base_cost_quote": 2413.67353848,
"unrealized_pnl_exit_net": -1062.35115096
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 97.263,
"quote_asset_bal": 8071.5332563994,
"total_value_mid": 9456.5583763994,
"total_value_exit_net": 9455.5196075594,
"total_value": 9456.5583763994,
"base_cost_quote": 2438.71474531,
"unrealized_pnl_exit_net": -1054.72839415
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 107.191,
"quote_asset_bal": 7937.2454449194,
"total_value_mid": 9346.8070949194,
"total_value_exit_net": 9345.7499236819,
"total_value": 9346.8070949194,
"base_cost_quote": 2573.995349725,
"unrealized_pnl_exit_net": -1165.4908709625
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 98.334,
"quote_asset_bal": 8058.4445001969,
"total_value_mid": 9438.070520197,
"total_value_exit_net": 9437.035800682,
"total_value": 9438.070520197,
"base_cost_quote": 2453.7410766125,
"unrealized_pnl_exit_net": -1075.1497761275
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 98.691,
"quote_asset_bal": 8053.6376406444,
"total_value_mid": 9434.3247306444,
"total_value_exit_net": 9433.2892153269,
"total_value": 9434.3247306444,
"base_cost_quote": 2458.753543145,
"unrealized_pnl_exit_net": -1079.1019684625
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 91.714,
"quote_asset_bal": 8154.8158103569,
"total_value_mid": 9499.3430503569,
"total_value_exit_net": 9498.3346549269,
"total_value": 9499.3430503569,
"base_cost_quote": 2358.5423710925,
"unrealized_pnl_exit_net": -1015.0235265225
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 94.475,
"quote_asset_bal": 8115.2011789545,
"total_value_mid": 9469.9726789545,
"total_value_exit_net": 9468.9566003295,
"total_value": 9469.9726789545,
"base_cost_quote": 2398.63999177,
"unrealized_pnl_exit_net": -1044.884570395
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 94.826,
"quote_asset_bal": 8110.7706418295,
"total_value_mid": 9472.4720018295,
"total_value_exit_net": 9471.4507258095,
"total_value": 9472.4720018295,
"base_cost_quote": 2403.642000465,
"unrealized_pnl_exit_net": -1042.961916485
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 89.662,
"quote_asset_bal": 8186.4916147669,
"total_value_mid": 9538.594574767,
"total_value_exit_net": 9537.580497547,
"total_value": 9538.594574767,
"base_cost_quote": 2328.4943119375,
"unrealized_pnl_exit_net": -977.4054291575
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 87.681,
"quote_asset_bal": 8217.0875499019,
"total_value_mid": 9571.758999902,
"total_value_exit_net": 9570.7429963145,
"total_value": 9571.758999902,
"base_cost_quote": 2298.4199530725,
"unrealized_pnl_exit_net": -944.76450666
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 87.681,
"quote_asset_bal": 8217.6439890545,
"total_value_mid": 9565.3009590545,
"total_value_exit_net": 9564.290216327,
"total_value": 9565.3009590545,
"base_cost_quote": 2298.41628032,
"unrealized_pnl_exit_net": -951.7700530475
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 92.978,
"quote_asset_bal": 8137.7883254295,
"total_value_mid": 9525.0200854295,
"total_value_exit_net": 9523.9796616095,
"total_value": 9525.0200854295,
"base_cost_quote": 2378.580018065,
"unrealized_pnl_exit_net": -992.388681885
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 91.937,
"quote_asset_bal": 8153.328240087,
"total_value_mid": 9532.383240087,
"total_value_exit_net": 9531.348948837,
"total_value": 9532.383240087,
"base_cost_quote": 2363.5686179525,
"unrealized_pnl_exit_net": -985.5479092025
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 86.053,
"quote_asset_bal": 8244.091924267,
"total_value_mid": 9585.658194267,
"total_value_exit_net": 9584.6520195645,
"total_value": 9585.658194267,
"base_cost_quote": 2273.3697995375,
"unrealized_pnl_exit_net": -932.80970424
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 93.962,
"quote_asset_bal": 8124.509391497,
"total_value_mid": 9517.965851497,
"total_value_exit_net": 9516.920759152,
"total_value": 9517.965851497,
"base_cost_quote": 2393.6375127225,
"unrealized_pnl_exit_net": -1001.2261450675
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 91.609,
"quote_asset_bal": 8160.111800662,
"total_value_mid": 9540.659430662,
"total_value_exit_net": 9539.6240199395,
"total_value": 9540.659430662,
"base_cost_quote": 2358.5547603775,
"unrealized_pnl_exit_net": -979.0425411
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 94.628,
"quote_asset_bal": 8115.6528977945,
"total_value_mid": 9511.4158977945,
"total_value_exit_net": 9510.3690755445,
"total_value": 9511.4158977945,
"base_cost_quote": 2403.663176335,
"unrealized_pnl_exit_net": -1008.946998585
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 95.535,
"quote_asset_bal": 8147.326692087,
"total_value_mid": 9156.176292087,
"total_value_exit_net": 9155.419654887,
"total_value": 9156.176292087,
"base_cost_quote": 2373.5612267925,
"unrealized_pnl_exit_net": -1365.4682639925
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 111.109,
"quote_asset_bal": 7979.441947962,
"total_value_mid": 9134.975547962,
"total_value_exit_net": 9134.108897762,
"total_value": 9134.975547962,
"base_cost_quote": 2543.8742458275,
"unrealized_pnl_exit_net": -1389.2072960275
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 98.584,
"quote_asset_bal": 8116.008981797,
"total_value_mid": 9262.540901797,
"total_value_exit_net": 9261.681002857,
"total_value": 9262.540901797,
"base_cost_quote": 2408.6453201425,
"unrealized_pnl_exit_net": -1262.9732990825
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 98.075,
"quote_asset_bal": 8122.5086339745,
"total_value_mid": 9324.9081339745,
"total_value_exit_net": 9324.0063343495,
"total_value": 9324.9081339745,
"base_cost_quote": 2403.6151703575,
"unrealized_pnl_exit_net": -1202.1174699825
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 103.068,
"quote_asset_bal": 8063.6314649645,
"total_value_mid": 9276.7418249645,
"total_value_exit_net": 9275.8319921945,
"total_value": 9276.7418249645,
"base_cost_quote": 2463.72516907,
"unrealized_pnl_exit_net": -1251.52464184
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 109.978,
"quote_asset_bal": 7984.2950670945,
"total_value_mid": 9221.5475670945,
"total_value_exit_net": 9220.6196277195,
"total_value": 9221.5475670945,
"base_cost_quote": 2543.8842733425,
"unrealized_pnl_exit_net": -1307.5597127175
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 119.386,
"quote_asset_bal": 7880.1278279595,
"total_value_mid": 9181.4352279595,
"total_value_exit_net": 9180.4592474095,
"total_value": 9181.4352279595,
"base_cost_quote": 2649.11046384,
"unrealized_pnl_exit_net": -1348.77904439
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 123.145,
"quote_asset_bal": 7841.206152847,
"total_value_mid": 9134.228652847,
"total_value_exit_net": 9133.258885972,
"total_value": 9134.228652847,
"base_cost_quote": 2689.1477392925,
"unrealized_pnl_exit_net": -1397.0950061675
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 123.608,
"quote_asset_bal": 7836.641694827,
"total_value_mid": 9140.706094827,
"total_value_exit_net": 9139.728046527,
"total_value": 9140.706094827,
"base_cost_quote": 2694.1570134325,
"unrealized_pnl_exit_net": -1391.0706617325
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 117.116,
"quote_asset_bal": 7907.2381737345,
"total_value_mid": 9189.6583737345,
"total_value_exit_net": 9188.6965585845,
"total_value": 9189.6583737345,
"base_cost_quote": 2624.058669075,
"unrealized_pnl_exit_net": -1342.600284225
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 118.044,
"quote_asset_bal": 7897.6798751495,
"total_value_mid": 9172.5550751495,
"total_value_exit_net": 9171.5989187495,
"total_value": 9172.5550751495,
"base_cost_quote": 2634.0590537425,
"unrealized_pnl_exit_net": -1360.1400101425
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 120.885,
"quote_asset_bal": 7868.319187117,
"total_value_mid": 9140.029387117,
"total_value_exit_net": 9139.075604467,
"total_value": 9140.029387117,
"base_cost_quote": 2664.1264473875,
"unrealized_pnl_exit_net": -1393.3700300375
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 121.818,
"quote_asset_bal": 7859.1156765795,
"total_value_mid": 9141.8592165795,
"total_value_exit_net": 9140.8971589245,
"total_value": 9141.8592165795,
"base_cost_quote": 2674.150009425,
"unrealized_pnl_exit_net": -1392.36852708
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 118.082,
"quote_asset_bal": 7899.674318707,
"total_value_mid": 9160.790078707,
"total_value_exit_net": 9159.844241887,
"total_value": 9160.790078707,
"base_cost_quote": 2634.0608651,
"unrealized_pnl_exit_net": -1373.89094192
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 118.089,
"quote_asset_bal": 7899.9775355745,
"total_value_mid": 9155.2636055745,
"total_value_exit_net": 9154.322141022,
"total_value": 9155.2636055745,
"base_cost_quote": 2634.0803296875,
"unrealized_pnl_exit_net": -1379.73572424
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 119.988,
"quote_asset_bal": 7880.1216717445,
"total_value_mid": 9148.3948317445,
"total_value_exit_net": 9147.4436268745,
"total_value": 9148.3948317445,
"base_cost_quote": 2654.11937771,
"unrealized_pnl_exit_net": -1386.79742258
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 117.624,
"quote_asset_bal": 7905.509850632,
"total_value_mid": 9169.967850632,
"total_value_exit_net": 9169.019507132,
"total_value": 9169.967850632,
"base_cost_quote": 2629.0543029925,
"unrealized_pnl_exit_net": -1365.5446464925
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 119.99,
"quote_asset_bal": 7880.915201832,
"total_value_mid": 9139.610301832,
"total_value_exit_net": 9138.666280507,
"total_value": 9139.610301832,
"base_cost_quote": 2654.097621405,
"unrealized_pnl_exit_net": -1396.34654273
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 126.34,
"quote_asset_bal": 7816.306302322,
"total_value_mid": 9082.233102322,
"total_value_exit_net": 9081.283657222,
"total_value": 9082.233102322,
"base_cost_quote": 2719.2139520525,
"unrealized_pnl_exit_net": -1454.2365971525
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 125.336,
"quote_asset_bal": 7826.9685049045,
"total_value_mid": 9086.5953049045,
"total_value_exit_net": 9085.6505848045,
"total_value": 9086.5953049045,
"base_cost_quote": 2709.198596165,
"unrealized_pnl_exit_net": -1450.516516265
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 133.531,
"quote_asset_bal": 7747.9944831145,
"total_value_mid": 9009.8624331145,
"total_value_exit_net": 9008.916032152,
"total_value": 9009.8624331145,
"base_cost_quote": 2789.3706501425,
"unrealized_pnl_exit_net": -1528.449101105
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 135.076,
"quote_asset_bal": 7733.620031047,
"total_value_mid": 9011.438991047,
"total_value_exit_net": 9010.480626827,
"total_value": 9011.438991047,
"base_cost_quote": 2804.3667087575,
"unrealized_pnl_exit_net": -1527.5061129775
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 125.794,
"quote_asset_bal": 7824.496418112,
"total_value_mid": 9086.210238112,
"total_value_exit_net": 9085.263952747,
"total_value": 9086.210238112,
"base_cost_quote": 2714.2234719975,
"unrealized_pnl_exit_net": -1453.4559373625
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 106.265,
"quote_asset_bal": 8037.1621774045,
"total_value_mid": 9208.2024774045,
"total_value_exit_net": 9207.3241971795,
"total_value": 9208.2024774045,
"base_cost_quote": 2503.80224435,
"unrealized_pnl_exit_net": -1333.640224575
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 127.739,
"quote_asset_bal": 7818.4129471295,
"total_value_mid": 9033.2108371295,
"total_value_exit_net": 9032.299738712,
"total_value": 9033.2108371295,
"base_cost_quote": 2724.197617,
"unrealized_pnl_exit_net": -1510.3108254175
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 135.261,
"quote_asset_bal": 7750.7983050345,
"total_value_mid": 8987.0838450345,
"total_value_exit_net": 8986.1566308795,
"total_value": 8987.0838450345,
"base_cost_quote": 2794.32437265,
"unrealized_pnl_exit_net": -1558.966046805
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 134.192,
"quote_asset_bal": 7762.1892028719,
"total_value_mid": 9008.8328828719,
"total_value_exit_net": 9007.8979001119,
"total_value": 9008.8328828719,
"base_cost_quote": 2784.312729545,
"unrealized_pnl_exit_net": -1538.604032305
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 122.745,
"quote_asset_bal": 7874.2289521019,
"total_value_mid": 9057.4907521019,
"total_value_exit_net": 9056.6033057519,
"total_value": 9057.4907521019,
"base_cost_quote": 2674.1101695675,
"unrealized_pnl_exit_net": -1491.7358159175
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 112.317,
"quote_asset_bal": 7982.5094787694,
"total_value_mid": 9251.6915787694,
"total_value_exit_net": 9250.7396921944,
"total_value": 9251.6915787694,
"base_cost_quote": 2568.9117298675,
"unrealized_pnl_exit_net": -1300.6815164425
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 80.706,
"quote_asset_bal": 8434.4238229419,
"total_value_mid": 9535.2536629419,
"total_value_exit_net": 9534.4280405619,
"total_value": 9535.2536629419,
"base_cost_quote": 2122.9833142025,
"unrealized_pnl_exit_net": -1022.9790965825
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 87.882,
"quote_asset_bal": 8347.6855287394,
"total_value_mid": 9419.8459287394,
"total_value_exit_net": 9419.0418084394,
"total_value": 9419.8459287394,
"base_cost_quote": 2213.179500645,
"unrealized_pnl_exit_net": -1141.823220945
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 84.666,
"quote_asset_bal": 8389.7626122969,
"total_value_mid": 9436.2343722969,
"total_value_exit_net": 9435.4495184769,
"total_value": 9436.2343722969,
"base_cost_quote": 2173.090256245,
"unrealized_pnl_exit_net": -1127.403350065
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 97.243,
"quote_asset_bal": 8240.5153314544,
"total_value_mid": 9349.0855314544,
"total_value_exit_net": 9348.2541038044,
"total_value": 9349.0855314544,
"base_cost_quote": 2323.382651065,
"unrealized_pnl_exit_net": -1215.643878715
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 104.453,
"quote_asset_bal": 8161.1820537394,
"total_value_mid": 9301.8088137394,
"total_value_exit_net": 9300.9533436694,
"total_value": 9301.8088137394,
"base_cost_quote": 2403.5431163575,
"unrealized_pnl_exit_net": -1263.7718264275
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 107.334,
"quote_asset_bal": 8132.3567315494,
"total_value_mid": 9262.5837515494,
"total_value_exit_net": 9261.7360812844,
"total_value": 9262.5837515494,
"base_cost_quote": 2433.5828492725,
"unrealized_pnl_exit_net": -1304.2034995375
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 113.623,
"quote_asset_bal": 8068.5096856644,
"total_value_mid": 9202.4672256644,
"total_value_exit_net": 9201.6167575094,
"total_value": 9202.4672256644,
"base_cost_quote": 2498.70874709,
"unrealized_pnl_exit_net": -1365.601675245
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 112.615,
"quote_asset_bal": 8079.1406951944,
"total_value_mid": 9232.3182951944,
"total_value_exit_net": 9231.4534119944,
"total_value": 9232.3182951944,
"base_cost_quote": 2488.7037389575,
"unrealized_pnl_exit_net": -1336.3910221575
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 117.124,
"quote_asset_bal": 8034.9740690219,
"total_value_mid": 9196.8441490219,
"total_value_exit_net": 9195.9727464619,
"total_value": 9196.8441490219,
"base_cost_quote": 2533.771884735,
"unrealized_pnl_exit_net": -1372.773207295
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 117.164,
"quote_asset_bal": 8036.0896250844,
"total_value_mid": 9179.6102650844,
"total_value_exit_net": 9178.7526246044,
"total_value": 9179.6102650844,
"base_cost_quote": 2533.766320565,
"unrealized_pnl_exit_net": -1391.103321045
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 116.597,
"quote_asset_bal": 8042.4134173869,
"total_value_mid": 9197.8896873869,
"total_value_exit_net": 9197.0230801844,
"total_value": 9197.8896873869,
"base_cost_quote": 2528.76691382,
"unrealized_pnl_exit_net": -1374.1572510225
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 118.154,
"quote_asset_bal": 8028.5612937743,
"total_value_mid": 9186.4704937744,
"total_value_exit_net": 9185.6020618744,
"total_value": 9186.4704937744,
"base_cost_quote": 2543.7902028425,
"unrealized_pnl_exit_net": -1386.7494347425
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 124.419,
"quote_asset_bal": 7969.7911573393,
"total_value_mid": 9138.0855673393,
"total_value_exit_net": 9137.2093465318,
"total_value": 9138.0855673393,
"base_cost_quote": 2603.909368425,
"unrealized_pnl_exit_net": -1436.4911792325
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 134.427,
"quote_asset_bal": 7881.7725325868,
"total_value_mid": 9039.1890025868,
"total_value_exit_net": 9038.3209402343,
"total_value": 9039.1890025868,
"base_cost_quote": 2694.0615218675,
"unrealized_pnl_exit_net": -1537.51311422
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 136.192,
"quote_asset_bal": 7867.6163213543,
"total_value_mid": 9025.2483213543,
"total_value_exit_net": 9024.3800973543,
"total_value": 9025.2483213543,
"base_cost_quote": 2709.0859817675,
"unrealized_pnl_exit_net": -1552.3222057675
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 135.022,
"quote_asset_bal": 7878.0567805668,
"total_value_mid": 9020.3429005668,
"total_value_exit_net": 9019.4861859768,
"total_value": 9020.3429005668,
"base_cost_quote": 2699.076170035,
"unrealized_pnl_exit_net": -1557.646764625
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 132.675,
"quote_asset_bal": 7899.0156902793,
"total_value_mid": 9054.6149402793,
"total_value_exit_net": 9053.7482408418,
"total_value": 9054.6149402793,
"base_cost_quote": 2679.0274747825,
"unrealized_pnl_exit_net": -1524.29492422
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 131.506,
"quote_asset_bal": 7909.7592231818,
"total_value_mid": 9056.4915431818,
"total_value_exit_net": 9055.6314939418,
"total_value": 9056.4915431818,
"base_cost_quote": 2669.010237485,
"unrealized_pnl_exit_net": -1523.137966725
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 130.374,
"quote_asset_bal": 7920.3134090168,
"total_value_mid": 9061.0859090168,
"total_value_exit_net": 9060.2303296418,
"total_value": 9061.0859090168,
"base_cost_quote": 2658.9908585825,
"unrealized_pnl_exit_net": -1519.0739379575
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 128.145,
"quote_asset_bal": 7940.9357102318,
"total_value_mid": 9086.5520102318,
"total_value_exit_net": 9085.6927980068,
"total_value": 9086.5520102318,
"base_cost_quote": 2638.95729467,
"unrealized_pnl_exit_net": -1494.200206895
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 129.851,
"quote_asset_bal": 7926.3421908893,
"total_value_mid": 9074.2250308893,
"total_value_exit_net": 9073.3641187593,
"total_value": 9074.2250308893,
"base_cost_quote": 2653.979652995,
"unrealized_pnl_exit_net": -1506.957725125
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 131.546,
"quote_asset_bal": 7911.8783813492,
"total_value_mid": 9062.9058813493,
"total_value_exit_net": 9062.0426107243,
"total_value": 9062.9058813493,
"base_cost_quote": 2669.00917669,
"unrealized_pnl_exit_net": -1518.844947315
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 135.614,
"quote_asset_bal": 7877.2635996242,
"total_value_mid": 9029.9825996242,
"total_value_exit_net": 9029.1180603742,
"total_value": 9029.9825996242,
"base_cost_quote": 2704.0718239675,
"unrealized_pnl_exit_net": -1552.2173632175
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 143.025,
"quote_asset_bal": 7818.1750372117,
"total_value_mid": 8956.6540372117,
"total_value_exit_net": 8955.8001779617,
"total_value": 8956.6540372117,
"base_cost_quote": 2764.1581349275,
"unrealized_pnl_exit_net": -1626.5329941775
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 134.964,
"quote_asset_bal": 7889.2027321517,
"total_value_mid": 9053.9420521517,
"total_value_exit_net": 9053.0684976617,
"total_value": 9053.9420521517,
"base_cost_quote": 2694.0478316075,
"unrealized_pnl_exit_net": -1530.1820660975
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 133.785,
"quote_asset_bal": 7899.9794149842,
"total_value_mid": 9077.2874149842,
"total_value_exit_net": 9076.4044339842,
"total_value": 9077.2874149842,
"base_cost_quote": 2684.0221980175,
"unrealized_pnl_exit_net": -1507.5971790175
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 137.237,
"quote_asset_bal": 7870.5103647242,
"total_value_mid": 9045.2590847242,
"total_value_exit_net": 9044.3780231842,
"total_value": 9045.2590847242,
"base_cost_quote": 2714.0750007275,
"unrealized_pnl_exit_net": -1540.2073422675
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 142.586,
"quote_asset_bal": 7826.1169300842,
"total_value_mid": 8993.8962700842,
"total_value_exit_net": 8993.0204355792,
"total_value": 8993.8962700842,
"base_cost_quote": 2759.1527236825,
"unrealized_pnl_exit_net": -1592.2492181875
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 141.359,
"quote_asset_bal": 7836.4834645467,
"total_value_mid": 8999.8680345467,
"total_value_exit_net": 8998.9954961192,
"total_value": 8999.8680345467,
"base_cost_quote": 2749.13358496,
"unrealized_pnl_exit_net": -1586.6215533875
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 142.563,
"quote_asset_bal": 7827.0521106642,
"total_value_mid": 8977.5355206642,
"total_value_exit_net": 8976.6726581067,
"total_value": 8977.5355206642,
"base_cost_quote": 2759.1593286325,
"unrealized_pnl_exit_net": -1609.53878119
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 139.488,
"quote_asset_bal": 7852.6434636067,
"total_value_mid": 9000.6297036067,
"total_value_exit_net": 8999.7687139267,
"total_value": 9000.6297036067,
"base_cost_quote": 2734.1056324425,
"unrealized_pnl_exit_net": -1586.9803821225
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 135.304,
"quote_asset_bal": 7888.5258208242,
"total_value_mid": 9050.7871808242,
"total_value_exit_net": 9049.9154848042,
"total_value": 9050.7871808242,
"base_cost_quote": 2699.05569469,
"unrealized_pnl_exit_net": -1537.66603071
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 143.122,
"quote_asset_bal": 7824.1794887442,
"total_value_mid": 8987.7613487442,
"total_value_exit_net": 8986.8886623492,
"total_value": 8987.7613487442,
"base_cost_quote": 2764.1608369525,
"unrealized_pnl_exit_net": -1601.4516633475
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 151.319,
"quote_asset_bal": 7759.8832741592,
"total_value_mid": 8940.1714741592,
"total_value_exit_net": 8939.2862580092,
"total_value": 8940.1714741592,
"base_cost_quote": 2829.26768049,
"unrealized_pnl_exit_net": -1649.86469664
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 155.874,
"quote_asset_bal": 7725.3055520992,
"total_value_mid": 8919.3003920992,
"total_value_exit_net": 8918.4048959692,
"total_value": 8919.3003920992,
"base_cost_quote": 2864.324893695,
"unrealized_pnl_exit_net": -1671.225549825
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 151.974,
"quote_asset_bal": 7755.6107839442,
"total_value_mid": 8939.4882439442,
"total_value_exit_net": 8938.6003358492,
"total_value": 8939.4882439442,
"base_cost_quote": 2834.272451255,
"unrealized_pnl_exit_net": -1651.28289935
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 158.501,
"quote_asset_bal": 7705.8323584767,
"total_value_mid": 8893.0048484767,
"total_value_exit_net": 8892.1144691092,
"total_value": 8893.0048484767,
"base_cost_quote": 2884.3456079775,
"unrealized_pnl_exit_net": -1698.063497345
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 160.724,
"quote_asset_bal": 7691.4381688217,
"total_value_mid": 8847.0437288217,
"total_value_exit_net": 8846.1770246517,
"total_value": 8847.0437288217,
"base_cost_quote": 2899.3683866175,
"unrealized_pnl_exit_net": -1744.6295307875
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 157.976,
"quote_asset_bal": 7712.0788497242,
"total_value_mid": 8866.8834097242,
"total_value_exit_net": 8866.0173063042,
"total_value": 8866.8834097242,
"base_cost_quote": 2879.3446901,
"unrealized_pnl_exit_net": -1725.40623352
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 169.363,
"quote_asset_bal": 7632.5387888467,
"total_value_mid": 8782.5135588467,
"total_value_exit_net": 8781.6510777692,
"total_value": 8782.5135588467,
"base_cost_quote": 2959.4559585225,
"unrealized_pnl_exit_net": -1810.3436696
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 174.567,
"quote_asset_bal": 7598.5027067867,
"total_value_mid": 8745.4078967867,
"total_value_exit_net": 8744.5477178942,
"total_value": 8745.4078967867,
"base_cost_quote": 2994.5142925675,
"unrealized_pnl_exit_net": -1848.46928146
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 162.772,
"quote_asset_bal": 7679.4717663167,
"total_value_mid": 8833.5252463167,
"total_value_exit_net": 8832.6597062067,
"total_value": 8833.5252463167,
"base_cost_quote": 2914.3942275525,
"unrealized_pnl_exit_net": -1761.2062876625
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 164.904,
"quote_asset_bal": 7664.6803586867,
"total_value_mid": 8827.2535586867,
"total_value_exit_net": 8826.3816287867,
"total_value": 8827.2535586867,
"base_cost_quote": 2929.4216897025,
"unrealized_pnl_exit_net": -1767.7204196025
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 154.562,
"quote_asset_bal": 7751.7758731642,
"total_value_mid": 8821.3449131642,
"total_value_exit_net": 8820.5427363842,
"total_value": 8821.3449131642,
"base_cost_quote": 2844.29510261,
"unrealized_pnl_exit_net": -1775.52823939
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 146.808,
"quote_asset_bal": 7807.8411653842,
"total_value_mid": 8857.5183653842,
"total_value_exit_net": 8856.7311074842,
"total_value": 8857.5183653842,
"base_cost_quote": 2789.20441556,
"unrealized_pnl_exit_net": -1740.31447346
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 148.234,
"quote_asset_bal": 7798.3108255792,
"total_value_mid": 8844.8428655792,
"total_value_exit_net": 8844.0579665492,
"total_value": 8844.8428655792,
"base_cost_quote": 2799.223744425,
"unrealized_pnl_exit_net": -1753.476603455
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 150.403,
"quote_asset_bal": 7783.6073375692,
"total_value_mid": 8830.4122175692,
"total_value_exit_net": 8829.6271139092,
"total_value": 8830.4122175692,
"base_cost_quote": 2814.244241355,
"unrealized_pnl_exit_net": -1768.224465015
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 154.731,
"quote_asset_bal": 7753.8648732242,
"total_value_mid": 8804.4883632242,
"total_value_exit_net": 8803.7003956067,
"total_value": 8804.4883632242,
"base_cost_quote": 2844.29049916,
"unrealized_pnl_exit_net": -1794.4549767775
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 156.157,
"quote_asset_bal": 7744.2640097017,
"total_value_mid": 8818.6241697017,
"total_value_exit_net": 8817.8183995817,
"total_value": 8818.6241697017,
"base_cost_quote": 2854.3091575225,
"unrealized_pnl_exit_net": -1780.7547676425
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 146.866,
"quote_asset_bal": 7809.9789475867,
"total_value_mid": 8871.8201275867,
"total_value_exit_net": 8871.0237467017,
"total_value": 8871.8201275867,
"base_cost_quote": 2789.1992016525,
"unrealized_pnl_exit_net": -1728.1544025375
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 148.321,
"quote_asset_bal": 7800.5149346067,
"total_value_mid": 8865.4597146067,
"total_value_exit_net": 8864.6610060217,
"total_value": 8865.4597146067,
"base_cost_quote": 2799.2150479075,
"unrealized_pnl_exit_net": -1735.0689764925
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 149.02,
"quote_asset_bal": 7795.8543632317,
"total_value_mid": 8858.3669632317,
"total_value_exit_net": 8857.5700787817,
"total_value": 8858.3669632317,
"base_cost_quote": 2804.2231811925,
"unrealized_pnl_exit_net": -1742.5074656425
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 151.145,
"quote_asset_bal": 7781.1030377217,
"total_value_mid": 8845.1638377217,
"total_value_exit_net": 8844.3657921217,
"total_value": 8845.1638377217,
"base_cost_quote": 2819.2509835975,
"unrealized_pnl_exit_net": -1755.9882291975
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 155.466,
"quote_asset_bal": 7751.5007080167,
"total_value_mid": 8813.3334880167,
"total_value_exit_net": 8812.5371134317,
"total_value": 8813.3334880167,
"base_cost_quote": 2849.2961605925,
"unrealized_pnl_exit_net": -1788.2597551775
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 138.687,
"quote_asset_bal": 7872.4362072892,
"total_value_mid": 8922.2967972892,
"total_value_exit_net": 8921.5094018467,
"total_value": 8922.2967972892,
"base_cost_quote": 2729.10797701,
"unrealized_pnl_exit_net": -1680.0347824525
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 137.334,
"quote_asset_bal": 7883.1500431892,
"total_value_mid": 8963.9686231892,
"total_value_exit_net": 8963.1580092542,
"total_value": 8963.9686231892,
"base_cost_quote": 2719.096453995,
"unrealized_pnl_exit_net": -1639.08848793
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 144.317,
"quote_asset_bal": 7828.4434479292,
"total_value_mid": 8954.1160479292,
"total_value_exit_net": 8953.2717934792,
"total_value": 8954.1160479292,
"base_cost_quote": 2774.177093515,
"unrealized_pnl_exit_net": -1649.348747965
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 143.031,
"quote_asset_bal": 7838.7259823992,
"total_value_mid": 8962.9496423992,
"total_value_exit_net": 8962.1064746542,
"total_value": 8962.9496423992,
"base_cost_quote": 2764.15772462,
"unrealized_pnl_exit_net": -1640.777232365
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 140.484,
"quote_asset_bal": 7859.3576472217,
"total_value_mid": 9005.7070872217,
"total_value_exit_net": 9004.8473251417,
"total_value": 9005.7070872217,
"base_cost_quote": 2744.13423826,
"unrealized_pnl_exit_net": -1598.64456034
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 135.734,
"quote_asset_bal": 7900.3763953942,
"total_value_mid": 9044.6140153942,
"total_value_exit_net": 9043.7558371792,
"total_value": 9044.6140153942,
"base_cost_quote": 2704.0688817625,
"unrealized_pnl_exit_net": -1560.6894399775
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 144.994,
"quote_asset_bal": 7825.8582729467,
"total_value_mid": 8961.1612929467,
"total_value_exit_net": 8960.3098156817,
"total_value": 8961.1612929467,
"base_cost_quote": 2779.189530025,
"unrealized_pnl_exit_net": -1644.73798729
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 145.616,
"quote_asset_bal": 7821.6803784767,
"total_value_mid": 8948.7482184767,
"total_value_exit_net": 8947.9029175967,
"total_value": 8948.7482184767,
"base_cost_quote": 2784.19025776,
"unrealized_pnl_exit_net": -1657.96771864
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 148.873,
"quote_asset_bal": 7797.1807697442,
"total_value_mid": 8939.0366797442,
"total_value_exit_net": 8938.1802878117,
"total_value": 8939.0366797442,
"base_cost_quote": 2809.2332559325,
"unrealized_pnl_exit_net": -1668.233737865
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 144.427,
"quote_asset_bal": 7832.6000066392,
"total_value_mid": 8960.5748766392,
"total_value_exit_net": 8959.7288954867,
"total_value": 8960.5748766392,
"base_cost_quote": 2774.183378225,
"unrealized_pnl_exit_net": -1647.0544893775
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 149.645,
"quote_asset_bal": 7792.8371710917,
"total_value_mid": 8925.6498210917,
"total_value_exit_net": 8924.8002116042,
"total_value": 8925.6498210917,
"base_cost_quote": 2814.2367257225,
"unrealized_pnl_exit_net": -1682.27368521
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 155.06,
"quote_asset_bal": 7753.2092019942,
"total_value_mid": 8882.0460019942,
"total_value_exit_net": 8881.1993743942,
"total_value": 8882.0460019942,
"base_cost_quote": 2854.29779901,
"unrealized_pnl_exit_net": -1726.30762661
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 137.673,
"quote_asset_bal": 7889.3875555542,
"total_value_mid": 9015.5526955542,
"total_value_exit_net": 9014.7080716992,
"total_value": 9015.5526955542,
"base_cost_quote": 2719.0860361875,
"unrealized_pnl_exit_net": -1593.7655200425
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 140.773,
"quote_asset_bal": 7864.8596034517,
"total_value_mid": 8988.2281434517,
"total_value_exit_net": 8987.3856170467,
"total_value": 8988.2281434517,
"base_cost_quote": 2744.12170887,
"unrealized_pnl_exit_net": -1621.595695275
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 146.492,
"quote_asset_bal": 7820.3761631142,
"total_value_mid": 8919.0661631142,
"total_value_exit_net": 8918.2421456142,
"total_value": 8919.0661631142,
"base_cost_quote": 2789.1884135675,
"unrealized_pnl_exit_net": -1691.3224310675
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 147.828,
"quote_asset_bal": 7810.7314273417,
"total_value_mid": 8934.2242273417,
"total_value_exit_net": 8933.3816077417,
"total_value": 8934.2242273417,
"base_cost_quote": 2799.207131975,
"unrealized_pnl_exit_net": -1676.556951575
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 145.17,
"quote_asset_bal": 7831.1912817992,
"total_value_mid": 8972.2274817992,
"total_value_exit_net": 8971.3717046492,
"total_value": 8972.2274817992,
"base_cost_quote": 2779.17409846,
"unrealized_pnl_exit_net": -1638.99367561
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 155.747,
"quote_asset_bal": 7751.4006121167,
"total_value_mid": 8888.3537121167,
"total_value_exit_net": 8887.5009972917,
"total_value": 8888.3537121167,
"base_cost_quote": 2859.2899503175,
"unrealized_pnl_exit_net": -1723.1895651425
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 159.298,
"quote_asset_bal": 7727.1832055817,
"total_value_mid": 8842.2692055817,
"total_value_exit_net": 8841.4328910817,
"total_value": 8842.2692055817,
"base_cost_quote": 2884.3354803875,
"unrealized_pnl_exit_net": -1770.0857948875
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 171.05,
"quote_asset_bal": 7647.6980104617,
"total_value_mid": 8783.4700104617,
"total_value_exit_net": 8782.6181814617,
"total_value": 8783.4700104617,
"base_cost_quote": 2964.4517625675,
"unrealized_pnl_exit_net": -1829.5315915675
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 164.344,
"quote_asset_bal": 7693.4956407142,
"total_value_mid": 8806.1045207142,
"total_value_exit_net": 8805.2700640542,
"total_value": 8806.1045207142,
"base_cost_quote": 2919.38970135,
"unrealized_pnl_exit_net": -1807.61527801
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 168.073,
"quote_asset_bal": 7668.7483213617,
"total_value_mid": 8793.1566913617,
"total_value_exit_net": 8792.3133850842,
"total_value": 8793.1566913617,
"base_cost_quote": 2944.4236727575,
"unrealized_pnl_exit_net": -1820.858609035
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 165.833,
"quote_asset_bal": 7684.2083016117,
"total_value_mid": 8796.9477316117,
"total_value_exit_net": 8796.1131770392,
"total_value": 8796.9477316117,
"base_cost_quote": 2929.4041965925,
"unrealized_pnl_exit_net": -1817.499321165
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 164.358,
"quote_asset_bal": 7694.4934761342,
"total_value_mid": 8803.9099761342,
"total_value_exit_net": 8803.0779137592,
"total_value": 8803.9099761342,
"base_cost_quote": 2919.389601275,
"unrealized_pnl_exit_net": -1810.80516365
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 175.067,
"quote_asset_bal": 7625.0996784992,
"total_value_mid": 8742.0271384992,
"total_value_exit_net": 8741.1894429042,
"total_value": 8742.0271384992,
"base_cost_quote": 2989.47954934,
"unrealized_pnl_exit_net": -1873.389784935
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 165.156,
"quote_asset_bal": 7690.9149285292,
"total_value_mid": 8804.0663685292,
"total_value_exit_net": 8803.2315049492,
"total_value": 8804.0663685292,
"base_cost_quote": 2924.394592205,
"unrealized_pnl_exit_net": -1812.078015785
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 165.156,
"quote_asset_bal": 7691.4361448342,
"total_value_mid": 8812.8453848342,
"total_value_exit_net": 8812.0043279042,
"total_value": 8812.8453848342,
"base_cost_quote": 2924.3944521,
"unrealized_pnl_exit_net": -1803.82626903
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 164.413,
"quote_asset_bal": 7697.0354881717,
"total_value_mid": 8815.0438881717,
"total_value_exit_net": 8814.2053818717,
"total_value": 8815.0438881717,
"base_cost_quote": 2919.3900716275,
"unrealized_pnl_exit_net": -1802.2201779275
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 179.04,
"quote_asset_bal": 7602.7812636692,
"total_value_mid": 8705.6676636692,
"total_value_exit_net": 8704.8404988692,
"total_value": 8705.6676636692,
"base_cost_quote": 3014.52295782,
"unrealized_pnl_exit_net": -1912.46372262
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 179.849,
"quote_asset_bal": 7598.8661553067,
"total_value_mid": 8697.7435453067,
"total_value_exit_net": 8696.9193872642,
"total_value": 8697.7435453067,
"base_cost_quote": 3019.5342234525,
"unrealized_pnl_exit_net": -1921.480991495
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 199.636,
"quote_asset_bal": 7485.1624168542,
"total_value_mid": 8587.1531368542,
"total_value_exit_net": 8586.3266438142,
"total_value": 8587.1531368542,
"base_cost_quote": 3134.694118645,
"unrealized_pnl_exit_net": -2033.529891685
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 207.031,
"quote_asset_bal": 7446.4068109342,
"total_value_mid": 8549.8820409342,
"total_value_exit_net": 8549.0544345117,
"total_value": 8549.8820409342,
"base_cost_quote": 3174.75632278,
"unrealized_pnl_exit_net": -2072.1086992025
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 200.535,
"quote_asset_bal": 7483.4131721917,
"total_value_mid": 8588.3610221917,
"total_value_exit_net": 8587.5323113042,
"total_value": 8588.3610221917,
"base_cost_quote": 3139.7047037675,
"unrealized_pnl_exit_net": -2035.585564655
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 217.568,
"quote_asset_bal": 7394.5558519367,
"total_value_mid": 8504.1526519367,
"total_value_exit_net": 8503.3204543367,
"total_value": 8504.1526519367,
"base_cost_quote": 3229.8191189275,
"unrealized_pnl_exit_net": -2121.0545165275
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 227.596,
"quote_asset_bal": 7346.1624471992,
"total_value_mid": 8454.5549671992,
"total_value_exit_net": 8453.7236728092,
"total_value": 8454.5549671992,
"base_cost_quote": 3279.8924758,
"unrealized_pnl_exit_net": -2172.33125019
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 258.623,
"quote_asset_bal": 7209.0617945191,
"total_value_mid": 8282.3472445192,
"total_value_exit_net": 8281.5422804316,
"total_value": 8282.3472445192,
"base_cost_quote": 3420.058461505,
"unrealized_pnl_exit_net": -2347.5779755925
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 242.941,
"quote_asset_bal": 7281.4053648942,
"total_value_mid": 8403.7927848942,
"total_value_exit_net": 8402.9509943292,
"total_value": 8403.7927848942,
"base_cost_quote": 3349.9838049,
"unrealized_pnl_exit_net": -2228.438175465
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 247.307,
"quote_asset_bal": 7262.3767671817,
"total_value_mid": 8385.1505471817,
"total_value_exit_net": 8384.3084668467,
"total_value": 8385.1505471817,
"base_cost_quote": 3370.0052997675,
"unrealized_pnl_exit_net": -2248.0736001025
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 255.203,
"quote_asset_bal": 7227.9800536016,
"total_value_mid": 8343.2171636016,
"total_value_exit_net": 8342.3807357691,
"total_value": 8343.2171636016,
"base_cost_quote": 3405.0499235375,
"unrealized_pnl_exit_net": -2290.64924137
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 253.981,
"quote_asset_bal": 7233.9814763241,
"total_value_mid": 8354.0376863241,
"total_value_exit_net": 8353.1976441666,
"total_value": 8354.0376863241,
"base_cost_quote": 3400.04908572,
"unrealized_pnl_exit_net": -2280.8329178775
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 260.918,
"quote_asset_bal": 7204.5757110116,
"total_value_mid": 8318.6955710116,
"total_value_exit_net": 8317.8599811166,
"total_value": 8318.6955710116,
"base_cost_quote": 3430.0837048025,
"unrealized_pnl_exit_net": -2316.7994346975
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 256.27,
"quote_asset_bal": 7226.1248269041,
"total_value_mid": 8346.0247269041,
"total_value_exit_net": 8345.1848019791,
"total_value": 8346.0247269041,
"base_cost_quote": 3410.05946788,
"unrealized_pnl_exit_net": -2290.999492805
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 251.743,
"quote_asset_bal": 7247.1814069966,
"total_value_mid": 8359.8854669966,
"total_value_exit_net": 8359.0509389516,
"total_value": 8359.8854669966,
"base_cost_quote": 3390.0402947525,
"unrealized_pnl_exit_net": -2278.1707627975
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 246.13,
"quote_asset_bal": 7273.0727215891,
"total_value_mid": 8395.4255215891,
"total_value_exit_net": 8394.5837569891,
"total_value": 8395.4255215891,
"base_cost_quote": 3364.99929808,
"unrealized_pnl_exit_net": -2243.48826268
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 230.18,
"quote_asset_bal": 7349.0997842041,
"total_value_mid": 8470.0763842041,
"total_value_exit_net": 8469.2356517541,
"total_value": 8470.0763842041,
"base_cost_quote": 3289.904238995,
"unrealized_pnl_exit_net": -2169.768371445
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 239.647,
"quote_asset_bal": 7304.9593170066,
"total_value_mid": 8424.1108070066,
"total_value_exit_net": 8423.2714433891,
"total_value": 8424.1108070066,
"base_cost_quote": 3334.9622771975,
"unrealized_pnl_exit_net": -2216.650150815
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 231.214,
"quote_asset_bal": 7345.9512192791,
"total_value_mid": 8465.0269792791,
"total_value_exit_net": 8464.1876724591,
"total_value": 8465.0269792791,
"base_cost_quote": 3294.912552415,
"unrealized_pnl_exit_net": -2176.676099235
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 235.378,
"quote_asset_bal": 7327.0488447166,
"total_value_mid": 8456.8632447166,
"total_value_exit_net": 8456.0158839166,
"total_value": 8456.8632447166,
"base_cost_quote": 3314.9341673725,
"unrealized_pnl_exit_net": -2185.9671281725
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 243.924,
"quote_asset_bal": 7287.5540286191,
"total_value_mid": 8409.6044286191,
"total_value_exit_net": 8408.7628908191,
"total_value": 8409.6044286191,
"base_cost_quote": 3354.986734285,
"unrealized_pnl_exit_net": -2233.777872085
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 246.115,
"quote_asset_bal": 7278.0945955266,
"total_value_mid": 8395.4566955266,
"total_value_exit_net": 8394.6186739516,
"total_value": 8395.4566955266,
"base_cost_quote": 3364.9960456425,
"unrealized_pnl_exit_net": -2248.4719672175
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 224.286,
"quote_asset_bal": 7385.0959635591,
"total_value_mid": 8477.3687835591,
"total_value_exit_net": 8476.5495789441,
"total_value": 8477.3687835591,
"base_cost_quote": 3259.862924895,
"unrealized_pnl_exit_net": -2168.40930951
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 223.274,
"quote_asset_bal": 7391.3271983491,
"total_value_mid": 8498.7662383491,
"total_value_exit_net": 8497.9356590691,
"total_value": 8498.7662383491,
"base_cost_quote": 3254.863458105,
"unrealized_pnl_exit_net": -2148.254997385
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 233.597,
"quote_asset_bal": 7341.6077093941,
"total_value_mid": 8453.5294293941,
"total_value_exit_net": 8452.6954881041,
"total_value": 8453.5294293941,
"base_cost_quote": 3304.92863885,
"unrealized_pnl_exit_net": -2193.84086014
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 238.98,
"quote_asset_bal": 7317.5285634466,
"total_value_mid": 8416.8365634466,
"total_value_exit_net": 8416.0120824466,
"total_value": 8416.8365634466,
"base_cost_quote": 3329.9572462375,
"unrealized_pnl_exit_net": -2231.4737272375
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 233.66,
"quote_asset_bal": 7343.5303973616,
"total_value_mid": 8455.7519973616,
"total_value_exit_net": 8454.9178311616,
"total_value": 8455.7519973616,
"base_cost_quote": 3304.9289090525,
"unrealized_pnl_exit_net": -2193.5414752525
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 209.963,
"quote_asset_bal": 7467.1378567665,
"total_value_mid": 8590.4399067665,
"total_value_exit_net": 8589.597430229,
"total_value": 8590.4399067665,
"base_cost_quote": 3184.7684962825,
"unrealized_pnl_exit_net": -2062.30892282
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 100-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (100,628 closed trades) via GET /backtests/6116f7f2-f5ed-4025-a973-e6e76498031a/trades (paginate through all pages).100-row audit sample from 100,628 closed trades (RFC 4180 CSV)
100-row audit sample from 100,628 closed trades (RFC 4180 CSV)
id,symbol,buy_time,sell_time,buy_price,sell_price,buy_quantity,sell_quantity,quantity,profit,profit_percentage,buy_fee_in_quote,sell_fee_in_quote,fee_buy,fee_sell,fill_type
,,2024-04-24T00:03:00Z,2024-04-24T00:08:00Z,32.63,32.72,0.154,,,0.006312075,0.1256129329,0.003768765,0.00377916,,,TP
,,2024-04-24T00:06:00Z,2024-05-25T04:34:00Z,32.7,32.79,0.153,,,0.0062550225,0.1250229358,0.003752325,0.0037626525,,,TP
,,2024-04-24T00:10:00Z,2024-05-25T04:33:00Z,32.63,32.72,0.154,,,0.006312075,0.1256129329,0.003768765,0.00377916,,,TP
,,2024-04-24T00:15:00Z,2024-05-21T00:30:00Z,32.56,32.65,0.154,,,0.006328245,0.1262054668,0.00376068,0.003771075,,,TP
,,2024-04-24T00:17:00Z,2024-04-24T00:37:00Z,32.49,32.58,0.154,,,0.006344415,0.126800554,0.003752595,0.00376299,,,TP
,,2024-04-24T00:18:00Z,2024-04-24T00:31:00Z,32.41,32.5,0.155,,,0.0064042125,0.1274838013,0.0037676625,0.003778125,,,TP
,,2024-04-24T00:19:00Z,2024-04-24T00:31:00Z,32.36,32.45,0.155,,,0.0064158375,0.1279125464,0.00376185,0.0037723125,,,TP
,,2024-04-24T00:32:00Z,2024-04-24T00:32:00Z,32.43,32.52,0.155,,,0.0063995625,0.1273126735,0.0037699875,0.00378045,,,TP
,,2024-04-24T00:41:00Z,2024-04-24T00:51:00Z,32.5,32.59,0.154,,,0.006342105,0.1267153846,0.00375375,0.003764145,,,TP
,,2024-04-24T00:52:00Z,2024-05-21T00:23:00Z,32.52,32.61,0.154,,,0.006337485,0.126545203,0.00375606,0.003766455,,,TP
,,2024-04-24T00:54:00Z,2024-04-24T01:03:00Z,32.47,32.56,0.154,,,0.006349035,0.1269710502,0.003750285,0.00376068,,,TP
,,2024-04-24T01:13:00Z,2024-05-20T19:36:00Z,32.43,32.52,0.155,,,0.0063995625,0.1273126735,0.0037699875,0.00378045,,,TP
,,2024-04-24T01:17:00Z,2024-04-24T01:30:00Z,32.36,32.45,0.155,,,0.0064158375,0.1279125464,0.00376185,0.0037723125,,,TP
,,2024-04-24T01:31:00Z,2024-04-24T01:33:00Z,32.34,32.43,0.155,,,0.0064204875,0.1280844156,0.003759525,0.0037699875,,,TP
,,2024-04-24T01:31:00Z,2024-05-20T19:35:00Z,32.39,32.48,0.155,,,0.0064088625,0.1276551405,0.0037653375,0.0037758,,,TP
,,2024-04-24T01:36:00Z,2024-05-20T19:33:00Z,32.32,32.41,0.155,,,0.0064251375,0.1282564975,0.0037572,0.0037676625,,,TP
,,2024-04-24T01:45:00Z,2024-05-20T19:33:00Z,32.25,32.34,0.156,,,0.00648297,0.1288604651,0.00377325,0.00378378,,,TP
,,2024-04-24T01:52:00Z,2024-05-20T19:26:00Z,32.18,32.27,0.156,,,0.00649935,0.1294670603,0.00376506,0.00377559,,,TP
,,2024-04-24T02:01:00Z,2024-05-20T19:25:00Z,32.14,32.23,0.156,,,0.00650871,0.1298148724,0.00376038,0.00377091,,,TP
,,2024-04-24T02:02:00Z,2024-05-20T19:25:00Z,32.1,32.19,0.156,,,0.00651807,0.1301635514,0.0037557,0.00376623,,,TP
,,2024-04-24T02:08:00Z,2024-05-20T19:24:00Z,32.06,32.15,0.156,,,0.00652743,0.1305131004,0.00375102,0.00376155,,,TP
,,2024-04-24T02:10:00Z,2024-04-24T04:57:00Z,31.99,32.07,0.157,,,0.005016935,0.0998905908,0.0037668225,0.0037762425,,,TP
,,2024-04-24T02:13:00Z,2024-04-24T04:57:00Z,31.95,32.03,0.157,,,0.005026355,0.1002034429,0.0037621125,0.0037715325,,,TP
,,2024-04-24T02:22:00Z,2024-04-24T04:52:00Z,31.86,31.94,0.157,,,0.00504755,0.1009102323,0.003751515,0.003760935,,,TP
,,2024-04-24T02:23:00Z,2024-04-24T04:51:00Z,31.81,31.89,0.158,,,0.00509155,0.1013046212,0.003769485,0.003778965,,,TP
,,2024-09-10T15:54:00Z,2024-09-10T16:19:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-09-16T01:48:00Z,2024-09-16T01:58:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-09-18T18:12:00Z,2024-09-18T18:13:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-12T12:14:00Z,2024-11-12T12:14:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-25T23:36:00Z,2024-11-25T23:56:00Z,40,40.1,0.125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-12T08:35:00Z,2024-12-12T08:48:00Z,40,40.1,0.125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-12T15:23:00Z,2024-12-12T15:47:00Z,40,40.1,0.125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-03T16:09:00Z,2025-02-03T16:10:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-03T17:03:00Z,2025-02-03T17:04:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-04T16:41:00Z,2025-02-04T16:44:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-04T17:02:00Z,2025-02-04T17:03:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-05T06:15:00Z,2025-02-05T08:06:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T10:05:00Z,2025-02-11T01:35:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-12T08:35:00Z,2025-02-12T10:35:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-12T16:10:00Z,2025-02-12T16:17:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-17T05:17:00Z,2025-02-17T06:05:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-20T14:46:00Z,2025-02-20T17:21:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-20T17:47:00Z,2025-02-20T17:54:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-23T14:53:00Z,2025-02-23T15:06:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-26T17:20:00Z,2025-02-26T17:21:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-15T18:17:00Z,2025-05-16T11:00:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-16T12:07:00Z,2025-05-22T15:19:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-22T20:12:00Z,2025-05-22T20:43:00Z,20,20.05,0.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-13T17:05:00Z,2026-01-13T17:18:00Z,8,8.02,0.625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-14T11:59:00Z,2026-01-14T12:00:00Z,8,8.02,0.625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-05T20:26:00Z,2026-02-05T20:26:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-05T20:32:00Z,2026-02-05T20:32:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-05T20:53:00Z,2026-02-05T20:55:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-05T21:20:00Z,2026-02-05T21:21:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-05T22:23:00Z,2026-02-05T22:24:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-05T23:54:00Z,2026-02-05T23:54:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-06T00:04:00Z,2026-02-06T00:39:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-06T00:05:00Z,2026-02-06T00:06:00Z,4.09,4.11,1.223,,,0.01693855,0.3386308068,0.0037515525,0.0037698975,,,TP
,,2026-02-06T00:08:00Z,2026-02-06T00:38:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-06T00:08:00Z,2026-02-06T00:08:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-06T00:10:00Z,2026-02-06T00:10:00Z,4.08,4.1,1.226,,,0.01699849,0.3398284314,0.00375156,0.00376995,,,TP
,,2026-02-06T00:11:00Z,2026-02-06T00:37:00Z,4.07,4.09,1.229,,,0.01705852,0.341031941,0.0037515225,0.0037699575,,,TP
,,2026-02-06T00:12:00Z,2026-02-06T00:12:00Z,4.04,4.06,1.238,,,0.01723915,0.3446782178,0.00375114,0.00376971,,,TP
,,2026-02-06T00:13:00Z,2026-02-06T00:35:00Z,4.04,4.06,1.238,,,0.01723915,0.3446782178,0.00375114,0.00376971,,,TP
,,2026-02-06T00:41:00Z,2026-02-06T00:42:00Z,4.09,4.11,1.223,,,0.01693855,0.3386308068,0.0037515525,0.0037698975,,,TP
,,2026-02-06T00:41:00Z,2026-02-06T00:45:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-06T00:43:00Z,2026-02-06T00:43:00Z,4.09,4.11,1.223,,,0.01693855,0.3386308068,0.0037515525,0.0037698975,,,TP
,,2026-02-06T00:47:00Z,2026-02-06T00:51:00Z,4.12,4.14,1.214,,,0.01675927,0.3350728155,0.00375126,0.00376947,,,TP
,,2026-02-06T00:49:00Z,2026-02-06T00:50:00Z,4.09,4.11,1.223,,,0.01693855,0.3386308068,0.0037515525,0.0037698975,,,TP
,,2026-02-06T00:52:00Z,2026-02-06T00:52:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-06T00:56:00Z,2026-02-06T01:04:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-06T01:02:00Z,2026-02-06T01:03:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-06T01:05:00Z,2026-02-06T01:05:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-06T01:05:00Z,2026-02-06T01:07:00Z,4.13,4.15,1.211,,,0.01669969,0.3338983051,0.0037510725,0.0037692375,,,TP
,,2026-02-11T10:49:00Z,2026-02-11T10:58:00Z,4.11,4.13,1.217,,,0.01681894,0.3362530414,0.0037514025,0.0037696575,,,TP
,,2026-02-25T08:49:00Z,2026-02-25T22:34:00Z,5.46,5.48,0.916,,,0.01080422,0.216025641,0.00375102,0.00376476,,,TP
,,2026-02-25T10:06:00Z,2026-02-25T21:36:00Z,5.41,5.43,0.925,,,0.01097975,0.2194085028,0.0037531875,0.0037670625,,,TP
,,2026-02-25T21:37:00Z,2026-02-25T22:34:00Z,5.44,5.46,0.92,,,0.010879,0.2173713235,0.0037536,0.0037674,,,TP
,,2026-02-25T21:38:00Z,2026-02-25T21:54:00Z,5.43,5.45,0.921,,,0.01090464,0.2180478821,0.0037507725,0.0037645875,,,TP
,,2026-02-25T21:41:00Z,2026-02-25T21:52:00Z,5.4,5.42,0.926,,,0.01100551,0.2200925926,0.0037503,0.00376419,,,TP
,,2026-02-25T21:42:00Z,2026-02-25T21:51:00Z,5.39,5.41,0.928,,,0.0110432,0.2207792208,0.00375144,0.00376536,,,TP
,,2026-02-25T21:56:00Z,2026-02-25T22:04:00Z,5.42,5.44,0.923,,,0.010942165,0.2187269373,0.003751995,0.00376584,,,TP
,,2026-02-25T21:57:00Z,2026-02-25T21:58:00Z,5.39,5.41,0.928,,,0.0110432,0.2207792208,0.00375144,0.00376536,,,TP
,,2026-02-25T22:05:00Z,2026-02-25T22:24:00Z,5.43,5.45,0.921,,,0.01090464,0.2180478821,0.0037507725,0.0037645875,,,TP
,,2026-02-25T22:29:00Z,2026-02-25T22:31:00Z,5.42,5.44,0.923,,,0.010942165,0.2187269373,0.003751995,0.00376584,,,TP
,,2026-02-25T22:32:00Z,2026-02-25T22:33:00Z,5.43,5.45,0.921,,,0.01090464,0.2180478821,0.0037507725,0.0037645875,,,TP
,,2026-02-25T22:35:00Z,2026-02-25T23:11:00Z,5.43,5.45,0.921,,,0.01090464,0.2180478821,0.0037507725,0.0037645875,,,TP
,,2026-02-25T22:42:00Z,2026-02-25T23:08:00Z,5.41,5.43,0.925,,,0.01097975,0.2194085028,0.0037531875,0.0037670625,,,TP
,,2026-02-25T22:44:00Z,2026-02-25T22:47:00Z,5.39,5.41,0.928,,,0.0110432,0.2207792208,0.00375144,0.00376536,,,TP
,,2026-02-25T22:50:00Z,2026-02-25T22:56:00Z,5.37,5.39,0.932,,,0.01111876,0.222160149,0.00375363,0.00376761,,,TP
,,2026-02-25T23:01:00Z,2026-02-25T23:03:00Z,5.37,5.39,0.932,,,0.01111876,0.222160149,0.00375363,0.00376761,,,TP
,,2026-02-25T23:04:00Z,2026-02-25T23:05:00Z,5.38,5.4,0.93,,,0.01108095,0.2214684015,0.00375255,0.0037665,,,TP
,,2026-02-25T23:06:00Z,2026-02-25T23:07:00Z,5.39,5.41,0.928,,,0.0110432,0.2207792208,0.00375144,0.00376536,,,TP
,,2026-02-25T23:27:00Z,2026-02-25T23:28:00Z,5.36,5.38,0.933,,,0.011144685,0.2228544776,0.00375066,0.003764655,,,TP
,,2026-02-25T23:32:00Z,2026-02-25T23:36:00Z,5.35,5.37,0.935,,,0.0111826,0.2235514019,0.0037516875,0.0037657125,,,TP
,,2026-02-25T23:37:00Z,2026-02-25T23:38:00Z,5.35,5.37,0.935,,,0.0111826,0.2235514019,0.0037516875,0.0037657125,,,TP
,,2026-02-25T23:39:00Z,2026-02-25T23:39:00Z,5.35,5.37,0.935,,,0.0111826,0.2235514019,0.0037516875,0.0037657125,,,TP
,,2026-02-25T23:41:00Z,2026-02-25T23:57:00Z,5.32,5.34,0.94,,,0.0112847,0.2256578947,0.0037506,0.0037647,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:45:00Z,5.3,5.32,0.944,,,0.01136104,0.2270754717,0.0037524,0.00376656,,,TP
,,2026-02-25T23:49:00Z,2026-02-25T23:52:00Z,5.3,5.32,0.944,,,0.01136104,0.2270754717,0.0037524,0.00376656,,,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 KSMUSDT?
Did it beat Buy & Hold of KSMUSDT?
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 KSMUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 8,589.60 USDT
P&L: -1,410.40 USDT (-14.10%)
Result: LOSS
Completed trades: 100628
Open orders at end: 635
Win rate: 100.0%
Avg. profit/trade: 0.006478 USDT
Best trade: 0.017239 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 651.906353 USDT
Max drawdown: -20.56%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.63
Total fees: 757.34 USDT
Avg hold time: 19.6h
TP / SL / TSL: 100628 / 0 / 0
Strategy parameters:
Buy trigger: -0.1% from last buy
Buy splits: 9
Sell targets: [0.25, 0.35, 0.5, 0.75, 1.0, 2.5, 5.0, 10.0, 15.0]
Investment per buy: 25.0 USDT
Fees: maker 7.5 bps / taker 7.5 bps
Elapsed: 995.3s
bt.summary_textAre these results guaranteed for live trading?
Are these results guaranteed for live trading?
static disclaimerGlossary
| Term | Definition |
|---|---|
| Return % | Total percentage change of portfolio value over the backtest window: (final_value - start_balance) / start_balance x 100. |
| CAGR | Compound Annual Growth Rate. Annualized return assuming compounding: (final/start)^(365.25/days) - 1. |
| Win Rate | Share of closed trades with positive net P&L (after fees): wins / (wins + losses) x 100. |
| Max Drawdown | Largest peak-to-trough decline of equity, measured in % of the previous peak. The single most important risk metric. |
| Drawdown Duration | Number of days spent below the previous equity peak before recovering (or end of window if not recovered). |
| Sharpe Ratio (annualized) | Mean daily return divided by standard deviation of daily returns, scaled by 365. Risk-adjusted return - higher is better, > 1 is decent. |
| Sortino Ratio (annualized) | Like Sharpe but only penalizes downside volatility. Often more representative for asymmetric strategies. |
| Volatility (ann.) | Standard deviation of daily returns x 365, expressed as a percentage. |
| Time in Market | Fraction of the period where the strategy held base-asset exposure (not 100% cash). |
| Buy & Hold | Reference benchmark: simply buying the underlying token at the start and holding to the end of the window. |
| Outperformance (pp) | Strategy return minus Buy & Hold return, in percentage points (not percent change). |
| Fulfilled Trades | Round-trip trades that have both an entry fill and an exit fill within the window. |
| Active Orders | Open positions still pending exit at the end of the backtest - their unrealized P&L is included in final_value. |
| Lookahead Bias | Using information that wouldn’t have been available at trade time. The validator flags trades whose buy_time precedes the configured from date. |
How to Read This Report
GET /backtests/{id} * Fields used: return_pct, fulfilled_trades, win_rateCheck the headline return
Reproduce This Run
GET /backtests/{id} * Fields used: symbol, mode_name, config (replayed verbatim)X-API-Key. Payload fields are validated against ENGINE.md Section 20; non-engine keys are stripped so the replay produces the exact same run.curl -X POST https://uncoded-backtest-api-production.up.railway.app/backtests \
-H "X-API-Key: $UNCODED_API_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"KSMUSDT","mode_name":"3LongTimeLong.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":0.001,"stopLoss":false,"tickSize":0.01,"buySplits":9,"buyVolumes":[20,15,10,10,10,10,5,5,5],"canBuyDown":false,"minNotional":5,"buyPercentage":0.1,"fees_in_quote":true,"intrabar_mode":"OLHC","maker_fee_bps":7.5,"taker_fee_bps":7.5,"sellPercentages":[0.25,0.35,0.5,0.75,1,2.5,5,10,15],"triggerCoolDown":1,"investmentPerBuy":25,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":25,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0,0,0,0],"sellCancelDistancePercentage":1,"dontBuyBelowQuoteAssetBalance":1,"investmentPerFreeQuotePercent":0.01,"sellActivateDistancePercentage":0.1}'
Structured Data (JSON-LD)
Dataset markup with 34 PropertyValue KPIs. Every numeric value is finite + range-validated; invalid / null fields are omitted so the JSON stays schema.org-compliant.{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "KSMUSDT LongTimeLong Backtest",
"alternateName": "KSMUSDT-3LongTimeLong.json-6116f7f2-f5ed-4025-a973-e6e76498031a",
"description": "Backtest of the LongTimeLong strategy on KSMUSDT: -14.10% return over 2024-04-24 to 2026-02-25.",
"identifier": "6116f7f2-f5ed-4025-a973-e6e76498031a",
"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": [
"KSMUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "KSMUSDT",
"description": "Trading pair: KSMUSDT"
},
{
"@type": "Thing",
"name": "LongTimeLong",
"description": "Trading strategy: LongTimeLong"
}
],
"measurementTechnique": "Historical OHLCV replay with deterministic order-fill simulation (TP / SL / Trailing-SL)",
"variableMeasured": [
{
"@type": "PropertyValue",
"name": "Return",
"value": -14.104,
"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": 651.90635305,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 8589.59743023,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 100628,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 635,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.01723915,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00647838,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 995.32,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -7.93120614097611,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -20.563463320748276,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -2143.8143962709,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 426,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.6327090579742121,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.6385328940173934,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 11.854144988817557,
"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.009766554775000005,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.009766554775000005,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.008665825,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.9766554775000005,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7520145224999996,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1002.6860299999992,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 100,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 0.21666666666666667,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 93.81060606060599,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 4550.780445007823,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:06.169Z",
"dateModified": "2026-05-15T13:01:07.982Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:07 UTC