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.
PONDUSDT * LongTimeLong
PONDUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -4.02% | 109,924 closed trades | 100.0% closed WR | 376 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,627.55 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 826.78 USDT | Buy + sell fees across all trades. |
| Fee Drag | 50.8% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 14.2 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 109,924 | 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 PONDUSDT, 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 50.8% 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="c8859418-e23b-43ee-87ff-6c6f4a4c5d43" */}
...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 PONDUSDT, 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 PONDUSDT 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: PONDUSDT 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 -4.02% return on PONDUSDT a good backtest result?
Is a -4.02% return on PONDUSDT 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 PONDUSDT backtest?
What is the annualised return for this PONDUSDT 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 PONDUSDT?
How is this backtest different from others on PONDUSDT?
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 | PONDUSDT |
| 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 | 9,597.68 USDT |
| Avg Profit / Trade | +0.0073 USDT |
| Trades / Month | 4971.2 |
| Status | completed |
| Created | 2026-05-08 13:39:07 UTC |
| Started | 2026-05-10 07:30:09 UTC |
| Completed | 2026-05-10 07:43:55 UTC |
| Compute Time | 9m 46s |
| Backtest ID | c8859418-e23b-43ee-87ff-6c6f4a4c5d43 |
| Engine summary: |
Backtest PONDUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 9,597.68 USDT
P&L: -402.32 USDT (-4.02%)
Result: LOSS
Completed trades: 109924
Open orders at end: 376
Win rate: 100.0%
Avg. profit/trade: 0.007285 USDT
Best trade: 0.017421 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 800.768121 USDT
Max drawdown: -8.07%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.28
Total fees: 826.78 USDT
Avg hold time: 14.2h
TP / SL / TSL: 109924 / 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: 586.0s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -4.02% over the tested window | return_pct = -4.0232 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 9,597.68 USDT | final_value - start_balance = -402.32 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 109924 of 109924 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 8.07% | max_drawdown_pct = 8.0735 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.28 | sharpe_annualized = -0.2755 | derived from daily-resampled equity returns |
Strategy Configuration
GET /backtests/{id} * Fields used: mode_name, config (full JSON payload)- Highlights
- Full JSON
| Parameter | Value |
|---|---|
canBuy | true |
canSell | true |
canBuyUp | true |
startBal | 10000 |
stepSize | 1 |
stopLoss | false |
tickSize | 0.00001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "PONDUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 1,
"stopLoss": false,
"tickSize": 0.00001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 25 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 25 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5,10,15] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 1 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.00001 | 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: PONDUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 1
stopLoss: false
tickSize: 0.00001
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 | PONDUSDT | 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,340 | #
| ##:#### # #
| #:::::::### ##:# # #:###
| :::::::::::# #::::# #:#:::::#
| ##### # :::::::::::: ::::::#:::::::::##
|#:::::#:# #::::::::::::#::::::::::::::::::###
|::::::::: ## :::::::::::::::::::::::::::::::::::####
|::::::::: ::## # :::::::::::::::::::::::::::::::::::::::
|:::::::::#::::#:# :::::::::::::::::::::::::::::::::::::::#
9,595 |:::::::::::::::::#::::::::::::::::::::::::::::::::::::::::##
+------------------------------------------------------------
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,397.98 USDT @ 2024-12-27 23:59:00 UTC |
| Trough | 9,558.50 USDT @ 2026-02-24 23:59:00 UTC |
| Drawdown Duration | 424.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,397.98 USDT |
Final Portfolio Allocation
GET /backtests/{id}/equity * Fields used: total_value_exit_net, quote_asset_bal, base_asset_bal, base_value_exit_net, base_value_mid, unrealized_pnl_exit_net| Asset | Quantity | Value (USDT) | Allocation |
|---|---|---|---|
| USDT (Cash) | 8,917.40 | 8,917.40 | 92.9% |
| POND | 279,015.00000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 680.29 | 7.1% |
| Total | - | 9,597.68 | 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) | +1.02 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 | +1.02 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 | 826.03 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 376 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 826.78 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 | 80787.48% | 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/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.375240 + 0.376572
= 0.751812 USDT
(B) bt.total_fees = 826.777619 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 826.777619 - 0.751812
= 826.025808 USDT
Identity check: (A) + (C) ?= (B)
0.751812 + 826.025808 = 826.777619 USDT
vs bt.total_fees = 826.777619 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 376 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.3h | 4.2h | 93.8h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:06:00 UTC | 2026-02-25 23:59:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +1.02 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 | 25 | 25 | 100.0% | +0.15 |
| 2024-05 | 1 | 1 | 100.0% | +0.00 |
| 2024-07 | 7 | 7 | 100.0% | +0.03 |
| 2024-11 | 1 | 1 | 100.0% | +0.00 |
| 2025-01 | 1 | 1 | 100.0% | +0.00 |
| 2025-04 | 1 | 1 | 100.0% | +0.00 |
| 2025-12 | 19 | 19 | 100.0% | +0.28 |
| 2026-01 | 20 | 20 | 100.0% | +0.22 |
| 2026-02 | 25 | 25 | 100.0% | +0.32 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2025-12-15 -> 2025-12-15 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 2 | TP | 2025-12-17 -> 2025-12-19 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 3 | TP | 2025-12-21 -> 2025-12-22 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 4 | TP | 2025-12-22 -> 2025-12-22 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 5 | TP | 2026-01-03 -> 2026-01-03 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 6 | TP | 2026-01-08 -> 2026-01-08 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 7 | TP | 2026-01-09 -> 2026-01-09 | 0.004010 | 0.004030 | +0.0174 | +0.35% |
| 8 | TP | 2025-12-15 -> 2025-12-15 | 0.004020 | 0.004040 | +0.0174 | +0.35% |
| 9 | TP | 2025-12-15 -> 2025-12-15 | 0.004020 | 0.004040 | +0.0174 | +0.35% |
| 10 | TP | 2025-12-22 -> 2025-12-22 | 0.004020 | 0.004040 | +0.0174 | +0.35% |
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 | -8.07% @ 2026-02-24 23:59:00 UTC |
| Mean | -2.64% |
| Std Dev | 1.89% |
| Last | -7.70% |
| Points | 673 |
| Across 673 points the series ranged from -8.07% (2026-02-24 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -2.64%. 0% of points were positive, 97% negative. The most recent value is -7.70%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-05T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.1569702262546348},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.0245726378552004},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.10951618752345867},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-0.8691075740887892},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-0.318533863678963},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-0.8093450685854826},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-1.2608034714398038},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-5.223542917056613},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-3.3683570997861123},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-2.2662275400193637},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-3.6570994033094837},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-2.4736836120194},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-2.6840980073054133},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-3.3182600770697652},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-3.9293519748878505},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-5.668316102777356},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-3.7697071223805625},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":0},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.05440723685916336},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-0.9446590487293589},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-0.833342062364841},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-1.0480187015521134},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-0.01892230748705138},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-1.0599406892254148},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-1.3000864931491138},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-2.0174466793864463},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-2.8022056885136077},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-1.9158120980894293},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-2.6150986320111085},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-3.9102857236326045},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-2.52085112339468},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-2.9474853601674402},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-2.2036600649394984},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-1.3495961135943355},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-2.2767866768018323},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-3.794031873089021},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-3.768400800365157},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-2.364698363842622},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-1.7282372067081817},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-2.939464683030426},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-2.8037655246083792},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-1.3786941892508713},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-2.1222925281787846},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-1.9986072288462764},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-2.4627836221155617},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-3.953857340328895},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-4.012818519553065},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-4.7319171923137695},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-4.463243124234245},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-4.437252763725036},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-4.870999395616851},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-5.499351229418208},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-5.6973921536543966},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-5.39266850400761},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-5.964668939323454},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-6.96982971047215},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-7.221032245229209},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-7.696612997585767}]
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 | 113.34 USDT @ 2024-12-27 23:59:00 UTC |
| Worst Unrealized | -1,240.02 USDT @ 2026-02-24 23:59:00 UTC |
| Mean | -378.50 USDT |
| Std Dev | 301.02 USDT |
| Last | -1,203.08 USDT |
| Points | 673 |
| Sum | -254,729.14 USDT |
| Across 673 points the series ranged from -1,240.02 USDT (2026-02-24 23:59:00 UTC) to 113.34 USDT (2024-12-27 23:59:00 UTC), averaging -378.50 USDT. 7% of points were positive, 93% negative. The most recent value is -1,203.08 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-21.2416878525},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-16.61355296},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":-42.7983320175},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":0.489345935},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-0.0638409325},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-89.3748397425},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-46.4179225875},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-106.8420462725},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-163.5184296675},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-573.3117535775},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-400.047264955},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-298.9777302325},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-447.89849887},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-332.478674955},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-358.153048215},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-429.9335989175},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-497.7784567025},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-679.1590513625},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-500.08591055},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":11.5833581825},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":45.55956735},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-69.0669712475},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":14.083347715},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-27.7541276325},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":58.2058204525},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-80.69809718},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-125.4722613},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-214.043373135},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-309.9940545925},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-229.12258237},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-307.5115406725},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-454.0680358375},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-320.32382289},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-371.5634025825},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-304.406260065},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-230.2627525425},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-334.585245165},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-500.261781695},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-507.719593265},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-368.1312749625},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-314.7738137375},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-449.89459273},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-441.7205344725},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-312.06469901},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-394.13259133},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-384.5723385525},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-437.451572915},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-606.0533276575},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-638.37616898},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-728.7327684775},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-719.6590645625},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-733.5767981575},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-791.4481102425},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-867.6733745525},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-896.1054087},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-875.94585838},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-951.4675500675},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-1083.9464859825},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-1140.4798534825},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-1203.08470688}]
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,397.98 USDT @ 2024-12-27 23:59:00 UTC |
| Trough Total Equity | 9,488.99 USDT @ 2024-11-04 23:59:00 UTC |
| Mean | 10,010.00 USDT |
| Std Dev | 204.85 USDT |
| Last | 9,597.68 USDT |
| Points | 673 |
| Sum | 6,736,728.65 USDT |
| Across 673 points the series ranged from 9,488.99 USDT (2024-11-04 23:59:00 UTC) to 10,397.98 USDT (2024-12-27 23:59:00 UTC), averaging 10,010.00 USDT. 100% of points were positive, 0% negative. The most recent value is 9,597.68 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9709.970847225,"base":269.7721989900001,"total":9979.743046215},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9806.6908932124,"base":194.0679797699995,"total":10000.7588729824},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9606.5226557423,"base":378.5380034099999,"total":9985.0606591523},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9759.0411775973,"base":281.3870413199984,"total":10040.4282189173},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9862.6332814348,"base":185.52195409999877,"total":10048.1552355348},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9584.7142861997,"base":387.0323478699993,"total":9971.7466340697},{"timestamp":"2024-07-01T23:59:00+00:00","quote":9667.3398336972,"base":359.7899550000002,"total":10027.1297886972},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9322.4620880847,"base":655.2961589999995,"total":9977.7582470847},{"timestamp":"2024-07-24T23:59:00+00:00","quote":9128.2172200824,"base":804.1280513000002,"total":9932.3452713824},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8422.7657941549,"base":1110.96071408,"total":9533.7265082349},{"timestamp":"2024-08-16T23:59:00+00:00","quote":8862.0670741098,"base":858.2757600375007,"total":9720.3428341473},{"timestamp":"2024-08-27T23:59:00+00:00","quote":8836.7851752999,"base":994.4227631450012,"total":9831.2079384449},{"timestamp":"2024-09-08T23:59:00+00:00","quote":8570.18721419,"base":1121.1105360000001,"total":9691.29775019},{"timestamp":"2024-09-19T23:59:00+00:00","quote":8769.2049431024,"base":1041.1346329475,"total":9810.3395760499},{"timestamp":"2024-09-30T23:59:00+00:00","quote":8783.7777037424,"base":1005.3959270949999,"total":9789.1736308374},{"timestamp":"2024-10-12T23:59:00+00:00","quote":8661.5025282773,"base":1063.879651379999,"total":9725.3821796573},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8577.6635740148,"base":1086.2478226599997,"total":9663.9113966748},{"timestamp":"2024-11-04T23:59:00+00:00","quote":8298.5641365198,"base":1190.4218734798997,"total":9488.9860099997},{"timestamp":"2024-11-15T23:59:00+00:00","quote":8565.9928366448,"base":1113.9775097849997,"total":9679.9703464298},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9978.4848668198,"base":247.3017444800007,"total":10225.7866112998},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9962.3664056369,"base":321.4376308325009,"total":10283.8040364694},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9634.4162004867,"base":557.7862463250003,"total":10192.2024468117},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9785.6003419667,"base":525.7242908400003,"total":10311.3246328067},{"timestamp":"2025-01-11T23:59:00+00:00","quote":9704.9378461692,"base":584.0647626450009,"total":10289.0026088142},{"timestamp":"2025-01-22T23:59:00+00:00","quote":10227.520428414,"base":168.4873696275008,"total":10396.0077980415},{"timestamp":"2025-02-03T23:59:00+00:00","quote":9822.0439149265,"base":465.71904854999957,"total":10287.7629634765},{"timestamp":"2025-02-14T23:59:00+00:00","quote":9771.7078520667,"base":491.0848099499999,"total":10262.7926620167},{"timestamp":"2025-02-26T23:59:00+00:00","quote":9510.0814986893,"base":678.1202281000005,"total":10188.2017267893},{"timestamp":"2025-03-09T23:59:00+00:00","quote":9404.2675452918,"base":702.3351332900002,"total":10106.6026785818},{"timestamp":"2025-03-20T23:59:00+00:00","quote":9630.9638394843,"base":567.8058259999998,"total":10198.7696654843},{"timestamp":"2025-04-01T23:59:00+00:00","quote":9461.2918230293,"base":664.7662011374996,"total":10126.0580241668},{"timestamp":"2025-04-12T23:59:00+00:00","quote":9187.6718869441,"base":803.7129028950003,"total":9991.3847898391},{"timestamp":"2025-04-23T23:59:00+00:00","quote":9383.7248999766,"base":752.1329568899,"total":10135.8578568665},{"timestamp":"2025-05-05T23:59:00+00:00","quote":9265.3844132841,"base":826.1121208724999,"total":10091.4965341566},{"timestamp":"2025-05-16T23:59:00+00:00","quote":9420.8620788617,"base":747.9772260274985,"total":10168.8393048892},{"timestamp":"2025-05-28T23:59:00+00:00","quote":9701.0083744544,"base":556.636289439999,"total":10257.6446638944},{"timestamp":"2025-06-08T23:59:00+00:00","quote":9513.5331193045,"base":647.7024985200005,"total":10161.2356178245},{"timestamp":"2025-06-19T23:59:00+00:00","quote":9125.8156334995,"base":877.6572030450006,"total":10003.4728365445},{"timestamp":"2025-07-01T23:59:00+00:00","quote":9155.9724618569,"base":850.1654873075004,"total":10006.1379491644},{"timestamp":"2025-07-12T23:59:00+00:00","quote":9422.752709257,"base":729.3418730324993,"total":10152.0945822895},{"timestamp":"2025-07-24T23:59:00+00:00","quote":9560.7671564246,"base":657.5065000000013,"total":10218.2736564246},{"timestamp":"2025-08-04T23:59:00+00:00","quote":9254.447885827,"base":837.8826363600001,"total":10092.330522187},{"timestamp":"2025-08-15T23:59:00+00:00","quote":9320.4793604894,"base":785.9611267199998,"total":10106.4404872094},{"timestamp":"2025-08-27T23:59:00+00:00","quote":9689.6154439247,"base":565.0036092400005,"total":10254.6190531647},{"timestamp":"2025-09-07T23:59:00+00:00","quote":9514.0646410722,"base":663.2352402199995,"total":10177.2998812922},{"timestamp":"2025-09-19T23:59:00+00:00","quote":9512.3640571997,"base":677.7965910099992,"total":10190.1606482097},{"timestamp":"2025-09-30T23:59:00+00:00","quote":9446.8893473271,"base":695.0063539999992,"total":10141.8957013271},{"timestamp":"2025-10-11T23:59:00+00:00","quote":9340.269046742,"base":646.5851771399994,"total":9986.854223882},{"timestamp":"2025-10-23T23:59:00+00:00","quote":9161.1734688416,"base":819.5499861674998,"total":9980.7234550091},{"timestamp":"2025-11-03T23:59:00+00:00","quote":9076.6465481193,"base":829.3052042624986,"total":9905.9517523818},{"timestamp":"2025-11-14T23:59:00+00:00","quote":9185.612324002,"base":748.2760917099986,"total":9933.888415712},{"timestamp":"2025-11-26T23:59:00+00:00","quote":9237.2726892972,"base":699.3181976899996,"total":9936.5908869872},{"timestamp":"2025-12-07T23:59:00+00:00","quote":9225.0243835821,"base":666.465635605,"total":9891.4900191871},{"timestamp":"2025-12-19T23:59:00+00:00","quote":9135.783057437,"base":690.3710930550005,"total":9826.154150492},{"timestamp":"2025-12-30T23:59:00+00:00","quote":9113.5934099319,"base":691.968494105,"total":9805.5619040369},{"timestamp":"2026-01-10T23:59:00+00:00","quote":9165.1731476768,"base":672.0738462900008,"total":9837.2469939668},{"timestamp":"2026-01-22T23:59:00+00:00","quote":9081.1081187621,"base":696.6624110249995,"total":9777.7705297871},{"timestamp":"2026-02-02T23:59:00+00:00","quote":8973.9309667869,"base":699.3231939399993,"total":9673.2541607269},{"timestamp":"2026-02-14T23:59:00+00:00","quote":8989.3314654522,"base":657.8027176699998,"total":9647.1341831222},{"timestamp":"2026-02-25T23:59:00+00:00","quote":8917.3974112446,"base":680.2860025500013,"total":9597.6834137946}]
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 | 12.55% @ 2024-11-04 23:59:00 UTC |
| Min Exposure | 1.08% @ 2024-06-05 23:59:00 UTC |
| Mean | 6.80% |
| Std Dev | 2.41% |
| Last | 7.09% |
| Points | 673 |
| Across 673 points the series ranged from 1.08% (2024-06-05 23:59:00 UTC) to 12.55% (2024-11-04 23:59:00 UTC), averaging 6.80%. 100% of points were positive, 0% negative. The most recent value is 7.09%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.703197845282361},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.9405325359286967},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":3.7910436033559014},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":2.8025402421565393},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":1.8463285026082163},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":3.8812894277483507},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":3.5881649343520348},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":6.567569014727972},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":8.096054147623084},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":11.652953471241185},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":8.829686099366798},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":10.114960128717398},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":11.568218879437694},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":10.612625841099673},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":10.270488245584371},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":10.939206621672195},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":11.240250226567273},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":12.545301175756896},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":11.508067379523128},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":2.418412919028888},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":3.1256685725689475},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":5.47267628597277},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":5.098513620329111},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":5.676592618847765},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":1.6206929900460643},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":4.526922424276202},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":4.785099203723939},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":6.655936408452943},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":6.949270250609622},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":5.567395329278053},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":6.564906102167021},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":8.044059154966678},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":7.420516028452099},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":8.186220131735322},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":7.355581139608229},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":5.426550710995944},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":6.374249381480952},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":8.773525128580943},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":8.496439801516994},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":7.184151675505944},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":6.434614320459142},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":8.30217197621498},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":7.7768342643951005},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":5.509747425143341},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":6.516809448045755},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":6.651480917811445},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":6.852824900467626},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":6.474362823818856},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":8.211328465935866},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":8.371787234508783},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":7.53255986373355},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":7.0378080937780725},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":6.737767862194853},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":7.025852459483686},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":7.056897920557923},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":6.831930180285041},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":7.124961757925082},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":7.229451251050851},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":6.818633442673941},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":7.0880229449143615}]
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 | 276.00 USDT @ 2025-01-22 23:59:00 UTC |
| Worst Day | -189.43 USDT @ 2025-10-10 23:59:00 UTC |
| Mean | -0.5685 USDT |
| Std Dev | 35.74 USDT |
| Last | 39.19 USDT |
| Points | 672 |
| Sum | -382.06 USDT |
| Across 672 points the series ranged from -189.43 USDT (2025-10-10 23:59:00 UTC) to 276.00 USDT (2025-01-22 23:59:00 UTC), averaging -0.5685 USDT. 49% of points were positive, 51% negative. The most recent value is 39.19 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":4.733663012499164},{"timestamp":"2024-05-06T23:59:00+00:00","delta":-12.56850770500023},{"timestamp":"2024-05-18T23:59:00+00:00","delta":17.62926973250069},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-1.4050814699985494},{"timestamp":"2024-06-09T23:59:00+00:00","delta":6.684617102499033},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-13.534593529999256},{"timestamp":"2024-07-02T23:59:00+00:00","delta":2.6458318724999117},{"timestamp":"2024-07-14T23:59:00+00:00","delta":19.775453392499912},{"timestamp":"2024-07-25T23:59:00+00:00","delta":17.880125632498675},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-106.52578367989918},{"timestamp":"2024-08-17T23:59:00+00:00","delta":46.37417641749926},{"timestamp":"2024-08-28T23:59:00+00:00","delta":8.194187277498713},{"timestamp":"2024-09-08T23:59:00+00:00","delta":12.613255825001033},{"timestamp":"2024-09-20T23:59:00+00:00","delta":24.478190432499105},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-145.57936229000006},{"timestamp":"2024-10-13T23:59:00+00:00","delta":1.4598769849999371},{"timestamp":"2024-10-24T23:59:00+00:00","delta":16.531028770001285},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-13.837604117499723},{"timestamp":"2024-11-16T23:59:00+00:00","delta":58.82651563249965},{"timestamp":"2024-11-27T23:59:00+00:00","delta":-7.657735197599322},{"timestamp":"2024-12-08T23:59:00+00:00","delta":-4.01143166249858},{"timestamp":"2024-12-20T23:59:00+00:00","delta":8.395580622500347},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-17.989020917500966},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-23.936820209999496},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-47.55659790500067},{"timestamp":"2025-02-03T23:59:00+00:00","delta":19.44407039500038},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-24.91559668250011},{"timestamp":"2025-02-26T23:59:00+00:00","delta":18.83973616500043},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-67.82366001740047},{"timestamp":"2025-03-21T23:59:00+00:00","delta":2.172552922500472},{"timestamp":"2025-04-01T23:59:00+00:00","delta":2.6844764449997456},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-33.78047604749918},{"timestamp":"2025-04-24T23:59:00+00:00","delta":32.03511801010063},{"timestamp":"2025-05-05T23:59:00+00:00","delta":-28.32647804249973},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-4.289353272499284},{"timestamp":"2025-05-28T23:59:00+00:00","delta":0.9941376349997881},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-2.774815132499498},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-0.480576635000034},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-28.49863579759949},{"timestamp":"2025-07-13T23:59:00+00:00","delta":8.26369107500068},{"timestamp":"2025-07-24T23:59:00+00:00","delta":35.813612277501306},{"timestamp":"2025-08-04T23:59:00+00:00","delta":7.2807514399992215},{"timestamp":"2025-08-16T23:59:00+00:00","delta":57.88821002750046},{"timestamp":"2025-08-27T23:59:00+00:00","delta":27.46077082500051},{"timestamp":"2025-09-07T23:59:00+00:00","delta":9.190523665},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-26.49763753499974},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-16.499404032500024},{"timestamp":"2025-10-12T23:59:00+00:00","delta":58.6619753149007},{"timestamp":"2025-10-23T23:59:00+00:00","delta":13.31010264249926},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-66.4702048725012},{"timestamp":"2025-11-15T23:59:00+00:00","delta":17.500277115001154},{"timestamp":"2025-11-26T23:59:00+00:00","delta":3.329190947499228},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-9.185149994900712},{"timestamp":"2025-12-19T23:59:00+00:00","delta":39.97073215000091},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-22.146736494900324},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-11.422376217500641},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-18.94636432490006},{"timestamp":"2026-02-02T23:59:00+00:00","delta":15.942732967600023},{"timestamp":"2026-02-14T23:59:00+00:00","delta":12.972537010100496},{"timestamp":"2026-02-25T23:59:00+00:00","delta":39.18823934740067}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 6.40% @ 2024-11 |
| Worst Month | -2.27% @ 2025-10 |
| Mean | -0.05% |
| Std Dev | 1.67% |
| Last | -0.62% |
| Points | 23 |
| Across 23 points the series ranged from -2.27% (2025-10) to 6.40% (2024-11), averaging -0.05%. 43% of points were positive, 57% negative. The most recent value is -0.62%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.8990091912649868},{"month":"2024-05","returnPct":1.521588652855117},{"month":"2024-06","returnPct":-0.291114379763184},{"month":"2024-07","returnPct":-1.7148626522589534},{"month":"2024-08","returnPct":0.07180948354248501},{"month":"2024-09","returnPct":0.2207153382993015},{"month":"2024-10","returnPct":-0.4382139459187979},{"month":"2024-11","returnPct":6.401357584965149},{"month":"2024-12","returnPct":0.9832886733886884},{"month":"2025-01","returnPct":0.12061544403569131},{"month":"2025-02","returnPct":-1.146196040288909},{"month":"2025-03","returnPct":-0.9022003687832986},{"month":"2025-04","returnPct":0.22879773752538032},{"month":"2025-05","returnPct":0.08754386401658863},{"month":"2025-06","returnPct":-1.3672142754550003},{"month":"2025-07","returnPct":0.9988106704399908},{"month":"2025-08","returnPct":1.1536505541802917},{"month":"2025-09","returnPct":-0.30210324735056554},{"month":"2025-10","returnPct":-2.266305666643392},{"month":"2025-11","returnPct":-0.8271503549533819},{"month":"2025-12","returnPct":-0.5478265942748781},{"month":"2026-01","returnPct":-1.656144096866521},{"month":"2026-02","returnPct":-0.6174390710162044}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 800.77 USDT @ 2026-02-25 |
| Trough Cum. | 0.9847 USDT @ 2024-04-24 |
| Mean | 388.50 USDT |
| Std Dev | 230.50 USDT |
| Last | 800.77 USDT |
| Points | 673 |
| Sum | 261,457.79 USDT |
| Across 673 points the series ranged from 0.9847 USDT (2024-04-24) to 800.77 USDT (2026-02-25), averaging 388.50 USDT. 100% of points were positive, 0% negative. The most recent value is 800.77 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":0.984734},{"timestamp":"2024-05-05","cumProfit":17.372427000000002},{"timestamp":"2024-05-17","cumProfit":27.858992999999998},{"timestamp":"2024-05-28","cumProfit":39.938873},{"timestamp":"2024-06-09","cumProfit":48.219078},{"timestamp":"2024-06-20","cumProfit":61.121477},{"timestamp":"2024-07-01","cumProfit":73.547715},{"timestamp":"2024-07-13","cumProfit":84.600298},{"timestamp":"2024-07-24","cumProfit":95.863706},{"timestamp":"2024-08-05","cumProfit":107.038266},{"timestamp":"2024-08-16","cumProfit":120.39010300000001},{"timestamp":"2024-08-27","cumProfit":130.185673},{"timestamp":"2024-09-08","cumProfit":139.19625399999998},{"timestamp":"2024-09-19","cumProfit":142.818256},{"timestamp":"2024-09-30","cumProfit":147.32668399999997},{"timestamp":"2024-10-12","cumProfit":155.315784},{"timestamp":"2024-10-23","cumProfit":161.68985900000004},{"timestamp":"2024-11-04","cumProfit":168.14506800000007},{"timestamp":"2024-11-15","cumProfit":180.05626400000006},{"timestamp":"2024-11-26","cumProfit":214.20326000000006},{"timestamp":"2024-12-08","cumProfit":238.24447500000005},{"timestamp":"2024-12-19","cumProfit":261.269424},{"timestamp":"2024-12-31","cumProfit":297.2412900000001},{"timestamp":"2025-01-11","cumProfit":316.75674300000003},{"timestamp":"2025-01-22","cumProfit":337.801985},{"timestamp":"2025-02-03","cumProfit":368.46106899999995},{"timestamp":"2025-02-14","cumProfit":388.26493300000004},{"timestamp":"2025-02-26","cumProfit":402.24510900000007},{"timestamp":"2025-03-09","cumProfit":416.59674000000007},{"timestamp":"2025-03-20","cumProfit":427.8922550000001},{"timestamp":"2025-04-01","cumProfit":433.56957200000005},{"timestamp":"2025-04-12","cumProfit":445.4528310000001},{"timestamp":"2025-04-23","cumProfit":456.1816850000001},{"timestamp":"2025-05-05","cumProfit":463.05994100000015},{"timestamp":"2025-05-16","cumProfit":473.24557000000016},{"timestamp":"2025-05-28","cumProfit":487.90742300000016},{"timestamp":"2025-06-08","cumProfit":495.8208690000002},{"timestamp":"2025-06-19","cumProfit":503.7346240000002},{"timestamp":"2025-07-01","cumProfit":513.8575500000002},{"timestamp":"2025-07-12","cumProfit":520.2258640000001},{"timestamp":"2025-07-24","cumProfit":533.0474770000002},{"timestamp":"2025-08-04","cumProfit":542.2251200000003},{"timestamp":"2025-08-15","cumProfit":548.1610290000004},{"timestamp":"2025-08-27","cumProfit":566.6837590000005},{"timestamp":"2025-09-07","cumProfit":571.4324790000005},{"timestamp":"2025-09-19","cumProfit":574.7329920000006},{"timestamp":"2025-09-30","cumProfit":579.3472800000008},{"timestamp":"2025-10-11","cumProfit":592.9075590000008},{"timestamp":"2025-10-23","cumProfit":619.0996310000008},{"timestamp":"2025-11-03","cumProfit":634.6845280000009},{"timestamp":"2025-11-14","cumProfit":653.5474890000011},{"timestamp":"2025-11-26","cumProfit":670.1676930000011},{"timestamp":"2025-12-07","cumProfit":682.938137000001},{"timestamp":"2025-12-19","cumProfit":693.827532000001},{"timestamp":"2025-12-30","cumProfit":701.667320000001},{"timestamp":"2026-01-10","cumProfit":713.1928580000011},{"timestamp":"2026-01-22","cumProfit":729.2380890000012},{"timestamp":"2026-02-02","cumProfit":757.2006570000012},{"timestamp":"2026-02-14","cumProfit":787.6140470000014},{"timestamp":"2026-02-25","cumProfit":800.7681310000014}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 5.90 USDT @ 2024-11-18 |
| Worst Day | 0.0905 USDT @ 2024-09-15 |
| Mean | 1.19 USDT |
| Std Dev | 0.8872 USDT |
| Last | 2.25 USDT |
| Points | 673 |
| Sum | 800.77 USDT |
| Across 673 points the series ranged from 0.0905 USDT (2024-09-15) to 5.90 USDT (2024-11-18), averaging 1.19 USDT. 100% of points were positive, 0% negative. The most recent value is 2.25 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":0.984734},{"day":"2024-05-05","profit":1.499426},{"day":"2024-05-17","profit":0.678876},{"day":"2024-05-28","profit":0.53082},{"day":"2024-06-09","profit":0.440082},{"day":"2024-06-20","profit":2.336031},{"day":"2024-07-01","profit":0.305015},{"day":"2024-07-13","profit":0.935909},{"day":"2024-07-24","profit":1.229985},{"day":"2024-08-05","profit":2.939196},{"day":"2024-08-16","profit":0.622093},{"day":"2024-08-27","profit":0.690772},{"day":"2024-09-08","profit":0.272684},{"day":"2024-09-19","profit":0.421913},{"day":"2024-09-30","profit":0.226887},{"day":"2024-10-12","profit":0.510018},{"day":"2024-10-23","profit":0.485394},{"day":"2024-11-04","profit":0.713004},{"day":"2024-11-15","profit":0.932601},{"day":"2024-11-26","profit":3.533202},{"day":"2024-12-08","profit":0.909477},{"day":"2024-12-19","profit":2.526593},{"day":"2024-12-31","profit":2.427153},{"day":"2025-01-11","profit":0.450178},{"day":"2025-01-22","profit":3.456077},{"day":"2025-02-03","profit":3.809988},{"day":"2025-02-14","profit":1.417302},{"day":"2025-02-26","profit":1.149735},{"day":"2025-03-09","profit":1.026205},{"day":"2025-03-20","profit":0.286603},{"day":"2025-04-01","profit":0.658077},{"day":"2025-04-12","profit":0.571964},{"day":"2025-04-23","profit":0.891843},{"day":"2025-05-05","profit":0.533676},{"day":"2025-05-16","profit":0.736033},{"day":"2025-05-28","profit":0.697946},{"day":"2025-06-08","profit":0.529425},{"day":"2025-06-19","profit":0.964018},{"day":"2025-07-01","profit":0.640628},{"day":"2025-07-12","profit":0.489219},{"day":"2025-07-24","profit":1.873437},{"day":"2025-08-04","profit":0.628313},{"day":"2025-08-15","profit":0.607965},{"day":"2025-08-27","profit":1.704013},{"day":"2025-09-07","profit":0.302488},{"day":"2025-09-19","profit":0.201209},{"day":"2025-09-30","profit":0.558245},{"day":"2025-10-11","profit":5.575469},{"day":"2025-10-23","profit":1.771142},{"day":"2025-11-03","profit":1.315084},{"day":"2025-11-14","profit":1.20645},{"day":"2025-11-26","profit":1.900473},{"day":"2025-12-07","profit":1.657349},{"day":"2025-12-19","profit":0.829567},{"day":"2025-12-30","profit":0.696059},{"day":"2026-01-10","profit":0.437662},{"day":"2026-01-22","profit":2.015794},{"day":"2026-02-02","profit":3.995033},{"day":"2026-02-14","profit":3.089419},{"day":"2026-02-25","profit":2.252518}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 936 trades @ 2024-11-18 |
| Quietest Day | 11 trades @ 2024-09-15 |
| Mean | 163 trades |
| Std Dev | 131 trades |
| Last | 168 trades |
| Points | 673 |
| Sum | 109924 trades |
| Across 673 points the series ranged from 11 trades (2024-09-15) to 936 trades (2024-11-18), averaging 163 trades. The most recent value is 168 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":160},{"day":"2024-05-05","count":235},{"day":"2024-05-17","count":110},{"day":"2024-05-28","count":100},{"day":"2024-06-09","count":79},{"day":"2024-06-20","count":353},{"day":"2024-07-01","count":52},{"day":"2024-07-13","count":137},{"day":"2024-07-24","count":169},{"day":"2024-08-05","count":464},{"day":"2024-08-16","count":109},{"day":"2024-08-27","count":112},{"day":"2024-09-08","count":46},{"day":"2024-09-19","count":54},{"day":"2024-09-30","count":29},{"day":"2024-10-12","count":57},{"day":"2024-10-23","count":86},{"day":"2024-11-04","count":92},{"day":"2024-11-15","count":155},{"day":"2024-11-26","count":539},{"day":"2024-12-08","count":138},{"day":"2024-12-19","count":432},{"day":"2024-12-31","count":384},{"day":"2025-01-11","count":72},{"day":"2025-01-22","count":517},{"day":"2025-02-03","count":547},{"day":"2025-02-14","count":201},{"day":"2025-02-26","count":213},{"day":"2025-03-09","count":153},{"day":"2025-03-20","count":48},{"day":"2025-04-01","count":85},{"day":"2025-04-12","count":100},{"day":"2025-04-23","count":104},{"day":"2025-05-05","count":60},{"day":"2025-05-16","count":97},{"day":"2025-05-28","count":107},{"day":"2025-06-08","count":59},{"day":"2025-06-19","count":166},{"day":"2025-07-01","count":106},{"day":"2025-07-12","count":51},{"day":"2025-07-24","count":203},{"day":"2025-08-04","count":119},{"day":"2025-08-15","count":116},{"day":"2025-08-27","count":206},{"day":"2025-09-07","count":28},{"day":"2025-09-19","count":20},{"day":"2025-09-30","count":103},{"day":"2025-10-11","count":621},{"day":"2025-10-23","count":180},{"day":"2025-11-03","count":113},{"day":"2025-11-14","count":101},{"day":"2025-11-26","count":146},{"day":"2025-12-07","count":113},{"day":"2025-12-19","count":148},{"day":"2025-12-30","count":130},{"day":"2026-01-10","count":62},{"day":"2026-01-22","count":314},{"day":"2026-02-02","count":399},{"day":"2026-02-14","count":274},{"day":"2026-02-25","count":168}]
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 | 826.78 USDT @ 2026-02-25 |
| Start | 1.20 USDT @ 2024-04-24 |
| Mean | 436.35 USDT |
| Std Dev | 248.06 USDT |
| Last | 826.78 USDT |
| Points | 673 |
| Sum | 293,661.14 USDT |
| Across 673 points the series ranged from 1.20 USDT (2024-04-24) to 826.78 USDT (2026-02-25), averaging 436.35 USDT. 100% of points were positive, 0% negative. The most recent value is 826.78 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.204596},{"index":11,"timestamp":"2024-05-05","cumFees":20.531583},{"index":23,"timestamp":"2024-05-17","cumFees":33.084686999999995},{"index":34,"timestamp":"2024-05-28","cumFees":48.45553699999999},{"index":46,"timestamp":"2024-06-09","cumFees":58.39317199999999},{"index":57,"timestamp":"2024-06-20","cumFees":73.330593},{"index":68,"timestamp":"2024-07-01","cumFees":88.40178499999998},{"index":80,"timestamp":"2024-07-13","cumFees":100.80091199999997},{"index":91,"timestamp":"2024-07-24","cumFees":114.76505399999995},{"index":103,"timestamp":"2024-08-05","cumFees":126.93448399999997},{"index":114,"timestamp":"2024-08-16","cumFees":140.711767},{"index":125,"timestamp":"2024-08-27","cumFees":152.046197},{"index":137,"timestamp":"2024-09-08","cumFees":161.44750599999998},{"index":148,"timestamp":"2024-09-19","cumFees":164.726784},{"index":159,"timestamp":"2024-09-30","cumFees":169.247086},{"index":171,"timestamp":"2024-10-12","cumFees":178.270436},{"index":182,"timestamp":"2024-10-23","cumFees":184.77513100000002},{"index":194,"timestamp":"2024-11-04","cumFees":192.39160199999998},{"index":205,"timestamp":"2024-11-15","cumFees":206.28699599999996},{"index":216,"timestamp":"2024-11-26","cumFees":244.19124999999994},{"index":228,"timestamp":"2024-12-08","cumFees":274.32688499999995},{"index":239,"timestamp":"2024-12-19","cumFees":303.26697600000006},{"index":251,"timestamp":"2024-12-31","cumFees":348.70226},{"index":262,"timestamp":"2025-01-11","cumFees":373.11738699999995},{"index":273,"timestamp":"2025-01-22","cumFees":397.580235},{"index":285,"timestamp":"2025-02-03","cumFees":435.321941},{"index":296,"timestamp":"2025-02-14","cumFees":456.05771699999997},{"index":308,"timestamp":"2025-02-26","cumFees":471.00101099999995},{"index":319,"timestamp":"2025-03-09","cumFees":486.91241999999994},{"index":330,"timestamp":"2025-03-20","cumFees":499.882405},{"index":342,"timestamp":"2025-04-01","cumFees":506.25164800000005},{"index":353,"timestamp":"2025-04-12","cumFees":519.4132390000001},{"index":364,"timestamp":"2025-04-23","cumFees":531.229905},{"index":376,"timestamp":"2025-05-05","cumFees":537.7274189999999},{"index":387,"timestamp":"2025-05-16","cumFees":548.2993899999999},{"index":399,"timestamp":"2025-05-28","cumFees":563.6307870000002},{"index":410,"timestamp":"2025-06-08","cumFees":570.6543110000002},{"index":421,"timestamp":"2025-06-19","cumFees":577.8195960000002},{"index":433,"timestamp":"2025-07-01","cumFees":590.2896500000003},{"index":444,"timestamp":"2025-07-12","cumFees":597.1297060000002},{"index":456,"timestamp":"2025-07-24","cumFees":607.7095330000002},{"index":467,"timestamp":"2025-08-04","cumFees":616.4604100000003},{"index":478,"timestamp":"2025-08-15","cumFees":623.1576010000003},{"index":490,"timestamp":"2025-08-27","cumFees":641.0162010000001},{"index":501,"timestamp":"2025-09-07","cumFees":644.5281710000002},{"index":513,"timestamp":"2025-09-19","cumFees":646.9872380000002},{"index":524,"timestamp":"2025-09-30","cumFees":652.3768300000002},{"index":535,"timestamp":"2025-10-11","cumFees":665.7944410000001},{"index":547,"timestamp":"2025-10-23","cumFees":688.5262090000001},{"index":558,"timestamp":"2025-11-03","cumFees":700.2009720000002},{"index":569,"timestamp":"2025-11-14","cumFees":713.1023510000002},{"index":581,"timestamp":"2025-11-26","cumFees":723.1104470000002},{"index":592,"timestamp":"2025-12-07","cumFees":729.7884230000002},{"index":604,"timestamp":"2025-12-19","cumFees":737.1700280000005},{"index":615,"timestamp":"2025-12-30","cumFees":744.2565500000005},{"index":626,"timestamp":"2026-01-10","cumFees":753.2002120000005},{"index":638,"timestamp":"2026-01-22","cumFees":773.3205110000006},{"index":649,"timestamp":"2026-02-02","cumFees":798.2917230000006},{"index":661,"timestamp":"2026-02-14","cumFees":818.8853730000006},{"index":672,"timestamp":"2026-02-25","cumFees":826.7776090000007}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 8194 trades @ 0.10% |
| Least Populated Bin | 22 trades @ 0.31% |
| Mean | 1832 trades |
| Std Dev | 2364 trades |
| Last | 261 trades |
| Points | 60 |
| Sum | 109924 trades |
| Across 60 points the series ranged from 22 trades (0.31%) to 8194 trades (0.10%), averaging 1832 trades. The most recent value is 261 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":8194,"from":0.099812},{"bin":"0.10%","count":7359,"from":0.103955},{"bin":"0.11%","count":7691,"from":0.108098},{"bin":"0.11%","count":7074,"from":0.112241},{"bin":"0.12%","count":6248,"from":0.116384},{"bin":"0.12%","count":6270,"from":0.120526},{"bin":"0.12%","count":5446,"from":0.124669},{"bin":"0.13%","count":6108,"from":0.128812},{"bin":"0.13%","count":6210,"from":0.132955},{"bin":"0.14%","count":5545,"from":0.137097},{"bin":"0.14%","count":4076,"from":0.14124},{"bin":"0.15%","count":3867,"from":0.145383},{"bin":"0.15%","count":2839,"from":0.149526},{"bin":"0.15%","count":2976,"from":0.153669},{"bin":"0.16%","count":2564,"from":0.157811},{"bin":"0.16%","count":1829,"from":0.161954},{"bin":"0.17%","count":1676,"from":0.166097},{"bin":"0.17%","count":1896,"from":0.17024},{"bin":"0.17%","count":1978,"from":0.174382},{"bin":"0.18%","count":2873,"from":0.178525},{"bin":"0.18%","count":1480,"from":0.182668},{"bin":"0.19%","count":1239,"from":0.186811},{"bin":"0.19%","count":1154,"from":0.190954},{"bin":"0.20%","count":1140,"from":0.195096},{"bin":"0.20%","count":1408,"from":0.199239},{"bin":"0.20%","count":770,"from":0.203382},{"bin":"0.21%","count":772,"from":0.207525},{"bin":"0.21%","count":671,"from":0.211667},{"bin":"0.22%","count":804,"from":0.21581},{"bin":"0.22%","count":1068,"from":0.219953},{"bin":"0.22%","count":1056,"from":0.224096},{"bin":"0.23%","count":399,"from":0.228239},{"bin":"0.23%","count":381,"from":0.232381},{"bin":"0.24%","count":509,"from":0.236524},{"bin":"0.24%","count":537,"from":0.240667},{"bin":"0.24%","count":425,"from":0.24481},{"bin":"0.25%","count":82,"from":0.248952},{"bin":"0.25%","count":215,"from":0.253095},{"bin":"0.26%","count":353,"from":0.257238},{"bin":"0.26%","count":183,"from":0.261381},{"bin":"0.27%","count":75,"from":0.265524},{"bin":"0.27%","count":244,"from":0.269666},{"bin":"0.27%","count":202,"from":0.273809},{"bin":"0.28%","count":56,"from":0.277952},{"bin":"0.28%","count":145,"from":0.282095},{"bin":"0.29%","count":259,"from":0.286237},{"bin":"0.29%","count":134,"from":0.29038},{"bin":"0.29%","count":36,"from":0.294523},{"bin":"0.30%","count":118,"from":0.298666},{"bin":"0.30%","count":121,"from":0.302809},{"bin":"0.31%","count":135,"from":0.306951},{"bin":"0.31%","count":22,"from":0.311094},{"bin":"0.32%","count":99,"from":0.315237},{"bin":"0.32%","count":110,"from":0.31938},{"bin":"0.32%","count":96,"from":0.323522},{"bin":"0.33%","count":44,"from":0.327665},{"bin":"0.33%","count":42,"from":0.331808},{"bin":"0.34%","count":210,"from":0.335951},{"bin":"0.34%","count":150,"from":0.340094},{"bin":"0.34%","count":261,"from":0.344236}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1099 |
| Coldest Window | 100.00% @ 1099 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1099) to 100.00% (1099), 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":1099,"winRate":100},{"index":2951,"winRate":100},{"index":4803,"winRate":100},{"index":6655,"winRate":100},{"index":8507,"winRate":100},{"index":10358,"winRate":100},{"index":12210,"winRate":100},{"index":14062,"winRate":100},{"index":15805,"winRate":100},{"index":17657,"winRate":100},{"index":19509,"winRate":100},{"index":21361,"winRate":100},{"index":23213,"winRate":100},{"index":25064,"winRate":100},{"index":26916,"winRate":100},{"index":28768,"winRate":100},{"index":30620,"winRate":100},{"index":32472,"winRate":100},{"index":34324,"winRate":100},{"index":36176,"winRate":100},{"index":38028,"winRate":100},{"index":39879,"winRate":100},{"index":41731,"winRate":100},{"index":43474,"winRate":100},{"index":45326,"winRate":100},{"index":47178,"winRate":100},{"index":49030,"winRate":100},{"index":50882,"winRate":100},{"index":52734,"winRate":100},{"index":54586,"winRate":100},{"index":56437,"winRate":100},{"index":58289,"winRate":100},{"index":60141,"winRate":100},{"index":61993,"winRate":100},{"index":63845,"winRate":100},{"index":65697,"winRate":100},{"index":67549,"winRate":100},{"index":69292,"winRate":100},{"index":71144,"winRate":100},{"index":72995,"winRate":100},{"index":74847,"winRate":100},{"index":76699,"winRate":100},{"index":78551,"winRate":100},{"index":80403,"winRate":100},{"index":82255,"winRate":100},{"index":84107,"winRate":100},{"index":85959,"winRate":100},{"index":87810,"winRate":100},{"index":89662,"winRate":100},{"index":91514,"winRate":100},{"index":93366,"winRate":100},{"index":95218,"winRate":100},{"index":96961,"winRate":100},{"index":98813,"winRate":100},{"index":100665,"winRate":100},{"index":102516,"winRate":100},{"index":104368,"winRate":100},{"index":106220,"winRate":100},{"index":108072,"winRate":100},{"index":109924,"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 | 1.02 USDT @ 2026-02-25 23:59:00 UTC |
| Trough Net | 0.0060 USDT @ 2024-04-24 00:32:00 UTC |
| Mean | 0.4441 USDT |
| Std Dev | 0.3160 USDT |
| Last | 1.02 USDT |
| Points | 100 |
| Sum | 44.41 USDT |
| Across 100 points the series ranged from 0.0060 USDT (2024-04-24 00:32:00 UTC) to 1.02 USDT (2026-02-25 23:59:00 UTC), averaging 0.4441 USDT. 100% of points were positive, 0% negative. The most recent value is 1.02 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:32:00Z","net":0.0059728675,"gross":0.013510000000000001},{"timestamp":"2024-04-24T01:01:00Z","net":0.0177933475,"gross":0.04039},{"timestamp":"2024-04-24T01:02:00Z","net":0.02365275,"gross":0.05376},{"timestamp":"2024-04-24T01:30:00Z","net":0.035354365,"gross":0.08049999999999999},{"timestamp":"2024-04-24T02:00:00Z","net":0.047058845,"gross":0.10723999999999997},{"timestamp":"2024-04-24T02:13:00Z","net":0.052895327500000006,"gross":0.12060999999999997},{"timestamp":"2024-04-24T02:47:00Z","net":0.06459980750000001,"gross":0.14734999999999995},{"timestamp":"2024-04-24T03:02:00Z","net":0.07629282750000001,"gross":0.17408999999999994},{"timestamp":"2024-04-24T03:26:00Z","net":0.08219730750000001,"gross":0.18752999999999995},{"timestamp":"2024-04-24T03:37:00Z","net":0.09390751750000001,"gross":0.21426999999999993},{"timestamp":"2024-04-24T04:04:00Z","net":0.10549855,"gross":0.24093999999999993},{"timestamp":"2024-04-24T04:06:00Z","net":0.111278825,"gross":0.2542399999999999},{"timestamp":"2024-04-24T04:24:00Z","net":0.122827975,"gross":0.28083999999999987},{"timestamp":"2024-04-24T04:45:00Z","net":0.13434292500000003,"gross":0.3074399999999998},{"timestamp":"2024-04-24T04:49:00Z","net":0.14004741750000002,"gross":0.32066999999999984},{"timestamp":"2024-05-16T07:56:00Z","net":0.15103117500000002,"gross":0.3466799999999999},{"timestamp":"2024-07-01T21:44:00Z","net":0.16101242500000001,"gross":0.3716799999999999},{"timestamp":"2024-07-01T23:00:00Z","net":0.170993675,"gross":0.3966799999999999},{"timestamp":"2024-07-03T01:23:00Z","net":0.1759843,"gross":0.40917999999999993},{"timestamp":"2024-07-03T08:40:00Z","net":0.18596555,"gross":0.43417999999999995},{"timestamp":"2025-01-24T09:50:00Z","net":0.1959468,"gross":0.45918},{"timestamp":"2025-04-07T14:17:00Z","net":0.200937425,"gross":0.47168},{"timestamp":"2025-12-15T16:40:00Z","net":0.235657465,"gross":0.52144},{"timestamp":"2025-12-19T20:37:00Z","net":0.25806868000000005,"gross":0.5588799999999999},{"timestamp":"2025-12-19T22:06:00Z","net":0.2630593050000001,"gross":0.5713799999999999},{"timestamp":"2025-12-21T00:08:00Z","net":0.2854705200000001,"gross":0.6088199999999998},{"timestamp":"2025-12-22T08:24:00Z","net":0.30788173500000016,"gross":0.6462599999999997},{"timestamp":"2025-12-22T11:08:00Z","net":0.32530232500000017,"gross":0.6711999999999997},{"timestamp":"2025-12-22T14:47:00Z","net":0.3600223650000001,"gross":0.7209599999999997},{"timestamp":"2025-12-25T02:46:00Z","net":0.3947424050000001,"gross":0.7707199999999997},{"timestamp":"2025-12-25T08:50:00Z","net":0.41210242500000005,"gross":0.7955999999999998},{"timestamp":"2025-12-25T10:19:00Z","net":0.446822465,"gross":0.8453599999999998},{"timestamp":"2025-12-29T13:09:00Z","net":0.48154250499999995,"gross":0.8951199999999998},{"timestamp":"2026-01-03T04:32:00Z","net":0.49896309499999997,"gross":0.9200599999999998},{"timestamp":"2026-01-03T06:02:00Z","net":0.533683135,"gross":0.9698199999999998},{"timestamp":"2026-01-04T09:21:00Z","net":0.568403175,"gross":1.0195799999999997},{"timestamp":"2026-01-04T09:35:00Z","net":0.5857631950000001,"gross":1.0444599999999997},{"timestamp":"2026-01-08T12:30:00Z","net":0.6205438050000001,"gross":1.0942799999999997},{"timestamp":"2026-01-08T16:43:00Z","net":0.6305250550000001,"gross":1.1192799999999996},{"timestamp":"2026-01-08T19:09:00Z","net":0.6355156800000001,"gross":1.1317799999999996},{"timestamp":"2026-01-08T19:14:00Z","net":0.6454969300000002,"gross":1.1567799999999995},{"timestamp":"2026-01-08T22:47:00Z","net":0.6554781800000002,"gross":1.1817799999999994},{"timestamp":"2026-01-08T23:01:00Z","net":0.6604688050000003,"gross":1.1942799999999993},{"timestamp":"2026-01-09T07:20:00Z","net":0.6828800200000003,"gross":1.2317199999999993},{"timestamp":"2026-01-09T18:47:00Z","net":0.7052306650000003,"gross":1.2690999999999992},{"timestamp":"2026-02-25T16:17:00Z","net":0.7310187000000002,"gross":1.3099199999999993},{"timestamp":"2026-02-25T16:23:00Z","net":0.7439127175000002,"gross":1.3303299999999993},{"timestamp":"2026-02-25T17:12:00Z","net":0.7694578875000002,"gross":1.3709099999999994},{"timestamp":"2026-02-25T18:13:00Z","net":0.7947611525000002,"gross":1.4112499999999994},{"timestamp":"2026-02-25T19:11:00Z","net":0.8074127850000002,"gross":1.4314199999999995},{"timestamp":"2026-02-25T20:21:00Z","net":0.8327160500000003,"gross":1.4717599999999995},{"timestamp":"2026-02-25T20:35:00Z","net":0.8579390000000002,"gross":1.5120199999999995},{"timestamp":"2026-02-25T20:46:00Z","net":0.8705103175000002,"gross":1.5321099999999994},{"timestamp":"2026-02-25T21:14:00Z","net":0.8957332675000002,"gross":1.5723699999999994},{"timestamp":"2026-02-25T21:37:00Z","net":0.9207963075000002,"gross":1.6124699999999994},{"timestamp":"2026-02-25T21:45:00Z","net":0.9333676250000001,"gross":1.6325599999999993},{"timestamp":"2026-02-25T22:18:00Z","net":0.9586708900000002,"gross":1.6728999999999994},{"timestamp":"2026-02-25T22:59:00Z","net":0.9844589250000001,"gross":1.7137199999999995},{"timestamp":"2026-02-25T23:06:00Z","net":0.9973529425000001,"gross":1.7341299999999995},{"timestamp":"2026-02-25T23:59:00Z","net":1.0233982475,"gross":1.7752099999999995}]
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.75 @ 2024-12-04 23:59:00 UTC |
| Worst Sharpe (30d) | -9.07 @ 2026-02-05 23:59:00 UTC |
| Mean | -0.62 |
| Std Dev | 2.89 |
| Last | -3.60 |
| Points | 643 |
| Across 643 points the series ranged from -9.07 (2026-02-05 23:59:00 UTC) to 7.75 (2024-12-04 23:59:00 UTC), averaging -0.62. The most recent value is -3.60. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":1.6185307621288996,"sharpe90":0.23363820314735675},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":2.837715317449497,"sharpe90":-2.5555219690141984},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":3.2414236214319887,"sharpe90":-1.4520287810971984},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-1.1388341699395998,"sharpe90":-0.6241375380014431},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-3.4466042638587293,"sharpe90":-1.7545791070119208},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":1.3341886540008185,"sharpe90":-1.1602562913177623},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":-1.7426015694240211,"sharpe90":-1.2339873378102724},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":-3.500064108624672,"sharpe90":-1.2074660034757392},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-2.1832886943256913,"sharpe90":-1.4742526053337752},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-0.3146109097440595,"sharpe90":-0.9042112013693125},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":0.8497560330928838,"sharpe90":-0.27843388760024873},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":-0.3565475599059754,"sharpe90":1.0918734886766417},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":-2.9069158495400607,"sharpe90":1.5335647615413799},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":-0.591280120202785,"sharpe90":1.983796512457911},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-3.6731293262532447,"sharpe90":1.615528370938518},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-3.670589052317727,"sharpe90":2.9656958332454226},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-1.416095918128278,"sharpe90":2.1724840540709063},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":5.702732865540343,"sharpe90":2.944786909827255},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":6.9395966659603605,"sharpe90":2.439665260199647},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":4.32605971573372,"sharpe90":1.1805036290425903},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":3.140507746194337,"sharpe90":-0.0985072328828057},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":1.866358522421341,"sharpe90":-0.5421147879337986},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":0.9110895897472734,"sharpe90":0.09031004348683597},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":0.4679472554057829,"sharpe90":-0.993844910746659},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-0.9482541707623139,"sharpe90":-1.670320844436453},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":1.4068165465819398,"sharpe90":-0.3321815914125125},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-3.2144552509243285,"sharpe90":-1.1139011538251422},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-1.1231085796379519,"sharpe90":0.044342227517244315},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-0.22966382162263868,"sharpe90":0.014649148290652154},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-2.718625162182279,"sharpe90":-0.12667675775855874},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-5.904299944014713,"sharpe90":-0.5329595927605403},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":-0.4033095864335578,"sharpe90":-1.291318908446804},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":2.894759919959206,"sharpe90":0.7605848417236852},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":4.287573377435643,"sharpe90":1.5426001147538726},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":2.161945043714447,"sharpe90":0.12467534093545338},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-1.2258174011982406,"sharpe90":-1.160918729162143},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-3.9161595202900523,"sharpe90":0.43727130981526663},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-3.866355774046203,"sharpe90":0.29792431029673494},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":-0.7389607873641342,"sharpe90":0.022399814134111982},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":7.148942209461994,"sharpe90":1.864048511905484},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":-0.473905111655616,"sharpe90":0.746791737851591},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":-0.25962213301188497,"sharpe90":-0.6782253264585897},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.689398928299051,"sharpe90":-1.2662466810503856},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":1.6013313928409039,"sharpe90":-0.9430811347637825},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":0.38992704129968775,"sharpe90":-1.3796466099322187},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-3.144456837025284,"sharpe90":-2.271186458962949},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-0.9102742265331203,"sharpe90":-1.9092757136127292},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-3.1239072682069016,"sharpe90":-2.5809905744670405},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-2.7857918553984495,"sharpe90":-2.1666253118911847},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-2.457617025427845,"sharpe90":-2.225793987706673},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-2.0124817317562793,"sharpe90":-1.9670879477645775},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":-1.58832793969013,"sharpe90":-2.6888151178059183},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-3.277857229206596,"sharpe90":-3.434999654842882},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-3.3157613673890167,"sharpe90":-3.1721134384350096},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-2.640079859072029,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-1.7390184970124962,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":-1.9084276119980697,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-7.036937851292357,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-4.522669110905467,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-3.5992185947663744,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.10% @ 3 |
| Deepest Episode | -8.07% @ 424 |
| Mean | -2.10% |
| Std Dev | 2.84% |
| Last | -8.07% |
| Points | 8 |
| Across 8 points the series ranged from -8.07% (424) to -0.10% (3), averaging -2.10%. 0% of points were positive, 100% negative. The most recent value is -8.07%. | |
| Full series - 8 points. |
[{"start":"2024-04-26T23:59:00+00:00","end":"2024-05-04T23:59:00+00:00","depth":-0.9459931953700577,"durationDays":8},{"start":"2024-05-06T23:59:00+00:00","end":"2024-05-18T23:59:00+00:00","depth":-0.502606375485079,"durationDays":12},{"start":"2024-05-22T23:59:00+00:00","end":"2024-05-25T23:59:00+00:00","depth":-0.10363256154139826,"durationDays":3},{"start":"2024-06-07T23:59:00+00:00","end":"2024-11-18T23:59:00+00:00","depth":-5.668316102777356,"durationDays":164},{"start":"2024-11-19T23:59:00+00:00","end":"2024-11-22T23:59:00+00:00","depth":-0.29237956035203777,"durationDays":3},{"start":"2024-11-28T23:59:00+00:00","end":"2024-12-03T23:59:00+00:00","depth":-0.16964939861965972,"durationDays":5},{"start":"2024-12-09T23:59:00+00:00","end":"2024-12-26T23:59:00+00:00","depth":-1.0587325614428367,"durationDays":17},{"start":"2024-12-28T23:59:00+00:00","end":"ongoing","depth":-8.073496362714003,"durationDays":424}]
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 | 12.55% @ 2024-11-04 23:59:00 UTC |
| Min Utilization | 1.08% @ 2024-06-05 23:59:00 UTC |
| Mean | 6.80% |
| Std Dev | 2.41% |
| Last | 7.09% |
| Points | 673 |
| Across 673 points the series ranged from 1.08% (2024-06-05 23:59:00 UTC) to 12.55% (2024-11-04 23:59:00 UTC), averaging 6.80%. 100% of points were positive, 0% negative. The most recent value is 7.09%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":2.703197845282361},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.9405325359286967},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":3.7910436033559014},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":2.8025402421565393},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":1.8463285026082163},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":3.8812894277483507},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":3.5881649343520348},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":6.567569014727972},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":8.096054147623084},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":11.652953471241185},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":8.829686099366798},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":10.114960128717398},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":11.568218879437694},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":10.612625841099673},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":10.270488245584371},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":10.939206621672195},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":11.240250226567273},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":12.545301175756896},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":11.508067379523128},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":2.418412919028888},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":3.1256685725689475},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":5.47267628597277},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":5.098513620329111},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":5.676592618847765},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":1.6206929900460643},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":4.526922424276202},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":4.785099203723939},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":6.655936408452943},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":6.949270250609622},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":5.567395329278053},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":6.564906102167021},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":8.044059154966678},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":7.420516028452099},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":8.186220131735322},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":7.355581139608229},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":5.426550710995944},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":6.374249381480952},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":8.773525128580943},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":8.496439801516994},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":7.184151675505944},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":6.434614320459142},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":8.30217197621498},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":7.7768342643951005},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":5.509747425143341},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":6.516809448045755},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":6.651480917811445},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":6.852824900467626},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":6.474362823818856},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":8.211328465935866},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":8.371787234508783},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":7.53255986373355},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":7.0378080937780725},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":6.737767862194853},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":7.025852459483686},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":7.056897920557923},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":6.831930180285041},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":7.124961757925082},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":7.229451251050851},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":6.818633442673941},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":7.0880229449143615}]
Price Chart with Buy/Sell Markers
GET /backtests/{id}/trades * Fields used: buy_time, buy_price, sell_time, sell_price * Transform: priceWithMarkers(trades)price).| Stat | Value |
|---|---|
| Highest Price | 0.0266 @ 2024-04-24 04:49:00 UTC |
| Lowest Price | 0.0024 @ 2026-02-25 23:46:00 UTC |
| Mean | 0.0112 |
| Std Dev | 0.0102 |
| Last | 0.0024 |
| Points | 170 |
| Across 170 points the series ranged from 0.0024 (2026-02-25 23:46:00 UTC) to 0.0266 (2024-04-24 04:49:00 UTC), averaging 0.0112. The most recent value is 0.0024. | |
| Showing 60 of 170 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:06:00Z","price":0.02618},{"timestamp":"2024-04-24T00:13:00Z","price":0.02609},{"timestamp":"2024-04-24T00:32:00Z","price":0.02607},{"timestamp":"2024-04-24T01:02:00Z","price":0.02625},{"timestamp":"2024-04-24T01:10:00Z","price":0.02621},{"timestamp":"2024-04-24T01:47:00Z","price":0.02623},{"timestamp":"2024-04-24T02:01:00Z","price":0.02626},{"timestamp":"2024-04-24T02:31:00Z","price":0.02622},{"timestamp":"2024-04-24T02:47:00Z","price":0.02626},{"timestamp":"2024-04-24T03:11:00Z","price":0.02621},{"timestamp":"2024-04-24T03:26:00Z","price":0.0262},{"timestamp":"2024-04-24T03:44:00Z","price":0.02638},{"timestamp":"2024-04-24T04:04:00Z","price":0.02646},{"timestamp":"2024-04-24T04:07:00Z","price":0.02635},{"timestamp":"2024-04-24T04:40:00Z","price":0.02649},{"timestamp":"2024-04-24T06:25:00Z","price":0.026},{"timestamp":"2024-07-01T18:32:00Z","price":0.02005},{"timestamp":"2024-07-01T21:45:00Z","price":0.02},{"timestamp":"2024-07-02T22:18:00Z","price":0.02},{"timestamp":"2024-07-03T06:51:00Z","price":0.02},{"timestamp":"2024-07-03T08:40:00Z","price":0.02005},{"timestamp":"2025-01-24T09:46:00Z","price":0.02},{"timestamp":"2025-04-07T14:17:00Z","price":0.00802},{"timestamp":"2025-12-15T16:40:00Z","price":0.00404},{"timestamp":"2025-12-17T15:39:00Z","price":0.00401},{"timestamp":"2025-12-19T21:07:00Z","price":0.004},{"timestamp":"2025-12-19T22:52:00Z","price":0.00403},{"timestamp":"2025-12-21T00:12:00Z","price":0.00401},{"timestamp":"2025-12-22T08:36:00Z","price":0.00401},{"timestamp":"2025-12-22T13:59:00Z","price":0.00404},{"timestamp":"2025-12-24T01:49:00Z","price":0.00402},{"timestamp":"2025-12-25T08:12:00Z","price":0.00402},{"timestamp":"2025-12-25T10:16:00Z","price":0.00404},{"timestamp":"2025-12-28T09:13:00Z","price":0.00404},{"timestamp":"2025-12-29T13:09:00Z","price":0.00404},{"timestamp":"2026-01-03T05:00:00Z","price":0.00402},{"timestamp":"2026-01-03T06:02:00Z","price":0.00404},{"timestamp":"2026-01-04T09:10:00Z","price":0.00402},{"timestamp":"2026-01-04T09:35:00Z","price":0.00404},{"timestamp":"2026-01-08T12:30:00Z","price":0.00403},{"timestamp":"2026-01-08T16:15:00Z","price":0.004},{"timestamp":"2026-01-08T18:16:00Z","price":0.004},{"timestamp":"2026-01-08T19:13:00Z","price":0.00401},{"timestamp":"2026-01-08T21:39:00Z","price":0.00401},{"timestamp":"2026-01-08T22:49:00Z","price":0.004},{"timestamp":"2026-01-09T04:41:00Z","price":0.00401},{"timestamp":"2026-01-09T15:25:00Z","price":0.00404},{"timestamp":"2026-02-21T19:21:00Z","price":0.00247},{"timestamp":"2026-02-25T15:57:00Z","price":0.00245},{"timestamp":"2026-02-25T16:17:00Z","price":0.00246},{"timestamp":"2026-02-25T17:12:00Z","price":0.00248},{"timestamp":"2026-02-25T19:11:00Z","price":0.00248},{"timestamp":"2026-02-25T20:24:00Z","price":0.00248},{"timestamp":"2026-02-25T20:46:00Z","price":0.0025},{"timestamp":"2026-02-25T21:30:00Z","price":0.00248},{"timestamp":"2026-02-25T21:45:00Z","price":0.0025},{"timestamp":"2026-02-25T22:18:00Z","price":0.00248},{"timestamp":"2026-02-25T22:59:00Z","price":0.00245},{"timestamp":"2026-02-25T23:07:00Z","price":0.00245},{"timestamp":"2026-02-25T23:59:00Z","price":0.00243}]
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 | 43 trades @ $5.00 |
| Least Populated Bin | 1 trades @ $5.00 |
| Mean | 6 trades |
| Std Dev | 11 trades |
| Last | 1 trades |
| Points | 16 |
| Sum | 100 trades |
| Across 16 points the series ranged from 1 trades (5.00)to∗∗43trades∗∗(5.00), averaging 6 trades. The most recent value is 1 trades. | |
| Full series - 16 points. |
[
{
"bin": "$5.00",
"count": 43,
"from": 5
},
{
"bin": "$5.00",
"count": 19,
"from": 5.001
},
{
"bin": "$5.00",
"count": 18,
"from": 5.002
},
{
"bin": "$5.00",
"count": 1,
"from": 5.004
},
{
"bin": "$5.01",
"count": 3,
"from": 5.006
},
{
"bin": "$5.01",
"count": 2,
"from": 5.007
},
{
"bin": "$5.01",
"count": 1,
"from": 5.008
},
{
"bin": "$5.01",
"count": 1,
"from": 5.009
},
{
"bin": "$5.01",
"count": 2,
"from": 5.01
},
{
"bin": "$5.01",
"count": 2,
"from": 5.014
},
{
"bin": "$5.02",
"count": 1,
"from": 5.016
},
{
"bin": "$5.02",
"count": 2,
"from": 5.017
},
{
"bin": "$5.02",
"count": 2,
"from": 5.018
},
{
"bin": "$5.02",
"count": 1,
"from": 5.02
},
{
"bin": "$5.02",
"count": 1,
"from": 5.024
},
{
"bin": "$5.03",
"count": 1,
"from": 5.025
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 25 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.12 |
| Mean | 5 trades |
| Std Dev | 10 trades |
| Last | 25 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.12) to 25 trades (0.1), averaging 5 trades. The most recent value is 25 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.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": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.22,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.24,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.25,
"TP": 23,
"SL": 0,
"TSL": 0
},
{
"bin": 0.26,
"TP": 1,
"SL": 0,
"TSL": 0
},
{
"bin": 0.27,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.29,
"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.34,
"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 | 100.12 @ Jan |
| Worst Indexed Value | 94.81 @ Dec |
| Mean | 97.72 |
| Std Dev | 1.42 |
| Last | 94.81 |
| Points | 12 |
| Across 12 points the series ranged from 94.81 (Dec) to 100.12 (Jan), averaging 97.72. The most recent value is 94.81. | |
| Full series - 12 points. |
[
{
"2025": 100.12061544403569,
"2026": 98.34385590313349,
"month": "Jan"
},
{
"2025": 98.91342783435591,
"2026": 97.7485109673674,
"month": "Feb"
},
{
"2025": 98.00577787301215,
"month": "Mar"
},
{
"2024": 99.100990808735,
"2025": 98.2560611245152,
"month": "Apr"
},
{
"2024": 100.74156850922498,
"2025": 98.53381854359763,
"month": "May"
},
{
"2024": 100.46620027551556,
"2025": 97.14670307740512,
"month": "Jun"
},
{
"2024": 98.75182396199125,
"2025": 97.83835977249021,
"month": "Jul"
},
{
"2024": 98.43176298567668,
"2025": 98.81044464275965,
"month": "Aug"
},
{
"2024": 98.09043765460598,
"2025": 98.18509340092521,
"month": "Sep"
},
{
"2024": 96.20823551380194,
"2025": 96.32688497480864,
"month": "Oct"
},
{
"2024": 102.33665415802406,
"2025": 95.74417073219958,
"month": "Nov"
},
{
"2024": 103.32254633266793,
"2025": 94.81483401934675,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 128.40 USDT @ Sun |
| Worst Weekday | 95.09 USDT @ Fri |
| Mean | 114.40 USDT |
| Std Dev | 9.13 USDT |
| Last | 128.40 USDT |
| Points | 7 |
| Sum | 800.77 USDT |
| Across 7 points the series ranged from 95.09 USDT (Fri) to 128.40 USDT (Sun), averaging 114.40 USDT. 100% of points were positive, 0% negative. The most recent value is 128.40 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 116.363783
},
{
"day": "Tue",
"profit": 117.147031
},
{
"day": "Wed",
"profit": 115.832301
},
{
"day": "Thu",
"profit": 113.400413
},
{
"day": "Fri",
"profit": 95.092654
},
{
"day": "Sat",
"profit": 114.536197
},
{
"day": "Sun",
"profit": 128.395742
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 42.43 USDT @ 14:00 |
| Worst Hour (UTC) | 26.81 USDT @ 4:00 |
| Mean | 33.37 USDT |
| Std Dev | 4.31 USDT |
| Last | 30.12 USDT |
| Points | 24 |
| Sum | 800.77 USDT |
| Across 24 points the series ranged from 26.81 USDT (4:00) to 42.43 USDT (14:00), averaging 33.37 USDT. 100% of points were positive, 0% negative. The most recent value is 30.12 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":34.485518},{"hour":"1:00","profit":32.930135},{"hour":"2:00","profit":28.562539},{"hour":"3:00","profit":27.077841},{"hour":"4:00","profit":26.812819},{"hour":"5:00","profit":28.344372},{"hour":"6:00","profit":28.47806},{"hour":"7:00","profit":31.400694},{"hour":"8:00","profit":31.898729},{"hour":"9:00","profit":33.124084},{"hour":"10:00","profit":34.673086},{"hour":"11:00","profit":33.356685},{"hour":"12:00","profit":35.961105},{"hour":"13:00","profit":38.626388},{"hour":"14:00","profit":42.426012},{"hour":"15:00","profit":42.373217},{"hour":"16:00","profit":40.541907},{"hour":"17:00","profit":37.372274},{"hour":"18:00","profit":33.594118},{"hour":"19:00","profit":31.711102},{"hour":"20:00","profit":31.619717},{"hour":"21:00","profit":33.013136},{"hour":"22:00","profit":32.267375},{"hour":"23:00","profit":30.117206}]
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.35% @ 2.716666666666667 |
| Worst Trade Return | 0.10% @ 0 |
| Mean | 0.20% |
| Std Dev | 0.10% |
| Last | 0.26% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (0) to 0.35% (2.716666666666667), averaging 0.20%. 100% of points were positive, 0% negative. The most recent value is 0.26%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":0.9333333333333333,"profitPct":0.1171791444,"profit":0.0058594025},{"hours":0.85,"profitPct":0.1176903942,"profit":0.00590448},{"hours":0.5666666666666667,"profitPct":0.1181008049,"profit":0.005916},{"hours":6.05,"profitPct":0.1197551099,"profit":0.0059931325},{"hours":0.3,"profitPct":0.1171791444,"profit":0.0058594025},{"hours":0.21666666666666667,"profitPct":0.1166698437,"profit":0.0058450775},{"hours":1.5166666666666666,"profitPct":0.115858989,"profit":0.0058221575},{"hours":0.21666666666666667,"profitPct":0.1167715484,"profit":0.0058479425},{"hours":0.15,"profitPct":0.1170771287,"profit":0.0058565375},{"hours":0.43333333333333335,"profitPct":0.1168733308,"profit":0.0058508075},{"hours":0.05,"profitPct":0.1176903942,"profit":0.00590448},{"hours":0.3333333333333333,"profitPct":0.1150530504,"profit":0.005768875},{"hours":0.7333333333333333,"profitPct":0.1138532629,"profit":0.0057044925},{"hours":0.2833333333333333,"profitPct":0.115455408,"profit":0.005780275},{"hours":0.16666666666666666,"profitPct":0.1150530504,"profit":0.005768875},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.38333333333333336,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.4166666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":3.0833333333333335,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.11666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":19.383333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.3471393035,"profit":0.01736002},{"hours":55.21666666666667,"profitPct":0.3483790524,"profit":0.01742059},{"hours":52.9,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.1,"profitPct":0.0998125,"profit":0.004990625},{"hours":14.8,"profitPct":0.3483790524,"profit":0.01742059},{"hours":2.533333333333333,"profitPct":0.3483790524,"profit":0.01742059},{"hours":0.23333333333333334,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.5666666666666667,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.6333333333333333,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.05,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.6333333333333333,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.8,"profitPct":0.3483790524,"profit":0.01742059},{"hours":0.3,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.18333333333333332,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.13333333333333333,"profitPct":0.3471393035,"profit":0.01736002},{"hours":0.06666666666666667,"profitPct":0.3483790524,"profit":0.01742059},{"hours":0.4666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.8833333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.11666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.2,"profitPct":0.0998125,"profit":0.004990625},{"hours":2.65,"profitPct":0.3483790524,"profit":0.01742059},{"hours":0.3,"profitPct":0.0998125,"profit":0.004990625},{"hours":1.1333333333333333,"profitPct":0.256199187,"profit":0.0128129825},{"hours":0.016666666666666666,"profitPct":0.2578571429,"profit":0.0128940175},{"hours":0.1,"profitPct":0.2578571429,"profit":0.0128940175},{"hours":0,"profitPct":0.2529233871,"profit":0.0126516325},{"hours":0,"profitPct":0.2529233871,"profit":0.0126516325},{"hours":0,"profitPct":0.2529233871,"profit":0.0126516325},{"hours":0,"profitPct":0.2513052209,"profit":0.0125713175},{"hours":0.03333333333333333,"profitPct":0.2513052209,"profit":0.0125713175},{"hours":0,"profitPct":0.2529233871,"profit":0.0126516325},{"hours":0,"profitPct":0.2481075697,"profit":0.0124114075},{"hours":0.05,"profitPct":0.2513052209,"profit":0.0125713175},{"hours":0,"profitPct":0.2529233871,"profit":0.0126516325},{"hours":0,"profitPct":0.2578571429,"profit":0.0128940175},{"hours":0.06666666666666667,"profitPct":0.2578571429,"profit":0.0128940175},{"hours":0.21666666666666667,"profitPct":0.2629132231,"profit":0.0131512875}]
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": "c8859418-e23b-43ee-87ff-6c6f4a4c5d43",
"symbol": "PONDUSDT",
"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": 9597.68341379,
"return_pct": -4.0232,
"total_profit_usdt": 800.76812067,
"avg_profit_per_trade_usdt": 0.00728474,
"fulfilled_trades": 109924,
"active_orders": 376,
"win_rate_pct": 100,
"best_trade_usdt": 0.01742059,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 4971.180880441228,
"max_drawdown_pct": 8.073496362714003,
"max_drawdown_abs_usdt": 839.4801604595996,
"drawdown_duration_days": 424,
"recovery_days": null,
"cagr_pct": -2.207179564513473,
"volatility_annualized_pct": 6.847325381047321,
"sharpe_annualized": -0.2754852282631384,
"sortino_annualized": -0.2955741995399257,
"time_in_market_pct": 100,
"final_cash_usdt": 8917.3974112446,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -1203.08470688,
"median_hold_hours": 0.3,
"avg_hold_hours": 4.236666666666666,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | c8859418-e23b-43ee-87ff-6c6f4a4c5d43 |
symbol | PONDUSDT |
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 | 9597.68341379 |
return_pct | -4.0232 |
total_profit_usdt | 800.76812067 |
avg_profit_per_trade_usdt | 0.00728474 |
fulfilled_trades | 109924 |
active_orders | 376 |
win_rate_pct | 100 |
best_trade_usdt | 0.01742059 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 4971.180880441228 |
max_drawdown_pct | 8.073496362714003 |
max_drawdown_abs_usdt | 839.4801604595996 |
drawdown_duration_days | 424 |
recovery_days | null |
cagr_pct | -2.207179564513473 |
volatility_annualized_pct | 6.847325381047321 |
sharpe_annualized | -0.2754852282631384 |
sortino_annualized | -0.2955741995399257 |
time_in_market_pct | 100 |
final_cash_usdt | 8917.3974112446 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -1203.08470688 |
median_hold_hours | 0.3 |
avg_hold_hours | 4.236666666666666 |
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 | PONDUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 3LongTimeLong.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 9,597.68 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -4.02% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +800.77 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)) | 109,924 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0174 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.0073 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 4971.2 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -8.07% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -839.48 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -2.21% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 6.85% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.28 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | -0.30 |
| 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 | +1.02 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.0102 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 | 4.2h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.3h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,002 USDT |
Raw API Attachments
/trades. Full trade population: 109,924 closed trades - fetch the complete list via GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43 - backtest summary (verbatim)
GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43 - backtest summary (verbatim)
{
"id": "c8859418-e23b-43ee-87ff-6c6f4a4c5d43",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:07.678403Z",
"started_at": "2026-05-10T07:30:09.786346Z",
"completed_at": "2026-05-10T07:43:55.987215Z",
"mode_name": "3LongTimeLong.json",
"symbol": "PONDUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 9597.68341379,
"return_pct": -4.0232,
"total_profit": 800.76812067,
"fulfilled_trades": 109924,
"active_orders": 376,
"win_rate": 100,
"avg_profit": 0.00728474,
"max_profit": 0.01742059,
"min_profit": 0.00499063,
"elapsed_sec": 585.95,
"max_drawdown": -8.0735,
"profit_factor": null,
"sharpe_ratio": -0.2755,
"total_fees": 826.77761932,
"avg_hold_time_hours": 14.1838,
"tp_count": 109924,
"sl_count": 0,
"tsl_count": 0,
"start_price": 0.023,
"end_price": 0.00244,
"gross_profit_quote": 1627.54574,
"gross_loss_quote": 0,
"wins": 109924,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 109924,
"consecutive_losses_max": 0,
"holding_minutes_p50": 6,
"holding_minutes_p95": 847,
"holding_minutes_max": 270194,
"description": "PONDUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -4.02% | 109924 trades | 100% WR",
"summary_text": "Backtest PONDUSDT (Mode: 3LongTimeLong.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 9,597.68 USDT\nP&L: -402.32 USDT (-4.02%)\nResult: LOSS\nCompleted trades: 109924\nOpen orders at end: 376\nWin rate: 100.0%\nAvg. profit/trade: 0.007285 USDT\nBest trade: 0.017421 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 800.768121 USDT\nMax drawdown: -8.07%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.28\nTotal fees: 826.78 USDT\nAvg hold time: 14.2h\nTP / SL / TSL: 109924 / 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: 586.0s",
"share_token": null,
"config_hash": "1d7708cf60bec950e26e01ec73f34951ddfbe01583fb78e8eba5f5c1676c9139",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "PONDUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 1,
"stopLoss": false,
"tickSize": 0.00001,
"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/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/equity - equity series (verbatim, 673 points)
GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 11779,
"quote_asset_bal": 9709.970847225,
"total_value_mid": 9979.945527225,
"total_value_exit_net": 9979.743046215,
"total_value": 9979.945527225,
"base_cost_quote": 291.0138868425,
"unrealized_pnl_exit_net": -21.2416878525
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 10531,
"quote_asset_bal": 9741.287827785,
"total_value_mid": 9984.659237785,
"total_value_exit_net": 9984.4767092275,
"total_value": 9984.659237785,
"base_cost_quote": 260.8670536625,
"unrealized_pnl_exit_net": -17.67817222
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 16134,
"quote_asset_bal": 9616.517687895,
"total_value_mid": 9966.786827895,
"total_value_exit_net": 9966.52412604,
"total_value": 9966.786827895,
"base_cost_quote": 386.2220994875,
"unrealized_pnl_exit_net": -36.2156613425
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 18981,
"quote_asset_bal": 9557.2719043275,
"total_value_mid": 9952.0767043275,
"total_value_exit_net": 9951.7806007275,
"total_value": 9952.0767043275,
"base_cost_quote": 446.39514545,
"unrealized_pnl_exit_net": -51.88644905
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 18971,
"quote_asset_bal": 9558.1241197349,
"total_value_mid": 9953.100339735,
"total_value_exit_net": 9952.8041075699,
"total_value": 9953.100339735,
"base_cost_quote": 446.4179925725,
"unrealized_pnl_exit_net": -51.7380047375
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 16915,
"quote_asset_bal": 9604.6086444574,
"total_value_mid": 9954.9182944574,
"total_value_exit_net": 9954.6555622199,
"total_value": 9954.9182944574,
"base_cost_quote": 401.284517835,
"unrealized_pnl_exit_net": -51.2376000725
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 31773,
"quote_asset_bal": 9320.4441246799,
"total_value_mid": 9890.4517446799,
"total_value_exit_net": 9890.0242389649,
"total_value": 9890.4517446799,
"base_cost_quote": 687.0496910925,
"unrealized_pnl_exit_net": -117.4695768075
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 30105,
"quote_asset_bal": 9352.5574442874,
"total_value_mid": 9903.4789442874,
"total_value_exit_net": 9903.0657531624,
"total_value": 9903.4789442874,
"base_cost_quote": 656.95766899,
"unrealized_pnl_exit_net": -106.449360115
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 25781,
"quote_asset_bal": 9434.2303923174,
"total_value_mid": 9926.9053023174,
"total_value_exit_net": 9926.5357961349,
"total_value": 9926.9053023174,
"base_cost_quote": 576.739570505,
"unrealized_pnl_exit_net": -84.4341666875
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 12814,
"quote_asset_bal": 9717.9895289724,
"total_value_mid": 9978.7544289724,
"total_value_exit_net": 9978.5588552974,
"total_value": 9978.7544289724,
"base_cost_quote": 295.92914052,
"unrealized_pnl_exit_net": -35.359814195
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 7805,
"quote_asset_bal": 9825.2315361549,
"total_value_mid": 9996.0049361549,
"total_value_exit_net": 9995.8768561049,
"total_value": 9996.0049361549,
"base_cost_quote": 190.6414639425,
"unrealized_pnl_exit_net": -19.9961439925
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 8678,
"quote_asset_bal": 9806.6908932124,
"total_value_mid": 10000.9045332124,
"total_value_exit_net": 10000.7588729824,
"total_value": 10000.9045332124,
"base_cost_quote": 210.68153273,
"unrealized_pnl_exit_net": -16.61355296
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 13501,
"quote_asset_bal": 9702.0489224349,
"total_value_mid": 9988.4051324349,
"total_value_exit_net": 9988.1903652774,
"total_value": 9988.4051324349,
"base_cost_quote": 316.0489290525,
"unrealized_pnl_exit_net": -29.90748621
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 15418,
"quote_asset_bal": 9662.6497788224,
"total_value_mid": 9981.3398388224,
"total_value_exit_net": 9981.1008212774,
"total_value": 9981.3398388224,
"base_cost_quote": 356.133359845,
"unrealized_pnl_exit_net": -37.68231739
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 16882,
"quote_asset_bal": 9633.5309141149,
"total_value_mid": 9979.4430941149,
"total_value_exit_net": 9979.1836599799,
"total_value": 9979.4430941149,
"base_cost_quote": 386.2185768475,
"unrealized_pnl_exit_net": -40.5658309825
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 12575,
"quote_asset_bal": 9724.6936207424,
"total_value_mid": 9997.4453707424,
"total_value_exit_net": 9997.2408069299,
"total_value": 9997.4453707424,
"base_cost_quote": 295.961624865,
"unrealized_pnl_exit_net": -23.4144386775
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 15138,
"quote_asset_bal": 9670.2929405874,
"total_value_mid": 9987.8881805874,
"total_value_exit_net": 9987.6499841574,
"total_value": 9987.8881805874,
"base_cost_quote": 351.146542535,
"unrealized_pnl_exit_net": -33.789498965
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 13252,
"quote_asset_bal": 9711.0199925499,
"total_value_mid": 9996.6005925499,
"total_value_exit_net": 9996.3864070999,
"total_value": 9996.6005925499,
"base_cost_quote": 311.0494822775,
"unrealized_pnl_exit_net": -25.6830677275
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 14440,
"quote_asset_bal": 9686.6548301174,
"total_value_mid": 9991.1944301174,
"total_value_exit_net": 9990.9660254174,
"total_value": 9991.1944301174,
"base_cost_quote": 336.120441405,
"unrealized_pnl_exit_net": -31.809246105
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 16360,
"quote_asset_bal": 9647.6589499274,
"total_value_mid": 9984.6749499274,
"total_value_exit_net": 9984.4221879274,
"total_value": 9984.6749499274,
"base_cost_quote": 376.22659848,
"unrealized_pnl_exit_net": -39.46336048
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 27599,
"quote_asset_bal": 9428.1614050849,
"total_value_mid": 9950.8864650849,
"total_value_exit_net": 9950.4944212899,
"total_value": 9950.8864650849,
"base_cost_quote": 596.8465894675,
"unrealized_pnl_exit_net": -74.5135732625
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 20401,
"quote_asset_bal": 9569.7465476648,
"total_value_mid": 9975.3184276648,
"total_value_exit_net": 9975.0142487548,
"total_value": 9975.3184276648,
"base_cost_quote": 456.4632408625,
"unrealized_pnl_exit_net": -51.1955397725
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 21180,
"quote_asset_bal": 9555.7189238648,
"total_value_mid": 9970.8469238648,
"total_value_exit_net": 9970.5355778648,
"total_value": 9970.8469238648,
"base_cost_quote": 471.461190895,
"unrealized_pnl_exit_net": -56.644536895
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 18652,
"quote_asset_bal": 9606.5226557423,
"total_value_mid": 9985.3447757423,
"total_value_exit_net": 9985.0606591523,
"total_value": 9985.3447757423,
"base_cost_quote": 421.3363354275,
"unrealized_pnl_exit_net": -42.7983320175
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 12691,
"quote_asset_bal": 9733.2084416973,
"total_value_mid": 10002.8921916973,
"total_value_exit_net": 10002.6899288848,
"total_value": 10002.8921916973,
"base_cost_quote": 295.9643168825,
"unrealized_pnl_exit_net": -26.482829695
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 11794,
"quote_asset_bal": 9756.2422014948,
"total_value_mid": 10015.7102014948,
"total_value_exit_net": 10015.5156004948,
"total_value": 10015.7102014948,
"base_cost_quote": 275.8512033525,
"unrealized_pnl_exit_net": -16.5778043525
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 8624,
"quote_asset_bal": 9827.7394167748,
"total_value_mid": 10032.5594167748,
"total_value_exit_net": 10032.4058017748,
"total_value": 10032.5594167748,
"base_cost_quote": 205.6398843275,
"unrealized_pnl_exit_net": -0.9734993275
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 9438,
"quote_asset_bal": 9808.8526596998,
"total_value_mid": 10036.6859796998,
"total_value_exit_net": 10036.5151047098,
"total_value": 10036.6859796998,
"base_cost_quote": 225.697085955,
"unrealized_pnl_exit_net": 1.965359055
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 13693,
"quote_asset_bal": 9709.4956290323,
"total_value_mid": 10026.3516490323,
"total_value_exit_net": 10026.1140070173,
"total_value": 10026.3516490323,
"base_cost_quote": 325.9697440875,
"unrealized_pnl_exit_net": -9.3513661025
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 11552,
"quote_asset_bal": 9760.7772522148,
"total_value_mid": 10030.4009322148,
"total_value_exit_net": 10030.1987144548,
"total_value": 10030.4009322148,
"base_cost_quote": 275.8257843025,
"unrealized_pnl_exit_net": -6.4043220625
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 12628,
"quote_asset_bal": 9736.3369815673,
"total_value_mid": 10030.9482215673,
"total_value_exit_net": 10030.7272631373,
"total_value": 10030.9482215673,
"base_cost_quote": 300.88973818,
"unrealized_pnl_exit_net": -6.49945661
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 10076,
"quote_asset_bal": 9797.1382951998,
"total_value_mid": 10038.8615351998,
"total_value_exit_net": 10038.6802427698,
"total_value": 10038.8615351998,
"base_cost_quote": 240.7063244475,
"unrealized_pnl_exit_net": 0.8356231225
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 10469,
"quote_asset_bal": 9787.9578405348,
"total_value_mid": 10043.0873705348,
"total_value_exit_net": 10042.8960233873,
"total_value": 10043.0873705348,
"base_cost_quote": 250.7482502475,
"unrealized_pnl_exit_net": 4.189932605
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 12119,
"quote_asset_bal": 9748.5077713223,
"total_value_mid": 10040.2121013223,
"total_value_exit_net": 10039.9933230748,
"total_value": 10040.2121013223,
"base_cost_quote": 290.9002817025,
"unrealized_pnl_exit_net": 0.58527005
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 11704,
"quote_asset_bal": 9759.0411775973,
"total_value_mid": 10040.6394175973,
"total_value_exit_net": 10040.4282189173,
"total_value": 10040.6394175973,
"base_cost_quote": 280.897695385,
"unrealized_pnl_exit_net": 0.489345935
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 11931,
"quote_asset_bal": 9754.9206442448,
"total_value_mid": 10039.2363742448,
"total_value_exit_net": 10039.0231374473,
"total_value": 10039.2363742448,
"base_cost_quote": 285.858653315,
"unrealized_pnl_exit_net": -1.7561601125
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 9648,
"quote_asset_bal": 9810.9104515423,
"total_value_mid": 10044.4885315423,
"total_value_exit_net": 10044.3133479823,
"total_value": 10044.4885315423,
"base_cost_quote": 230.7193098,
"unrealized_pnl_exit_net": 2.68358664
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 6274,
"quote_asset_bal": 9898.0830955123,
"total_value_mid": 10053.8665155123,
"total_value_exit_net": 10053.7496779473,
"total_value": 10053.8665155123,
"base_cost_quote": 145.4406287225,
"unrealized_pnl_exit_net": 10.2259537125
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 6280,
"quote_asset_bal": 9898.8477725298,
"total_value_mid": 10055.6593725298,
"total_value_exit_net": 10055.5417638298,
"total_value": 10055.6593725298,
"base_cost_quote": 145.4697905775,
"unrealized_pnl_exit_net": 11.2242007225
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 7908,
"quote_asset_bal": 9859.3164724273,
"total_value_mid": 10052.3507524273,
"total_value_exit_net": 10052.2059767173,
"total_value": 10052.3507524273,
"base_cost_quote": 185.539750525,
"unrealized_pnl_exit_net": 7.349753765
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 9553,
"quote_asset_bal": 9819.6379809973,
"total_value_mid": 10049.9608109973,
"total_value_exit_net": 10049.7880688748,
"total_value": 10049.9608109973,
"base_cost_quote": 225.706573065,
"unrealized_pnl_exit_net": 4.4435148125
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 9344,
"quote_asset_bal": 9824.9306859173,
"total_value_mid": 10051.1489259173,
"total_value_exit_net": 10050.9792622373,
"total_value": 10051.1489259173,
"base_cost_quote": 220.6866209225,
"unrealized_pnl_exit_net": 5.3619553975
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 4279,
"quote_asset_bal": 9950.8231192248,
"total_value_mid": 10059.2529792248,
"total_value_exit_net": 10059.1716568298,
"total_value": 10059.2529792248,
"base_cost_quote": 95.29077452,
"unrealized_pnl_exit_net": 13.057763085
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 5282,
"quote_asset_bal": 9926.2315896923,
"total_value_mid": 10059.1795296923,
"total_value_exit_net": 10059.0798187373,
"total_value": 10059.1795296923,
"base_cost_quote": 120.327317855,
"unrealized_pnl_exit_net": 12.52091119
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 9608,
"quote_asset_bal": 9821.5831921323,
"total_value_mid": 10042.2789521323,
"total_value_exit_net": 10042.1134303123,
"total_value": 10042.2789521323,
"base_cost_quote": 225.72564736,
"unrealized_pnl_exit_net": -5.19540918
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 10264,
"quote_asset_bal": 9807.0115547123,
"total_value_mid": 10041.6465947123,
"total_value_exit_net": 10041.4706184323,
"total_value": 10041.6465947123,
"base_cost_quote": 240.76744025,
"unrealized_pnl_exit_net": -6.30837653
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 7867,
"quote_asset_bal": 9862.6332814348,
"total_value_mid": 10048.2944814348,
"total_value_exit_net": 10048.1552355348,
"total_value": 10048.2944814348,
"base_cost_quote": 185.5857950325,
"unrealized_pnl_exit_net": -0.0638409325
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 11125,
"quote_asset_bal": 9787.9032080373,
"total_value_mid": 10039.4394580373,
"total_value_exit_net": 10039.2508058498,
"total_value": 10039.4394580373,
"base_cost_quote": 260.81210248,
"unrealized_pnl_exit_net": -9.4645046675
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 15707,
"quote_asset_bal": 9688.4667404348,
"total_value_mid": 10023.6541204348,
"total_value_exit_net": 10023.4027298998,
"total_value": 10023.6541204348,
"base_cost_quote": 361.1688636425,
"unrealized_pnl_exit_net": -26.2328741775
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 13149,
"quote_asset_bal": 9744.8476519598,
"total_value_mid": 10037.6758819598,
"total_value_exit_net": 10037.4562607873,
"total_value": 10037.6758819598,
"base_cost_quote": 305.9571258725,
"unrealized_pnl_exit_net": -13.348517045
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 19966,
"quote_asset_bal": 9600.1350253473,
"total_value_mid": 10011.0353053473,
"total_value_exit_net": 10010.7271301373,
"total_value": 10011.0353053473,
"base_cost_quote": 451.36851268,
"unrealized_pnl_exit_net": -40.77640789
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 21204,
"quote_asset_bal": 9575.9491018098,
"total_value_mid": 10001.0893018098,
"total_value_exit_net": 10000.7704466598,
"total_value": 10001.0893018098,
"base_cost_quote": 476.43730018,
"unrealized_pnl_exit_net": -51.61595533
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 15936,
"quote_asset_bal": 9687.3568374748,
"total_value_mid": 10026.9529974748,
"total_value_exit_net": 10026.6983003548,
"total_value": 10026.9529974748,
"base_cost_quote": 366.1065241125,
"unrealized_pnl_exit_net": -26.7650612325
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 20824,
"quote_asset_bal": 9588.0776891573,
"total_value_mid": 10001.8505691573,
"total_value_exit_net": 10001.5402394973,
"total_value": 10001.8505691573,
"base_cost_quote": 466.4043411,
"unrealized_pnl_exit_net": -52.94179076
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 32809,
"quote_asset_bal": 9363.6077656097,
"total_value_mid": 9949.5765056097,
"total_value_exit_net": 9949.1370290547,
"total_value": 9949.5765056097,
"base_cost_quote": 691.9789452625,
"unrealized_pnl_exit_net": -106.4496818175
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 41719,
"quote_asset_bal": 9214.9146473472,
"total_value_mid": 9887.8421173472,
"total_value_exit_net": 9887.3374217447,
"total_value": 9887.8421173472,
"base_cost_quote": 842.3416828,
"unrealized_pnl_exit_net": -169.9189084025
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 41600,
"quote_asset_bal": 9216.4375354197,
"total_value_mid": 9904.5015354197,
"total_value_exit_net": 9903.9854874197,
"total_value": 9904.5015354197,
"base_cost_quote": 842.347907465,
"unrealized_pnl_exit_net": -154.799955465
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 21982,
"quote_asset_bal": 9584.7142861997,
"total_value_mid": 9972.0371261997,
"total_value_exit_net": 9971.7466340697,
"total_value": 9972.0371261997,
"base_cost_quote": 476.4071876125,
"unrealized_pnl_exit_net": -89.3748397425
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 26080,
"quote_asset_bal": 9515.9663737397,
"total_value_mid": 9958.5439737397,
"total_value_exit_net": 9958.2120405397,
"total_value": 9958.5439737397,
"base_cost_quote": 546.626362525,
"unrealized_pnl_exit_net": -104.380695725
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 15954,
"quote_asset_bal": 9702.8417436372,
"total_value_mid": 9987.4611036372,
"total_value_exit_net": 9987.2476391172,
"total_value": 9987.4611036372,
"base_cost_quote": 361.08957422,
"unrealized_pnl_exit_net": -76.68367874
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 21277,
"quote_asset_bal": 9609.3182055497,
"total_value_mid": 9981.4529355497,
"total_value_exit_net": 9981.1738345022,
"total_value": 9981.4529355497,
"base_cost_quote": 456.333453595,
"unrealized_pnl_exit_net": -84.4778246425
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 16694,
"quote_asset_bal": 9692.2743202847,
"total_value_mid": 10001.2802602847,
"total_value_exit_net": 10001.0485058297,
"total_value": 10001.2802602847,
"base_cost_quote": 376.1104214125,
"unrealized_pnl_exit_net": -67.3362358675
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 17218,
"quote_asset_bal": 9683.4535109523,
"total_value_mid": 10004.3970309523,
"total_value_exit_net": 10004.1563233123,
"total_value": 10004.3970309523,
"base_cost_quote": 386.17117132,
"unrealized_pnl_exit_net": -65.46835896
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 21502,
"quote_asset_bal": 9604.1328405498,
"total_value_mid": 9998.9095605498,
"total_value_exit_net": 9998.6134780098,
"total_value": 9998.9095605498,
"base_cost_quote": 466.3299153225,
"unrealized_pnl_exit_net": -71.8492778625
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 15807,
"quote_asset_bal": 9710.4605425848,
"total_value_mid": 10024.3875625848,
"total_value_exit_net": 10024.1521173198,
"total_value": 10024.3875625848,
"base_cost_quote": 361.06795802,
"unrealized_pnl_exit_net": -47.376383285
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 16074,
"quote_asset_bal": 9706.2416517697,
"total_value_mid": 10028.0431317697,
"total_value_exit_net": 10027.8017806597,
"total_value": 10028.0431317697,
"base_cost_quote": 366.078052775,
"unrealized_pnl_exit_net": -44.517923885
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 16825,
"quote_asset_bal": 9691.5255160922,
"total_value_mid": 10027.1842660922,
"total_value_exit_net": 10026.9325220297,
"total_value": 10027.1842660922,
"base_cost_quote": 381.12747138,
"unrealized_pnl_exit_net": -45.7204654425
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 17759,
"quote_asset_bal": 9672.0648480222,
"total_value_mid": 10026.5344880222,
"total_value_exit_net": 10026.2686357922,
"total_value": 10026.5344880222,
"base_cost_quote": 401.1778478925,
"unrealized_pnl_exit_net": -46.9740601225
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 18003,
"quote_asset_bal": 9667.3398336972,
"total_value_mid": 10027.3998336972,
"total_value_exit_net": 10027.1297886972,
"total_value": 10027.3998336972,
"base_cost_quote": 406.2078775875,
"unrealized_pnl_exit_net": -46.4179225875
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 18487,
"quote_asset_bal": 9657.7266867047,
"total_value_mid": 10030.0548667047,
"total_value_exit_net": 10029.7756205697,
"total_value": 10030.0548667047,
"base_cost_quote": 416.2218224175,
"unrealized_pnl_exit_net": -44.1728885525
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 27709,
"quote_asset_bal": 9477.7717257747,
"total_value_mid": 10003.4114557747,
"total_value_exit_net": 10003.0172259772,
"total_value": 10003.4114557747,
"base_cost_quote": 596.7183933925,
"unrealized_pnl_exit_net": -71.47289319
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 42334,
"quote_asset_bal": 9217.9698623997,
"total_value_mid": 9940.1879023997,
"total_value_exit_net": 9939.6462388697,
"total_value": 9940.1879023997,
"base_cost_quote": 857.35705589,
"unrealized_pnl_exit_net": -135.68067942
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 51853,
"quote_asset_bal": 9063.9712472422,
"total_value_mid": 9888.9524772422,
"total_value_exit_net": 9888.3337413197,
"total_value": 9888.9524772422,
"base_cost_quote": 1012.7591100825,
"unrealized_pnl_exit_net": -188.396616005
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 46303,
"quote_asset_bal": 9154.9373308347,
"total_value_mid": 9930.0495508347,
"total_value_exit_net": 9929.4682166697,
"total_value": 9930.0495508347,
"base_cost_quote": 922.494372265,
"unrealized_pnl_exit_net": -147.96348643
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 54624,
"quote_asset_bal": 9020.2769805572,
"total_value_mid": 9880.6049805572,
"total_value_exit_net": 9879.9597345572,
"total_value": 9880.6049805572,
"base_cost_quote": 1057.836923105,
"unrealized_pnl_exit_net": -198.154169105
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 48398,
"quote_asset_bal": 9121.9619108147,
"total_value_mid": 9916.6570708147,
"total_value_exit_net": 9916.0610494447,
"total_value": 9916.6570708147,
"base_cost_quote": 957.59774006,
"unrealized_pnl_exit_net": -163.49860143
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 41532,
"quote_asset_bal": 9238.7702089796,
"total_value_mid": 9953.5359289796,
"total_value_exit_net": 9952.9998546896,
"total_value": 9953.5359289796,
"base_cost_quote": 842.313241485,
"unrealized_pnl_exit_net": -128.083595775
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 42411,
"quote_asset_bal": 9224.7805991122,
"total_value_mid": 9950.0086991122,
"total_value_exit_net": 9949.4647780372,
"total_value": 9950.0086991122,
"base_cost_quote": 857.3718369675,
"unrealized_pnl_exit_net": -132.6876580425
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 42706,
"quote_asset_bal": 9220.4696531347,
"total_value_mid": 9949.4610731347,
"total_value_exit_net": 9948.9143295697,
"total_value": 9949.4610731347,
"base_cost_quote": 862.37773858,
"unrealized_pnl_exit_net": -133.933062145
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 41245,
"quote_asset_bal": 9246.3263611222,
"total_value_mid": 9956.1528111222,
"total_value_exit_net": 9955.6204412847,
"total_value": 9956.1528111222,
"base_cost_quote": 837.3380228675,
"unrealized_pnl_exit_net": -128.043942705
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 36925,
"quote_asset_bal": 9322.4620880847,
"total_value_mid": 9978.2500880847,
"total_value_exit_net": 9977.7582470847,
"total_value": 9978.2500880847,
"base_cost_quote": 762.1382052725,
"unrealized_pnl_exit_net": -106.8420462725
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 30797,
"quote_asset_bal": 9434.0635502797,
"total_value_mid": 9997.9566202797,
"total_value_exit_net": 9997.5337004772,
"total_value": 9997.9566202797,
"base_cost_quote": 651.8440466475,
"unrealized_pnl_exit_net": -88.37389645
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 27574,
"quote_asset_bal": 9495.9771606948,
"total_value_mid": 10013.8168806948,
"total_value_exit_net": 10013.4285009048,
"total_value": 10013.8168806948,
"base_cost_quote": 591.684530825,
"unrealized_pnl_exit_net": -74.233190615
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 30266,
"quote_asset_bal": 9447.2859151698,
"total_value_mid": 10003.5749951698,
"total_value_exit_net": 10003.1577783598,
"total_value": 10003.5749951698,
"base_cost_quote": 641.832513625,
"unrealized_pnl_exit_net": -85.960650435
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 28686,
"quote_asset_bal": 9478.2590328399,
"total_value_mid": 10011.5317728399,
"total_value_exit_net": 10011.1318182849,
"total_value": 10011.5317728399,
"base_cost_quote": 611.7446346275,
"unrealized_pnl_exit_net": -78.8718491825
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 30196,
"quote_asset_bal": 9449.2468098149,
"total_value_mid": 10017.5355298149,
"total_value_exit_net": 10017.1093132749,
"total_value": 10017.5355298149,
"base_cost_quote": 641.852368505,
"unrealized_pnl_exit_net": -73.989865045
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 27550,
"quote_asset_bal": 9500.0835363774,
"total_value_mid": 10027.1150363774,
"total_value_exit_net": 10026.7197627524,
"total_value": 10027.1150363774,
"base_cost_quote": 591.72209898,
"unrealized_pnl_exit_net": -65.085872605
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 27816,
"quote_asset_bal": 9495.4949823549,
"total_value_mid": 10024.8334623549,
"total_value_exit_net": 10024.4364584949,
"total_value": 10024.8334623549,
"base_cost_quote": 596.7172925675,
"unrealized_pnl_exit_net": -67.7758164275
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 23167,
"quote_asset_bal": 9586.3847416449,
"total_value_mid": 10038.8362516449,
"total_value_exit_net": 10038.4969130124,
"total_value": 10038.8362516449,
"base_cost_quote": 506.47192927,
"unrealized_pnl_exit_net": -54.3597579025
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 32805,
"quote_asset_bal": 9406.6073824499,
"total_value_mid": 10004.6425324499,
"total_value_exit_net": 10004.1940060874,
"total_value": 10004.6425324499,
"base_cost_quote": 686.9132688525,
"unrealized_pnl_exit_net": -89.326645215
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 32806,
"quote_asset_bal": 9407.6983702199,
"total_value_mid": 10005.0956302199,
"total_value_exit_net": 10004.6475822749,
"total_value": 10005.0956302199,
"base_cost_quote": 686.9353453975,
"unrealized_pnl_exit_net": -89.9861333425
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 49069,
"quote_asset_bal": 9128.2172200824,
"total_value_mid": 9932.9488200824,
"total_value_exit_net": 9932.3452713824,
"total_value": 9932.9488200824,
"base_cost_quote": 967.6464809675,
"unrealized_pnl_exit_net": -163.5184296675
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 47906,
"quote_asset_bal": 9149.8378182549,
"total_value_mid": 9950.8261382549,
"total_value_exit_net": 9950.2253970149,
"total_value": 9950.8261382549,
"base_cost_quote": 947.601988865,
"unrealized_pnl_exit_net": -147.214410105
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 46095,
"quote_asset_bal": 9180.8978304874,
"total_value_mid": 9958.5204804874,
"total_value_exit_net": 9957.9372634999,
"total_value": 9958.5204804874,
"base_cost_quote": 917.5494763725,
"unrealized_pnl_exit_net": -140.51004336
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 49708,
"quote_asset_bal": 9121.0323947599,
"total_value_mid": 9941.2143947599,
"total_value_exit_net": 9940.5992582599,
"total_value": 9941.2143947599,
"base_cost_quote": 977.6851843525,
"unrealized_pnl_exit_net": -158.1183208525
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 47292,
"quote_asset_bal": 9161.5911311748,
"total_value_mid": 9952.7862911748,
"total_value_exit_net": 9952.1928948048,
"total_value": 9952.7862911748,
"base_cost_quote": 937.60503677,
"unrealized_pnl_exit_net": -147.00327314
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 47620,
"quote_asset_bal": 9157.2305724823,
"total_value_mid": 9945.3415724823,
"total_value_exit_net": 9944.7504892323,
"total_value": 9945.3415724823,
"base_cost_quote": 942.619614885,
"unrealized_pnl_exit_net": -155.099698135
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 52572,
"quote_asset_bal": 9077.6253731023,
"total_value_mid": 9911.9430131023,
"total_value_exit_net": 9911.3172748723,
"total_value": 9911.9430131023,
"base_cost_quote": 1022.82370287,
"unrealized_pnl_exit_net": -189.1318011
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 62075,
"quote_asset_bal": 8932.8153262948,
"total_value_mid": 9855.8705762948,
"total_value_exit_net": 9855.1782848573,
"total_value": 9855.8705762948,
"base_cost_quote": 1168.1424402425,
"unrealized_pnl_exit_net": -245.77948168
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 70033,
"quote_asset_bal": 8818.2664908098,
"total_value_mid": 9816.9370708098,
"total_value_exit_net": 9816.1880678748,
"total_value": 9816.9370708098,
"base_cost_quote": 1283.3977569475,
"unrealized_pnl_exit_net": -285.4761798825
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 76588,
"quote_asset_bal": 8728.7948086999,
"total_value_mid": 9754.3081286999,
"total_value_exit_net": 9753.5389937099,
"total_value": 9754.3081286999,
"base_cost_quote": 1373.6194324925,
"unrealized_pnl_exit_net": -348.8752474825
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 81936,
"quote_asset_bal": 8659.4059377924,
"total_value_mid": 9704.0899377923,
"total_value_exit_net": 9703.3064247923,
"total_value": 9704.0899377923,
"base_cost_quote": 1443.753263445,
"unrealized_pnl_exit_net": -399.852776445
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 92014,
"quote_asset_bal": 8535.0735181249,
"total_value_mid": 9641.0817981248,
"total_value_exit_net": 9640.2522919148,
"total_value": 9641.0817981248,
"base_cost_quote": 1569.025547245,
"unrealized_pnl_exit_net": -463.846773455
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 102187,
"quote_asset_bal": 8422.7657941549,
"total_value_mid": 9534.5603541549,
"total_value_exit_net": 9533.7265082349,
"total_value": 9534.5603541549,
"base_cost_quote": 1684.2724676575,
"unrealized_pnl_exit_net": -573.3117535775
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 97659,
"quote_asset_bal": 8474.1126072774,
"total_value_mid": 9605.9804172774,
"total_value_exit_net": 9605.1315164199,
"total_value": 9605.9804172774,
"base_cost_quote": 1634.157599675,
"unrealized_pnl_exit_net": -503.1386905325
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 98995,
"quote_asset_bal": 8460.5702397224,
"total_value_mid": 9600.9926397224,
"total_value_exit_net": 9600.1373229224,
"total_value": 9600.9926397224,
"base_cost_quote": 1649.172812645,
"unrealized_pnl_exit_net": -509.605729445
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 84657,
"quote_asset_bal": 8637.6444500674,
"total_value_mid": 9720.4074800674,
"total_value_exit_net": 9719.5954077949,
"total_value": 9720.4074800674,
"base_cost_quote": 1473.8247301425,
"unrealized_pnl_exit_net": -391.873772415
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 85052,
"quote_asset_bal": 8633.4611051124,
"total_value_mid": 9717.0235851124,
"total_value_exit_net": 9716.2109132524,
"total_value": 9717.0235851124,
"base_cost_quote": 1478.8298211475,
"unrealized_pnl_exit_net": -396.0800130075
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 85014,
"quote_asset_bal": 8634.0945009374,
"total_value_mid": 9734.1756609374,
"total_value_exit_net": 9733.3506000674,
"total_value": 9734.1756609374,
"base_cost_quote": 1478.8261183725,
"unrealized_pnl_exit_net": -379.5700192425
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 71295,
"quote_asset_bal": 8846.6894261074,
"total_value_mid": 9725.0438261074,
"total_value_exit_net": 9724.3850603074,
"total_value": 9725.0438261074,
"base_cost_quote": 1268.3296643475,
"unrealized_pnl_exit_net": -390.6340301475
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 66173,
"quote_asset_bal": 8913.8725951948,
"total_value_mid": 9781.4006251948,
"total_value_exit_net": 9780.7499791723,
"total_value": 9781.4006251948,
"base_cost_quote": 1203.1843820025,
"unrealized_pnl_exit_net": -336.306998025
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 65759,
"quote_asset_bal": 8919.8822986598,
"total_value_mid": 9777.3796586598,
"total_value_exit_net": 9776.7365356398,
"total_value": 9777.3796586598,
"base_cost_quote": 1198.1622382175,
"unrealized_pnl_exit_net": -341.3080012375
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 67813,
"quote_asset_bal": 8895.6239638548,
"total_value_mid": 9752.7802838548,
"total_value_exit_net": 9752.1374166148,
"total_value": 9752.7802838548,
"base_cost_quote": 1223.2361695725,
"unrealized_pnl_exit_net": -366.7227168125
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 71544,
"quote_asset_bal": 8851.4232502498,
"total_value_mid": 9686.3417302498,
"total_value_exit_net": 9685.7155413898,
"total_value": 9686.3417302498,
"base_cost_quote": 1268.3447556575,
"unrealized_pnl_exit_net": -434.0524645175
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 70693,
"quote_asset_bal": 8862.0670741098,
"total_value_mid": 9720.9870241098,
"total_value_exit_net": 9720.3428341473,
"total_value": 9720.9870241098,
"base_cost_quote": 1258.3230249925,
"unrealized_pnl_exit_net": -400.047264955
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 62438,
"quote_asset_bal": 8968.7339270798,
"total_value_mid": 9767.3159470798,
"total_value_exit_net": 9766.7170105648,
"total_value": 9767.3159470798,
"base_cost_quote": 1153.0958037225,
"unrealized_pnl_exit_net": -355.1127202375
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 66871,
"quote_asset_bal": 8909.7771916848,
"total_value_mid": 9801.8363316848,
"total_value_exit_net": 9801.1672873298,
"total_value": 9801.8363316848,
"base_cost_quote": 1213.2286495575,
"unrealized_pnl_exit_net": -321.8385539125
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 60621,
"quote_asset_bal": 8996.2662524698,
"total_value_mid": 9859.5092924698,
"total_value_exit_net": 9858.8618601898,
"total_value": 9859.5092924698,
"base_cost_quote": 1128.0389251475,
"unrealized_pnl_exit_net": -265.4433174275
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 64625,
"quote_asset_bal": 8937.2623685848,
"total_value_mid": 9879.4948685848,
"total_value_exit_net": 9878.7881942098,
"total_value": 9879.4948685848,
"base_cost_quote": 1188.1541577825,
"unrealized_pnl_exit_net": -246.6283321575
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 63599,
"quote_asset_bal": 8953.1340833273,
"total_value_mid": 9888.6753733273,
"total_value_exit_net": 9887.9737173598,
"total_value": 9888.6753733273,
"base_cost_quote": 1173.14007566,
"unrealized_pnl_exit_net": -238.3004416275
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 63589,
"quote_asset_bal": 8953.6340048224,
"total_value_mid": 9895.3870948224,
"total_value_exit_net": 9894.6807800049,
"total_value": 9895.3870948224,
"base_cost_quote": 1173.15108391,
"unrealized_pnl_exit_net": -232.1043087275
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 60522,
"quote_asset_bal": 8999.3615431749,
"total_value_mid": 9939.2682031749,
"total_value_exit_net": 9938.5632731799,
"total_value": 9939.2682031749,
"base_cost_quote": 1128.0343617275,
"unrealized_pnl_exit_net": -188.8326317225
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 53316,
"quote_asset_bal": 9115.4692990749,
"total_value_mid": 9957.8620990749,
"total_value_exit_net": 9957.2303044749,
"total_value": 9957.8620990749,
"base_cost_quote": 1012.77397122,
"unrealized_pnl_exit_net": -171.01296582
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 56515,
"quote_asset_bal": 9065.8445627299,
"total_value_mid": 9939.5664627299,
"total_value_exit_net": 9938.9111713049,
"total_value": 9939.5664627299,
"base_cost_quote": 1062.89685521,
"unrealized_pnl_exit_net": -189.830246635
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 60763,
"quote_asset_bal": 9001.4551206624,
"total_value_mid": 9918.3687906624,
"total_value_exit_net": 9917.6811054099,
"total_value": 9918.3687906624,
"base_cost_quote": 1128.039775785,
"unrealized_pnl_exit_net": -211.8137910375
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 72166,
"quote_asset_bal": 8836.7851752999,
"total_value_mid": 9831.9543152999,
"total_value_exit_net": 9831.2079384449,
"total_value": 9831.9543152999,
"base_cost_quote": 1293.4004933775,
"unrealized_pnl_exit_net": -298.9777302325
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 72884,
"quote_asset_bal": 8827.8026347924,
"total_value_mid": 9840.1613947924,
"total_value_exit_net": 9839.4021257224,
"total_value": 9840.1613947924,
"base_cost_quote": 1303.455398905,
"unrealized_pnl_exit_net": -291.855907975
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 74647,
"quote_asset_bal": 8803.5750349024,
"total_value_mid": 9842.6612749024,
"total_value_exit_net": 9841.8819602224,
"total_value": 9842.6612749024,
"base_cost_quote": 1328.49830701,
"unrealized_pnl_exit_net": -290.19138169
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 74640,
"quote_asset_bal": 8804.2282636424,
"total_value_mid": 9832.0210636424,
"total_value_exit_net": 9831.2502190424,
"total_value": 9832.0210636424,
"base_cost_quote": 1328.49098152,
"unrealized_pnl_exit_net": -301.46902612
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 77207,
"quote_asset_bal": 8769.3803875449,
"total_value_mid": 9824.0280075449,
"total_value_exit_net": 9823.2370218299,
"total_value": 9824.0280075449,
"base_cost_quote": 1363.5769262575,
"unrealized_pnl_exit_net": -309.7202919725
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 78867,
"quote_asset_bal": 8750.20566606,
"total_value_mid": 9768.3786360599,
"total_value_exit_net": 9767.6150063324,
"total_value": 9768.3786360599,
"base_cost_quote": 1383.6196470325,
"unrealized_pnl_exit_net": -366.21030676
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 71713,
"quote_asset_bal": 8846.5077178,
"total_value_mid": 9846.1869378,
"total_value_exit_net": 9845.437178385,
"total_value": 9846.1869378,
"base_cost_quote": 1288.4122550025,
"unrealized_pnl_exit_net": -289.4827944175
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 80206,
"quote_asset_bal": 8732.323513965,
"total_value_mid": 9791.042713965,
"total_value_exit_net": 9790.248674565,
"total_value": 9791.042713965,
"base_cost_quote": 1403.6568236525,
"unrealized_pnl_exit_net": -345.7316630525
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 76123,
"quote_asset_bal": 8788.765386985,
"total_value_mid": 9825.560646985,
"total_value_exit_net": 9824.78305054,
"total_value": 9825.560646985,
"base_cost_quote": 1348.5516057125,
"unrealized_pnl_exit_net": -312.5339421575
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 89003,
"quote_asset_bal": 8624.110503515,
"total_value_mid": 9719.737433515,
"total_value_exit_net": 9718.9157133175,
"total_value": 9719.737433515,
"base_cost_quote": 1513.9102917825,
"unrealized_pnl_exit_net": -419.10508198
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 95171,
"quote_asset_bal": 8549.645031155,
"total_value_mid": 9684.083351155,
"total_value_exit_net": 9683.232522415,
"total_value": 9684.083351155,
"base_cost_quote": 1589.0440899,
"unrealized_pnl_exit_net": -455.45659864
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 96013,
"quote_asset_bal": 8539.8649400975,
"total_value_mid": 9679.5392500975,
"total_value_exit_net": 9678.684494365,
"total_value": 9679.5392500975,
"base_cost_quote": 1599.0586251725,
"unrealized_pnl_exit_net": -460.239070905
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 93496,
"quote_asset_bal": 8570.18721419,
"total_value_mid": 9692.13921419,
"total_value_exit_net": 9691.29775019,
"total_value": 9692.13921419,
"base_cost_quote": 1569.00903487,
"unrealized_pnl_exit_net": -447.89849887
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 86921,
"quote_asset_bal": 8651.0469208624,
"total_value_mid": 9731.4749508624,
"total_value_exit_net": 9730.6646298399,
"total_value": 9731.4749508624,
"base_cost_quote": 1488.8396028575,
"unrealized_pnl_exit_net": -409.22189388
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 78634,
"quote_asset_bal": 8756.6629570849,
"total_value_mid": 9783.6229970849,
"total_value_exit_net": 9782.8527770549,
"total_value": 9783.6229970849,
"base_cost_quote": 1383.62990472,
"unrealized_pnl_exit_net": -357.44008475
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 86493,
"quote_asset_bal": 8656.86853659,
"total_value_mid": 9726.78694659,
"total_value_exit_net": 9725.9845077825,
"total_value": 9726.78694659,
"base_cost_quote": 1483.81690866,
"unrealized_pnl_exit_net": -414.7009374675
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 83728,
"quote_asset_bal": 8692.2314449149,
"total_value_mid": 9761.4380049149,
"total_value_exit_net": 9760.6360999949,
"total_value": 9761.4380049149,
"base_cost_quote": 1448.76067619,
"unrealized_pnl_exit_net": -380.35602111
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 82949,
"quote_asset_bal": 8702.6534104599,
"total_value_mid": 9773.5250004599,
"total_value_exit_net": 9772.7218467674,
"total_value": 9773.5250004599,
"base_cost_quote": 1438.738104895,
"unrealized_pnl_exit_net": -368.6696685875
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 82949,
"quote_asset_bal": 8702.7501544249,
"total_value_mid": 9773.6217444249,
"total_value_exit_net": 9772.8185907324,
"total_value": 9773.6217444249,
"base_cost_quote": 1438.738104895,
"unrealized_pnl_exit_net": -368.6696685875
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 86924,
"quote_asset_bal": 8652.7343010099,
"total_value_mid": 9730.5919010099,
"total_value_exit_net": 9729.7835078099,
"total_value": 9730.5919010099,
"base_cost_quote": 1488.844416465,
"unrealized_pnl_exit_net": -411.795209665
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 91880,
"quote_asset_bal": 8592.7826298299,
"total_value_mid": 9690.7486298299,
"total_value_exit_net": 9689.9251553299,
"total_value": 9690.7486298299,
"base_cost_quote": 1548.965353375,
"unrealized_pnl_exit_net": -451.822827875
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 90605,
"quote_asset_bal": 8608.0839852124,
"total_value_mid": 9708.9347352124,
"total_value_exit_net": 9708.1090971499,
"total_value": 9708.9347352124,
"base_cost_quote": 1533.9307758925,
"unrealized_pnl_exit_net": -433.905663955
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 84103,
"quote_asset_bal": 8688.6260574574,
"total_value_mid": 9745.8007674574,
"total_value_exit_net": 9745.0078864249,
"total_value": 9745.8007674574,
"base_cost_quote": 1453.7702805775,
"unrealized_pnl_exit_net": -397.38845161
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 77813,
"quote_asset_bal": 8769.2049431024,
"total_value_mid": 9811.1210131024,
"total_value_exit_net": 9810.3395760499,
"total_value": 9811.1210131024,
"base_cost_quote": 1373.6133079025,
"unrealized_pnl_exit_net": -332.478674955
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 72309,
"quote_asset_bal": 8844.9274414574,
"total_value_mid": 9835.5607414574,
"total_value_exit_net": 9834.8177664824,
"total_value": 9835.5607414574,
"base_cost_quote": 1298.4470354475,
"unrealized_pnl_exit_net": -308.5567104225
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 71943,
"quote_asset_bal": 8850.1855797599,
"total_value_mid": 9871.0567497599,
"total_value_exit_net": 9870.2910963824,
"total_value": 9871.0567497599,
"base_cost_quote": 1293.418677005,
"unrealized_pnl_exit_net": -273.3131603825
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 74807,
"quote_asset_bal": 8810.3461710074,
"total_value_mid": 9841.9347010074,
"total_value_exit_net": 9841.1610096099,
"total_value": 9841.9347010074,
"base_cost_quote": 1333.4967830575,
"unrealized_pnl_exit_net": -302.681944455
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 69743,
"quote_asset_bal": 8881.0268102724,
"total_value_mid": 9865.7979702724,
"total_value_exit_net": 9865.0593919024,
"total_value": 9865.7979702724,
"base_cost_quote": 1263.3592793525,
"unrealized_pnl_exit_net": -279.3266977225
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 72286,
"quote_asset_bal": 8846.37582785,
"total_value_mid": 9838.8626078499,
"total_value_exit_net": 9838.1182427649,
"total_value": 9838.8626078499,
"base_cost_quote": 1298.439559845,
"unrealized_pnl_exit_net": -306.69714493
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 76431,
"quote_asset_bal": 8791.6628563924,
"total_value_mid": 9779.1513763924,
"total_value_exit_net": 9778.4107600024,
"total_value": 9779.1513763924,
"base_cost_quote": 1353.5543949925,
"unrealized_pnl_exit_net": -366.8064913825
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 75660,
"quote_asset_bal": 8802.1544125374,
"total_value_mid": 9791.7872125374,
"total_value_exit_net": 9791.0449879374,
"total_value": 9791.7872125374,
"base_cost_quote": 1343.5258592275,
"unrealized_pnl_exit_net": -354.6352838275
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 75692,
"quote_asset_bal": 8803.0330902674,
"total_value_mid": 9792.3275302674,
"total_value_exit_net": 9791.5855594374,
"total_value": 9792.3275302674,
"base_cost_quote": 1343.5212858,
"unrealized_pnl_exit_net": -354.96881663
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 76068,
"quote_asset_bal": 8798.4029297574,
"total_value_mid": 9792.6116897574,
"total_value_exit_net": 9791.8660331874,
"total_value": 9792.6116897574,
"base_cost_quote": 1348.5230343,
"unrealized_pnl_exit_net": -355.05993087
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 75685,
"quote_asset_bal": 8803.5863225499,
"total_value_mid": 9795.0598225499,
"total_value_exit_net": 9794.3162174249,
"total_value": 9795.0598225499,
"base_cost_quote": 1343.5134699425,
"unrealized_pnl_exit_net": -352.7835750675
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 77218,
"quote_asset_bal": 8783.7777037424,
"total_value_mid": 9789.9282437424,
"total_value_exit_net": 9789.1736308374,
"total_value": 9789.9282437424,
"base_cost_quote": 1363.54897531,
"unrealized_pnl_exit_net": -358.153048215
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 91377,
"quote_asset_bal": 8609.0693346049,
"total_value_mid": 9644.3707446049,
"total_value_exit_net": 9643.5942685474,
"total_value": 9644.3707446049,
"base_cost_quote": 1538.9105078925,
"unrealized_pnl_exit_net": -504.38557395
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 93585,
"quote_asset_bal": 8584.7096978874,
"total_value_mid": 9637.5409478874,
"total_value_exit_net": 9636.7513244499,
"total_value": 9637.5409478874,
"base_cost_quote": 1563.98446927,
"unrealized_pnl_exit_net": -511.9428427075
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 90327,
"quote_asset_bal": 8625.8961089624,
"total_value_mid": 9636.6552389625,
"total_value_exit_net": 9635.8971696149,
"total_value": 9636.6552389625,
"base_cost_quote": 1523.889880865,
"unrealized_pnl_exit_net": -513.8888202125
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 84136,
"quote_asset_bal": 8696.5926037925,
"total_value_mid": 9680.9838037925,
"total_value_exit_net": 9680.2455103925,
"total_value": 9680.9838037925,
"base_cost_quote": 1453.7671182075,
"unrealized_pnl_exit_net": -470.1142116075
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 87163,
"quote_asset_bal": 8661.7768487399,
"total_value_mid": 9669.3811287399,
"total_value_exit_net": 9668.6254255299,
"total_value": 9669.3811287399,
"base_cost_quote": 1488.8294552525,
"unrealized_pnl_exit_net": -481.9808784625
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 84986,
"quote_asset_bal": 8687.1660844549,
"total_value_mid": 9717.1964044549,
"total_value_exit_net": 9716.4238817149,
"total_value": 9717.1964044549,
"base_cost_quote": 1463.7760993175,
"unrealized_pnl_exit_net": -434.5183020575
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 88284,
"quote_asset_bal": 8647.8073870324,
"total_value_mid": 9713.3952670324,
"total_value_exit_net": 9712.5960761224,
"total_value": 9713.3952670324,
"base_cost_quote": 1503.855186105,
"unrealized_pnl_exit_net": -439.066497015
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 87842,
"quote_asset_bal": 8653.8227071299,
"total_value_mid": 9716.7109071299,
"total_value_exit_net": 9715.9137409799,
"total_value": 9716.7109071299,
"base_cost_quote": 1498.82659749,
"unrealized_pnl_exit_net": -436.73556364
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 89485,
"quote_asset_bal": 8634.5767359724,
"total_value_mid": 9713.7658359724,
"total_value_exit_net": 9712.9564441474,
"total_value": 9713.7658359724,
"base_cost_quote": 1518.87726422,
"unrealized_pnl_exit_net": -440.497556045
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 90322,
"quote_asset_bal": 8625.3685443799,
"total_value_mid": 9704.7164443799,
"total_value_exit_net": 9703.9069334549,
"total_value": 9704.7164443799,
"base_cost_quote": 1528.88756632,
"unrealized_pnl_exit_net": -450.349177245
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 88653,
"quote_asset_bal": 8645.9611551749,
"total_value_mid": 9717.7759251749,
"total_value_exit_net": 9716.9720640974,
"total_value": 9717.7759251749,
"base_cost_quote": 1508.844605365,
"unrealized_pnl_exit_net": -437.8336964425
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 87412,
"quote_asset_bal": 8661.5025282773,
"total_value_mid": 9726.1806882773,
"total_value_exit_net": 9725.3821796573,
"total_value": 9726.1806882773,
"base_cost_quote": 1493.8132502975,
"unrealized_pnl_exit_net": -429.9335989175
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 87001,
"quote_asset_bal": 8667.0952732849,
"total_value_mid": 9727.6374632848,
"total_value_exit_net": 9726.8420566423,
"total_value": 9727.6374632848,
"base_cost_quote": 1488.8198080225,
"unrealized_pnl_exit_net": -429.073024665
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 84561,
"quote_asset_bal": 8698.1222299598,
"total_value_mid": 9766.1276599598,
"total_value_exit_net": 9765.3266558873,
"total_value": 9766.1276599598,
"base_cost_quote": 1458.755947025,
"unrealized_pnl_exit_net": -391.5515210975
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 86974,
"quote_asset_bal": 8669.0795401373,
"total_value_mid": 9737.9900001373,
"total_value_exit_net": 9737.1883172923,
"total_value": 9737.9900001373,
"base_cost_quote": 1488.8173461775,
"unrealized_pnl_exit_net": -420.7085690225
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 91923,
"quote_asset_bal": 8609.6084214348,
"total_value_mid": 9711.7651914348,
"total_value_exit_net": 9710.9385738573,
"total_value": 9711.7651914348,
"base_cost_quote": 1548.9310376575,
"unrealized_pnl_exit_net": -447.600885235
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 94031,
"quote_asset_bal": 8584.9636797473,
"total_value_mid": 9697.3504097473,
"total_value_exit_net": 9696.5161196998,
"total_value": 9697.3504097473,
"base_cost_quote": 1573.99733329,
"unrealized_pnl_exit_net": -462.4448933375
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 88201,
"quote_asset_bal": 8655.8514678973,
"total_value_mid": 9729.2576378973,
"total_value_exit_net": 9728.4525832698,
"total_value": 9729.2576378973,
"base_cost_quote": 1503.851043,
"unrealized_pnl_exit_net": -431.2499276275
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 90691,
"quote_asset_bal": 8626.1428336448,
"total_value_mid": 9710.8071936448,
"total_value_exit_net": 9709.9936953748,
"total_value": 9710.8071936448,
"base_cost_quote": 1533.9015539925,
"unrealized_pnl_exit_net": -450.0506922625
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 86983,
"quote_asset_bal": 8671.6728232748,
"total_value_mid": 9740.6938932748,
"total_value_exit_net": 9739.8921274723,
"total_value": 9740.6938932748,
"base_cost_quote": 1488.824561585,
"unrealized_pnl_exit_net": -420.6052573875
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 89054,
"quote_asset_bal": 8647.0462787523,
"total_value_mid": 9714.8037387523,
"total_value_exit_net": 9714.0029206573,
"total_value": 9714.8037387523,
"base_cost_quote": 1513.87527554,
"unrealized_pnl_exit_net": -446.918633635
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 92016,
"quote_asset_bal": 8612.2594714748,
"total_value_mid": 9692.5273114748,
"total_value_exit_net": 9691.7171105948,
"total_value": 9692.5273114748,
"base_cost_quote": 1548.9449881125,
"unrealized_pnl_exit_net": -469.4873489925
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 95023,
"quote_asset_bal": 8577.6635740148,
"total_value_mid": 9664.7266940148,
"total_value_exit_net": 9663.9113966748,
"total_value": 9664.7266940148,
"base_cost_quote": 1584.0262793625,
"unrealized_pnl_exit_net": -497.7784567025
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 93291,
"quote_asset_bal": 8598.1462468273,
"total_value_mid": 9681.2547568273,
"total_value_exit_net": 9680.4424254448,
"total_value": 9681.2547568273,
"base_cost_quote": 1563.9877117,
"unrealized_pnl_exit_net": -481.6915330825
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 103024,
"quote_asset_bal": 8488.4797763173,
"total_value_mid": 9599.0784963173,
"total_value_exit_net": 9598.2455472773,
"total_value": 9599.0784963173,
"base_cost_quote": 1674.17881309,
"unrealized_pnl_exit_net": -564.41304213
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 106785,
"quote_asset_bal": 8448.9667387973,
"total_value_mid": 9575.5484887973,
"total_value_exit_net": 9574.7035524848,
"total_value": 9575.5484887973,
"base_cost_quote": 1714.25244579,
"unrealized_pnl_exit_net": -588.5156321025
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 105330,
"quote_asset_bal": 8464.4228794748,
"total_value_mid": 9600.9335794748,
"total_value_exit_net": 9600.0811964498,
"total_value": 9600.9335794748,
"base_cost_quote": 1699.2305978475,
"unrealized_pnl_exit_net": -563.5722808725
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 102115,
"quote_asset_bal": 8500.2302199273,
"total_value_mid": 9629.6221199273,
"total_value_exit_net": 9628.7750760023,
"total_value": 9629.6221199273,
"base_cost_quote": 1664.1543103475,
"unrealized_pnl_exit_net": -535.6094542725
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 94142,
"quote_asset_bal": 8591.1274918798,
"total_value_mid": 9672.8190718798,
"total_value_exit_net": 9672.0078031948,
"total_value": 9672.8190718798,
"base_cost_quote": 1573.9934003425,
"unrealized_pnl_exit_net": -493.1130890275
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 96336,
"quote_asset_bal": 8566.5818295248,
"total_value_mid": 9661.9221495247,
"total_value_exit_net": 9661.1006442847,
"total_value": 9661.9221495247,
"base_cost_quote": 1599.0496584525,
"unrealized_pnl_exit_net": -504.5308436925
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 104028,
"quote_asset_bal": 8481.7934197448,
"total_value_mid": 9602.1749797448,
"total_value_exit_net": 9601.3346935748,
"total_value": 9602.1749797448,
"base_cost_quote": 1684.2013943925,
"unrealized_pnl_exit_net": -564.6601205625
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 105406,
"quote_asset_bal": 8467.2893753123,
"total_value_mid": 9599.3498153123,
"total_value_exit_net": 9598.5007699823,
"total_value": 9599.3498153123,
"base_cost_quote": 1699.2246533925,
"unrealized_pnl_exit_net": -568.0132587225
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 112073,
"quote_asset_bal": 8397.5467441848,
"total_value_mid": 9559.7437541848,
"total_value_exit_net": 9558.8721064273,
"total_value": 9559.7437541848,
"base_cost_quote": 1769.3689421825,
"unrealized_pnl_exit_net": -608.04357994
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 119514,
"quote_asset_bal": 8322.9108928573,
"total_value_mid": 9503.7092128572,
"total_value_exit_net": 9502.8236141172,
"total_value": 9503.7092128572,
"base_cost_quote": 1844.5211641075,
"unrealized_pnl_exit_net": -664.6084428475
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 122061,
"quote_asset_bal": 8298.5641365198,
"total_value_mid": 9489.8794965197,
"total_value_exit_net": 9488.9860099997,
"total_value": 9489.8794965197,
"base_cost_quote": 1869.5809248425,
"unrealized_pnl_exit_net": -679.1590513625
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 115989,
"quote_asset_bal": 8359.2558188848,
"total_value_mid": 9530.7447188848,
"total_value_exit_net": 9529.8661022098,
"total_value": 9530.7447188848,
"base_cost_quote": 1809.457856335,
"unrealized_pnl_exit_net": -638.84757301
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 103582,
"quote_asset_bal": 8490.6111171523,
"total_value_mid": 9622.7623771523,
"total_value_exit_net": 9621.9132637073,
"total_value": 9622.7623771523,
"base_cost_quote": 1679.2041292525,
"unrealized_pnl_exit_net": -547.9019826975
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 100478,
"quote_asset_bal": 8526.4200195048,
"total_value_mid": 9618.6158795048,
"total_value_exit_net": 9617.7967326098,
"total_value": 9618.6158795048,
"base_cost_quote": 1644.1488174725,
"unrealized_pnl_exit_net": -552.7721043675
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 99549,
"quote_asset_bal": 8537.2525452148,
"total_value_mid": 9627.3140952148,
"total_value_exit_net": 9626.4965490523,
"total_value": 9627.3140952148,
"base_cost_quote": 1634.1188606425,
"unrealized_pnl_exit_net": -544.874856805
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 96380,
"quote_asset_bal": 8572.9408101398,
"total_value_mid": 9672.6366101398,
"total_value_exit_net": 9671.8118382898,
"total_value": 9672.6366101398,
"base_cost_quote": 1599.041041995,
"unrealized_pnl_exit_net": -500.170013845
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 88273,
"quote_asset_bal": 8669.4997727598,
"total_value_mid": 9726.1275827597,
"total_value_exit_net": 9725.3351119022,
"total_value": 9726.1275827597,
"base_cost_quote": 1503.8483709975,
"unrealized_pnl_exit_net": -448.013031855
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 83790,
"quote_asset_bal": 8725.8797893172,
"total_value_mid": 9786.6611893172,
"total_value_exit_net": 9785.8656032672,
"total_value": 9786.6611893172,
"base_cost_quote": 1448.7452746475,
"unrealized_pnl_exit_net": -388.7594606975
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 94925,
"quote_asset_bal": 8592.3340708772,
"total_value_mid": 9685.8700708772,
"total_value_exit_net": 9685.0499188772,
"total_value": 9685.8700708772,
"base_cost_quote": 1584.012659155,
"unrealized_pnl_exit_net": -491.296811155
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 97995,
"quote_asset_bal": 8558.8904067248,
"total_value_mid": 9661.3341567248,
"total_value_exit_net": 9660.5073239123,
"total_value": 9661.3341567248,
"base_cost_quote": 1619.071773785,
"unrealized_pnl_exit_net": -517.4548565975
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 101585,
"quote_asset_bal": 8519.9672616423,
"total_value_mid": 9643.4973616423,
"total_value_exit_net": 9642.6547140673,
"total_value": 9643.4973616423,
"base_cost_quote": 1659.15639472,
"unrealized_pnl_exit_net": -536.468942295
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 97534,
"quote_asset_bal": 8565.9928366448,
"total_value_mid": 9680.8064566448,
"total_value_exit_net": 9679.9703464298,
"total_value": 9680.8064566448,
"base_cost_quote": 1614.063420335,
"unrealized_pnl_exit_net": -500.08591055
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 91088,
"quote_asset_bal": 8642.0096698623,
"total_value_mid": 9739.6200698623,
"total_value_exit_net": 9738.7968620623,
"total_value": 9739.6200698623,
"base_cost_quote": 1538.9229372075,
"unrealized_pnl_exit_net": -442.1357450075
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 36919,
"quote_asset_bal": 9443.6323333448,
"total_value_mid": 9969.7280833448,
"total_value_exit_net": 9969.3335115323,
"total_value": 9969.7280833448,
"base_cost_quote": 742.0974059375,
"unrealized_pnl_exit_net": -216.39622775
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 10409,
"quote_asset_bal": 9980.9904859048,
"total_value_mid": 10178.1369459048,
"total_value_exit_net": 10177.9890860598,
"total_value": 10178.1369459048,
"base_cost_quote": 210.6422633,
"unrealized_pnl_exit_net": -13.643663145
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 19536,
"quote_asset_bal": 9829.2518999973,
"total_value_mid": 10148.4701399973,
"total_value_exit_net": 10148.2307263173,
"total_value": 10148.4701399973,
"base_cost_quote": 366.0166967925,
"unrealized_pnl_exit_net": -47.0378704725
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 17456,
"quote_asset_bal": 9867.5403468073,
"total_value_mid": 10164.6414668073,
"total_value_exit_net": 10164.4186409673,
"total_value": 10164.6414668073,
"base_cost_quote": 330.926749055,
"unrealized_pnl_exit_net": -34.048454895
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 15472,
"quote_asset_bal": 9905.5543851223,
"total_value_mid": 10163.7820651223,
"total_value_exit_net": 10163.5883943623,
"total_value": 10163.7820651223,
"base_cost_quote": 295.8804340175,
"unrealized_pnl_exit_net": -37.8464247775
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 14661,
"quote_asset_bal": 9918.2611909173,
"total_value_mid": 10178.4939409173,
"total_value_exit_net": 10178.2987663548,
"total_value": 10178.4939409173,
"base_cost_quote": 285.839679095,
"unrealized_pnl_exit_net": -25.8021036575
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 14963,
"quote_asset_bal": 9915.8373219023,
"total_value_mid": 10177.0913019023,
"total_value_exit_net": 10176.8953614173,
"total_value": 10177.0913019023,
"base_cost_quote": 290.8561085975,
"unrealized_pnl_exit_net": -29.7980690825
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 17242,
"quote_asset_bal": 9877.6289669773,
"total_value_mid": 10177.8121869773,
"total_value_exit_net": 10177.5870495623,
"total_value": 10177.8121869773,
"base_cost_quote": 330.937637215,
"unrealized_pnl_exit_net": -30.97955463
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 22139,
"quote_asset_bal": 9794.5253263398,
"total_value_mid": 10171.1097163398,
"total_value_exit_net": 10170.8272780473,
"total_value": 10171.1097163398,
"base_cost_quote": 416.1447246375,
"unrealized_pnl_exit_net": -39.84277293
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 11696,
"quote_asset_bal": 9978.4848668198,
"total_value_mid": 10225.9722268198,
"total_value_exit_net": 10225.7866112998,
"total_value": 10225.9722268198,
"base_cost_quote": 235.7183862975,
"unrealized_pnl_exit_net": 11.5833581825
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 14316,
"quote_asset_bal": 9926.5876161622,
"total_value_mid": 10218.3476961622,
"total_value_exit_net": 10218.1288761022,
"total_value": 10218.3476961622,
"base_cost_quote": 290.86490519,
"unrealized_pnl_exit_net": 0.67635475
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 18539,
"quote_asset_bal": 9843.1237376196,
"total_value_mid": 10208.7128176196,
"total_value_exit_net": 10208.4386258096,
"total_value": 10208.7128176196,
"base_cost_quote": 376.0820801725,
"unrealized_pnl_exit_net": -10.7671919825
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 18294,
"quote_asset_bal": 9849.2575916871,
"total_value_mid": 10210.0152716871,
"total_value_exit_net": 10209.7447034271,
"total_value": 10210.0152716871,
"base_cost_quote": 371.092851055,
"unrealized_pnl_exit_net": -10.605739315
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 18511,
"quote_asset_bal": 9845.397417242,
"total_value_mid": 10213.210987242,
"total_value_exit_net": 10212.9351270645,
"total_value": 10213.210987242,
"base_cost_quote": 376.1002638,
"unrealized_pnl_exit_net": -8.5625539775
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 18526,
"quote_asset_bal": 9846.4184380495,
"total_value_mid": 10211.1953780495,
"total_value_exit_net": 10210.9217953445,
"total_value": 10211.1953780495,
"base_cost_quote": 376.0844219275,
"unrealized_pnl_exit_net": -11.5810646325
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 16481,
"quote_asset_bal": 9888.4151108494,
"total_value_mid": 10218.3647308494,
"total_value_exit_net": 10218.1172686344,
"total_value": 10218.3647308494,
"base_cost_quote": 335.9767637275,
"unrealized_pnl_exit_net": -6.2746059425
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 15402,
"quote_asset_bal": 9910.8039810594,
"total_value_mid": 10236.2482410594,
"total_value_exit_net": 10236.0041578644,
"total_value": 10236.2482410594,
"base_cost_quote": 315.9057417425,
"unrealized_pnl_exit_net": 9.2944350625
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 13188,
"quote_asset_bal": 9958.3244089869,
"total_value_mid": 10250.4386089869,
"total_value_exit_net": 10250.2195233369,
"total_value": 10250.4386089869,
"base_cost_quote": 270.83353292,
"unrealized_pnl_exit_net": 21.06158143
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 7723,
"quote_asset_bal": 10093.1273055544,
"total_value_mid": 10279.2516055544,
"total_value_exit_net": 10279.1120123294,
"total_value": 10279.2516055544,
"base_cost_quote": 140.3698484875,
"unrealized_pnl_exit_net": 45.6148582875
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 7824,
"quote_asset_bal": 10090.1962125444,
"total_value_mid": 10289.5517325444,
"total_value_exit_net": 10289.4022159044,
"total_value": 10289.5517325444,
"base_cost_quote": 145.40521218,
"unrealized_pnl_exit_net": 53.80079118
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 10429,
"quote_asset_bal": 10021.6585756269,
"total_value_mid": 10288.0152356269,
"total_value_exit_net": 10287.8154681319,
"total_value": 10288.0152356269,
"base_cost_quote": 215.676416085,
"unrealized_pnl_exit_net": 50.48047642
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 12821,
"quote_asset_bal": 9962.3664056369,
"total_value_mid": 10284.0452956369,
"total_value_exit_net": 10283.8040364694,
"total_value": 10284.0452956369,
"base_cost_quote": 275.8780634825,
"unrealized_pnl_exit_net": 45.55956735
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 21626,
"quote_asset_bal": 9758.2183401244,
"total_value_mid": 10222.7448201244,
"total_value_exit_net": 10222.3964252644,
"total_value": 10222.7448201244,
"base_cost_quote": 481.5571071575,
"unrealized_pnl_exit_net": -17.3790220175
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 28621,
"quote_asset_bal": 9615.6834032244,
"total_value_mid": 10186.0999332244,
"total_value_exit_net": 10185.6721208269,
"total_value": 10186.0999332244,
"base_cost_quote": 626.99061054,
"unrealized_pnl_exit_net": -57.0018929375
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 23985,
"quote_asset_bal": 9712.8609242618,
"total_value_mid": 10213.9075742618,
"total_value_exit_net": 10213.5317892743,
"total_value": 10213.9075742618,
"base_cost_quote": 531.685405205,
"unrealized_pnl_exit_net": -31.0145401925
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 12686,
"quote_asset_bal": 9976.4590492043,
"total_value_mid": 10280.0350292043,
"total_value_exit_net": 10279.8073472193,
"total_value": 10280.0350292043,
"base_cost_quote": 270.8380262875,
"unrealized_pnl_exit_net": 32.5102717275
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 15624,
"quote_asset_bal": 9914.3285253268,
"total_value_mid": 10274.7742053268,
"total_value_exit_net": 10274.5038710668,
"total_value": 10274.7742053268,
"base_cost_quote": 336.0786000475,
"unrealized_pnl_exit_net": 24.0967456925
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 17160,
"quote_asset_bal": 9880.4108935943,
"total_value_mid": 10270.4576935943,
"total_value_exit_net": 10270.1651584943,
"total_value": 10270.4576935943,
"base_cost_quote": 371.16396435,
"unrealized_pnl_exit_net": 18.59030055
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 11638,
"quote_asset_bal": 10012.5485391368,
"total_value_mid": 10286.1579191368,
"total_value_exit_net": 10285.9527121018,
"total_value": 10286.1579191368,
"base_cost_quote": 240.749887095,
"unrealized_pnl_exit_net": 32.65428587
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 14643,
"quote_asset_bal": 9943.5509007218,
"total_value_mid": 10280.0470407218,
"total_value_exit_net": 10279.7946686168,
"total_value": 10280.0470407218,
"base_cost_quote": 310.987045485,
"unrealized_pnl_exit_net": 25.25672241
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 17225,
"quote_asset_bal": 9890.3437513668,
"total_value_mid": 10267.0545013668,
"total_value_exit_net": 10266.7719683043,
"total_value": 10267.0545013668,
"base_cost_quote": 366.16057462,
"unrealized_pnl_exit_net": 10.2676423175
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 20144,
"quote_asset_bal": 9832.4641060343,
"total_value_mid": 10246.4233060343,
"total_value_exit_net": 10246.1128366343,
"total_value": 10246.4233060343,
"base_cost_quote": 426.2787194375,
"unrealized_pnl_exit_net": -12.6299888375
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 30503,
"quote_asset_bal": 9634.4162004867,
"total_value_mid": 10192.6211004867,
"total_value_exit_net": 10192.2024468117,
"total_value": 10192.6211004867,
"base_cost_quote": 626.8532175725,
"unrealized_pnl_exit_net": -69.0669712475
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 31734,
"quote_asset_bal": 9617.4474586292,
"total_value_mid": 10201.0357186292,
"total_value_exit_net": 10200.5980274342,
"total_value": 10201.0357186292,
"base_cost_quote": 646.9296636225,
"unrealized_pnl_exit_net": -63.7790948175
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 37243,
"quote_asset_bal": 9519.5253610268,
"total_value_mid": 10180.9610410268,
"total_value_exit_net": 10180.4649642668,
"total_value": 10180.9610410268,
"base_cost_quote": 747.1613010125,
"unrealized_pnl_exit_net": -86.2216977725
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 23208,
"quote_asset_bal": 9788.6088504093,
"total_value_mid": 10233.7382904093,
"total_value_exit_net": 10233.4044433293,
"total_value": 10233.7382904093,
"base_cost_quote": 481.4795690475,
"unrealized_pnl_exit_net": -36.6839761275
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 24277,
"quote_asset_bal": 9770.8153857743,
"total_value_mid": 10229.4079157743,
"total_value_exit_net": 10229.0639713768,
"total_value": 10229.4079157743,
"base_cost_quote": 501.5006436,
"unrealized_pnl_exit_net": -43.2520579975
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 24395,
"quote_asset_bal": 9767.3730247018,
"total_value_mid": 10242.0997247018,
"total_value_exit_net": 10241.7436796768,
"total_value": 10242.0997247018,
"base_cost_quote": 506.5197751275,
"unrealized_pnl_exit_net": -32.1491201525
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 20391,
"quote_asset_bal": 9849.8638143668,
"total_value_mid": 10268.2871343668,
"total_value_exit_net": 10267.9733168768,
"total_value": 10268.2871343668,
"base_cost_quote": 426.2655495675,
"unrealized_pnl_exit_net": -8.1560470575
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 15826,
"quote_asset_bal": 9954.5125646368,
"total_value_mid": 10293.3472246368,
"total_value_exit_net": 10293.0930986418,
"total_value": 10293.3472246368,
"base_cost_quote": 326.0057310575,
"unrealized_pnl_exit_net": 12.5748029475
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 6726,
"quote_asset_bal": 10179.3426524918,
"total_value_mid": 10398.1394324918,
"total_value_exit_net": 10397.9753349068,
"total_value": 10398.1394324918,
"base_cost_quote": 105.2881369225,
"unrealized_pnl_exit_net": 113.3445454925
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 8381,
"quote_asset_bal": 10133.3757322017,
"total_value_mid": 10368.3789722017,
"total_value_exit_net": 10368.2027197717,
"total_value": 10368.3789722017,
"base_cost_quote": 155.4866776125,
"unrealized_pnl_exit_net": 79.3403099575
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 10219,
"quote_asset_bal": 10086.2122759742,
"total_value_mid": 10362.4318459742,
"total_value_exit_net": 10362.2246812967,
"total_value": 10362.4318459742,
"base_cost_quote": 205.6596391325,
"unrealized_pnl_exit_net": 70.35276619
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 17461,
"quote_asset_bal": 9903.5847900242,
"total_value_mid": 10329.6331900242,
"total_value_exit_net": 10329.3136537242,
"total_value": 10329.6331900242,
"base_cost_quote": 391.229342105,
"unrealized_pnl_exit_net": 34.499521595
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 22369,
"quote_asset_bal": 9785.6003419667,
"total_value_mid": 10311.7192219667,
"total_value_exit_net": 10311.3246328067,
"total_value": 10311.7192219667,
"base_cost_quote": 511.640943125,
"unrealized_pnl_exit_net": 14.083347715
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 17282,
"quote_asset_bal": 9913.5255633142,
"total_value_mid": 10329.6761233142,
"total_value_exit_net": 10329.3640103942,
"total_value": 10329.6761233142,
"base_cost_quote": 386.2314464925,
"unrealized_pnl_exit_net": 29.6070005875
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 15387,
"quote_asset_bal": 9960.9392126242,
"total_value_mid": 10330.9965626242,
"total_value_exit_net": 10330.7190196117,
"total_value": 10330.9965626242,
"base_cost_quote": 341.0824201,
"unrealized_pnl_exit_net": 28.6973868875
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 19161,
"quote_asset_bal": 9871.9930056517,
"total_value_mid": 10324.1926056517,
"total_value_exit_net": 10323.8534559517,
"total_value": 10324.1926056517,
"base_cost_quote": 431.3668126475,
"unrealized_pnl_exit_net": 20.4936376525
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 13397,
"quote_asset_bal": 10014.7872521092,
"total_value_mid": 10352.5256221092,
"total_value_exit_net": 10352.2723183317,
"total_value": 10352.5256221092,
"base_cost_quote": 290.90445483,
"unrealized_pnl_exit_net": 46.5806113925
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 14401,
"quote_asset_bal": 9990.9561152317,
"total_value_mid": 10346.6608152317,
"total_value_exit_net": 10346.3940367067,
"total_value": 10346.6608152317,
"base_cost_quote": 315.9971702625,
"unrealized_pnl_exit_net": 39.4407512125
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 10351,
"quote_asset_bal": 10098.9488839342,
"total_value_mid": 10380.3925739342,
"total_value_exit_net": 10380.1814911667,
"total_value": 10380.3925739342,
"base_cost_quote": 210.57545323,
"unrealized_pnl_exit_net": 70.6571540025
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 17964,
"quote_asset_bal": 9910.2162235867,
"total_value_mid": 10337.2205035867,
"total_value_exit_net": 10336.9002503767,
"total_value": 10337.2205035867,
"base_cost_quote": 401.231037755,
"unrealized_pnl_exit_net": 25.452989035
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 21850,
"quote_asset_bal": 9821.5580905742,
"total_value_mid": 10319.5195905742,
"total_value_exit_net": 10319.1461194492,
"total_value": 10319.5195905742,
"base_cost_quote": 491.4829259425,
"unrealized_pnl_exit_net": 6.1051029325
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 27108,
"quote_asset_bal": 9708.1089627017,
"total_value_mid": 10285.7804427017,
"total_value_exit_net": 10285.3471890917,
"total_value": 10285.7804427017,
"base_cost_quote": 606.78851032,
"unrealized_pnl_exit_net": -29.55028393
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 22988,
"quote_asset_bal": 9799.7344194367,
"total_value_mid": 10316.2747794367,
"total_value_exit_net": 10315.8873741667,
"total_value": 10316.2747794367,
"base_cost_quote": 516.57213875,
"unrealized_pnl_exit_net": -0.41918402
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 27326,
"quote_asset_bal": 9704.9378461692,
"total_value_mid": 10289.4409861692,
"total_value_exit_net": 10289.0026088142,
"total_value": 10289.4409861692,
"base_cost_quote": 611.8188902775,
"unrealized_pnl_exit_net": -27.7541276325
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 30432,
"quote_asset_bal": 9640.1572218042,
"total_value_mid": 10265.5348218042,
"total_value_exit_net": 10265.0657886042,
"total_value": 10265.5348218042,
"base_cost_quote": 676.9814055375,
"unrealized_pnl_exit_net": -52.0728387375
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 39590,
"quote_asset_bal": 9461.6308892292,
"total_value_mid": 10222.1547892292,
"total_value_exit_net": 10221.5843963042,
"total_value": 10222.1547892292,
"base_cost_quote": 857.4840610725,
"unrealized_pnl_exit_net": -97.5305539975
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 37230,
"quote_asset_bal": 9508.3153685892,
"total_value_mid": 10235.7895685892,
"total_value_exit_net": 10235.2439629392,
"total_value": 10235.7895685892,
"base_cost_quote": 812.325847795,
"unrealized_pnl_exit_net": -85.397253445
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 30759,
"quote_asset_bal": 9640.0492120942,
"total_value_mid": 10279.8364120942,
"total_value_exit_net": 10279.3565716942,
"total_value": 10279.8364120942,
"base_cost_quote": 681.98754733,
"unrealized_pnl_exit_net": -42.68018773
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 34803,
"quote_asset_bal": 9561.2156581242,
"total_value_mid": 10249.2709681242,
"total_value_exit_net": 10248.7549266417,
"total_value": 10249.2709681242,
"base_cost_quote": 762.2158234425,
"unrealized_pnl_exit_net": -74.676554925
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 27762,
"quote_asset_bal": 9707.6408970567,
"total_value_mid": 10311.1867770567,
"total_value_exit_net": 10310.7341176467,
"total_value": 10311.1867770567,
"base_cost_quote": 616.83183717,
"unrealized_pnl_exit_net": -13.73861658
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 35863,
"quote_asset_bal": 9544.0385613066,
"total_value_mid": 10244.4429513066,
"total_value_exit_net": 10243.9176480141,
"total_value": 10244.4429513066,
"base_cost_quote": 782.268561725,
"unrealized_pnl_exit_net": -82.3894750175
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 46585,
"quote_asset_bal": 9351.2200979841,
"total_value_mid": 10144.0967979841,
"total_value_exit_net": 10143.5021404591,
"total_value": 10144.0967979841,
"base_cost_quote": 977.77362063,
"unrealized_pnl_exit_net": -185.491578155
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 49494,
"quote_asset_bal": 9304.3098863291,
"total_value_mid": 10108.5873863291,
"total_value_exit_net": 10107.9841782041,
"total_value": 10108.5873863291,
"base_cost_quote": 1027.8851461075,
"unrealized_pnl_exit_net": -224.2108542325
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 52449,
"quote_asset_bal": 9256.3008727365,
"total_value_mid": 10120.6603927365,
"total_value_exit_net": 10120.0121230965,
"total_value": 10120.6603927365,
"base_cost_quote": 1078.045027825,
"unrealized_pnl_exit_net": -214.333777465
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 6699,
"quote_asset_bal": 10227.520428414,
"total_value_mid": 10396.134258414,
"total_value_exit_net": 10396.0077980415,
"total_value": 10396.134258414,
"base_cost_quote": 110.281549175,
"unrealized_pnl_exit_net": 58.2058204525
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 12915,
"quote_asset_bal": 10097.0556882865,
"total_value_mid": 10348.6398882865,
"total_value_exit_net": 10348.4512001365,
"total_value": 10348.6398882865,
"base_cost_quote": 245.64885857,
"unrealized_pnl_exit_net": 5.74665328
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 12127,
"quote_asset_bal": 10115.2545250515,
"total_value_mid": 10357.0669050515,
"total_value_exit_net": 10356.8855457665,
"total_value": 10357.0669050515,
"base_cost_quote": 230.65894456,
"unrealized_pnl_exit_net": 10.972076155
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 14207,
"quote_asset_bal": 10077.7339440864,
"total_value_mid": 10354.6283740864,
"total_value_exit_net": 10354.4207032639,
"total_value": 10354.6283740864,
"base_cost_quote": 270.796805395,
"unrealized_pnl_exit_net": 5.8899537825
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 22136,
"quote_asset_bal": 9928.5142569664,
"total_value_mid": 10332.2748969664,
"total_value_exit_net": 10331.9720764864,
"total_value": 10332.2748969664,
"base_cost_quote": 421.130311025,
"unrealized_pnl_exit_net": -17.672491505
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 12240,
"quote_asset_bal": 10122.3623789714,
"total_value_mid": 10360.4303789714,
"total_value_exit_net": 10360.2518279714,
"total_value": 10360.4303789714,
"base_cost_quote": 230.6910586275,
"unrealized_pnl_exit_net": 7.1983903725
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 23918,
"quote_asset_bal": 9908.7008373539,
"total_value_mid": 10325.8307573539,
"total_value_exit_net": 10325.5179099139,
"total_value": 10325.8307573539,
"base_cost_quote": 446.2535093025,
"unrealized_pnl_exit_net": -29.4364367425
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 11813,
"quote_asset_bal": 10136.9959706039,
"total_value_mid": 10375.264180604,
"total_value_exit_net": 10375.0854794465,
"total_value": 10375.264180604,
"base_cost_quote": 220.61954065,
"unrealized_pnl_exit_net": 17.4699681925
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 19894,
"quote_asset_bal": 9983.1075760464,
"total_value_mid": 10357.1147760464,
"total_value_exit_net": 10356.8342706464,
"total_value": 10357.1147760464,
"base_cost_quote": 376.039598335,
"unrealized_pnl_exit_net": -2.312903735
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 26163,
"quote_asset_bal": 9868.8891151639,
"total_value_mid": 10342.1777851639,
"total_value_exit_net": 10341.8228186614,
"total_value": 10342.1777851639,
"base_cost_quote": 491.32894054,
"unrealized_pnl_exit_net": -18.3952370425
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 17705,
"quote_asset_bal": 10031.2965819865,
"total_value_mid": 10335.8225819865,
"total_value_exit_net": 10335.5941874865,
"total_value": 10335.8225819865,
"base_cost_quote": 330.93145258,
"unrealized_pnl_exit_net": -26.63384708
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 37723,
"quote_asset_bal": 9717.9761599315,
"total_value_mid": 10268.7319599315,
"total_value_exit_net": 10268.3188930815,
"total_value": 10268.7319599315,
"base_cost_quote": 646.6749127025,
"unrealized_pnl_exit_net": -96.3321795525
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 30462,
"quote_asset_bal": 9822.0439149265,
"total_value_mid": 10288.1125149265,
"total_value_exit_net": 10287.7629634765,
"total_value": 10288.1125149265,
"base_cost_quote": 546.41714573,
"unrealized_pnl_exit_net": -80.69809718
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 34099,
"quote_asset_bal": 9769.487229759,
"total_value_mid": 10260.512829759,
"total_value_exit_net": 10260.144560559,
"total_value": 10260.512829759,
"base_cost_quote": 601.5477126675,
"unrealized_pnl_exit_net": -110.8903818675
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 42617,
"quote_asset_bal": 9651.0079752516,
"total_value_mid": 10235.7132152516,
"total_value_exit_net": 10235.2746863216,
"total_value": 10235.7132152516,
"base_cost_quote": 721.817137135,
"unrealized_pnl_exit_net": -137.550426065
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 48883,
"quote_asset_bal": 9567.6134580791,
"total_value_mid": 10218.2461880791,
"total_value_exit_net": 10217.7582135316,
"total_value": 10218.2461880791,
"base_cost_quote": 806.9781500275,
"unrealized_pnl_exit_net": -156.833394575
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 48199,
"quote_asset_bal": 9579.3579519841,
"total_value_mid": 10209.3188819841,
"total_value_exit_net": 10208.8464112866,
"total_value": 10209.3188819841,
"base_cost_quote": 796.9586810575,
"unrealized_pnl_exit_net": -167.470221755
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 35479,
"quote_asset_bal": 9766.6786867642,
"total_value_mid": 10238.9041767642,
"total_value_exit_net": 10238.5500076467,
"total_value": 10238.9041767642,
"base_cost_quote": 611.6050099875,
"unrealized_pnl_exit_net": -139.733689105
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 40617,
"quote_asset_bal": 9698.2644525366,
"total_value_mid": 10223.0360925366,
"total_value_exit_net": 10222.6425138066,
"total_value": 10223.0360925366,
"base_cost_quote": 681.69616896,
"unrealized_pnl_exit_net": -157.31810769
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 32597,
"quote_asset_bal": 9805.6290435067,
"total_value_mid": 10255.1416735067,
"total_value_exit_net": 10254.8045390342,
"total_value": 10255.1416735067,
"base_cost_quote": 576.4984498,
"unrealized_pnl_exit_net": -127.3229542725
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 42126,
"quote_asset_bal": 9676.5348225092,
"total_value_mid": 10226.2791225092,
"total_value_exit_net": 10225.8668142842,
"total_value": 10226.2791225092,
"base_cost_quote": 706.7547187875,
"unrealized_pnl_exit_net": -157.4227270125
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 30802,
"quote_asset_bal": 9834.0712376342,
"total_value_mid": 10257.9067576342,
"total_value_exit_net": 10257.5888809942,
"total_value": 10257.9067576342,
"base_cost_quote": 551.4462847575,
"unrealized_pnl_exit_net": -127.9286413975
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 39259,
"quote_asset_bal": 9720.1619721742,
"total_value_mid": 10241.9140821742,
"total_value_exit_net": 10241.5227680917,
"total_value": 10241.9140821742,
"base_cost_quote": 666.6856495075,
"unrealized_pnl_exit_net": -145.32485359
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 35484,
"quote_asset_bal": 9771.7078520667,
"total_value_mid": 10263.1612520667,
"total_value_exit_net": 10262.7926620167,
"total_value": 10263.1612520667,
"base_cost_quote": 616.55707125,
"unrealized_pnl_exit_net": -125.4722613
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 41440,
"quote_asset_bal": 9692.1074997342,
"total_value_mid": 10238.2866997342,
"total_value_exit_net": 10237.8770653342,
"total_value": 10238.2866997342,
"base_cost_quote": 696.7460979475,
"unrealized_pnl_exit_net": -150.9765323475
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 32640,
"quote_asset_bal": 9814.0358642367,
"total_value_mid": 10254.6758642367,
"total_value_exit_net": 10254.3453842367,
"total_value": 10254.6758642367,
"base_cost_quote": 576.500951675,
"unrealized_pnl_exit_net": -136.191431675
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 41289,
"quote_asset_bal": 9695.5804923368,
"total_value_mid": 10250.0917623368,
"total_value_exit_net": 10249.6758788843,
"total_value": 10250.0917623368,
"base_cost_quote": 696.754394165,
"unrealized_pnl_exit_net": -142.6590076175
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 47123,
"quote_asset_bal": 9621.9333245918,
"total_value_mid": 10223.6940345918,
"total_value_exit_net": 10223.2427140593,
"total_value": 10223.6940345918,
"base_cost_quote": 771.891704915,
"unrealized_pnl_exit_net": -170.5823154475
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 46734,
"quote_asset_bal": 9627.9075035493,
"total_value_mid": 10226.5700435493,
"total_value_exit_net": 10226.1210466443,
"total_value": 10226.5700435493,
"base_cost_quote": 766.8974320175,
"unrealized_pnl_exit_net": -168.6838889225
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 42137,
"quote_asset_bal": 9688.9579896618,
"total_value_mid": 10246.0091296618,
"total_value_exit_net": 10245.5913413068,
"total_value": 10246.0091296618,
"base_cost_quote": 706.76547685,
"unrealized_pnl_exit_net": -150.132125205
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 47497,
"quote_asset_bal": 9619.9294312468,
"total_value_mid": 10228.3660012468,
"total_value_exit_net": 10227.9096738193,
"total_value": 10228.3660012468,
"base_cost_quote": 776.891171705,
"unrealized_pnl_exit_net": -168.9109291325
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 44398,
"quote_asset_bal": 9660.5301638618,
"total_value_mid": 10243.9198838618,
"total_value_exit_net": 10243.4823415718,
"total_value": 10243.9198838618,
"base_cost_quote": 736.82512469,
"unrealized_pnl_exit_net": -153.87294698
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 42902,
"quote_asset_bal": 9681.4203341268,
"total_value_mid": 10239.1463341268,
"total_value_exit_net": 10238.7280396268,
"total_value": 10239.1463341268,
"base_cost_quote": 716.780362385,
"unrealized_pnl_exit_net": -159.472656885
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 59348,
"quote_asset_bal": 9482.0409498643,
"total_value_mid": 10160.3885898642,
"total_value_exit_net": 10159.8798291342,
"total_value": 10160.3885898642,
"base_cost_quote": 917.181590665,
"unrealized_pnl_exit_net": -239.342711395
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 58957,
"quote_asset_bal": 9488.9193556368,
"total_value_mid": 10169.8727056368,
"total_value_exit_net": 10169.3619906243,
"total_value": 10169.8727056368,
"base_cost_quote": 912.1760092925,
"unrealized_pnl_exit_net": -231.733374305
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 57220,
"quote_asset_bal": 9510.0814986893,
"total_value_mid": 10188.7106986893,
"total_value_exit_net": 10188.2017267893,
"total_value": 10188.7106986893,
"base_cost_quote": 892.163601235,
"unrealized_pnl_exit_net": -214.043373135
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 35732,
"quote_asset_bal": 9788.1936684392,
"total_value_mid": 10244.4913084392,
"total_value_exit_net": 10244.1490852092,
"total_value": 10244.4913084392,
"base_cost_quote": 616.5779969325,
"unrealized_pnl_exit_net": -160.6225801625
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 44294,
"quote_asset_bal": 9684.6708387842,
"total_value_mid": 10217.5276587842,
"total_value_exit_net": 10217.1280161692,
"total_value": 10217.5276587842,
"base_cost_quote": 721.7823410575,
"unrealized_pnl_exit_net": -189.3251636725
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 42555,
"quote_asset_bal": 9705.2611657717,
"total_value_mid": 10215.9211657717,
"total_value_exit_net": 10215.5381707717,
"total_value": 10215.9211657717,
"base_cost_quote": 701.745214475,
"unrealized_pnl_exit_net": -191.468209475
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 35283,
"quote_asset_bal": 9797.5960031742,
"total_value_mid": 10256.2750031742,
"total_value_exit_net": 10255.9309939242,
"total_value": 10256.2750031742,
"base_cost_quote": 611.571875155,
"unrealized_pnl_exit_net": -153.236884405
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 57254,
"quote_asset_bal": 9533.6014737942,
"total_value_mid": 10169.1208737942,
"total_value_exit_net": 10168.6442342442,
"total_value": 10169.1208737942,
"base_cost_quote": 877.06430525,
"unrealized_pnl_exit_net": -242.0215448
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 62828,
"quote_asset_bal": 9475.1102359417,
"total_value_mid": 10150.5112359417,
"total_value_exit_net": 10150.0046851917,
"total_value": 10150.5112359417,
"base_cost_quote": 937.1717420425,
"unrealized_pnl_exit_net": -262.2772927925
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 57354,
"quote_asset_bal": 9536.0348043242,
"total_value_mid": 10183.5614643242,
"total_value_exit_net": 10183.0758193292,
"total_value": 10183.5614643242,
"base_cost_quote": 877.06278411,
"unrealized_pnl_exit_net": -230.021769105
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 58698,
"quote_asset_bal": 9521.7080761567,
"total_value_mid": 10177.9517161567,
"total_value_exit_net": 10177.4595334267,
"total_value": 10177.9517161567,
"base_cost_quote": 892.0993230625,
"unrealized_pnl_exit_net": -236.3478657925
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 55981,
"quote_asset_bal": 9552.8182712617,
"total_value_mid": 10184.8437612617,
"total_value_exit_net": 10184.3697421442,
"total_value": 10184.8437612617,
"base_cost_quote": 862.0501030375,
"unrealized_pnl_exit_net": -230.498632155
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 59591,
"quote_asset_bal": 9513.4623336742,
"total_value_mid": 10174.9224336742,
"total_value_exit_net": 10174.4263385992,
"total_value": 10174.9224336742,
"base_cost_quote": 902.10819409,
"unrealized_pnl_exit_net": -241.144189165
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 70076,
"quote_asset_bal": 9404.2675452918,
"total_value_mid": 10107.1298252917,
"total_value_exit_net": 10106.6026785818,
"total_value": 10107.1298252917,
"base_cost_quote": 1012.3291878825,
"unrealized_pnl_exit_net": -309.9940545925
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 78133,
"quote_asset_bal": 9325.6358920818,
"total_value_mid": 10075.7126920818,
"total_value_exit_net": 10075.1501344818,
"total_value": 10075.7126920818,
"base_cost_quote": 1092.47145954,
"unrealized_pnl_exit_net": -342.95721714
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 48684,
"quote_asset_bal": 9654.1082785693,
"total_value_mid": 10187.1980785693,
"total_value_exit_net": 10186.7982612193,
"total_value": 10187.1980785693,
"base_cost_quote": 766.874704985,
"unrealized_pnl_exit_net": -234.184722335
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 49162,
"quote_asset_bal": 9651.2042588718,
"total_value_mid": 10175.7627988718,
"total_value_exit_net": 10175.3693799668,
"total_value": 10175.7627988718,
"base_cost_quote": 771.8929158225,
"unrealized_pnl_exit_net": -247.7277947275
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 45915,
"quote_asset_bal": 9687.6189778118,
"total_value_mid": 10194.5205778118,
"total_value_exit_net": 10194.1404016118,
"total_value": 10194.5205778118,
"base_cost_quote": 736.8235535125,
"unrealized_pnl_exit_net": -230.3021297125
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 45005,
"quote_asset_bal": 9698.3211774243,
"total_value_mid": 10191.1259274242,
"total_value_exit_net": 10190.7563238617,
"total_value": 10191.1259274242,
"base_cost_quote": 726.7988806425,
"unrealized_pnl_exit_net": -234.363734205
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 44928,
"quote_asset_bal": 9698.6463908918,
"total_value_mid": 10207.6806308918,
"total_value_exit_net": 10207.2988552118,
"total_value": 10207.6806308918,
"base_cost_quote": 726.7970592775,
"unrealized_pnl_exit_net": -218.1445949575
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 50745,
"quote_asset_bal": 9633.9366834768,
"total_value_mid": 10193.6540334767,
"total_value_exit_net": 10193.2342454642,
"total_value": 10193.6540334767,
"base_cost_quote": 791.8951662675,
"unrealized_pnl_exit_net": -232.59760428
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 45366,
"quote_asset_bal": 9694.7652199542,
"total_value_mid": 10220.5571599542,
"total_value_exit_net": 10220.1628159992,
"total_value": 10220.5571599542,
"base_cost_quote": 731.80728413,
"unrealized_pnl_exit_net": -206.409688085
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 47993,
"quote_asset_bal": 9665.2888336192,
"total_value_mid": 10199.9308536192,
"total_value_exit_net": 10199.5298721042,
"total_value": 10199.9308536192,
"base_cost_quote": 761.8806922825,
"unrealized_pnl_exit_net": -227.6396537975
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 46656,
"quote_asset_bal": 9680.7642735892,
"total_value_mid": 10212.1761135892,
"total_value_exit_net": 10211.7775547092,
"total_value": 10212.1761135892,
"base_cost_quote": 746.841371245,
"unrealized_pnl_exit_net": -215.828090125
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 51100,
"quote_asset_bal": 9630.9638394843,
"total_value_mid": 10199.1958394843,
"total_value_exit_net": 10198.7696654843,
"total_value": 10199.1958394843,
"base_cost_quote": 796.92840837,
"unrealized_pnl_exit_net": -229.12258237
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 51577,
"quote_asset_bal": 9626.2899810693,
"total_value_mid": 10201.3735310693,
"total_value_exit_net": 10200.9422184068,
"total_value": 10201.3735310693,
"base_cost_quote": 801.9403945425,
"unrealized_pnl_exit_net": -227.288157205
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 52472,
"quote_asset_bal": 9616.5315412193,
"total_value_mid": 10200.5449012193,
"total_value_exit_net": 10200.1068911993,
"total_value": 10200.5449012193,
"base_cost_quote": 811.94522254,
"unrealized_pnl_exit_net": -228.36987256
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 48876,
"quote_asset_bal": 9656.9701945993,
"total_value_mid": 10208.2914745993,
"total_value_exit_net": 10207.8779836393,
"total_value": 10208.2914745993,
"base_cost_quote": 771.885940595,
"unrealized_pnl_exit_net": -220.978151555
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 45354,
"quote_asset_bal": 9697.4374089793,
"total_value_mid": 10220.3690289793,
"total_value_exit_net": 10219.9768302643,
"total_value": 10220.3690289793,
"base_cost_quote": 731.82133466,
"unrealized_pnl_exit_net": -209.281913375
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 45346,
"quote_asset_bal": 9697.7837128968,
"total_value_mid": 10225.6111528968,
"total_value_exit_net": 10225.2152823168,
"total_value": 10225.6111528968,
"base_cost_quote": 731.7922228425,
"unrealized_pnl_exit_net": -204.3606534225
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 48404,
"quote_asset_bal": 9663.0294247943,
"total_value_mid": 10214.3509847943,
"total_value_exit_net": 10213.9374936243,
"total_value": 10214.3509847943,
"base_cost_quote": 766.8833414575,
"unrealized_pnl_exit_net": -215.9752726275
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 50628,
"quote_asset_bal": 9638.3190167193,
"total_value_mid": 10206.3651767193,
"total_value_exit_net": 10205.9391420993,
"total_value": 10206.3651767193,
"base_cost_quote": 791.927560545,
"unrealized_pnl_exit_net": -224.307435165
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 63803,
"quote_asset_bal": 9498.4444576918,
"total_value_mid": 10146.0449076918,
"total_value_exit_net": 10145.5592073543,
"total_value": 10146.0449076918,
"base_cost_quote": 932.18945813,
"unrealized_pnl_exit_net": -285.0747084675
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 67309,
"quote_asset_bal": 9464.1337723068,
"total_value_mid": 10127.8005123068,
"total_value_exit_net": 10127.3027622518,
"total_value": 10127.8005123068,
"base_cost_quote": 967.263403875,
"unrealized_pnl_exit_net": -304.09441393
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 69863,
"quote_asset_bal": 9439.7016189543,
"total_value_mid": 10122.2631289543,
"total_value_exit_net": 10121.7512078218,
"total_value": 10122.2631289543,
"base_cost_quote": 992.3200923075,
"unrealized_pnl_exit_net": -310.27050344
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 69354,
"quote_asset_bal": 9445.6001393118,
"total_value_mid": 10123.8822593118,
"total_value_exit_net": 10123.3735477218,
"total_value": 10123.8822593118,
"base_cost_quote": 987.311348565,
"unrealized_pnl_exit_net": -309.537940155
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 67815,
"quote_asset_bal": 9461.2918230293,
"total_value_mid": 10126.5569730293,
"total_value_exit_net": 10126.0580241668,
"total_value": 10126.5569730293,
"base_cost_quote": 972.27774181,
"unrealized_pnl_exit_net": -307.5115406725
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 83980,
"quote_asset_bal": 9311.9741349043,
"total_value_mid": 10044.2797349043,
"total_value_exit_net": 10043.7305057043,
"total_value": 10044.2797349043,
"base_cost_quote": 1122.5505719675,
"unrealized_pnl_exit_net": -390.7942011675
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 88083,
"quote_asset_bal": 9277.9458014693,
"total_value_mid": 10025.7704714693,
"total_value_exit_net": 10025.2096029668,
"total_value": 10025.7704714693,
"base_cost_quote": 1157.6174123875,
"unrealized_pnl_exit_net": -410.35361089
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 87521,
"quote_asset_bal": 9283.8323942493,
"total_value_mid": 10029.5113142493,
"total_value_exit_net": 10028.9520550593,
"total_value": 10029.5113142493,
"base_cost_quote": 1152.605025915,
"unrealized_pnl_exit_net": -407.485365105
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 85756,
"quote_asset_bal": 9299.2215852143,
"total_value_mid": 10039.2958652143,
"total_value_exit_net": 10038.7408095043,
"total_value": 10039.2958652143,
"base_cost_quote": 1137.58510942,
"unrealized_pnl_exit_net": -398.06588513
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 105430,
"quote_asset_bal": 9140.5749682543,
"total_value_mid": 9954.4945682543,
"total_value_exit_net": 9953.8841285543,
"total_value": 9954.4945682543,
"base_cost_quote": 1297.8377388175,
"unrealized_pnl_exit_net": -484.5285785175
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 103073,
"quote_asset_bal": 9163.1452228868,
"total_value_mid": 9956.8073228868,
"total_value_exit_net": 9956.2120763118,
"total_value": 9956.8073228868,
"base_cost_quote": 1277.80651666,
"unrealized_pnl_exit_net": -484.739663235
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 114708,
"quote_asset_bal": 9073.9815568667,
"total_value_mid": 9937.7327968667,
"total_value_exit_net": 9937.0849834367,
"total_value": 9937.7327968667,
"base_cost_quote": 1367.952015115,
"unrealized_pnl_exit_net": -504.848588545
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 98661,
"quote_asset_bal": 9200.7021936917,
"total_value_mid": 10006.7625636917,
"total_value_exit_net": 10006.1580184142,
"total_value": 10006.7625636917,
"base_cost_quote": 1242.7642246375,
"unrealized_pnl_exit_net": -437.308399915
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 112601,
"quote_asset_bal": 9091.1761070117,
"total_value_mid": 9953.6997670117,
"total_value_exit_net": 9953.0528742667,
"total_value": 9953.6997670117,
"base_cost_quote": 1352.9206000025,
"unrealized_pnl_exit_net": -491.0438327475
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 109956,
"quote_asset_bal": 9111.9985693242,
"total_value_mid": 9956.4606493241,
"total_value_exit_net": 9955.8273027641,
"total_value": 9956.4606493241,
"base_cost_quote": 1332.882292535,
"unrealized_pnl_exit_net": -489.053559095
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 100414,
"quote_asset_bal": 9187.6718869441,
"total_value_mid": 9991.9880269441,
"total_value_exit_net": 9991.3847898391,
"total_value": 9991.9880269441,
"base_cost_quote": 1257.7809387325,
"unrealized_pnl_exit_net": -454.0680358375
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 108720,
"quote_asset_bal": 9123.2609409916,
"total_value_mid": 9958.2305409916,
"total_value_exit_net": 9957.6043137916,
"total_value": 9958.2305409916,
"base_cost_quote": 1322.869908875,
"unrealized_pnl_exit_net": -488.526536075
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 116018,
"quote_asset_bal": 9069.1447752241,
"total_value_mid": 9936.9594152241,
"total_value_exit_net": 9936.3085542441,
"total_value": 9936.9594152241,
"base_cost_quote": 1377.9658498625,
"unrealized_pnl_exit_net": -510.8020708425
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 120169,
"quote_asset_bal": 9040.2937450216,
"total_value_mid": 9903.1071650216,
"total_value_exit_net": 9902.4600549566,
"total_value": 9903.1071650216,
"base_cost_quote": 1407.99660605,
"unrealized_pnl_exit_net": -545.830296115
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 108785,
"quote_asset_bal": 9127.1062586541,
"total_value_mid": 9948.4330086541,
"total_value_exit_net": 9947.8170135916,
"total_value": 9948.4330086541,
"base_cost_quote": 1322.8821480475,
"unrealized_pnl_exit_net": -502.17139311
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 104949,
"quote_asset_bal": 9158.0602122741,
"total_value_mid": 9974.563432274,
"total_value_exit_net": 9973.951054859,
"total_value": 9974.563432274,
"base_cost_quote": 1292.8268434625,
"unrealized_pnl_exit_net": -476.9360008775
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 104316,
"quote_asset_bal": 9163.618229684,
"total_value_mid": 9980.412509684,
"total_value_exit_net": 9979.799913974,
"total_value": 9980.412509684,
"base_cost_quote": 1287.8202113025,
"unrealized_pnl_exit_net": -471.6385270125
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 99921,
"quote_asset_bal": 9199.1691390815,
"total_value_mid": 10009.5284490815,
"total_value_exit_net": 10008.920679599,
"total_value": 10009.5284490815,
"base_cost_quote": 1252.76627055,
"unrealized_pnl_exit_net": -443.0147300325
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 89153,
"quote_asset_bal": 9290.6485586315,
"total_value_mid": 10060.0389486315,
"total_value_exit_net": 10059.461905839,
"total_value": 10060.0389486315,
"base_cost_quote": 1162.6296887775,
"unrealized_pnl_exit_net": -393.81634157
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 94340,
"quote_asset_bal": 9246.500353889,
"total_value_mid": 10051.220553889,
"total_value_exit_net": 10050.617013739,
"total_value": 10051.220553889,
"base_cost_quote": 1207.693070985,
"unrealized_pnl_exit_net": -403.576411135
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 82372,
"quote_asset_bal": 9352.7779027515,
"total_value_mid": 10111.4240227515,
"total_value_exit_net": 10110.8550381615,
"total_value": 10111.4240227515,
"base_cost_quote": 1102.5119342525,
"unrealized_pnl_exit_net": -344.4347988425
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 79148,
"quote_asset_bal": 9383.7248999766,
"total_value_mid": 10136.4223799765,
"total_value_exit_net": 10135.8578568665,
"total_value": 10136.4223799765,
"base_cost_quote": 1072.45677978,
"unrealized_pnl_exit_net": -320.32382289
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 71373,
"quote_asset_bal": 9459.6906352941,
"total_value_mid": 10168.4245252941,
"total_value_exit_net": 10167.8929748766,
"total_value": 10168.4245252941,
"base_cost_quote": 997.3142751375,
"unrealized_pnl_exit_net": -289.111935555
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 69360,
"quote_asset_bal": 9480.3222026641,
"total_value_mid": 10181.5518026641,
"total_value_exit_net": 10181.0258804641,
"total_value": 10181.5518026641,
"base_cost_quote": 977.2896179,
"unrealized_pnl_exit_net": -276.5859401
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 68867,
"quote_asset_bal": 9485.7989341866,
"total_value_mid": 10182.7329741866,
"total_value_exit_net": 10182.2102736566,
"total_value": 10182.7329741866,
"base_cost_quote": 972.27698124,
"unrealized_pnl_exit_net": -275.86564177
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 79165,
"quote_asset_bal": 9386.4083974166,
"total_value_mid": 10144.0174474166,
"total_value_exit_net": 10143.4492406291,
"total_value": 10144.0174474166,
"base_cost_quote": 1072.4733021625,
"unrealized_pnl_exit_net": -315.43245895
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 76046,
"quote_asset_bal": 9417.2326839766,
"total_value_mid": 10150.3161239766,
"total_value_exit_net": 10149.7663113966,
"total_value": 10150.3161239766,
"base_cost_quote": 1042.411602785,
"unrealized_pnl_exit_net": -309.877975365
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 77078,
"quote_asset_bal": 9407.7365142541,
"total_value_mid": 10148.4560942541,
"total_value_exit_net": 10147.9005545691,
"total_value": 10148.4560942541,
"base_cost_quote": 1052.4233559725,
"unrealized_pnl_exit_net": -312.2593156575
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 77078,
"quote_asset_bal": 9408.2919735966,
"total_value_mid": 10149.7823335966,
"total_value_exit_net": 10149.2262158266,
"total_value": 10149.7823335966,
"base_cost_quote": 1052.4337237425,
"unrealized_pnl_exit_net": -311.4994815125
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 71923,
"quote_asset_bal": 9458.9481519641,
"total_value_mid": 10169.5473919641,
"total_value_exit_net": 10169.0144425341,
"total_value": 10169.5473919641,
"base_cost_quote": 1002.322638595,
"unrealized_pnl_exit_net": -292.256348025
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 74991,
"quote_asset_bal": 9429.2363156091,
"total_value_mid": 10161.1484756091,
"total_value_exit_net": 10160.5995414891,
"total_value": 10161.1484756091,
"base_cost_quote": 1032.385568895,
"unrealized_pnl_exit_net": -301.022343015
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 85552,
"quote_asset_bal": 9329.3139718291,
"total_value_mid": 10121.5254918291,
"total_value_exit_net": 10120.9313331891,
"total_value": 10121.5254918291,
"base_cost_quote": 1132.5593529275,
"unrealized_pnl_exit_net": -340.9419915675
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 81837,
"quote_asset_bal": 9365.0340188316,
"total_value_mid": 10120.3895288316,
"total_value_exit_net": 10119.8230121991,
"total_value": 10120.3895288316,
"base_cost_quote": 1097.492242305,
"unrealized_pnl_exit_net": -342.7032489375
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 92787,
"quote_asset_bal": 9265.3844132841,
"total_value_mid": 10092.1165832841,
"total_value_exit_net": 10091.4965341566,
"total_value": 10092.1165832841,
"base_cost_quote": 1197.675523455,
"unrealized_pnl_exit_net": -371.5634025825
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 95046,
"quote_asset_bal": 9246.2250245566,
"total_value_mid": 10084.5307445566,
"total_value_exit_net": 10083.9020152666,
"total_value": 10084.5307445566,
"base_cost_quote": 1217.7051444125,
"unrealized_pnl_exit_net": -380.0281537025
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 92787,
"quote_asset_bal": 9267.0293470516,
"total_value_mid": 10094.6893870516,
"total_value_exit_net": 10094.0686420216,
"total_value": 10094.6893870516,
"base_cost_quote": 1197.6756335375,
"unrealized_pnl_exit_net": -370.6363385675
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 70947,
"quote_asset_bal": 9473.4484862966,
"total_value_mid": 10177.9521962966,
"total_value_exit_net": 10177.4238185141,
"total_value": 10177.9521962966,
"base_cost_quote": 992.30238904,
"unrealized_pnl_exit_net": -288.3270568225
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 61570,
"quote_asset_bal": 9569.7176268767,
"total_value_mid": 10222.3596268767,
"total_value_exit_net": 10221.8701453767,
"total_value": 10222.3596268767,
"base_cost_quote": 897.0948068675,
"unrealized_pnl_exit_net": -244.9422883675
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 55985,
"quote_asset_bal": 9630.5320795967,
"total_value_mid": 10249.7261795967,
"total_value_exit_net": 10249.2617840217,
"total_value": 10249.7261795967,
"base_cost_quote": 836.97225875,
"unrealized_pnl_exit_net": -218.242554325
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 61532,
"quote_asset_bal": 9571.1876586592,
"total_value_mid": 10225.8881386592,
"total_value_exit_net": 10225.3971132992,
"total_value": 10225.8881386592,
"base_cost_quote": 897.08358846,
"unrealized_pnl_exit_net": -242.87413382
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 59174,
"quote_asset_bal": 9597.3641191067,
"total_value_mid": 10237.6267991067,
"total_value_exit_net": 10237.1466020967,
"total_value": 10237.6267991067,
"base_cost_quote": 872.044843475,
"unrealized_pnl_exit_net": -232.262360485
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 51521,
"quote_asset_bal": 9683.4342353742,
"total_value_mid": 10265.1063253742,
"total_value_exit_net": 10264.6700713067,
"total_value": 10265.1063253742,
"base_cost_quote": 786.9103304425,
"unrealized_pnl_exit_net": -205.67449451
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 59642,
"quote_asset_bal": 9593.9745222992,
"total_value_mid": 10240.4938022992,
"total_value_exit_net": 10240.0089128392,
"total_value": 10240.4938022992,
"base_cost_quote": 877.0762842275,
"unrealized_pnl_exit_net": -231.0418936875
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 73870,
"quote_asset_bal": 9450.1916383167,
"total_value_mid": 10182.9820383167,
"total_value_exit_net": 10182.4324455167,
"total_value": 10182.9820383167,
"base_cost_quote": 1022.3178937975,
"unrealized_pnl_exit_net": -290.0770865975
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 76931,
"quote_asset_bal": 9420.8620788617,
"total_value_mid": 10169.4007088617,
"total_value_exit_net": 10168.8393048892,
"total_value": 10169.4007088617,
"base_cost_quote": 1052.3834860925,
"unrealized_pnl_exit_net": -304.406260065
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 77966,
"quote_asset_bal": 9411.9632552867,
"total_value_mid": 10165.1148152867,
"total_value_exit_net": 10164.5499516167,
"total_value": 10165.1148152867,
"base_cost_quote": 1062.3993523625,
"unrealized_pnl_exit_net": -309.8126560325
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 71840,
"quote_asset_bal": 9473.1696229617,
"total_value_mid": 10185.1040229617,
"total_value_exit_net": 10184.5700721617,
"total_value": 10185.1040229617,
"base_cost_quote": 1002.291655375,
"unrealized_pnl_exit_net": -290.891206175
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 80626,
"quote_asset_bal": 9389.1833314068,
"total_value_mid": 10155.1303314067,
"total_value_exit_net": 10154.5558711567,
"total_value": 10155.1303314067,
"base_cost_quote": 1087.4579922575,
"unrealized_pnl_exit_net": -322.0854525075
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 80105,
"quote_asset_bal": 9395.3353418368,
"total_value_mid": 10157.1338918368,
"total_value_exit_net": 10156.5625429243,
"total_value": 10157.1338918368,
"base_cost_quote": 1082.447227,
"unrealized_pnl_exit_net": -321.2200259125
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 79573,
"quote_asset_bal": 9401.7415947218,
"total_value_mid": 10164.8466647218,
"total_value_exit_net": 10164.2743359193,
"total_value": 10164.8466647218,
"base_cost_quote": 1077.43150803,
"unrealized_pnl_exit_net": -314.8987668325
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 67399,
"quote_asset_bal": 9522.9814765993,
"total_value_mid": 10210.4512765993,
"total_value_exit_net": 10209.9356742493,
"total_value": 10210.4512765993,
"base_cost_quote": 957.1851008125,
"unrealized_pnl_exit_net": -270.2309031625
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 56246,
"quote_asset_bal": 9651.1388149668,
"total_value_mid": 10232.1599949668,
"total_value_exit_net": 10231.7242290818,
"total_value": 10232.1599949668,
"base_cost_quote": 831.9602725775,
"unrealized_pnl_exit_net": -251.3748584625
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 52395,
"quote_asset_bal": 9692.4338898094,
"total_value_mid": 10241.5334898094,
"total_value_exit_net": 10241.1216651094,
"total_value": 10241.5334898094,
"base_cost_quote": 791.8805953475,
"unrealized_pnl_exit_net": -243.1928200475
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 50548,
"quote_asset_bal": 9714.1419801069,
"total_value_mid": 10250.9617401069,
"total_value_exit_net": 10250.5591252869,
"total_value": 10250.9617401069,
"base_cost_quote": 771.86898789,
"unrealized_pnl_exit_net": -235.45184271
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 53894,
"quote_asset_bal": 9679.7057260344,
"total_value_mid": 10239.1254460344,
"total_value_exit_net": 10238.7058812444,
"total_value": 10239.1254460344,
"base_cost_quote": 806.94751707,
"unrealized_pnl_exit_net": -247.94736186
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 50581,
"quote_asset_bal": 9715.3343081419,
"total_value_mid": 10257.0568181419,
"total_value_exit_net": 10256.6505262594,
"total_value": 10257.0568181419,
"base_cost_quote": 771.8751625175,
"unrealized_pnl_exit_net": -230.5589444
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 51964,
"quote_asset_bal": 9701.0083744544,
"total_value_mid": 10258.0624544544,
"total_value_exit_net": 10257.6446638944,
"total_value": 10258.0624544544,
"base_cost_quote": 786.8990419825,
"unrealized_pnl_exit_net": -230.2627525425
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 57629,
"quote_asset_bal": 9641.4507726469,
"total_value_mid": 10241.9449526469,
"total_value_exit_net": 10241.4945820119,
"total_value": 10241.9449526469,
"base_cost_quote": 847.0116326375,
"unrealized_pnl_exit_net": -246.9678232725
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 71992,
"quote_asset_bal": 9502.168813687,
"total_value_mid": 10178.173693687,
"total_value_exit_net": 10177.666690027,
"total_value": 10178.173693687,
"base_cost_quote": 987.2943258075,
"unrealized_pnl_exit_net": -311.7964494675
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 72531,
"quote_asset_bal": 9498.0862662945,
"total_value_mid": 10178.4270462945,
"total_value_exit_net": 10177.9167907095,
"total_value": 10178.4270462945,
"base_cost_quote": 992.30539129,
"unrealized_pnl_exit_net": -312.474866875
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 70539,
"quote_asset_bal": 9518.917489732,
"total_value_mid": 10174.224799732,
"total_value_exit_net": 10173.7333192495,
"total_value": 10174.224799732,
"base_cost_quote": 972.25284315,
"unrealized_pnl_exit_net": -317.4370136325
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 68925,
"quote_asset_bal": 9534.625150922,
"total_value_mid": 10179.073900922,
"total_value_exit_net": 10178.5905643595,
"total_value": 10179.073900922,
"base_cost_quote": 957.2261515775,
"unrealized_pnl_exit_net": -313.26073814
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 67329,
"quote_asset_bal": 9550.3904256621,
"total_value_mid": 10179.9165756621,
"total_value_exit_net": 10179.4444310496,
"total_value": 10179.9165756621,
"base_cost_quote": 942.2090772125,
"unrealized_pnl_exit_net": -313.155071825
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 74908,
"quote_asset_bal": 9480.9296678745,
"total_value_mid": 10158.8470678745,
"total_value_exit_net": 10158.3386298245,
"total_value": 10158.8470678745,
"base_cost_quote": 1012.3360730425,
"unrealized_pnl_exit_net": -334.9271110925
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 84005,
"quote_asset_bal": 9401.6973424345,
"total_value_mid": 10117.4199424345,
"total_value_exit_net": 10116.8831504845,
"total_value": 10117.4199424345,
"base_cost_quote": 1092.4657852875,
"unrealized_pnl_exit_net": -377.2799772375
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 81639,
"quote_asset_bal": 9422.314326817,
"total_value_mid": 10134.206406817,
"total_value_exit_net": 10133.672487757,
"total_value": 10134.206406817,
"base_cost_quote": 1072.4302699125,
"unrealized_pnl_exit_net": -361.0721089725
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 72615,
"quote_asset_bal": 9502.9839249445,
"total_value_mid": 10164.5065749445,
"total_value_exit_net": 10164.010432957,
"total_value": 10164.5065749445,
"base_cost_quote": 992.30751288,
"unrealized_pnl_exit_net": -331.2810048675
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 71544,
"quote_asset_bal": 9513.5331193045,
"total_value_mid": 10161.7217593045,
"total_value_exit_net": 10161.2356178245,
"total_value": 10161.7217593045,
"base_cost_quote": 982.287743685,
"unrealized_pnl_exit_net": -334.585245165
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 64017,
"quote_asset_bal": 9584.3431402345,
"total_value_mid": 10200.8268502345,
"total_value_exit_net": 10200.364487452,
"total_value": 10200.8268502345,
"base_cost_quote": 912.1496895675,
"unrealized_pnl_exit_net": -296.12834235
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 63977,
"quote_asset_bal": 9585.0195850095,
"total_value_mid": 10206.2362550095,
"total_value_exit_net": 10205.770342507,
"total_value": 10206.2362550095,
"base_cost_quote": 912.1373603275,
"unrealized_pnl_exit_net": -291.38660283
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 70776,
"quote_asset_bal": 9520.580267107,
"total_value_mid": 10185.166907107,
"total_value_exit_net": 10184.668467127,
"total_value": 10185.166907107,
"base_cost_quote": 977.268221865,
"unrealized_pnl_exit_net": -313.180021845
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 82838,
"quote_asset_bal": 9410.969004682,
"total_value_mid": 10147.398824682,
"total_value_exit_net": 10146.846502317,
"total_value": 10147.398824682,
"base_cost_quote": 1087.457521905,
"unrealized_pnl_exit_net": -351.58002427
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 88007,
"quote_asset_bal": 9366.9210173895,
"total_value_mid": 10125.5413573895,
"total_value_exit_net": 10124.9723921345,
"total_value": 10125.5413573895,
"base_cost_quote": 1132.5322926475,
"unrealized_pnl_exit_net": -374.4809179025
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 89765,
"quote_asset_bal": 9352.333324367,
"total_value_mid": 10118.926424367,
"total_value_exit_net": 10118.351479542,
"total_value": 10118.926424367,
"base_cost_quote": 1147.5628571225,
"unrealized_pnl_exit_net": -381.5447019475
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 87426,
"quote_asset_bal": 9372.885403922,
"total_value_mid": 10127.371783922,
"total_value_exit_net": 10126.805919137,
"total_value": 10127.371783922,
"base_cost_quote": 1127.52028646,
"unrealized_pnl_exit_net": -373.599771245
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 86297,
"quote_asset_bal": 9383.7106529095,
"total_value_mid": 10136.2204929095,
"total_value_exit_net": 10135.6561105295,
"total_value": 10136.2204929095,
"base_cost_quote": 1117.49929635,
"unrealized_pnl_exit_net": -365.55383873
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 99516,
"quote_asset_bal": 9274.4376613746,
"total_value_mid": 10074.5463013746,
"total_value_exit_net": 10073.9462198946,
"total_value": 10074.5463013746,
"base_cost_quote": 1227.691018205,
"unrealized_pnl_exit_net": -428.182459685
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 110983,
"quote_asset_bal": 9184.938716817,
"total_value_mid": 10030.629176817,
"total_value_exit_net": 10029.994908972,
"total_value": 10030.629176817,
"base_cost_quote": 1317.8318831875,
"unrealized_pnl_exit_net": -472.7756910325
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 119013,
"quote_asset_bal": 9125.8156334995,
"total_value_mid": 10004.1315734995,
"total_value_exit_net": 10003.4728365445,
"total_value": 10004.1315734995,
"base_cost_quote": 1377.91898474,
"unrealized_pnl_exit_net": -500.261781695
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 118345,
"quote_asset_bal": 9131.443761897,
"total_value_mid": 10003.646411897,
"total_value_exit_net": 10002.9922599095,
"total_value": 10003.646411897,
"base_cost_quote": 1372.9183871025,
"unrealized_pnl_exit_net": -501.36988909
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 125244,
"quote_asset_bal": 9082.2537986196,
"total_value_mid": 9973.9910786195,
"total_value_exit_net": 9973.3222756595,
"total_value": 9973.9910786195,
"base_cost_quote": 1422.99300492,
"unrealized_pnl_exit_net": -531.92452788
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 128098,
"quote_asset_bal": 9063.5380784845,
"total_value_mid": 9956.3811384845,
"total_value_exit_net": 9955.7115061895,
"total_value": 9956.3811384845,
"base_cost_quote": 1443.02681902,
"unrealized_pnl_exit_net": -550.853391315
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 110254,
"quote_asset_bal": 9194.993310727,
"total_value_mid": 10034.026250727,
"total_value_exit_net": 10033.396976022,
"total_value": 10034.026250727,
"base_cost_quote": 1312.8114006475,
"unrealized_pnl_exit_net": -474.4077353525
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 110255,
"quote_asset_bal": 9195.536307842,
"total_value_mid": 10038.987057842,
"total_value_exit_net": 10038.3544697795,
"total_value": 10038.987057842,
"base_cost_quote": 1312.8055962975,
"unrealized_pnl_exit_net": -469.98743436
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 114928,
"quote_asset_bal": 9161.2047922945,
"total_value_mid": 10011.6719922945,
"total_value_exit_net": 10011.0341418945,
"total_value": 10011.6719922945,
"base_cost_quote": 1347.87518878,
"unrealized_pnl_exit_net": -498.04583918
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 118337,
"quote_asset_bal": 9137.468064082,
"total_value_mid": 9998.961424082,
"total_value_exit_net": 9998.315304062,
"total_value": 9998.961424082,
"base_cost_quote": 1372.9075389725,
"unrealized_pnl_exit_net": -512.0602989925
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 114925,
"quote_asset_bal": 9163.423150412,
"total_value_mid": 10015.017400412,
"total_value_exit_net": 10014.3787047245,
"total_value": 10015.017400412,
"base_cost_quote": 1347.8724567325,
"unrealized_pnl_exit_net": -496.91690242
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 111559,
"quote_asset_bal": 9189.195883062,
"total_value_mid": 10031.466333062,
"total_value_exit_net": 10030.8346302245,
"total_value": 10031.466333062,
"base_cost_quote": 1322.8375346125,
"unrealized_pnl_exit_net": -481.19878745
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 105661,
"quote_asset_bal": 9234.9188919495,
"total_value_mid": 10046.3953719495,
"total_value_exit_net": 10045.7867645895,
"total_value": 10046.3953719495,
"base_cost_quote": 1277.765706075,
"unrealized_pnl_exit_net": -466.897833435
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 107638,
"quote_asset_bal": 9220.428039707,
"total_value_mid": 10035.247699707,
"total_value_exit_net": 10034.636584962,
"total_value": 10035.247699707,
"base_cost_quote": 1292.7888750075,
"unrealized_pnl_exit_net": -478.5803297525
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 116389,
"quote_asset_bal": 9155.9724618569,
"total_value_mid": 10006.7760518569,
"total_value_exit_net": 10006.1379491644,
"total_value": 10006.7760518569,
"base_cost_quote": 1357.8850805725,
"unrealized_pnl_exit_net": -507.719593265
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 100593,
"quote_asset_bal": 9277.1479994994,
"total_value_mid": 10077.8682794994,
"total_value_exit_net": 10077.2677392894,
"total_value": 10077.8682794994,
"base_cost_quote": 1237.703642045,
"unrealized_pnl_exit_net": -437.583902255
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 99960,
"quote_asset_bal": 9282.8089266095,
"total_value_mid": 10081.4893266095,
"total_value_exit_net": 10080.8903163095,
"total_value": 10081.4893266095,
"base_cost_quote": 1232.6995217675,
"unrealized_pnl_exit_net": -434.6181320675
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 106999,
"quote_asset_bal": 9228.183784492,
"total_value_mid": 10052.076084492,
"total_value_exit_net": 10051.458165267,
"total_value": 10052.076084492,
"base_cost_quote": 1287.7763084,
"unrealized_pnl_exit_net": -464.501927625
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 108291,
"quote_asset_bal": 9218.537202502,
"total_value_mid": 10049.1291725019,
"total_value_exit_net": 10048.5062285244,
"total_value": 10049.1291725019,
"base_cost_quote": 1297.79009311,
"unrealized_pnl_exit_net": -467.8210670875
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 102469,
"quote_asset_bal": 9263.8418157969,
"total_value_mid": 10065.1493957969,
"total_value_exit_net": 10064.5484151119,
"total_value": 10065.1493957969,
"base_cost_quote": 1252.72696109,
"unrealized_pnl_exit_net": -452.020361775
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 103103,
"quote_asset_bal": 9259.3062824819,
"total_value_mid": 10066.6027724819,
"total_value_exit_net": 10065.9973001144,
"total_value": 10066.6027724819,
"base_cost_quote": 1257.732972785,
"unrealized_pnl_exit_net": -451.0419551525
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 99320,
"quote_asset_bal": 9289.9552557269,
"total_value_mid": 10086.5016557269,
"total_value_exit_net": 10085.9042459269,
"total_value": 10086.5016557269,
"base_cost_quote": 1227.696782525,
"unrealized_pnl_exit_net": -431.747792325
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 93160,
"quote_asset_bal": 9340.4925573444,
"total_value_mid": 10112.7889573444,
"total_value_exit_net": 10112.2097350444,
"total_value": 10112.7889573444,
"base_cost_quote": 1177.6150593825,
"unrealized_pnl_exit_net": -405.8978816825
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 90769,
"quote_asset_bal": 9360.9087914969,
"total_value_mid": 10129.7222214969,
"total_value_exit_net": 10129.1456114244,
"total_value": 10129.7222214969,
"base_cost_quote": 1157.58705964,
"unrealized_pnl_exit_net": -389.3502397125
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 86622,
"quote_asset_bal": 9397.2121755069,
"total_value_mid": 10150.8235755069,
"total_value_exit_net": 10150.2583669569,
"total_value": 10150.8235755069,
"base_cost_quote": 1122.5244624,
"unrealized_pnl_exit_net": -369.47827095
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 83799,
"quote_asset_bal": 9422.752709257,
"total_value_mid": 10152.641999257,
"total_value_exit_net": 10152.0945822895,
"total_value": 10152.641999257,
"base_cost_quote": 1097.473147995,
"unrealized_pnl_exit_net": -368.1312749625
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 82082,
"quote_asset_bal": 9438.5784145645,
"total_value_mid": 10160.9000145645,
"total_value_exit_net": 10160.3582733645,
"total_value": 10160.9000145645,
"base_cost_quote": 1082.462018085,
"unrealized_pnl_exit_net": -360.682159285
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 83804,
"quote_asset_bal": 9424.794197257,
"total_value_mid": 10158.079197257,
"total_value_exit_net": 10157.529233507,
"total_value": 10158.079197257,
"base_cost_quote": 1097.4947341725,
"unrealized_pnl_exit_net": -364.7596979225
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 82117,
"quote_asset_bal": 9440.821753607,
"total_value_mid": 10168.378373607,
"total_value_exit_net": 10167.832706142,
"total_value": 10168.378373607,
"base_cost_quote": 1082.466901745,
"unrealized_pnl_exit_net": -355.45594921
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 81515,
"quote_asset_bal": 9446.6175381445,
"total_value_mid": 10177.8070881445,
"total_value_exit_net": 10177.258695982,
"total_value": 10177.8070881445,
"base_cost_quote": 1077.4440274125,
"unrealized_pnl_exit_net": -346.802869575
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 79849,
"quote_asset_bal": 9462.594597522,
"total_value_mid": 10182.034087522,
"total_value_exit_net": 10181.4945079045,
"total_value": 10182.034087522,
"base_cost_quote": 1062.416995585,
"unrealized_pnl_exit_net": -343.5170852025
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 82710,
"quote_asset_bal": 9438.6398827245,
"total_value_mid": 10170.6233827245,
"total_value_exit_net": 10170.0743950995,
"total_value": 10170.6233827245,
"base_cost_quote": 1087.460684275,
"unrealized_pnl_exit_net": -356.0261719
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 82131,
"quote_asset_bal": 9444.3855105895,
"total_value_mid": 10174.5301005895,
"total_value_exit_net": 10173.982492147,
"total_value": 10174.5301005895,
"base_cost_quote": 1082.45835534,
"unrealized_pnl_exit_net": -352.8613737825
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 66919,
"quote_asset_bal": 9585.9705920995,
"total_value_mid": 10221.0319020995,
"total_value_exit_net": 10220.555606117,
"total_value": 10221.0319020995,
"base_cost_quote": 942.2077362075,
"unrealized_pnl_exit_net": -307.62272219
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 69535,
"quote_asset_bal": 9562.1111408696,
"total_value_mid": 10226.1703908696,
"total_value_exit_net": 10225.6723464321,
"total_value": 10226.1703908696,
"base_cost_quote": 967.27475238,
"unrealized_pnl_exit_net": -303.7135468175
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 70595,
"quote_asset_bal": 9553.1308567196,
"total_value_mid": 10223.0774067196,
"total_value_exit_net": 10222.5749468071,
"total_value": 10223.0774067196,
"base_cost_quote": 977.281551855,
"unrealized_pnl_exit_net": -307.8374617675
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 83164,
"quote_asset_bal": 9438.7004824971,
"total_value_mid": 10183.0182824971,
"total_value_exit_net": 10182.4600441471,
"total_value": 10183.0182824971,
"base_cost_quote": 1092.4735511075,
"unrealized_pnl_exit_net": -348.7139894575
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 70000,
"quote_asset_bal": 9560.7671564246,
"total_value_mid": 10218.7671564246,
"total_value_exit_net": 10218.2736564246,
"total_value": 10218.7671564246,
"base_cost_quote": 972.2803137375,
"unrealized_pnl_exit_net": -314.7738137375
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 76013,
"quote_asset_bal": 9507.1544595346,
"total_value_mid": 10190.5113295346,
"total_value_exit_net": 10189.9988118821,
"total_value": 10190.5113295346,
"base_cost_quote": 1027.3560295675,
"unrealized_pnl_exit_net": -344.51167722
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 78240,
"quote_asset_bal": 9487.5373985046,
"total_value_mid": 10181.5261985046,
"total_value_exit_net": 10181.0057069046,
"total_value": 10181.5261985046,
"base_cost_quote": 1047.39563801,
"unrealized_pnl_exit_net": -353.92732961
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 77120,
"quote_asset_bal": 9498.1230012746,
"total_value_mid": 10196.0590012746,
"total_value_exit_net": 10195.5355492746,
"total_value": 10196.0590012746,
"base_cost_quote": 1037.368823535,
"unrealized_pnl_exit_net": -339.956275535
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 86773,
"quote_asset_bal": 9413.8583000671,
"total_value_mid": 10164.4447500671,
"total_value_exit_net": 10163.8818102296,
"total_value": 10164.4447500671,
"base_cost_quote": 1122.52786495,
"unrealized_pnl_exit_net": -372.5043547875
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 90903,
"quote_asset_bal": 9379.9065211621,
"total_value_mid": 10148.9459011621,
"total_value_exit_net": 10148.3691216271,
"total_value": 10148.9459011621,
"base_cost_quote": 1157.5865492575,
"unrealized_pnl_exit_net": -389.1239487925
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 92682,
"quote_asset_bal": 9366.2325002496,
"total_value_mid": 10141.9808402496,
"total_value_exit_net": 10141.3990289946,
"total_value": 10141.9808402496,
"base_cost_quote": 1172.60843723,
"unrealized_pnl_exit_net": -397.441908485
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 100611,
"quote_asset_bal": 9301.7959886996,
"total_value_mid": 10106.6839886996,
"total_value_exit_net": 10106.0803226996,
"total_value": 10106.6839886996,
"base_cost_quote": 1237.706684325,
"unrealized_pnl_exit_net": -433.422350325
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 106263,
"quote_asset_bal": 9257.6090788346,
"total_value_mid": 10090.7109988346,
"total_value_exit_net": 10090.0861723946,
"total_value": 10090.7109988346,
"base_cost_quote": 1282.7689056625,
"unrealized_pnl_exit_net": -450.2918121025
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 113400,
"quote_asset_bal": 9203.0864226621,
"total_value_mid": 10066.0604226621,
"total_value_exit_net": 10065.4131921621,
"total_value": 10066.0604226621,
"base_cost_quote": 1337.85167678,
"unrealized_pnl_exit_net": -475.52490728
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 110144,
"quote_asset_bal": 9228.7721409871,
"total_value_mid": 10085.692460987,
"total_value_exit_net": 10085.049770747,
"total_value": 10085.692460987,
"base_cost_quote": 1312.824660585,
"unrealized_pnl_exit_net": -456.547030825
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 106953,
"quote_asset_bal": 9254.447885827,
"total_value_mid": 10092.959405827,
"total_value_exit_net": 10092.330522187,
"total_value": 10092.959405827,
"base_cost_quote": 1287.77722909,
"unrealized_pnl_exit_net": -449.89459273
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 114095,
"quote_asset_bal": 9199.9436221895,
"total_value_mid": 10064.7837221895,
"total_value_exit_net": 10064.1350921145,
"total_value": 10064.7837221895,
"base_cost_quote": 1342.8661247975,
"unrealized_pnl_exit_net": -478.6746548725
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 112104,
"quote_asset_bal": 9215.4761723245,
"total_value_mid": 10068.5876123245,
"total_value_exit_net": 10067.9477787445,
"total_value": 10068.5876123245,
"base_cost_quote": 1327.8436263675,
"unrealized_pnl_exit_net": -475.3720199475
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 104317,
"quote_asset_bal": 9275.889846722,
"total_value_mid": 10093.735126722,
"total_value_exit_net": 10093.121742762,
"total_value": 10093.735126722,
"base_cost_quote": 1267.745476535,
"unrealized_pnl_exit_net": -450.513580495
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 99898,
"quote_asset_bal": 9311.4656747495,
"total_value_mid": 10110.6496747495,
"total_value_exit_net": 10110.0502867495,
"total_value": 10110.6496747495,
"base_cost_quote": 1232.69322705,
"unrealized_pnl_exit_net": -434.10861505
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 95557,
"quote_asset_bal": 9346.9841501995,
"total_value_mid": 10127.6848401995,
"total_value_exit_net": 10127.099314682,
"total_value": 10127.6848401995,
"base_cost_quote": 1197.64880343,
"unrealized_pnl_exit_net": -417.5336389475
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 95557,
"quote_asset_bal": 9347.388056152,
"total_value_mid": 10128.088746152,
"total_value_exit_net": 10127.5032206345,
"total_value": 10128.088746152,
"base_cost_quote": 1197.64880343,
"unrealized_pnl_exit_net": -417.5336389475
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 106236,
"quote_asset_bal": 9262.8947083295,
"total_value_mid": 10091.5355083295,
"total_value_exit_net": 10090.9140277295,
"total_value": 10091.5355083295,
"base_cost_quote": 1282.7760510175,
"unrealized_pnl_exit_net": -454.7567316175
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 95574,
"quote_asset_bal": 9348.7872272169,
"total_value_mid": 10130.5825472169,
"total_value_exit_net": 10129.9962007269,
"total_value": 10130.5825472169,
"base_cost_quote": 1197.6493138125,
"unrealized_pnl_exit_net": -416.4403403025
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 90728,
"quote_asset_bal": 9389.4074558194,
"total_value_mid": 10148.8008158194,
"total_value_exit_net": 10148.2312707994,
"total_value": 10148.8008158194,
"base_cost_quote": 1157.580674855,
"unrealized_pnl_exit_net": -398.756859875
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 104411,
"quote_asset_bal": 9279.8032070344,
"total_value_mid": 10093.1648970344,
"total_value_exit_net": 10092.5548757669,
"total_value": 10093.1648970344,
"base_cost_quote": 1267.7498498125,
"unrealized_pnl_exit_net": -454.99818108
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 99312,
"quote_asset_bal": 9320.4793604894,
"total_value_mid": 10107.0304004894,
"total_value_exit_net": 10106.4404872094,
"total_value": 10107.0304004894,
"base_cost_quote": 1227.6816611925,
"unrealized_pnl_exit_net": -441.7205344725
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 85362,
"quote_asset_bal": 9436.7369406319,
"total_value_mid": 10164.8748006319,
"total_value_exit_net": 10164.3286972369,
"total_value": 10164.8748006319,
"base_cost_quote": 1112.5092866475,
"unrealized_pnl_exit_net": -384.9175300425
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 46242,
"quote_asset_bal": 9817.7754934245,
"total_value_mid": 10308.4031134245,
"total_value_exit_net": 10308.0351427095,
"total_value": 10308.4031134245,
"base_cost_quote": 736.807651595,
"unrealized_pnl_exit_net": -246.54800231
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 53202,
"quote_asset_bal": 9745.7652650546,
"total_value_mid": 10294.2778850546,
"total_value_exit_net": 10293.8665005896,
"total_value": 10294.2778850546,
"base_cost_quote": 811.9481147075,
"unrealized_pnl_exit_net": -263.8468791725
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 68362,
"quote_asset_bal": 9601.8440795471,
"total_value_mid": 10228.7236195471,
"total_value_exit_net": 10228.2534598921,
"total_value": 10228.7236195471,
"base_cost_quote": 957.2248305875,
"unrealized_pnl_exit_net": -330.8154502425
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 64077,
"quote_asset_bal": 9642.7553596196,
"total_value_mid": 10243.1568496196,
"total_value_exit_net": 10242.7065485021,
"total_value": 10243.1568496196,
"base_cost_quote": 917.14314185,
"unrealized_pnl_exit_net": -317.1919529675
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 70047,
"quote_asset_bal": 9588.4331932271,
"total_value_mid": 10220.2571332271,
"total_value_exit_net": 10219.7832652721,
"total_value": 10220.2571332271,
"base_cost_quote": 972.2306765375,
"unrealized_pnl_exit_net": -340.8806044925
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 53565,
"quote_asset_bal": 9745.6823718847,
"total_value_mid": 10281.8680218846,
"total_value_exit_net": 10281.4658826471,
"total_value": 10281.8680218846,
"base_cost_quote": 816.9722199625,
"unrealized_pnl_exit_net": -281.1887092
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 58270,
"quote_asset_bal": 9701.1695669246,
"total_value_mid": 10255.3172669246,
"total_value_exit_net": 10254.9016561496,
"total_value": 10255.3172669246,
"base_cost_quote": 862.0572584,
"unrealized_pnl_exit_net": -308.325169175
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 65215,
"quote_asset_bal": 9636.4988781397,
"total_value_mid": 10233.2161281397,
"total_value_exit_net": 10232.7685902022,
"total_value": 10233.2161281397,
"base_cost_quote": 927.1684552,
"unrealized_pnl_exit_net": -330.8987431375
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 75254,
"quote_asset_bal": 9546.8610265697,
"total_value_mid": 10204.5809865697,
"total_value_exit_net": 10204.0876965997,
"total_value": 10204.5809865697,
"base_cost_quote": 1017.3182068425,
"unrealized_pnl_exit_net": -360.0915368125
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 66831,
"quote_asset_bal": 9622.7913477522,
"total_value_mid": 10227.6118977522,
"total_value_exit_net": 10227.1582823397,
"total_value": 10227.6118977522,
"base_cost_quote": 942.18839171,
"unrealized_pnl_exit_net": -337.8214571225
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 59897,
"quote_asset_bal": 9689.6154439247,
"total_value_mid": 10255.0431239247,
"total_value_exit_net": 10254.6190531647,
"total_value": 10255.0431239247,
"base_cost_quote": 877.06830825,
"unrealized_pnl_exit_net": -312.06469901
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 61566,
"quote_asset_bal": 9675.1292530197,
"total_value_mid": 10237.8424930197,
"total_value_exit_net": 10237.4204580897,
"total_value": 10237.8424930197,
"base_cost_quote": 892.09512992,
"unrealized_pnl_exit_net": -329.80392485
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 72226,
"quote_asset_bal": 9580.3759694497,
"total_value_mid": 10211.6312094497,
"total_value_exit_net": 10211.1577680197,
"total_value": 10211.6312094497,
"base_cost_quote": 987.249902515,
"unrealized_pnl_exit_net": -356.468103945
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 68851,
"quote_asset_bal": 9610.8493033522,
"total_value_mid": 10218.1151233522,
"total_value_exit_net": 10217.6596739872,
"total_value": 10218.1151233522,
"base_cost_quote": 957.1842001375,
"unrealized_pnl_exit_net": -350.3738295025
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 72275,
"quote_asset_bal": 9581.0584335647,
"total_value_mid": 10206.9599335647,
"total_value_exit_net": 10206.4905074397,
"total_value": 10206.9599335647,
"base_cost_quote": 987.2544559275,
"unrealized_pnl_exit_net": -361.8223820525
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 79468,
"quote_asset_bal": 9521.4786676647,
"total_value_mid": 10173.1162676647,
"total_value_exit_net": 10172.6275394647,
"total_value": 10173.1162676647,
"base_cost_quote": 1047.360871955,
"unrealized_pnl_exit_net": -396.212000155
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 78831,
"quote_asset_bal": 9527.0806059147,
"total_value_mid": 10179.0129759147,
"total_value_exit_net": 10178.5240266372,
"total_value": 10179.0129759147,
"base_cost_quote": 1042.34789504,
"unrealized_pnl_exit_net": -390.9044743175
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 80626,
"quote_asset_bal": 9512.6091635622,
"total_value_mid": 10176.1611435622,
"total_value_exit_net": 10175.6634795772,
"total_value": 10176.1611435622,
"base_cost_quote": 1057.3693226675,
"unrealized_pnl_exit_net": -394.3150066525
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 85550,
"quote_asset_bal": 9472.9949747722,
"total_value_mid": 10163.3834747722,
"total_value_exit_net": 10162.8656833972,
"total_value": 10163.3834747722,
"base_cost_quote": 1097.429395205,
"unrealized_pnl_exit_net": -407.55868658
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 80035,
"quote_asset_bal": 9518.5579884772,
"total_value_mid": 10174.8449884772,
"total_value_exit_net": 10174.3527732272,
"total_value": 10174.8449884772,
"base_cost_quote": 1052.36316086,
"unrealized_pnl_exit_net": -396.56837611
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 82496,
"quote_asset_bal": 9498.7442382672,
"total_value_mid": 10168.6117582672,
"total_value_exit_net": 10168.1093576272,
"total_value": 10168.6117582672,
"base_cost_quote": 1072.385746545,
"unrealized_pnl_exit_net": -403.020627185
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 80648,
"quote_asset_bal": 9514.0646410722,
"total_value_mid": 10177.7976810722,
"total_value_exit_net": 10177.2998812922,
"total_value": 10177.7976810722,
"base_cost_quote": 1057.36783155,
"unrealized_pnl_exit_net": -394.13259133
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 78792,
"quote_asset_bal": 9529.5161785822,
"total_value_mid": 10189.0052185822,
"total_value_exit_net": 10188.5106018022,
"total_value": 10189.0052185822,
"base_cost_quote": 1042.33648649,
"unrealized_pnl_exit_net": -383.34206327
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 79957,
"quote_asset_bal": 9519.9652775022,
"total_value_mid": 10188.4057975022,
"total_value_exit_net": 10187.9044671122,
"total_value": 10188.4057975022,
"base_cost_quote": 1052.363020755,
"unrealized_pnl_exit_net": -384.423831145
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 74057,
"quote_asset_bal": 9570.3965997522,
"total_value_mid": 10207.2867997522,
"total_value_exit_net": 10206.8091321022,
"total_value": 10207.2867997522,
"base_cost_quote": 1002.286331385,
"unrealized_pnl_exit_net": -365.873799035
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 74641,
"quote_asset_bal": 9565.5796323647,
"total_value_mid": 10205.2530023647,
"total_value_exit_net": 10204.7732473372,
"total_value": 10205.2530023647,
"base_cost_quote": 1007.294965045,
"unrealized_pnl_exit_net": -368.1013500725
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 71164,
"quote_asset_bal": 9595.9588096597,
"total_value_mid": 10219.3554496597,
"total_value_exit_net": 10218.8879021797,
"total_value": 10219.3554496597,
"base_cost_quote": 977.2322449025,
"unrealized_pnl_exit_net": -354.3031523825
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 67754,
"quote_asset_bal": 9626.2988798872,
"total_value_mid": 10228.6319398872,
"total_value_exit_net": 10228.1801900922,
"total_value": 10228.6319398872,
"base_cost_quote": 947.185636835,
"unrealized_pnl_exit_net": -345.30432663
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 76967,
"quote_asset_bal": 9546.3301865872,
"total_value_mid": 10202.8586965872,
"total_value_exit_net": 10202.3663002047,
"total_value": 10202.8586965872,
"base_cost_quote": 1027.31202659,
"unrealized_pnl_exit_net": -371.2759129725
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 82939,
"quote_asset_bal": 9496.4286164272,
"total_value_mid": 10186.4810964272,
"total_value_exit_net": 10185.9635570672,
"total_value": 10186.4810964272,
"base_cost_quote": 1077.3994940375,
"unrealized_pnl_exit_net": -387.8645533975
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 79340,
"quote_asset_bal": 9526.6313772872,
"total_value_mid": 10195.4675772872,
"total_value_exit_net": 10194.9659501372,
"total_value": 10195.4675772872,
"base_cost_quote": 1047.34395928,
"unrealized_pnl_exit_net": -379.00938643
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 74628,
"quote_asset_bal": 9567.0285580247,
"total_value_mid": 10211.0681980247,
"total_value_exit_net": 10210.5851682947,
"total_value": 10211.0681980247,
"base_cost_quote": 1007.2753003075,
"unrealized_pnl_exit_net": -363.7186900375
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 72312,
"quote_asset_bal": 9587.2931438847,
"total_value_mid": 10217.1306638847,
"total_value_exit_net": 10216.6582857447,
"total_value": 10217.1306638847,
"base_cost_quote": 987.23863407,
"unrealized_pnl_exit_net": -357.87349221
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 81137,
"quote_asset_bal": 9512.3640571997,
"total_value_mid": 10190.6693771997,
"total_value_exit_net": 10190.1606482097,
"total_value": 10190.6693771997,
"base_cost_quote": 1062.3689295625,
"unrealized_pnl_exit_net": -384.5723385525
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 68478,
"quote_asset_bal": 9623.2922992197,
"total_value_mid": 10213.5726592197,
"total_value_exit_net": 10213.1299489497,
"total_value": 10213.5726592197,
"base_cost_quote": 952.19385018,
"unrealized_pnl_exit_net": -362.35620045
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 70827,
"quote_asset_bal": 9603.7996681972,
"total_value_mid": 10205.8291681972,
"total_value_exit_net": 10205.3776460722,
"total_value": 10205.8291681972,
"base_cost_quote": 972.2199284825,
"unrealized_pnl_exit_net": -370.6419506075
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 83022,
"quote_asset_bal": 9503.9885073897,
"total_value_mid": 10159.8623073897,
"total_value_exit_net": 10159.3704020397,
"total_value": 10159.8623073897,
"base_cost_quote": 1072.3744480775,
"unrealized_pnl_exit_net": -416.9925534275
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 83651,
"quote_asset_bal": 9499.1576371697,
"total_value_mid": 10162.5100671697,
"total_value_exit_net": 10162.0125528472,
"total_value": 10162.5100671697,
"base_cost_quote": 1077.3850832375,
"unrealized_pnl_exit_net": -414.53016756
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 78048,
"quote_asset_bal": 9544.5135362072,
"total_value_mid": 10180.6047362072,
"total_value_exit_net": 10180.1276678072,
"total_value": 10180.6047362072,
"base_cost_quote": 1032.3151461175,
"unrealized_pnl_exit_net": -396.7010145175
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 95369,
"quote_asset_bal": 9409.8275227222,
"total_value_mid": 10127.0024027222,
"total_value_exit_net": 10126.4645215622,
"total_value": 10127.0024027222,
"base_cost_quote": 1167.5187928575,
"unrealized_pnl_exit_net": -450.8817940175
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 86229,
"quote_asset_bal": 9480.3618472972,
"total_value_mid": 10156.3972072972,
"total_value_exit_net": 10155.8901807772,
"total_value": 10156.3972072972,
"base_cost_quote": 1097.4093902125,
"unrealized_pnl_exit_net": -421.8810567325
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 88155,
"quote_asset_bal": 9465.5424198197,
"total_value_mid": 10152.2698698197,
"total_value_exit_net": 10151.7548242322,
"total_value": 10152.2698698197,
"base_cost_quote": 1112.437002475,
"unrealized_pnl_exit_net": -426.2245980625
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 84305,
"quote_asset_bal": 9495.8793085272,
"total_value_mid": 10162.7318585272,
"total_value_exit_net": 10162.2317191147,
"total_value": 10162.7318585272,
"base_cost_quote": 1082.3882528025,
"unrealized_pnl_exit_net": -416.035842215
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 86199,
"quote_asset_bal": 9481.3791084646,
"total_value_mid": 10158.9032484646,
"total_value_exit_net": 10158.3951053596,
"total_value": 10158.9032484646,
"base_cost_quote": 1097.40992061,
"unrealized_pnl_exit_net": -420.393923715
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 90800,
"quote_asset_bal": 9446.8893473271,
"total_value_mid": 10142.4173473271,
"total_value_exit_net": 10141.8957013271,
"total_value": 10142.4173473271,
"base_cost_quote": 1132.457926915,
"unrealized_pnl_exit_net": -437.451572915
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 81228,
"quote_asset_bal": 9522.4149040421,
"total_value_mid": 10181.1739840421,
"total_value_exit_net": 10180.6799147321,
"total_value": 10181.1739840421,
"base_cost_quote": 1057.34717607,
"unrealized_pnl_exit_net": -399.08216538
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 80603,
"quote_asset_bal": 9527.8361559096,
"total_value_mid": 10183.9445759096,
"total_value_exit_net": 10183.4524945946,
"total_value": 10183.9445759096,
"base_cost_quote": 1052.3422652,
"unrealized_pnl_exit_net": -396.725926515
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 79361,
"quote_asset_bal": 9538.4769933346,
"total_value_mid": 10194.7924633346,
"total_value_exit_net": 10194.3002267321,
"total_value": 10194.7924633346,
"base_cost_quote": 1042.33224331,
"unrealized_pnl_exit_net": -386.5090099125
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 83666,
"quote_asset_bal": 9503.7623277046,
"total_value_mid": 10178.1102877046,
"total_value_exit_net": 10177.6045267346,
"total_value": 10178.1102877046,
"base_cost_quote": 1077.3874249925,
"unrealized_pnl_exit_net": -403.5452259625
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 88667,
"quote_asset_bal": 9464.2155671071,
"total_value_mid": 10167.3448771071,
"total_value_exit_net": 10166.8175301246,
"total_value": 10167.3448771071,
"base_cost_quote": 1117.4510602,
"unrealized_pnl_exit_net": -414.8490971825
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 84274,
"quote_asset_bal": 9499.8531166371,
"total_value_mid": 10178.2588166371,
"total_value_exit_net": 10177.7500123621,
"total_value": 10178.2588166371,
"base_cost_quote": 1082.401092425,
"unrealized_pnl_exit_net": -404.5041967
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 87637,
"quote_asset_bal": 9475.8751782071,
"total_value_mid": 10148.0509682071,
"total_value_exit_net": 10147.5468363646,
"total_value": 10148.0509682071,
"base_cost_quote": 1107.418521435,
"unrealized_pnl_exit_net": -435.7468632775
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 83762,
"quote_asset_bal": 9506.6523256721,
"total_value_mid": 10165.0216456721,
"total_value_exit_net": 10164.5278686821,
"total_value": 10165.0216456721,
"base_cost_quote": 1077.38335194,
"unrealized_pnl_exit_net": -419.50780893
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 79909,
"quote_asset_bal": 9538.3540478896,
"total_value_mid": 10175.2287778895,
"total_value_exit_net": 10174.751121842,
"total_value": 10175.2287778895,
"base_cost_quote": 1047.3370040675,
"unrealized_pnl_exit_net": -410.939930115
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 103388,
"quote_asset_bal": 9374.7592344445,
"total_value_mid": 9985.7823144445,
"total_value_exit_net": 9985.3240471345,
"total_value": 9985.7823144445,
"base_cost_quote": 1212.572848075,
"unrealized_pnl_exit_net": -602.008035385
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 110046,
"quote_asset_bal": 9340.269046742,
"total_value_mid": 9987.339526742,
"total_value_exit_net": 9986.854223882,
"total_value": 9987.339526742,
"base_cost_quote": 1252.6385047975,
"unrealized_pnl_exit_net": -606.0533276575
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 104885,
"quote_asset_bal": 9372.6595204719,
"total_value_mid": 10046.0212204719,
"total_value_exit_net": 10045.5161991969,
"total_value": 10046.0212204719,
"base_cost_quote": 1222.5961098875,
"unrealized_pnl_exit_net": -549.7394311625
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 101764,
"quote_asset_bal": 9395.6405164594,
"total_value_mid": 10095.7768364594,
"total_value_exit_net": 10095.2517342194,
"total_value": 10095.7768364594,
"base_cost_quote": 1202.56660902,
"unrealized_pnl_exit_net": -502.95539126
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 114470,
"quote_asset_bal": 9312.6167183844,
"total_value_mid": 10066.9740183844,
"total_value_exit_net": 10066.4082504094,
"total_value": 10066.9740183844,
"base_cost_quote": 1287.688982955,
"unrealized_pnl_exit_net": -533.89745093
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 120604,
"quote_asset_bal": 9273.9828961794,
"total_value_mid": 10044.6424561794,
"total_value_exit_net": 10044.0644615094,
"total_value": 10044.6424561794,
"base_cost_quote": 1327.749365725,
"unrealized_pnl_exit_net": -557.667800395
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 126213,
"quote_asset_bal": 9240.6973408794,
"total_value_mid": 10021.9558108794,
"total_value_exit_net": 10021.3698670269,
"total_value": 10021.9558108794,
"base_cost_quote": 1362.78496273,
"unrealized_pnl_exit_net": -582.1124365825
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 130330,
"quote_asset_bal": 9219.8790127318,
"total_value_mid": 10003.1623127318,
"total_value_exit_net": 10002.5748502568,
"total_value": 10003.1623127318,
"base_cost_quote": 1387.8265198225,
"unrealized_pnl_exit_net": -605.1306822975
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 127844,
"quote_asset_bal": 9236.1274970468,
"total_value_mid": 10015.9758970468,
"total_value_exit_net": 10015.3910107468,
"total_value": 10015.9758970468,
"base_cost_quote": 1372.8007989775,
"unrealized_pnl_exit_net": -593.5372852775
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 127871,
"quote_asset_bal": 9239.5579837691,
"total_value_mid": 10028.5220537691,
"total_value_exit_net": 10027.9303307166,
"total_value": 10028.5220537691,
"base_cost_quote": 1372.795244815,
"unrealized_pnl_exit_net": -584.4228978675
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 131117,
"quote_asset_bal": 9220.5989933816,
"total_value_mid": 10023.0350333816,
"total_value_exit_net": 10022.4332063516,
"total_value": 10023.0350333816,
"base_cost_quote": 1392.8287086525,
"unrealized_pnl_exit_net": -590.9944956825
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 137852,
"quote_asset_bal": 9183.1338492365,
"total_value_mid": 9990.9465692365,
"total_value_exit_net": 9990.3407096965,
"total_value": 9990.9465692365,
"base_cost_quote": 1432.8929142875,
"unrealized_pnl_exit_net": -625.6860538275
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 146515,
"quote_asset_bal": 9134.3682551291,
"total_value_mid": 9968.0386051291,
"total_value_exit_net": 9967.4133523666,
"total_value": 9968.0386051291,
"base_cost_quote": 1482.96022663,
"unrealized_pnl_exit_net": -649.9151293925
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 142143,
"quote_asset_bal": 9161.1734688416,
"total_value_mid": 9981.3385788416,
"total_value_exit_net": 9980.7234550091,
"total_value": 9981.3385788416,
"base_cost_quote": 1457.9261551475,
"unrealized_pnl_exit_net": -638.37616898
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 137837,
"quote_asset_bal": 9186.8682057816,
"total_value_mid": 9993.2146557816,
"total_value_exit_net": 9992.6098959441,
"total_value": 9993.2146557816,
"base_cost_quote": 1432.8910729075,
"unrealized_pnl_exit_net": -627.149382745
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 136977,
"quote_asset_bal": 9194.0633087267,
"total_value_mid": 10000.8578387267,
"total_value_exit_net": 10000.2527428292,
"total_value": 10000.8578387267,
"base_cost_quote": 1427.8817387225,
"unrealized_pnl_exit_net": -621.69230462
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 130253,
"quote_asset_bal": 9234.7358069692,
"total_value_mid": 10020.1613969692,
"total_value_exit_net": 10019.5723277767,
"total_value": 10020.1613969692,
"base_cost_quote": 1387.82036521,
"unrealized_pnl_exit_net": -602.9838444025
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 132756,
"quote_asset_bal": 9221.7915148991,
"total_value_mid": 10014.3448348991,
"total_value_exit_net": 10013.7504199091,
"total_value": 10014.3448348991,
"base_cost_quote": 1402.84106229,
"unrealized_pnl_exit_net": -610.88215728
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 136269,
"quote_asset_bal": 9202.8822979366,
"total_value_mid": 9983.7036679366,
"total_value_exit_net": 9983.1180519091,
"total_value": 9983.7036679366,
"base_cost_quote": 1422.8691821225,
"unrealized_pnl_exit_net": -642.63342815
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 138862,
"quote_asset_bal": 9190.2477793241,
"total_value_mid": 9985.9270393241,
"total_value_exit_net": 9985.3302798791,
"total_value": 9985.9270393241,
"base_cost_quote": 1437.89529326,
"unrealized_pnl_exit_net": -642.812792705
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 151395,
"quote_asset_bal": 9121.3782571092,
"total_value_mid": 9946.4810071091,
"total_value_exit_net": 9945.8621800466,
"total_value": 9946.4810071091,
"base_cost_quote": 1507.983359915,
"unrealized_pnl_exit_net": -683.4994369775
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 150532,
"quote_asset_bal": 9128.6662974618,
"total_value_mid": 9950.5710174617,
"total_value_exit_net": 9949.9545889217,
"total_value": 9950.5710174617,
"base_cost_quote": 1502.9823819925,
"unrealized_pnl_exit_net": -681.6940905325
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 144141,
"quote_asset_bal": 9164.2248733118,
"total_value_mid": 9972.8558833118,
"total_value_exit_net": 9972.2494100543,
"total_value": 9972.8558833118,
"base_cost_quote": 1467.9322941275,
"unrealized_pnl_exit_net": -659.907757385
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 140634,
"quote_asset_bal": 9185.4622200543,
"total_value_mid": 9973.0126200543,
"total_value_exit_net": 9972.4219572543,
"total_value": 9973.0126200543,
"base_cost_quote": 1447.907216575,
"unrealized_pnl_exit_net": -660.947479375
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 161151,
"quote_asset_bal": 9076.6465481193,
"total_value_mid": 9906.5741981193,
"total_value_exit_net": 9905.9517523818,
"total_value": 9906.5741981193,
"base_cost_quote": 1558.03797274,
"unrealized_pnl_exit_net": -728.7327684775
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 164064,
"quote_asset_bal": 9063.5385767618,
"total_value_mid": 9900.2649767618,
"total_value_exit_net": 9899.6374319618,
"total_value": 9900.2649767618,
"base_cost_quote": 1573.0593603375,
"unrealized_pnl_exit_net": -736.9605051375
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 159205,
"quote_asset_bal": 9089.8446506668,
"total_value_mid": 9920.8947506668,
"total_value_exit_net": 9920.2714630918,
"total_value": 9920.8947506668,
"base_cost_quote": 1548.0273804225,
"unrealized_pnl_exit_net": -717.6005679975
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 162116,
"quote_asset_bal": 9075.9088964944,
"total_value_mid": 9910.8062964944,
"total_value_exit_net": 9910.1801234444,
"total_value": 9910.8062964944,
"base_cost_quote": 1563.050109025,
"unrealized_pnl_exit_net": -728.778882075
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 136218,
"quote_asset_bal": 9218.1877546369,
"total_value_mid": 10002.8034346369,
"total_value_exit_net": 10002.2149728769,
"total_value": 10002.8034346369,
"base_cost_quote": 1422.8741858725,
"unrealized_pnl_exit_net": -638.8469676325
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 121111,
"quote_asset_bal": 9315.3468981819,
"total_value_mid": 9999.6240481819,
"total_value_exit_net": 9999.1108403194,
"total_value": 9999.6240481819,
"base_cost_quote": 1327.7376069125,
"unrealized_pnl_exit_net": -643.973664775
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 122898,
"quote_asset_bal": 9308.6307704445,
"total_value_mid": 9995.6305904445,
"total_value_exit_net": 9995.1153405795,
"total_value": 9995.6305904445,
"base_cost_quote": 1337.75228229,
"unrealized_pnl_exit_net": -651.267712155
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 120228,
"quote_asset_bal": 9324.589694867,
"total_value_mid": 9997.866494867,
"total_value_exit_net": 9997.361537267,
"total_value": 9997.866494867,
"base_cost_quote": 1322.7357983675,
"unrealized_pnl_exit_net": -649.9639559675
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 132055,
"quote_asset_bal": 9261.7480486994,
"total_value_mid": 9972.2039486994,
"total_value_exit_net": 9971.6711067744,
"total_value": 9972.2039486994,
"base_cost_quote": 1387.819064235,
"unrealized_pnl_exit_net": -677.89600616
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 132050,
"quote_asset_bal": 9262.5405841394,
"total_value_mid": 9971.6490841394,
"total_value_exit_net": 9971.1172527644,
"total_value": 9971.6490841394,
"base_cost_quote": 1387.8260895,
"unrealized_pnl_exit_net": -679.249420875
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 139624,
"quote_asset_bal": 9224.457490132,
"total_value_mid": 9954.691010132,
"total_value_exit_net": 9954.143334992,
"total_value": 9954.691010132,
"base_cost_quote": 1427.8835400725,
"unrealized_pnl_exit_net": -698.1976952125
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 147409,
"quote_asset_bal": 9185.612324002,
"total_value_mid": 9934.450044002,
"total_value_exit_net": 9933.888415712,
"total_value": 9934.450044002,
"base_cost_quote": 1467.9351562725,
"unrealized_pnl_exit_net": -719.6590645625
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 141549,
"quote_asset_bal": 9217.3003623095,
"total_value_mid": 9951.9396723095,
"total_value_exit_net": 9951.388692827,
"total_value": 9951.9396723095,
"base_cost_quote": 1437.89145038,
"unrealized_pnl_exit_net": -703.8031198625
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 132629,
"quote_asset_bal": 9269.6568898796,
"total_value_mid": 9942.0859198795,
"total_value_exit_net": 9941.581598107,
"total_value": 9942.0859198795,
"base_cost_quote": 1387.8264898,
"unrealized_pnl_exit_net": -715.9017815725
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 135576,
"quote_asset_bal": 9256.0141232721,
"total_value_mid": 9940.6729232721,
"total_value_exit_net": 9940.1594291721,
"total_value": 9940.6729232721,
"base_cost_quote": 1402.8455356425,
"unrealized_pnl_exit_net": -718.7002297425
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 130647,
"quote_asset_bal": 9282.1670202221,
"total_value_mid": 9953.692600222,
"total_value_exit_net": 9953.188956037,
"total_value": 9953.692600222,
"base_cost_quote": 1377.8079114975,
"unrealized_pnl_exit_net": -706.7859756825
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 135576,
"quote_asset_bal": 9257.9160582121,
"total_value_mid": 9939.863338212,
"total_value_exit_net": 9939.351877752,
"total_value": 9939.863338212,
"base_cost_quote": 1402.8456957625,
"unrealized_pnl_exit_net": -721.4098762225
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 133686,
"quote_asset_bal": 9269.5465479096,
"total_value_mid": 9936.6396879096,
"total_value_exit_net": 9936.1393680546,
"total_value": 9936.6396879096,
"base_cost_quote": 1392.842909295,
"unrealized_pnl_exit_net": -726.25008915
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 144076,
"quote_asset_bal": 9221.2407936171,
"total_value_mid": 9914.2463536171,
"total_value_exit_net": 9913.7265994471,
"total_value": 9914.2463536171,
"base_cost_quote": 1442.8994535675,
"unrealized_pnl_exit_net": -750.4136477375
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 143034,
"quote_asset_bal": 9226.9193418121,
"total_value_mid": 9914.9128818121,
"total_value_exit_net": 9914.3968866571,
"total_value": 9914.9128818121,
"base_cost_quote": 1437.8941023675,
"unrealized_pnl_exit_net": -750.4165575225
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 142999,
"quote_asset_bal": 9227.8671621096,
"total_value_mid": 9925.7022821096,
"total_value_exit_net": 9925.1789057696,
"total_value": 9925.7022821096,
"base_cost_quote": 1437.897995285,
"unrealized_pnl_exit_net": -740.586251625
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 140954,
"quote_asset_bal": 9238.6959126796,
"total_value_mid": 9939.2372926796,
"total_value_exit_net": 9938.7118866446,
"total_value": 9939.2372926796,
"base_cost_quote": 1427.88895413,
"unrealized_pnl_exit_net": -727.872980165
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 141954,
"quote_asset_bal": 9235.3718262997,
"total_value_mid": 9933.7855062997,
"total_value_exit_net": 9933.2616960397,
"total_value": 9933.7855062997,
"base_cost_quote": 1432.89538614,
"unrealized_pnl_exit_net": -735.0055164
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 141956,
"quote_asset_bal": 9237.2726892972,
"total_value_mid": 9937.1157692972,
"total_value_exit_net": 9936.5908869872,
"total_value": 9937.1157692972,
"base_cost_quote": 1432.8949958475,
"unrealized_pnl_exit_net": -733.5767981575
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 143001,
"quote_asset_bal": 9233.0289369372,
"total_value_mid": 9928.0137969372,
"total_value_exit_net": 9927.4925582922,
"total_value": 9928.0137969372,
"base_cost_quote": 1437.8974448725,
"unrealized_pnl_exit_net": -743.4338235175
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 147198,
"quote_asset_bal": 9214.1408469797,
"total_value_mid": 9916.2753069797,
"total_value_exit_net": 9915.7487061347,
"total_value": 9916.2753069797,
"base_cost_quote": 1457.925164405,
"unrealized_pnl_exit_net": -756.31730525
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 151446,
"quote_asset_bal": 9194.5248192797,
"total_value_mid": 9897.2342592797,
"total_value_exit_net": 9896.7072271997,
"total_value": 9897.2342592797,
"base_cost_quote": 1477.94779012,
"unrealized_pnl_exit_net": -775.7653822
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 152534,
"quote_asset_bal": 9190.1579519572,
"total_value_mid": 9890.2890119572,
"total_value_exit_net": 9889.7639136622,
"total_value": 9890.2890119572,
"base_cost_quote": 1482.9562936825,
"unrealized_pnl_exit_net": -783.3503319775
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 166026,
"quote_asset_bal": 9131.0233627597,
"total_value_mid": 9848.2556827597,
"total_value_exit_net": 9847.7177585197,
"total_value": 9848.2556827597,
"base_cost_quote": 1543.03552934,
"unrealized_pnl_exit_net": -826.34113358
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 158102,
"quote_asset_bal": 9167.2033492722,
"total_value_mid": 9880.2433692722,
"total_value_exit_net": 9879.7085892572,
"total_value": 9880.2433692722,
"base_cost_quote": 1507.9862720975,
"unrealized_pnl_exit_net": -795.4810321125
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 149364,
"quote_asset_bal": 9208.5424464172,
"total_value_mid": 9906.0723264172,
"total_value_exit_net": 9905.5491790072,
"total_value": 9906.0723264172,
"base_cost_quote": 1467.9402000525,
"unrealized_pnl_exit_net": -770.9334674625
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 154790,
"quote_asset_bal": 9184.4115327872,
"total_value_mid": 9891.8018327872,
"total_value_exit_net": 9891.2712900622,
"total_value": 9891.8018327872,
"base_cost_quote": 1492.9718597275,
"unrealized_pnl_exit_net": -786.1121024525
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 163740,
"quote_asset_bal": 9145.6514390347,
"total_value_mid": 9864.4700390347,
"total_value_exit_net": 9863.9309250847,
"total_value": 9864.4700390347,
"base_cost_quote": 1533.025847705,
"unrealized_pnl_exit_net": -814.746361655
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 138151,
"quote_asset_bal": 9268.4181378671,
"total_value_mid": 9901.149717867,
"total_value_exit_net": 9900.675169182,
"total_value": 9901.149717867,
"base_cost_quote": 1412.8626428425,
"unrealized_pnl_exit_net": -780.6056115275
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 147886,
"quote_asset_bal": 9225.0243835821,
"total_value_mid": 9891.9902435821,
"total_value_exit_net": 9891.4900191871,
"total_value": 9891.9902435821,
"base_cost_quote": 1457.9137458475,
"unrealized_pnl_exit_net": -791.4481102425
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 147887,
"quote_asset_bal": 9225.8685674195,
"total_value_mid": 9888.4023274195,
"total_value_exit_net": 9887.9054270995,
"total_value": 9888.4023274195,
"base_cost_quote": 1457.91809911,
"unrealized_pnl_exit_net": -795.88123943
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 139068,
"quote_asset_bal": 9266.553707702,
"total_value_mid": 9907.657187702,
"total_value_exit_net": 9907.176360092,
"total_value": 9907.657187702,
"base_cost_quote": 1417.8664729025,
"unrealized_pnl_exit_net": -777.2438205125
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 146807,
"quote_asset_bal": 9232.407193852,
"total_value_mid": 9887.166413852,
"total_value_exit_net": 9886.675344437,
"total_value": 9887.166413852,
"base_cost_quote": 1452.9140588925,
"unrealized_pnl_exit_net": -798.6459083075
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 149066,
"quote_asset_bal": 9223.876335877,
"total_value_mid": 9881.257395877,
"total_value_exit_net": 9880.764360082,
"total_value": 9881.257395877,
"base_cost_quote": 1462.9288843825,
"unrealized_pnl_exit_net": -806.0408601775
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 153645,
"quote_asset_bal": 9204.766383162,
"total_value_mid": 9870.049233162,
"total_value_exit_net": 9869.5502710245,
"total_value": 9870.049233162,
"base_cost_quote": 1482.9535916575,
"unrealized_pnl_exit_net": -818.169703795
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 152492,
"quote_asset_bal": 9210.222744657,
"total_value_mid": 9875.087864657,
"total_value_exit_net": 9874.589215817,
"total_value": 9875.087864657,
"base_cost_quote": 1477.9458186425,
"unrealized_pnl_exit_net": -813.5793474825
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 161885,
"quote_asset_bal": 9171.137129537,
"total_value_mid": 9849.435279537,
"total_value_exit_net": 9848.9265559245,
"total_value": 9849.435279537,
"base_cost_quote": 1517.9967543325,
"unrealized_pnl_exit_net": -840.207327945
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 169209,
"quote_asset_bal": 9142.2445333795,
"total_value_mid": 9830.9251633795,
"total_value_exit_net": 9830.408652907,
"total_value": 9830.9251633795,
"base_cost_quote": 1548.03199388,
"unrealized_pnl_exit_net": -859.8678743525
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 163067,
"quote_asset_bal": 9168.2412355445,
"total_value_mid": 9838.4466055445,
"total_value_exit_net": 9837.943951517,
"total_value": 9838.4466055445,
"base_cost_quote": 1523.006338705,
"unrealized_pnl_exit_net": -853.3036227325
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 174305,
"quote_asset_bal": 9123.8980381295,
"total_value_mid": 9800.2014381295,
"total_value_exit_net": 9799.6942105795,
"total_value": 9800.2014381295,
"base_cost_quote": 1568.054219295,
"unrealized_pnl_exit_net": -892.258046845
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 186004,
"quote_asset_bal": 9079.898329742,
"total_value_mid": 9786.713529742,
"total_value_exit_net": 9786.183418342,
"total_value": 9786.713529742,
"base_cost_quote": 1613.0996280325,
"unrealized_pnl_exit_net": -906.8145394325
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 171863,
"quote_asset_bal": 9135.783057437,
"total_value_mid": 9826.672317437,
"total_value_exit_net": 9826.154150492,
"total_value": 9826.672317437,
"base_cost_quote": 1558.0444676075,
"unrealized_pnl_exit_net": -867.6733745525
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 173113,
"quote_asset_bal": 9131.167197022,
"total_value_mid": 9823.619197022,
"total_value_exit_net": 9823.099858022,
"total_value": 9823.619197022,
"base_cost_quote": 1563.0482176075,
"unrealized_pnl_exit_net": -871.1155566075
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 173163,
"quote_asset_bal": 9133.207804267,
"total_value_mid": 9810.275134267,
"total_value_exit_net": 9809.7673337695,
"total_value": 9810.275134267,
"base_cost_quote": 1563.0478573375,
"unrealized_pnl_exit_net": -886.488327835
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 174407,
"quote_asset_bal": 9129.1186623419,
"total_value_mid": 9811.0500323419,
"total_value_exit_net": 9810.5385838144,
"total_value": 9811.0500323419,
"base_cost_quote": 1568.0523078625,
"unrealized_pnl_exit_net": -886.63238639
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 168095,
"quote_asset_bal": 9154.8434321219,
"total_value_mid": 9833.9472321219,
"total_value_exit_net": 9833.4379042719,
"total_value": 9833.9472321219,
"base_cost_quote": 1543.0281938425,
"unrealized_pnl_exit_net": -864.4337216925
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 171855,
"quote_asset_bal": 9140.1996502619,
"total_value_mid": 9831.0567502619,
"total_value_exit_net": 9830.5386074369,
"total_value": 9831.0567502619,
"base_cost_quote": 1558.0410250275,
"unrealized_pnl_exit_net": -867.7020678525
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 173115,
"quote_asset_bal": 9135.4031794669,
"total_value_mid": 9819.2074294669,
"total_value_exit_net": 9818.6945762794,
"total_value": 9819.2074294669,
"base_cost_quote": 1563.0469766775,
"unrealized_pnl_exit_net": -879.755579865
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 169339,
"quote_asset_bal": 9150.7957166944,
"total_value_mid": 9829.8451066944,
"total_value_exit_net": 9829.3358196519,
"total_value": 9829.8451066944,
"base_cost_quote": 1548.0328245025,
"unrealized_pnl_exit_net": -869.492721545
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 164384,
"quote_asset_bal": 9172.1120595369,
"total_value_mid": 9854.3056595369,
"total_value_exit_net": 9853.7940143369,
"total_value": 9854.3056595369,
"base_cost_quote": 1528.01046899,
"unrealized_pnl_exit_net": -846.32851419
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 168062,
"quote_asset_bal": 9157.5739546069,
"total_value_mid": 9839.9056746069,
"total_value_exit_net": 9839.3939258169,
"total_value": 9839.9056746069,
"base_cost_quote": 1543.02772349,
"unrealized_pnl_exit_net": -861.20775228
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 173008,
"quote_asset_bal": 9137.9244469719,
"total_value_mid": 9828.2263669718,
"total_value_exit_net": 9827.7086405318,
"total_value": 9828.2263669718,
"base_cost_quote": 1563.04680655,
"unrealized_pnl_exit_net": -873.26261299
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 179401,
"quote_asset_bal": 9113.5934099319,
"total_value_mid": 9806.0812699319,
"total_value_exit_net": 9805.5619040369,
"total_value": 9806.0812699319,
"base_cost_quote": 1588.073902805,
"unrealized_pnl_exit_net": -896.1054087
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 187328,
"quote_asset_bal": 9084.3287015494,
"total_value_mid": 9794.3018215494,
"total_value_exit_net": 9793.7693417094,
"total_value": 9794.3018215494,
"base_cost_quote": 1618.109292465,
"unrealized_pnl_exit_net": -908.668652305
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 157170,
"quote_asset_bal": 9210.9598135045,
"total_value_mid": 9819.2077135045,
"total_value_exit_net": 9818.7515275795,
"total_value": 9819.2077135045,
"base_cost_quote": 1492.959740645,
"unrealized_pnl_exit_net": -885.16802657
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 151930,
"quote_asset_bal": 9232.084059337,
"total_value_mid": 9827.649659337,
"total_value_exit_net": 9827.202985137,
"total_value": 9827.649659337,
"base_cost_quote": 1472.940137195,
"unrealized_pnl_exit_net": -877.821211395
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 156716,
"quote_asset_bal": 9213.205471202,
"total_value_mid": 9844.770951202,
"total_value_exit_net": 9844.2972770919,
"total_value": 9844.770951202,
"base_cost_quote": 1492.96260279,
"unrealized_pnl_exit_net": -861.8707969
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 152999,
"quote_asset_bal": 9229.1728856944,
"total_value_mid": 9859.5287656944,
"total_value_exit_net": 9859.0559987844,
"total_value": 9859.5287656944,
"base_cost_quote": 1477.9441974275,
"unrealized_pnl_exit_net": -848.0610843375
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 151760,
"quote_asset_bal": 9234.8317413044,
"total_value_mid": 9870.7061413044,
"total_value_exit_net": 9870.2292355044,
"total_value": 9870.7061413044,
"base_cost_quote": 1472.9423888825,
"unrealized_pnl_exit_net": -837.5448946825
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 151678,
"quote_asset_bal": 9236.8731811494,
"total_value_mid": 9895.1557011494,
"total_value_exit_net": 9894.6619892594,
"total_value": 9895.1557011494,
"base_cost_quote": 1472.9438499775,
"unrealized_pnl_exit_net": -815.1550418675
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 163613,
"quote_asset_bal": 9188.2014492419,
"total_value_mid": 9857.3786192419,
"total_value_exit_net": 9856.8767363644,
"total_value": 9857.3786192419,
"base_cost_quote": 1522.995930905,
"unrealized_pnl_exit_net": -854.3206437825
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 167330,
"quote_asset_bal": 9173.9862954744,
"total_value_mid": 9844.9795954744,
"total_value_exit_net": 9844.4763504994,
"total_value": 9844.9795954744,
"base_cost_quote": 1538.0112139275,
"unrealized_pnl_exit_net": -867.5211589025
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 168577,
"quote_asset_bal": 9169.7399362369,
"total_value_mid": 9838.9906262368,
"total_value_exit_net": 9838.4886882193,
"total_value": 9838.9906262368,
"base_cost_quote": 1543.015254145,
"unrealized_pnl_exit_net": -874.2665021625
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 169843,
"quote_asset_bal": 9165.1731476768,
"total_value_mid": 9837.7514276768,
"total_value_exit_net": 9837.2469939668,
"total_value": 9837.7514276768,
"base_cost_quote": 1548.01970467,
"unrealized_pnl_exit_net": -875.94585838
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 174944,
"quote_asset_bal": 9145.8028568693,
"total_value_mid": 9826.3350168693,
"total_value_exit_net": 9825.8246177493,
"total_value": 9826.3350168693,
"base_cost_quote": 1568.042010145,
"unrealized_pnl_exit_net": -888.020249265
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 177522,
"quote_asset_bal": 9137.1480256794,
"total_value_mid": 9824.1581656794,
"total_value_exit_net": 9823.6429080744,
"total_value": 9824.1581656794,
"base_cost_quote": 1578.05209208,
"unrealized_pnl_exit_net": -891.557209685
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 164845,
"quote_asset_bal": 9188.5805972293,
"total_value_mid": 9857.8512972293,
"total_value_exit_net": 9857.3493442043,
"total_value": 9857.8512972293,
"base_cost_quote": 1528.001602345,
"unrealized_pnl_exit_net": -859.23285537
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 168580,
"quote_asset_bal": 9174.3643323218,
"total_value_mid": 9845.3127323218,
"total_value_exit_net": 9844.8095210218,
"total_value": 9845.3127323218,
"base_cost_quote": 1543.0148438375,
"unrealized_pnl_exit_net": -872.5696551375
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 174973,
"quote_asset_bal": 9150.6979915693,
"total_value_mid": 9826.0937715693,
"total_value_exit_net": 9825.5872247343,
"total_value": 9826.0937715693,
"base_cost_quote": 1568.0419400925,
"unrealized_pnl_exit_net": -893.1527069275
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 169846,
"quote_asset_bal": 9172.3278012194,
"total_value_mid": 9844.9179612194,
"total_value_exit_net": 9844.4135185994,
"total_value": 9844.9179612194,
"base_cost_quote": 1548.0192943625,
"unrealized_pnl_exit_net": -875.9335769825
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 172398,
"quote_asset_bal": 9162.5606189719,
"total_value_mid": 9840.0847589719,
"total_value_exit_net": 9839.5766158669,
"total_value": 9840.0847589719,
"base_cost_quote": 1558.0305771975,
"unrealized_pnl_exit_net": -881.0145803025
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 176279,
"quote_asset_bal": 9148.3544447169,
"total_value_mid": 9823.5030147169,
"total_value_exit_net": 9822.9966532894,
"total_value": 9823.5030147169,
"base_cost_quote": 1573.0476715775,
"unrealized_pnl_exit_net": -898.405463005
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 180305,
"quote_asset_bal": 9136.0703452344,
"total_value_mid": 9805.0018952344,
"total_value_exit_net": 9804.5001965719,
"total_value": 9805.0018952344,
"base_cost_quote": 1588.06315475,
"unrealized_pnl_exit_net": -919.6333034125
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 192704,
"quote_asset_bal": 9092.0965952545,
"total_value_mid": 9785.8309952545,
"total_value_exit_net": 9785.3106944545,
"total_value": 9785.8309952545,
"base_cost_quote": 1633.11503834,
"unrealized_pnl_exit_net": -939.90093914
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 184406,
"quote_asset_bal": 9124.139805537,
"total_value_mid": 9797.221705537,
"total_value_exit_net": 9796.716894112,
"total_value": 9797.221705537,
"base_cost_quote": 1603.0824808025,
"unrealized_pnl_exit_net": -930.5053922275
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 196945,
"quote_asset_bal": 9081.1081187621,
"total_value_mid": 9778.2934187621,
"total_value_exit_net": 9777.7705297871,
"total_value": 9778.2934187621,
"base_cost_quote": 1648.1299610925,
"unrealized_pnl_exit_net": -951.4675500675
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 194155,
"quote_asset_bal": 9092.0318627571,
"total_value_mid": 9779.3405627571,
"total_value_exit_net": 9778.8250812321,
"total_value": 9779.3405627571,
"base_cost_quote": 1638.120489615,
"unrealized_pnl_exit_net": -951.32727114
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 196993,
"quote_asset_bal": 9083.7886327371,
"total_value_mid": 9775.2340627371,
"total_value_exit_net": 9774.7154786646,
"total_value": 9775.2340627371,
"base_cost_quote": 1648.1317624425,
"unrealized_pnl_exit_net": -957.204916515
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 217337,
"quote_asset_bal": 9015.3747788646,
"total_value_mid": 9745.6270988646,
"total_value_exit_net": 9745.0794096246,
"total_value": 9745.6270988646,
"base_cost_quote": 1718.2089409375,
"unrealized_pnl_exit_net": -988.5043101775
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 204360,
"quote_asset_bal": 9062.9137759147,
"total_value_mid": 9745.4761759147,
"total_value_exit_net": 9744.9642541147,
"total_value": 9745.4761759147,
"base_cost_quote": 1673.15736758,
"unrealized_pnl_exit_net": -991.10688938
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 211986,
"quote_asset_bal": 9040.2278603849,
"total_value_mid": 9741.9015203849,
"total_value_exit_net": 9741.3752651399,
"total_value": 9741.9015203849,
"base_cost_quote": 1698.1870858,
"unrealized_pnl_exit_net": -997.039681045
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 224384,
"quote_asset_bal": 9003.1820148499,
"total_value_mid": 9712.2354548499,
"total_value_exit_net": 9711.7036647699,
"total_value": 9712.2354548499,
"base_cost_quote": 1738.22745357,
"unrealized_pnl_exit_net": -1029.70580365
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 238897,
"quote_asset_bal": 8960.7892694622,
"total_value_mid": 9682.2582094622,
"total_value_exit_net": 9681.7171077572,
"total_value": 9682.2582094622,
"base_cost_quote": 1783.2756243775,
"unrealized_pnl_exit_net": -1062.3477860825
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 234203,
"quote_asset_bal": 8978.0893334496,
"total_value_mid": 9694.7505134496,
"total_value_exit_net": 9694.2130175646,
"total_value": 9694.7505134496,
"base_cost_quote": 1768.2563984,
"unrealized_pnl_exit_net": -1052.132714285
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 239873,
"quote_asset_bal": 8965.8227394495,
"total_value_mid": 9656.6569794495,
"total_value_exit_net": 9656.1388537695,
"total_value": 9656.6569794495,
"base_cost_quote": 1783.277675915,
"unrealized_pnl_exit_net": -1092.961561595
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 246666,
"quote_asset_bal": 8949.9109563243,
"total_value_mid": 9657.8423763243,
"total_value_exit_net": 9657.3114277593,
"total_value": 9657.8423763243,
"base_cost_quote": 1803.2946574,
"unrealized_pnl_exit_net": -1095.894185965
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 239674,
"quote_asset_bal": 8973.9309667869,
"total_value_mid": 9673.7790467869,
"total_value_exit_net": 9673.2541607269,
"total_value": 9673.7790467869,
"base_cost_quote": 1783.2696799225,
"unrealized_pnl_exit_net": -1083.9464859825
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 246666,
"quote_asset_bal": 8956.484558857,
"total_value_mid": 9664.415978857,
"total_value_exit_net": 9663.885030292,
"total_value": 9664.415978857,
"base_cost_quote": 1803.2946574,
"unrealized_pnl_exit_net": -1095.894185965
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 243130,
"quote_asset_bal": 8969.1091343746,
"total_value_mid": 9669.3235343746,
"total_value_exit_net": 9668.7983735746,
"total_value": 9669.3235343746,
"base_cost_quote": 1793.28227374,
"unrealized_pnl_exit_net": -1093.59303454
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 286099,
"quote_asset_bal": 8857.6613007596,
"total_value_mid": 9578.6307807596,
"total_value_exit_net": 9578.0900536496,
"total_value": 9578.6307807596,
"base_cost_quote": 1908.405371355,
"unrealized_pnl_exit_net": -1187.976618465
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 261242,
"quote_asset_bal": 8925.4195995971,
"total_value_mid": 9641.2226795971,
"total_value_exit_net": 9640.6858272871,
"total_value": 9641.2226795971,
"base_cost_quote": 1843.337406955,
"unrealized_pnl_exit_net": -1128.071179265
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 264893,
"quote_asset_bal": 8917.5232209397,
"total_value_mid": 9638.0321809397,
"total_value_exit_net": 9637.4917992197,
"total_value": 9638.0321809397,
"base_cost_quote": 1853.348109355,
"unrealized_pnl_exit_net": -1133.379531075
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 272330,
"quote_asset_bal": 8899.6061557122,
"total_value_mid": 9621.2806557122,
"total_value_exit_net": 9620.7393998372,
"total_value": 9621.2806557122,
"base_cost_quote": 1873.3676827825,
"unrealized_pnl_exit_net": -1152.2344386575
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 270520,
"quote_asset_bal": 8907.1104802822,
"total_value_mid": 9632.1040802822,
"total_value_exit_net": 9631.5603350822,
"total_value": 9632.1040802822,
"base_cost_quote": 1868.3622215,
"unrealized_pnl_exit_net": -1143.9123667
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 281902,
"quote_asset_bal": 8878.7299214922,
"total_value_mid": 9614.4941414922,
"total_value_exit_net": 9613.9423183272,
"total_value": 9614.4941414922,
"base_cost_quote": 1898.39240726,
"unrealized_pnl_exit_net": -1163.180010425
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 283817,
"quote_asset_bal": 8876.3323502797,
"total_value_mid": 9608.5802102797,
"total_value_exit_net": 9608.0310243847,
"total_value": 9608.5802102797,
"base_cost_quote": 1903.3952465775,
"unrealized_pnl_exit_net": -1171.6965724725
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 279999,
"quote_asset_bal": 8887.3082057647,
"total_value_mid": 9615.3056057646,
"total_value_exit_net": 9614.7596077146,
"total_value": 9615.3056057646,
"base_cost_quote": 1893.3869059475,
"unrealized_pnl_exit_net": -1165.9355039975
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 241814,
"quote_asset_bal": 8996.2514778322,
"total_value_mid": 9634.6404378321,
"total_value_exit_net": 9634.1616461121,
"total_value": 9634.6404378321,
"base_cost_quote": 1788.273139705,
"unrealized_pnl_exit_net": -1150.362971425
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 245633,
"quote_asset_bal": 8989.3314654522,
"total_value_mid": 9647.6279054522,
"total_value_exit_net": 9647.1341831222,
"total_value": 9647.6279054522,
"base_cost_quote": 1798.2825711525,
"unrealized_pnl_exit_net": -1140.4798534825
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 253197,
"quote_asset_bal": 8971.4109330548,
"total_value_mid": 9632.2551030548,
"total_value_exit_net": 9631.7594699273,
"total_value": 9632.2551030548,
"base_cost_quote": 1818.30398596,
"unrealized_pnl_exit_net": -1157.9554490875
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 245539,
"quote_asset_bal": 8992.6334981548,
"total_value_mid": 9645.7672381548,
"total_value_exit_net": 9645.2773878498,
"total_value": 9645.7672381548,
"base_cost_quote": 1798.2822308975,
"unrealized_pnl_exit_net": -1145.6383412025
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 253160,
"quote_asset_bal": 8973.8250921398,
"total_value_mid": 9637.1042921397,
"total_value_exit_net": 9636.6068327397,
"total_value": 9637.1042921397,
"base_cost_quote": 1818.3019944675,
"unrealized_pnl_exit_net": -1155.5202538675
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 266815,
"quote_asset_bal": 8940.2890341972,
"total_value_mid": 9601.9902341972,
"total_value_exit_net": 9601.4939582972,
"total_value": 9601.9902341972,
"base_cost_quote": 1853.3394528675,
"unrealized_pnl_exit_net": -1192.1345287675
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 272914,
"quote_asset_bal": 8925.6954281273,
"total_value_mid": 9599.7930081272,
"total_value_exit_net": 9599.2874349422,
"total_value": 9599.7930081272,
"base_cost_quote": 1868.3540854025,
"unrealized_pnl_exit_net": -1194.7620785875
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 270873,
"quote_asset_bal": 8931.0851872273,
"total_value_mid": 9597.4327672272,
"total_value_exit_net": 9596.9330065422,
"total_value": 9597.4327672272,
"base_cost_quote": 1863.349885065,
"unrealized_pnl_exit_net": -1197.50206575
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 274964,
"quote_asset_bal": 8921.7433603223,
"total_value_mid": 9592.6555203222,
"total_value_exit_net": 9592.1523362022,
"total_value": 9592.6555203222,
"base_cost_quote": 1873.3598369025,
"unrealized_pnl_exit_net": -1202.9508610225
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 285341,
"quote_asset_bal": 8896.9293741898,
"total_value_mid": 9581.7477741897,
"total_value_exit_net": 9581.2341603897,
"total_value": 9581.7477741897,
"base_cost_quote": 1898.3862926775,
"unrealized_pnl_exit_net": -1214.0815064775
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 291725,
"quote_asset_bal": 8884.4450111572,
"total_value_mid": 9561.2470111572,
"total_value_exit_net": 9560.7394096572,
"total_value": 9561.2470111572,
"base_cost_quote": 1913.3997643425,
"unrealized_pnl_exit_net": -1237.1053658425
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 291725,
"quote_asset_bal": 8885.1158380097,
"total_value_mid": 9559.0005880097,
"total_value_exit_net": 9558.4951744472,
"total_value": 9559.0005880097,
"base_cost_quote": 1913.3997643425,
"unrealized_pnl_exit_net": -1240.020427905
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 279015,
"quote_asset_bal": 8917.3974112446,
"total_value_mid": 9598.1940112446,
"total_value_exit_net": 9597.6834137946,
"total_value": 9598.1940112446,
"base_cost_quote": 1883.37070943,
"unrealized_pnl_exit_net": -1203.08470688
}
]
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 (109,924 closed trades) via GET /backtests/c8859418-e23b-43ee-87ff-6c6f4a4c5d43/trades (paginate through all pages).100-row audit sample from 109,924 closed trades (RFC 4180 CSV)
100-row audit sample from 109,924 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:06:00Z,2024-04-24T01:02:00Z,0.02618,0.02625,191,,,0.0058594025,0.1171791444,0.003750285,0.0037603125,,,TP
,,2024-04-24T00:08:00Z,2024-04-24T01:05:00Z,0.02621,0.02628,191,,,0.0058508075,0.1168733308,0.0037545825,0.00376461,,,TP
,,2024-04-24T00:10:00Z,2024-04-24T01:01:00Z,0.02613,0.0262,192,,,0.00590448,0.1176903942,0.00376272,0.0037728,,,TP
,,2024-04-24T00:13:00Z,2024-04-24T00:47:00Z,0.02609,0.02616,192,,,0.005916,0.1181008049,0.00375696,0.00376704,,,TP
,,2024-04-24T00:17:00Z,2024-04-24T00:32:00Z,0.026,0.02607,193,,,0.0059728675,0.1190288462,0.0037635,0.0037736325,,,TP
,,2024-04-24T00:22:00Z,2024-04-24T06:25:00Z,0.02593,0.026,193,,,0.0059931325,0.1197551099,0.0037533675,0.0037635,,,TP
,,2024-04-24T01:10:00Z,2024-04-24T01:30:00Z,0.02621,0.02628,191,,,0.0058508075,0.1168733308,0.0037545825,0.00376461,,,TP
,,2024-04-24T01:37:00Z,2024-04-24T01:55:00Z,0.02618,0.02625,191,,,0.0058594025,0.1171791444,0.003750285,0.0037603125,,,TP
,,2024-04-24T01:47:00Z,2024-04-24T02:00:00Z,0.02623,0.0263,191,,,0.0058450775,0.1166698437,0.0037574475,0.003767475,,,TP
,,2024-04-24T02:01:00Z,2024-04-24T02:13:00Z,0.02626,0.02633,191,,,0.0058364825,0.1163651942,0.003761745,0.0037717725,,,TP
,,2024-04-24T02:13:00Z,2024-04-24T03:44:00Z,0.02631,0.02638,191,,,0.0058221575,0.115858989,0.0037689075,0.003778935,,,TP
,,2024-04-24T02:16:00Z,2024-04-24T03:02:00Z,0.02627,0.02634,191,,,0.0058336175,0.116263799,0.0037631775,0.003773205,,,TP
,,2024-04-24T02:31:00Z,2024-04-24T02:44:00Z,0.02622,0.02629,191,,,0.0058479425,0.1167715484,0.003756015,0.0037660425,,,TP
,,2024-04-24T02:38:00Z,2024-04-24T02:47:00Z,0.02619,0.02626,191,,,0.0058565375,0.1170771287,0.0037517175,0.003761745,,,TP
,,2024-04-24T03:01:00Z,2024-04-24T03:02:00Z,0.02618,0.02625,191,,,0.0058594025,0.1171791444,0.003750285,0.0037603125,,,TP
,,2024-04-24T03:11:00Z,2024-04-24T03:37:00Z,0.02621,0.02628,191,,,0.0058508075,0.1168733308,0.0037545825,0.00376461,,,TP
,,2024-04-24T03:20:00Z,2024-04-24T03:32:00Z,0.02618,0.02625,191,,,0.0058594025,0.1171791444,0.003750285,0.0037603125,,,TP
,,2024-04-24T03:23:00Z,2024-04-24T03:26:00Z,0.02613,0.0262,192,,,0.00590448,0.1176903942,0.00376272,0.0037728,,,TP
,,2024-04-24T03:44:00Z,2024-04-24T04:04:00Z,0.02639,0.02646,190,,,0.005768875,0.1150530504,0.003760575,0.00377055,,,TP
,,2024-04-24T03:47:00Z,2024-04-24T04:06:00Z,0.02635,0.02642,190,,,0.005780275,0.115455408,0.003754875,0.00376485,,,TP
,,2024-04-24T04:05:00Z,2024-04-24T04:49:00Z,0.02651,0.02658,189,,,0.0057044925,0.1138532629,0.0037577925,0.003767715,,,TP
,,2024-04-24T04:06:00Z,2024-04-24T04:40:00Z,0.02642,0.02649,190,,,0.005760325,0.1147520818,0.00376485,0.003774825,,,TP
,,2024-04-24T04:07:00Z,2024-04-24T04:24:00Z,0.02635,0.02642,190,,,0.005780275,0.115455408,0.003754875,0.00376485,,,TP
,,2024-04-24T04:14:00Z,2024-04-24T04:24:00Z,0.02639,0.02646,190,,,0.005768875,0.1150530504,0.003760575,0.00377055,,,TP
,,2024-04-24T04:40:00Z,2024-04-24T04:45:00Z,0.02644,0.02651,190,,,0.005754625,0.1145518154,0.0037677,0.003777675,,,TP
,,2024-05-16T07:56:00Z,2024-05-16T07:56:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-01T07:19:00Z,2024-07-01T18:32:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-01T21:21:00Z,2024-07-01T21:44:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-01T21:45:00Z,2024-07-01T21:45:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-01T22:35:00Z,2024-07-01T23:00:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-02T22:18:00Z,2024-07-03T01:23:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-03T06:51:00Z,2024-07-03T06:56:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-07-03T08:33:00Z,2024-07-03T08:40:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-11-29T06:07:00Z,2024-11-30T07:20:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-01-24T09:46:00Z,2025-01-24T09:50:00Z,0.02,0.02005,250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-04-06T18:54:00Z,2025-04-07T14:17:00Z,0.008,0.00802,625,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-15T16:35:00Z,2025-12-15T16:35:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-15T16:36:00Z,2025-12-15T16:40:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-15T19:13:00Z,2025-12-15T21:56:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2025-12-17T15:39:00Z,2025-12-19T22:52:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2025-12-17T15:43:00Z,2025-12-19T20:37:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-19T21:07:00Z,2025-12-19T22:06:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-21T00:02:00Z,2025-12-21T00:08:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-21T00:08:00Z,2025-12-21T00:12:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-12-21T17:36:00Z,2025-12-22T08:24:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2025-12-22T08:36:00Z,2025-12-22T11:08:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2025-12-22T13:58:00Z,2025-12-22T13:59:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-22T14:33:00Z,2025-12-22T14:47:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-24T01:49:00Z,2025-12-25T02:12:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-25T02:12:00Z,2025-12-25T02:46:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-25T08:12:00Z,2025-12-25T08:50:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-25T10:06:00Z,2025-12-25T10:16:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-25T10:16:00Z,2025-12-25T10:19:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-28T08:54:00Z,2025-12-28T09:13:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2025-12-29T12:31:00Z,2025-12-29T13:09:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-03T03:44:00Z,2026-01-03T04:32:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2026-01-03T05:00:00Z,2026-01-03T05:13:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-03T05:44:00Z,2026-01-03T06:02:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-03T09:09:00Z,2026-01-03T09:49:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-04T09:10:00Z,2026-01-04T09:21:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-04T09:27:00Z,2026-01-04T09:35:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-08T10:38:00Z,2026-01-08T10:38:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-08T12:26:00Z,2026-01-08T12:30:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2026-01-08T15:35:00Z,2026-01-08T15:41:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T16:15:00Z,2026-01-08T16:43:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T18:16:00Z,2026-01-08T19:09:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T19:12:00Z,2026-01-08T19:13:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T19:14:00Z,2026-01-08T19:14:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T19:16:00Z,2026-01-08T21:39:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T22:40:00Z,2026-01-08T22:47:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T22:49:00Z,2026-01-08T23:01:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-08T23:02:00Z,2026-01-08T23:02:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-09T04:41:00Z,2026-01-09T07:20:00Z,0.00401,0.00403,1247,,,0.01742059,0.3483790524,0.0037503525,0.0037690575,,,TP
,,2026-01-09T14:41:00Z,2026-01-09T15:25:00Z,0.00402,0.00404,1244,,,0.01736002,0.3471393035,0.00375066,0.00376932,,,TP
,,2026-01-09T18:29:00Z,2026-01-09T18:47:00Z,0.004,0.00401,1250,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-21T19:21:00Z,2026-02-25T17:12:00Z,0.00247,0.00248,2025,,,0.0127321875,0.2545546559,0.0037513125,0.0037665,,,TP
,,2026-02-25T15:51:00Z,2026-02-25T16:59:00Z,0.00246,0.00247,2033,,,0.0128129825,0.256199187,0.003750885,0.0037661325,,,TP
,,2026-02-25T15:57:00Z,2026-02-25T15:58:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T16:00:00Z,2026-02-25T16:17:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T16:17:00Z,2026-02-25T16:23:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T18:04:00Z,2026-02-25T18:04:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T18:13:00Z,2026-02-25T18:13:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T19:11:00Z,2026-02-25T19:11:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T19:32:00Z,2026-02-25T19:32:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T20:21:00Z,2026-02-25T20:21:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T20:24:00Z,2026-02-25T20:24:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T20:35:00Z,2026-02-25T20:35:00Z,0.00249,0.0025,2009,,,0.0125713175,0.2513052209,0.0037518075,0.003766875,,,TP
,,2026-02-25T20:44:00Z,2026-02-25T20:46:00Z,0.00249,0.0025,2009,,,0.0125713175,0.2513052209,0.0037518075,0.003766875,,,TP
,,2026-02-25T21:00:00Z,2026-02-25T21:00:00Z,0.00249,0.0025,2009,,,0.0125713175,0.2513052209,0.0037518075,0.003766875,,,TP
,,2026-02-25T21:14:00Z,2026-02-25T21:14:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T21:30:00Z,2026-02-25T21:30:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T21:37:00Z,2026-02-25T21:37:00Z,0.00251,0.00252,1993,,,0.0124114075,0.2481075697,0.0037518225,0.00376677,,,TP
,,2026-02-25T21:42:00Z,2026-02-25T21:45:00Z,0.00249,0.0025,2009,,,0.0125713175,0.2513052209,0.0037518075,0.003766875,,,TP
,,2026-02-25T21:51:00Z,2026-02-25T21:51:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T22:18:00Z,2026-02-25T22:18:00Z,0.00248,0.00249,2017,,,0.0126516325,0.2529233871,0.00375162,0.0037667475,,,TP
,,2026-02-25T22:50:00Z,2026-02-25T22:57:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T22:59:00Z,2026-02-25T22:59:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T23:02:00Z,2026-02-25T23:06:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T23:07:00Z,2026-02-25T23:08:00Z,0.00245,0.00246,2041,,,0.0128940175,0.2578571429,0.0037503375,0.003765645,,,TP
,,2026-02-25T23:46:00Z,2026-02-25T23:59:00Z,0.00242,0.00243,2067,,,0.0131512875,0.2629132231,0.003751605,0.0037671075,,,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 PONDUSDT?
Did it beat Buy & Hold of PONDUSDT?
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 PONDUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 9,597.68 USDT
P&L: -402.32 USDT (-4.02%)
Result: LOSS
Completed trades: 109924
Open orders at end: 376
Win rate: 100.0%
Avg. profit/trade: 0.007285 USDT
Best trade: 0.017421 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 800.768121 USDT
Max drawdown: -8.07%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.28
Total fees: 826.78 USDT
Avg hold time: 14.2h
TP / SL / TSL: 109924 / 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: 586.0s
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":"PONDUSDT","mode_name":"3LongTimeLong.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":1,"stopLoss":false,"tickSize":0.00001,"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": "PONDUSDT LongTimeLong Backtest",
"alternateName": "PONDUSDT-3LongTimeLong.json-c8859418-e23b-43ee-87ff-6c6f4a4c5d43",
"description": "Backtest of the LongTimeLong strategy on PONDUSDT: -4.02% return over 2024-04-24 to 2026-02-25.",
"identifier": "c8859418-e23b-43ee-87ff-6c6f4a4c5d43",
"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": [
"PONDUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "PONDUSDT",
"description": "Trading pair: PONDUSDT"
},
{
"@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": -4.0232,
"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": 800.76812067,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 9597.68341379,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 109924,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 376,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.01742059,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00728474,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 585.95,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -2.207179564513473,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -8.073496362714003,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -839.4801604595996,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 424,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.2754852282631384,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.2955741995399257,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 6.847325381047321,
"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.010233982475,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.010233982475,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.00920227,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 1.0233982475,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7518117524999998,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1002.4156700000005,
"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.3,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 4.236666666666666,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 4971.180880441228,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:07.678Z",
"dateModified": "2026-05-15T13:01:00.308Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:00 UTC