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.
HFTUSDT * LongTimeLong
HFTUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -19.32% | 109,004 closed trades | 100.0% closed WR | 661 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,656.58 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 819.75 USDT | Buy + sell fees across all trades. |
| Fee Drag | 49.5% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 26.4 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 109,004 | 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 HFTUSDT, 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 consumed 49.5% of gross profit (notable but acceptable).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="79315ada-cff4-4e26-baad-26ecb3c07f4d" */}
...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 HFTUSDT, 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 HFTUSDT 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: HFTUSDT 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 -19.32% return on HFTUSDT a good backtest result?
Is a -19.32% return on HFTUSDT 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 HFTUSDT backtest?
What is the annualised return for this HFTUSDT 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 HFTUSDT?
How is this backtest different from others on HFTUSDT?
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 | HFTUSDT |
| Strategy | LongTimeLong |
| Period | 2024-04-24 -> 2026-02-25 |
| Configured window (inclusive elapsed) | 673.0 days (1.84 years) - (config.to - config.from) / 86 400 000 ms |
| Configured window (calendar days) | 673 days - Math.round of the elapsed value above; this is what the narrative paragraph quotes |
| Equity-stat duration | 672.0 days (1.84 years) - first -> last equity sample timestamp; used for CAGR / Sharpe / Sortino |
| Coverage gap | configured window is 673.0 days but equity samples span only 672.0 days - the engine omitted leading/trailing flat periods (e.g. dates before the asset began trading on the venue) |
| Start Balance | 10,000.00 USDT |
| Final Value | 8,068.19 USDT |
| Avg Profit / Trade | +0.0077 USDT |
| Trades / Month | 4929.6 |
| Status | completed |
| Created | 2026-05-08 13:39:11 UTC |
| Started | 2026-05-09 15:23:18 UTC |
| Completed | 2026-05-09 15:43:40 UTC |
| Compute Time | 17m 55s |
| Backtest ID | 79315ada-cff4-4e26-baad-26ecb3c07f4d |
| Engine summary: |
Backtest HFTUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 8,068.19 USDT
P&L: -1,931.81 USDT (-19.32%)
Result: LOSS
Completed trades: 109004
Open orders at end: 661
Win rate: 100.0%
Avg. profit/trade: 0.007677 USDT
Best trade: 0.028192 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 836.826680 USDT
Max drawdown: -22.76%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.53
Total fees: 819.75 USDT
Avg hold time: 26.4h
TP / SL / TSL: 109004 / 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: 1074.6s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -19.32% over the tested window | return_pct = -19.3181 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 8,068.19 USDT | final_value - start_balance = -1,931.81 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 109004 of 109004 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 22.76% | max_drawdown_pct = 22.7634 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.53 | sharpe_annualized = -0.5268 | derived from daily-resampled equity returns |
Strategy Configuration
GET /backtests/{id} * Fields used: mode_name, config (full JSON payload)- Highlights
- Full JSON
| Parameter | Value |
|---|---|
canBuy | true |
canSell | true |
canBuyUp | true |
startBal | 10000 |
stepSize | 0.1 |
stopLoss | false |
tickSize | 0.0001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "HFTUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 25 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 25 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5,10,15] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.1 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.0001 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,0,0,0,0,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: HFTUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.1
stopLoss: false
tickSize: 0.0001
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 | HFTUSDT | GET /backtests/{id} -> $.symbol |
| Candle interval | 1m | platform invariant - all backtests run on 1-minute OHLCV candles |
| First candle (UTC) | 2024-04-24 00:00:01 | GET /backtests/{id} -> $.config.from |
| Last candle (UTC) | 2026-02-25 23:59:59 | GET /backtests/{id} -> $.config.to |
| Timezone | UTC | default assumption (UTC) |
| Engine version | uncoded-engine (FastAPI backend) | caller DataSourceInput.engineVersion |
| Engine spec version | 1.1 | caller DataSourceInput.engineSpecVersion |
| Engine spec document | https://uncoded.ch/docs/engine | caller DataSourceInput.engineSpecPath |
Equity Curve
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net, total_value_mid, total_value 10,353 | #
|#### #:##
|::::##### #::::##
|:::::::::######## ::::::: ####
|:::::::::::::::::#:::::::# ###::::##
|::::::::::::::::::::::::::## # #:::::::::
|::::::::::::::::::::::::::::## :# ::::::::::##
|:::::::::::::::::::::::::::::: ##::# ::::::::::::#### ##
|::::::::::::::::::::::::::::::# :::::#::::::::::::::::#::#
8,127 |:::::::::::::::::::::::::::::::#::::::::::::::::::::::::::##
+------------------------------------------------------------
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,400.68 USDT @ 2024-12-08 23:59:00 UTC |
| Trough | 8,033.13 USDT @ 2026-02-24 23:59:00 UTC |
| Drawdown Duration | 443.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,400.68 USDT |
Final Portfolio Allocation
GET /backtests/{id}/equity * Fields used: total_value_exit_net, quote_asset_bal, base_asset_bal, base_value_exit_net, base_value_mid, unrealized_pnl_exit_net| Asset | Quantity | Value (USDT) | Allocation |
|---|---|---|---|
| USDT (Cash) | 7,421.86 | 7,421.86 | 92.0% |
| HFT | 42,835.59999999 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 646.33 | 8.0% |
| Total | - | 8,068.19 | 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.35 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.35 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.33 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.34 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.67 USDT | buy + sell on matched pairs |
| Open-position buy fees | 819.08 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 661 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 819.75 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 | 60639.92% | 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/79315ada-cff4-4e26-baad-26ecb3c07f4d/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.334061 + 0.335578
= 0.669639 USDT
(B) bt.total_fees = 819.749270 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 819.749270 - 0.669639
= 819.079631 USDT
Identity check: (A) + (C) ?= (B)
0.669639 + 819.079631 = 819.749270 USDT
vs bt.total_fees = 819.749270 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 661 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.4h | 4.8h | 66.9h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:01:00 UTC | 2026-02-25 23:45:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 89 | +1.35 USDT | +0.30% |
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-06 | 1 | 1 | 100.0% | +0.00 |
| 2024-12 | 1 | 1 | 100.0% | +0.00 |
| 2025-01 | 1 | 1 | 100.0% | +0.00 |
| 2025-03 | 1 | 1 | 100.0% | +0.00 |
| 2025-05 | 2 | 2 | 100.0% | +0.01 |
| 2025-07 | 9 | 9 | 100.0% | +0.04 |
| 2025-08 | 3 | 3 | 100.0% | +0.01 |
| 2025-11 | 7 | 7 | 100.0% | +0.03 |
| 2026-02 | 39 | 39 | 100.0% | +1.07 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2026-02-24 -> 2026-02-24 | 0.014000 | 0.014100 | +0.0282 | +0.56% |
| 2 | TP | 2026-02-24 -> 2026-02-24 | 0.014000 | 0.014100 | +0.0282 | +0.56% |
| 3 | TP | 2026-02-24 -> 2026-02-24 | 0.014000 | 0.014100 | +0.0282 | +0.56% |
| 4 | TP | 2026-02-25 -> 2026-02-25 | 0.014000 | 0.014100 | +0.0282 | +0.56% |
| 5 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
| 6 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
| 7 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
| 8 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
| 9 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
| 10 | TP | 2026-02-24 -> 2026-02-24 | 0.014100 | 0.014200 | +0.0279 | +0.56% |
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 | -22.76% @ 2026-02-24 23:59:00 UTC |
| Mean | -9.70% |
| Std Dev | 6.96% |
| Last | -22.43% |
| Points | 673 |
| Across 673 points the series ranged from -22.76% (2026-02-24 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -9.70%. 0% of points were positive, 97% negative. The most recent value is -22.43%. | |
| 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.08760934752852102},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.03093561260294898},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.46564447201001047},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-1.7269619451974214},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-1.813226613189995},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-2.5236980775241284},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-1.6377009219617222},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-6.210723241283414},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-5.333711654465388},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-4.415527579553173},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-5.3141044089867275},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-3.85816517288795},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-3.3221278328321246},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-3.5384759427787698},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-4.299911951917084},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-7.940166164290724},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-3.7241216670442965},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-0.6964972731859506},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":0},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-3.0983846946820983},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-3.6284554945446934},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-4.317166450494865},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-4.327037774226357},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-9.646629649221955},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-10.42003099762508},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-13.17177179613664},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-16.697905916554863},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-15.229526826726236},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-19.20345406703069},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-19.43012633696454},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-16.107015464098794},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-18.432141193751974},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-14.325464826880651},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-14.841583300867233},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-17.968493458153375},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-19.92782170468593},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-4.328166765667643},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-10.856568111336399},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-10.762595263248606},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-11.541322790733362},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-8.174642255181332},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-9.173504046675927},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-6.605277553353147},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-7.644315965397669},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-9.952504321792844},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-14.416982698039638},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-14.730938279860245},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-17.57442233597492},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-18.074993919228863},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-16.018802970089983},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-17.142134662972968},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-18.750848805558253},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-18.869926957000477},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-17.737292542794904},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-18.815645242785447},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-20.31492228541046},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-21.03921939776274},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-22.426298290222093}]
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 | 267.55 USDT @ 2024-12-08 23:59:00 UTC |
| Worst Unrealized | -2,695.37 USDT @ 2026-02-24 23:59:00 UTC |
| Mean | -1,039.65 USDT |
| Std Dev | 806.48 USDT |
| Last | -2,661.15 USDT |
| Points | 673 |
| Sum | -699,683.90 USDT |
| Across 673 points the series ranged from -2,695.37 USDT (2026-02-24 23:59:00 UTC) to 267.55 USDT (2024-12-08 23:59:00 UTC), averaging -1,039.65 USDT. 8% of points were positive, 92% negative. The most recent value is -2,661.15 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-7.31362678},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":18.2717305425},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":6.558323405},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":17.0681966325},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-17.098519195},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-152.0751277575},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-166.802304965},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-248.921562775},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-168.1329091},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-639.7312766525},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-557.018153015},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-472.5622283875},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-567.4931752675},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-424.54952715},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-378.0929582175},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-403.9855524624},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-484.2840892099},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-854.4878863525},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-441.3986311274},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":-18.6118689374},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":267.5514471952},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-64.0031985374},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-132.6779941474},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-213.3108641024},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-231.9790555749},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-800.4932570499},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-898.5439247699},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-1204.15386834},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-1592.2798889975},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-1451.5797383225},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-1873.07599932},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-1912.7007982325},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-1580.1503884775},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-1833.6631852876},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-1429.0849818776},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-1495.6437038952},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-1833.9922165501},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-2050.4689133676},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-451.5875101778},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-1160.5493986852},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-1183.2265540527},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-1288.5735093402},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-964.5723073753},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-1086.6492821178},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-842.1874584204},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-968.0390677878},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-1217.8931082053},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-1694.0816917527},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-1748.6409792102},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-2055.1960225152},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-2125.6586574652},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-1939.9927735277},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-2065.0230151452},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-2237.5025180702},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-2253.5879268377},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-2141.9929198877},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-2260.8064064576},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-2424.5319581126},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-2509.9320269751},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-2661.1519073701}]
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,400.68 USDT @ 2024-12-08 23:59:00 UTC |
| Trough Total Equity | 8,033.13 USDT @ 2026-02-24 23:59:00 UTC |
| Mean | 9,274.92 USDT |
| Std Dev | 616.50 USDT |
| Last | 8,068.19 USDT |
| Points | 673 |
| Sum | 6,242,023.21 USDT |
| Across 673 points the series ranged from 8,033.13 USDT (2026-02-24 23:59:00 UTC) to 10,400.68 USDT (2024-12-08 23:59:00 UTC), averaging 9,274.92 USDT. 100% of points were positive, 0% negative. The most recent value is 8,068.19 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9825.096532055,"base":168.35035246749976,"total":9993.4468845225},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9881.6721133476,"base":138.7152454799998,"total":10020.3873588276},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9728.9342876727,"base":282.6742751700003,"total":10011.6085628427},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9728.2942970977,"base":293.22978259750016,"total":10021.5240796952},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9598.6604684002,"base":389.4430584800011,"total":9988.1035268802},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9145.5949368426,"base":715.937523840099,"total":9861.5324606827},{"timestamp":"2024-07-01T23:59:00+00:00","quote":9111.5717032425,"base":741.3042445201008,"total":9852.8759477626},{"timestamp":"2024-07-13T23:59:00+00:00","quote":8816.54754158,"base":965.0338014100016,"total":9781.58134299},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8960.1142168099,"base":910.375435952501,"total":9870.4896527624},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8180.9768060049,"base":1230.6178238900002,"total":9411.5946298949},{"timestamp":"2024-08-16T23:59:00+00:00","quote":8181.20033595,"base":1318.4009171549997,"total":9499.601253105},{"timestamp":"2024-08-27T23:59:00+00:00","quote":8304.1253010175,"base":1287.6141645499993,"total":9591.7394655675},{"timestamp":"2024-09-08T23:59:00+00:00","quote":8203.6866291276,"base":1297.8821777600006,"total":9501.5688068876},{"timestamp":"2024-09-19T23:59:00+00:00","quote":8447.4080884102,"base":1200.2617480351,"total":9647.6698364453},{"timestamp":"2024-09-30T23:59:00+00:00","quote":8454.6936299226,"base":1246.7666431849993,"total":9701.4602731076},{"timestamp":"2024-10-12T23:59:00+00:00","quote":8418.7772372052,"base":1260.9728705175003,"total":9679.7501077227},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8292.4164690077,"base":1310.9248284301011,"total":9603.3412974378},{"timestamp":"2024-11-04T23:59:00+00:00","quote":7756.1883187879,"base":1481.8596510899997,"total":9238.0479698779},{"timestamp":"2024-11-15T23:59:00+00:00","quote":8392.4414183555,"base":1268.6794562400992,"total":9661.1208745956},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9131.0401643154,"base":974.6331165201991,"total":10105.6732808356},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9646.4653870655,"base":754.2169127502002,"total":10400.6822998157},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9018.7083384456,"base":1059.7208128501006,"total":10078.4291512957},{"timestamp":"2024-12-31T23:59:00+00:00","quote":8881.7853286528,"base":1141.5128427850996,"total":10023.2981714379},{"timestamp":"2025-01-11T23:59:00+00:00","quote":8735.4209825104,"base":1216.2465504350985,"total":9951.6675329455},{"timestamp":"2025-01-22T23:59:00+00:00","quote":8768.1470639153,"base":1182.493784010101,"total":9950.6408479254},{"timestamp":"2025-02-03T23:59:00+00:00","quote":7961.4897735653,"base":1435.8772237949988,"total":9397.3669973603},{"timestamp":"2025-02-14T23:59:00+00:00","quote":7944.0208334103,"base":1372.9071468000993,"total":9316.9279802104},{"timestamp":"2025-02-26T23:59:00+00:00","quote":7517.6291680452,"base":1513.0989939976007,"total":9030.7281620428},{"timestamp":"2025-03-09T23:59:00+00:00","quote":7083.3176658727,"base":1580.6684888400005,"total":8663.9861547127},{"timestamp":"2025-03-20T23:59:00+00:00","quote":7175.4822417027,"base":1641.225357100001,"total":8816.7075988027},{"timestamp":"2025-04-01T23:59:00+00:00","quote":6712.9762451403,"base":1690.4158065725005,"total":8403.3920517128},{"timestamp":"2025-04-12T23:59:00+00:00","quote":6668.9390702852,"base":1710.8775187700012,"total":8379.8165890552},{"timestamp":"2025-04-23T23:59:00+00:00","quote":7017.4878510652,"base":1707.9549423474,"total":8725.4427934126},{"timestamp":"2025-05-05T23:59:00+00:00","quote":6783.8157686177,"base":1699.7980845824004,"total":8483.6138532001},{"timestamp":"2025-05-16T23:59:00+00:00","quote":7206.9495742801,"base":1703.7866409199005,"total":8910.7362152},{"timestamp":"2025-05-28T23:59:00+00:00","quote":7204.8227777051,"base":1652.2335947248994,"total":8857.05637243},{"timestamp":"2025-06-08T23:59:00+00:00","quote":6862.4284968302,"base":1669.4078843398001,"total":8531.83638117},{"timestamp":"2025-06-19T23:59:00+00:00","quote":6659.8376755127,"base":1668.2151995248996,"total":8328.0528750376},{"timestamp":"2025-07-01T23:59:00+00:00","quote":8501.5219918627,"base":1449.0014332496994,"total":9950.5234251124},{"timestamp":"2025-07-12T23:59:00+00:00","quote":7735.1400355877,"base":1536.3851063047996,"total":9271.5251418925},{"timestamp":"2025-07-24T23:59:00+00:00","quote":7897.8536020604,"base":1383.4453572098,"total":9281.2989592702},{"timestamp":"2025-08-04T23:59:00+00:00","quote":7792.0111170655,"base":1408.2948660898,"total":9200.3059831553},{"timestamp":"2025-08-15T23:59:00+00:00","quote":8098.6510065081,"base":1451.8127231997005,"total":9550.4637297078},{"timestamp":"2025-08-27T23:59:00+00:00","quote":7871.458882133,"base":1575.1164060272004,"total":9446.5752881602},{"timestamp":"2025-09-07T23:59:00+00:00","quote":8324.8550132908,"base":1388.8333531795997,"total":9713.6883664704},{"timestamp":"2025-09-19T23:59:00+00:00","quote":8127.2403801509,"base":1478.3809021096995,"total":9605.6212822606},{"timestamp":"2025-09-30T23:59:00+00:00","quote":7751.3995688559,"base":1614.1543755746998,"total":9365.5539444306},{"timestamp":"2025-10-11T23:59:00+00:00","quote":7668.1166321384,"base":1233.1011000347999,"total":8901.2177321732},{"timestamp":"2025-10-23T23:59:00+00:00","quote":7509.7640745458,"base":1358.8001349997003,"total":8868.5642095455},{"timestamp":"2025-11-03T23:59:00+00:00","quote":7240.2360965433,"base":1332.5863700798,"total":8572.8224666231},{"timestamp":"2025-11-14T23:59:00+00:00","quote":7248.6348162659,"base":1272.1247902998002,"total":8520.7596065657},{"timestamp":"2025-11-26T23:59:00+00:00","quote":7827.5917545534,"base":907.0257401097997,"total":8734.6174946632},{"timestamp":"2025-12-07T23:59:00+00:00","quote":7715.6581158534,"base":902.1252182598992,"total":8617.7833341133},{"timestamp":"2025-12-19T23:59:00+00:00","quote":7580.674020706,"base":869.7920663247996,"total":8450.4660870308},{"timestamp":"2025-12-30T23:59:00+00:00","quote":7589.3799004984,"base":848.7012463124001,"total":8438.0811468108},{"timestamp":"2026-01-10T23:59:00+00:00","quote":7665.6572441859,"base":890.2256096648007,"total":8555.8828538507},{"timestamp":"2026-01-22T23:59:00+00:00","quote":7617.2590115433,"base":826.467803909899,"total":8443.7268154532},{"timestamp":"2026-02-02T23:59:00+00:00","quote":7534.9575828858,"base":752.8341905698999,"total":8287.7917734557},{"timestamp":"2026-02-14T23:59:00+00:00","quote":7474.9611911033,"base":737.4987407898998,"total":8212.4599318932},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7421.8618162108,"base":646.3324468299006,"total":8068.1942630407}]
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 | 20.75% @ 2025-04-19 23:59:00 UTC |
| Min Exposure | 1.38% @ 2024-05-05 23:59:00 UTC |
| Mean | 12.99% |
| Std Dev | 4.56% |
| Last | 8.01% |
| Points | 673 |
| Across 673 points the series ranged from 1.38% (2024-05-05 23:59:00 UTC) to 20.75% (2025-04-19 23:59:00 UTC), averaging 12.99%. 100% of points were positive, 0% negative. The most recent value is 8.01%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.6846074674018119},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.3843301712063723},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.8234651144784437},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":2.9259998805133702},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":3.8990691018762824},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":7.259901305344743},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":7.523734678588304},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":9.8658260619751},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.223204399973401},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":13.075550661532716},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":13.878486917796392},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":13.424198699018946},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.659661937291636},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":12.440949663316198},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":12.851329677049037},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":13.026915534849092},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":13.65071580638147},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":16.040830875979808},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":13.131803987425053},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":9.644415462832086},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":7.251609952200587},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":10.51474190016865},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":11.38859508378112},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":12.221535199087516},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":11.883594253697117},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":15.279569524084074},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":14.73562047185746},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":16.75500543087247},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":18.244125286144524},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":18.61494598417756},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":20.115874591712707},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":20.416646361980785},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":19.574421410874933},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":20.03625004621374},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":19.120604625390754},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":18.654432412420075},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":19.56680613360366},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":20.03127531196622},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":14.562062429729233},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":16.571007280806374},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":14.905729933718051},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":15.307043794719716},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.201489312855799},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":16.673941168937294},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":14.297693119058247},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":15.390788983529188},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":17.235012313762677},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":13.853173095382115},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":15.321534612527055},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":15.54431315086729},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":14.929711070824721},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":10.384264000844766},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.468181703859472},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":10.292829500371552},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":10.057988677119672},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":10.404836354954785},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.787950533848958},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":9.083652330420412},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":8.980241570808928},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.01086867467559}]
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 | 1,022.92 USDT @ 2025-06-30 23:59:00 UTC |
| Worst Day | -505.30 USDT @ 2025-10-10 23:59:00 UTC |
| Mean | -2.86 USDT |
| Std Dev | 88.57 USDT |
| Last | 35.07 USDT |
| Points | 672 |
| Sum | -1,925.25 USDT |
| Across 672 points the series ranged from -505.30 USDT (2025-10-10 23:59:00 UTC) to 1,022.92 USDT (2025-06-30 23:59:00 UTC), averaging -2.86 USDT. 47% of points were positive, 53% negative. The most recent value is 35.07 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":-0.512337527499767},{"timestamp":"2024-05-06T23:59:00+00:00","delta":-4.916904812500434},{"timestamp":"2024-05-18T23:59:00+00:00","delta":1.8309429874989291},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-9.597187580000536},{"timestamp":"2024-06-09T23:59:00+00:00","delta":8.452552675000334},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-10.152720507599952},{"timestamp":"2024-07-02T23:59:00+00:00","delta":7.129048369999509},{"timestamp":"2024-07-14T23:59:00+00:00","delta":41.60742796009981},{"timestamp":"2024-07-25T23:59:00+00:00","delta":-36.21617087249979},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-120.37001541750033},{"timestamp":"2024-08-17T23:59:00+00:00","delta":40.76170595250005},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-26.00995888249963},{"timestamp":"2024-09-08T23:59:00+00:00","delta":49.546389009999984},{"timestamp":"2024-09-20T23:59:00+00:00","delta":22.647937059999094},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-89.51160728989998},{"timestamp":"2024-10-13T23:59:00+00:00","delta":6.345107737499347},{"timestamp":"2024-10-24T23:59:00+00:00","delta":29.477117607499167},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-51.24174336999931},{"timestamp":"2024-11-16T23:59:00+00:00","delta":114.53698742500092},{"timestamp":"2024-11-27T23:59:00+00:00","delta":73.34809614250116},{"timestamp":"2024-12-08T23:59:00+00:00","delta":38.03529460000027},{"timestamp":"2024-12-20T23:59:00+00:00","delta":0.4088344749998214},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-31.224192627600132},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-26.01390890499897},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-26.804717250000976},{"timestamp":"2025-02-03T23:59:00+00:00","delta":66.45667761739969},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-46.91328905249975},{"timestamp":"2025-02-26T23:59:00+00:00","delta":61.55063280750073},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-185.18500464749923},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-40.67174327250177},{"timestamp":"2025-04-01T23:59:00+00:00","delta":-66.78740153249964},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-184.04167074250108},{"timestamp":"2025-04-24T23:59:00+00:00","delta":57.351819482501014},{"timestamp":"2025-05-05T23:59:00+00:00","delta":-35.906361042500066},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-49.301682999999684},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-70.53041745250084},{"timestamp":"2025-06-08T23:59:00+00:00","delta":35.12365153989958},{"timestamp":"2025-06-20T23:59:00+00:00","delta":3.9478591725001024},{"timestamp":"2025-07-01T23:59:00+00:00","delta":69.4749913100004},{"timestamp":"2025-07-13T23:59:00+00:00","delta":-1.5185077325004386},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-76.24653102740012},{"timestamp":"2025-08-04T23:59:00+00:00","delta":63.94071517250086},{"timestamp":"2025-08-16T23:59:00+00:00","delta":4.424850299999889},{"timestamp":"2025-08-27T23:59:00+00:00","delta":0.46165465749982104},{"timestamp":"2025-09-07T23:59:00+00:00","delta":-38.42306000750068},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-102.86757945000136},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-10.424128362499687},{"timestamp":"2025-10-12T23:59:00+00:00","delta":96.54060665739962},{"timestamp":"2025-10-23T23:59:00+00:00","delta":55.832684247499856},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-174.2007120024009},{"timestamp":"2025-11-15T23:59:00+00:00","delta":67.58037667000099},{"timestamp":"2025-11-26T23:59:00+00:00","delta":-3.807427337500485},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-29.540152377501727},{"timestamp":"2025-12-19T23:59:00+00:00","delta":61.913042027499614},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-47.193959307500336},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-23.611745472500843},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-18.686684264999712},{"timestamp":"2026-02-02T23:59:00+00:00","delta":15.328861564999897},{"timestamp":"2026-02-14T23:59:00+00:00","delta":-7.340789927500737},{"timestamp":"2026-02-25T23:59:00+00:00","delta":35.065853987500304}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 15.21% @ 2025-06 |
| Worst Month | -8.06% @ 2025-07 |
| Mean | -0.65% |
| Std Dev | 4.95% |
| Last | -2.47% |
| Points | 23 |
| Across 23 points the series ranged from -8.06% (2025-07) to 15.21% (2025-06), averaging -0.65%. 26% of points were positive, 74% negative. The most recent value is -2.47%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.23808693053894484},{"month":"2024-05","returnPct":0.28604971450081257},{"month":"2024-06","returnPct":-1.3948568678455375},{"month":"2024-07","returnPct":-0.8216525132551155},{"month":"2024-08","returnPct":-2.068250774558169},{"month":"2024-09","returnPct":2.319714296979478},{"month":"2024-10","returnPct":-1.817202046016543},{"month":"2024-11","returnPct":8.97626186100866},{"month":"2024-12","returnPct":-2.1777524657146037},{"month":"2025-01","returnPct":-3.6218162664360234},{"month":"2025-02","returnPct":-5.26978326081779},{"month":"2025-03","returnPct":-5.849461379957681},{"month":"2025-04","returnPct":3.4286644817859293},{"month":"2025-05","returnPct":-1.3220179962163399},{"month":"2025-06","returnPct":15.211857676037708},{"month":"2025-07","returnPct":-8.062287548336068},{"month":"2025-08","returnPct":3.45824033940176},{"month":"2025-09","returnPct":-0.4641170718154154},{"month":"2025-10","returnPct":-7.71099226103657},{"month":"2025-11","returnPct":-1.5693485305966763},{"month":"2025-12","returnPct":-1.667194479795609},{"month":"2026-01","returnPct":-2.15373154567031},{"month":"2026-02","returnPct":-2.469260376572823}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 836.83 USDT @ 2026-02-25 |
| Trough Cum. | 0.9154 USDT @ 2024-04-24 |
| Mean | 387.41 USDT |
| Std Dev | 273.70 USDT |
| Last | 836.83 USDT |
| Points | 673 |
| Sum | 260,726.38 USDT |
| Across 673 points the series ranged from 0.9154 USDT (2024-04-24) to 836.83 USDT (2026-02-25), averaging 387.41 USDT. 100% of points were positive, 0% negative. The most recent value is 836.83 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":0.915447},{"timestamp":"2024-05-05","cumProfit":11.484679999999999},{"timestamp":"2024-05-17","cumProfit":19.354671},{"timestamp":"2024-05-28","cumProfit":26.858524999999997},{"timestamp":"2024-06-09","cumProfit":33.603103999999995},{"timestamp":"2024-06-20","cumProfit":42.813698999999986},{"timestamp":"2024-07-01","cumProfit":48.88436299999998},{"timestamp":"2024-07-13","cumProfit":59.907532999999994},{"timestamp":"2024-07-24","cumProfit":68.02718899999999},{"timestamp":"2024-08-05","cumProfit":82.10382099999998},{"timestamp":"2024-08-16","cumProfit":91.63392699999997},{"timestamp":"2024-08-27","cumProfit":100.435254},{"timestamp":"2024-09-08","cumProfit":108.47445899999998},{"timestamp":"2024-09-19","cumProfit":114.39917499999997},{"timestamp":"2024-09-30","cumProfit":122.16447699999999},{"timestamp":"2024-10-12","cumProfit":129.46951599999997},{"timestamp":"2024-10-23","cumProfit":135.49285199999994},{"timestamp":"2024-11-04","cumProfit":141.76279999999994},{"timestamp":"2024-11-15","cumProfit":157.31434199999998},{"timestamp":"2024-11-26","cumProfit":179.26257400000003},{"timestamp":"2024-12-08","cumProfit":196.11321700000008},{"timestamp":"2024-12-19","cumProfit":214.8282990000001},{"timestamp":"2024-12-31","cumProfit":228.37211600000012},{"timestamp":"2025-01-11","cumProfit":237.3743480000001},{"timestamp":"2025-01-22","cumProfit":255.0158550000001},{"timestamp":"2025-02-03","cumProfit":273.76371400000016},{"timestamp":"2025-02-14","cumProfit":291.3753660000002},{"timestamp":"2025-02-26","cumProfit":310.8010010000002},{"timestamp":"2025-03-09","cumProfit":332.7706940000001},{"timestamp":"2025-03-20","cumProfit":347.4608660000001},{"timestamp":"2025-04-01","cumProfit":356.8942680000002},{"timestamp":"2025-04-12","cumProfit":372.9436030000001},{"timestamp":"2025-04-23","cumProfit":387.2337570000002},{"timestamp":"2025-05-05","cumProfit":401.3994250000002},{"timestamp":"2025-05-16","cumProfit":425.03809400000017},{"timestamp":"2025-05-28","cumProfit":441.85616600000026},{"timestamp":"2025-06-08","cumProfit":455.42441700000035},{"timestamp":"2025-06-19","cumProfit":468.1636030000003},{"timestamp":"2025-07-01","cumProfit":493.8893120000003},{"timestamp":"2025-07-12","cumProfit":525.4504040000004},{"timestamp":"2025-07-24","cumProfit":559.1027970000004},{"timestamp":"2025-08-04","cumProfit":586.5139390000004},{"timestamp":"2025-08-15","cumProfit":614.7889710000003},{"timestamp":"2025-08-27","cumProfit":633.3326100000004},{"timestamp":"2025-09-07","cumProfit":656.3599450000003},{"timestamp":"2025-09-19","cumProfit":674.1444700000003},{"timestamp":"2025-09-30","cumProfit":685.9784480000003},{"timestamp":"2025-10-11","cumProfit":700.4863190000004},{"timestamp":"2025-10-23","cumProfit":722.3920840000004},{"timestamp":"2025-11-03","cumProfit":733.2442530000003},{"timestamp":"2025-11-14","cumProfit":751.7482960000003},{"timestamp":"2025-11-26","cumProfit":781.2950350000002},{"timestamp":"2025-12-07","cumProfit":790.0434490000004},{"timestamp":"2025-12-19","cumProfit":795.3125540000001},{"timestamp":"2025-12-30","cumProfit":799.01302},{"timestamp":"2026-01-10","cumProfit":805.2197189999999},{"timestamp":"2026-01-22","cumProfit":811.923641},{"timestamp":"2026-02-02","cumProfit":819.7141509999999},{"timestamp":"2026-02-14","cumProfit":829.8452659999998},{"timestamp":"2026-02-25","cumProfit":836.8266769999996}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 10.53 USDT @ 2025-11-21 |
| Worst Day | 0.1310 USDT @ 2025-12-13 |
| Mean | 1.24 USDT |
| Std Dev | 0.9756 USDT |
| Last | 0.8467 USDT |
| Points | 673 |
| Sum | 836.83 USDT |
| Across 673 points the series ranged from 0.1310 USDT (2025-12-13) to 10.53 USDT (2025-11-21), averaging 1.24 USDT. 100% of points were positive, 0% negative. The most recent value is 0.8467 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":0.915447},{"day":"2024-05-05","profit":0.816093},{"day":"2024-05-17","profit":0.603451},{"day":"2024-05-28","profit":0.715258},{"day":"2024-06-09","profit":0.506443},{"day":"2024-06-20","profit":0.955286},{"day":"2024-07-01","profit":0.32197},{"day":"2024-07-13","profit":0.420462},{"day":"2024-07-24","profit":0.48456},{"day":"2024-08-05","profit":4.056768},{"day":"2024-08-16","profit":0.687862},{"day":"2024-08-27","profit":1.015528},{"day":"2024-09-08","profit":0.560485},{"day":"2024-09-19","profit":0.867244},{"day":"2024-09-30","profit":1.159951},{"day":"2024-10-12","profit":0.415834},{"day":"2024-10-23","profit":0.35999},{"day":"2024-11-04","profit":0.541076},{"day":"2024-11-15","profit":1.456839},{"day":"2024-11-26","profit":1.880085},{"day":"2024-12-08","profit":1.228891},{"day":"2024-12-19","profit":1.963005},{"day":"2024-12-31","profit":0.706279},{"day":"2025-01-11","profit":0.527426},{"day":"2025-01-22","profit":1.917141},{"day":"2025-02-03","profit":4.411412},{"day":"2025-02-14","profit":0.955342},{"day":"2025-02-26","profit":2.629619},{"day":"2025-03-09","profit":1.275789},{"day":"2025-03-20","profit":0.694821},{"day":"2025-04-01","profit":0.996172},{"day":"2025-04-12","profit":0.51308},{"day":"2025-04-23","profit":1.356223},{"day":"2025-05-05","profit":0.931648},{"day":"2025-05-16","profit":1.576266},{"day":"2025-05-28","profit":1.475498},{"day":"2025-06-08","profit":0.750132},{"day":"2025-06-19","profit":0.747834},{"day":"2025-07-01","profit":6.118996},{"day":"2025-07-12","profit":2.354524},{"day":"2025-07-24","profit":2.699346},{"day":"2025-08-04","profit":1.493409},{"day":"2025-08-15","profit":1.939134},{"day":"2025-08-27","profit":0.976173},{"day":"2025-09-07","profit":1.39003},{"day":"2025-09-19","profit":1.026731},{"day":"2025-09-30","profit":0.849759},{"day":"2025-10-11","profit":3.712835},{"day":"2025-10-23","profit":0.780548},{"day":"2025-11-03","profit":1.473527},{"day":"2025-11-14","profit":1.09866},{"day":"2025-11-26","profit":0.781939},{"day":"2025-12-07","profit":0.451847},{"day":"2025-12-19","profit":0.566068},{"day":"2025-12-30","profit":0.356244},{"day":"2026-01-10","profit":0.83362},{"day":"2026-01-22","profit":0.374051},{"day":"2026-02-02","profit":1.141083},{"day":"2026-02-14","profit":0.492958},{"day":"2026-02-25","profit":0.84669}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 943 trades @ 2025-06-30 |
| Quietest Day | 17 trades @ 2025-12-13 |
| Mean | 162 trades |
| Std Dev | 120 trades |
| Last | 31 trades |
| Points | 673 |
| Sum | 109004 trades |
| Across 673 points the series ranged from 17 trades (2025-12-13) to 943 trades (2025-06-30), averaging 162 trades. The most recent value is 31 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":159},{"day":"2024-05-05","count":144},{"day":"2024-05-17","count":102},{"day":"2024-05-28","count":125},{"day":"2024-06-09","count":92},{"day":"2024-06-20","count":148},{"day":"2024-07-01","count":48},{"day":"2024-07-13","count":68},{"day":"2024-07-24","count":70},{"day":"2024-08-05","count":553},{"day":"2024-08-16","count":102},{"day":"2024-08-27","count":179},{"day":"2024-09-08","count":79},{"day":"2024-09-19","count":155},{"day":"2024-09-30","count":157},{"day":"2024-10-12","count":76},{"day":"2024-10-23","count":59},{"day":"2024-11-04","count":97},{"day":"2024-11-15","count":225},{"day":"2024-11-26","count":299},{"day":"2024-12-08","count":202},{"day":"2024-12-19","count":338},{"day":"2024-12-31","count":100},{"day":"2025-01-11","count":91},{"day":"2025-01-22","count":333},{"day":"2025-02-03","count":594},{"day":"2025-02-14","count":158},{"day":"2025-02-26","count":276},{"day":"2025-03-09","count":204},{"day":"2025-03-20","count":125},{"day":"2025-04-01","count":112},{"day":"2025-04-12","count":49},{"day":"2025-04-23","count":196},{"day":"2025-05-05","count":103},{"day":"2025-05-16","count":226},{"day":"2025-05-28","count":232},{"day":"2025-06-08","count":76},{"day":"2025-06-19","count":63},{"day":"2025-07-01","count":806},{"day":"2025-07-12","count":243},{"day":"2025-07-24","count":441},{"day":"2025-08-04","count":211},{"day":"2025-08-15","count":198},{"day":"2025-08-27","count":182},{"day":"2025-09-07","count":168},{"day":"2025-09-19","count":108},{"day":"2025-09-30","count":134},{"day":"2025-10-11","count":309},{"day":"2025-10-23","count":61},{"day":"2025-11-03","count":151},{"day":"2025-11-14","count":168},{"day":"2025-11-26","count":135},{"day":"2025-12-07","count":60},{"day":"2025-12-19","count":49},{"day":"2025-12-30","count":32},{"day":"2026-01-10","count":96},{"day":"2026-01-22","count":33},{"day":"2026-02-02","count":69},{"day":"2026-02-14","count":26},{"day":"2026-02-25","count":31}]
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 | 819.75 USDT @ 2026-02-25 |
| Start | 1.20 USDT @ 2024-04-24 |
| Mean | 414.19 USDT |
| Std Dev | 269.40 USDT |
| Last | 819.75 USDT |
| Points | 673 |
| Sum | 278,747.90 USDT |
| Across 673 points the series ranged from 1.20 USDT (2024-04-24) to 819.75 USDT (2026-02-25), averaging 414.19 USDT. 100% of points were positive, 0% negative. The most recent value is 819.75 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.198039},{"index":11,"timestamp":"2024-05-05","cumFees":14.876771999999999},{"index":23,"timestamp":"2024-05-17","cumFees":24.921991},{"index":34,"timestamp":"2024-05-28","cumFees":34.565888},{"index":46,"timestamp":"2024-06-09","cumFees":43.351975},{"index":57,"timestamp":"2024-06-20","cumFees":54.380733},{"index":68,"timestamp":"2024-07-01","cumFees":61.184539},{"index":80,"timestamp":"2024-07-13","cumFees":74.05807699999998},{"index":91,"timestamp":"2024-07-24","cumFees":84.120551},{"index":103,"timestamp":"2024-08-05","cumFees":100.74506700000002},{"index":114,"timestamp":"2024-08-16","cumFees":111.82805800000003},{"index":125,"timestamp":"2024-08-27","cumFees":122.21623100000002},{"index":137,"timestamp":"2024-09-08","cumFees":131.186682},{"index":148,"timestamp":"2024-09-19","cumFees":138.22426099999998},{"index":159,"timestamp":"2024-09-30","cumFees":146.58989199999996},{"index":171,"timestamp":"2024-10-12","cumFees":155.44028299999997},{"index":182,"timestamp":"2024-10-23","cumFees":163.16370599999993},{"index":194,"timestamp":"2024-11-04","cumFees":169.99162499999989},{"index":205,"timestamp":"2024-11-15","cumFees":187.9172659999999},{"index":216,"timestamp":"2024-11-26","cumFees":214.46539999999982},{"index":228,"timestamp":"2024-12-08","cumFees":235.60662599999984},{"index":239,"timestamp":"2024-12-19","cumFees":259.29074099999985},{"index":251,"timestamp":"2024-12-31","cumFees":275.2540339999998},{"index":262,"timestamp":"2025-01-11","cumFees":286.5638519999998},{"index":273,"timestamp":"2025-01-22","cumFees":308.3551949999998},{"index":285,"timestamp":"2025-02-03","cumFees":329.4952439999998},{"index":296,"timestamp":"2025-02-14","cumFees":349.48067199999974},{"index":308,"timestamp":"2025-02-26","cumFees":366.91055799999964},{"index":319,"timestamp":"2025-03-09","cumFees":385.9554749999996},{"index":330,"timestamp":"2025-03-20","cumFees":401.8885399999995},{"index":342,"timestamp":"2025-04-01","cumFees":412.6359179999996},{"index":353,"timestamp":"2025-04-12","cumFees":423.0494829999996},{"index":364,"timestamp":"2025-04-23","cumFees":435.2792989999996},{"index":376,"timestamp":"2025-05-05","cumFees":450.0321119999996},{"index":387,"timestamp":"2025-05-16","cumFees":471.0298339999995},{"index":399,"timestamp":"2025-05-28","cumFees":490.25358499999936},{"index":410,"timestamp":"2025-06-08","cumFees":501.58158399999934},{"index":421,"timestamp":"2025-06-19","cumFees":511.1516529999994},{"index":433,"timestamp":"2025-07-01","cumFees":533.1888059999994},{"index":444,"timestamp":"2025-07-12","cumFees":562.3665909999994},{"index":456,"timestamp":"2025-07-24","cumFees":591.4694989999994},{"index":467,"timestamp":"2025-08-04","cumFees":618.5146099999992},{"index":478,"timestamp":"2025-08-15","cumFees":647.435973999999},{"index":490,"timestamp":"2025-08-27","cumFees":662.7598809999989},{"index":501,"timestamp":"2025-09-07","cumFees":683.6920159999988},{"index":513,"timestamp":"2025-09-19","cumFees":698.7157609999987},{"index":524,"timestamp":"2025-09-30","cumFees":712.2895279999988},{"index":535,"timestamp":"2025-10-11","cumFees":727.3734989999988},{"index":547,"timestamp":"2025-10-23","cumFees":742.3278939999989},{"index":558,"timestamp":"2025-11-03","cumFees":748.7118039999988},{"index":569,"timestamp":"2025-11-14","cumFees":758.9975189999988},{"index":581,"timestamp":"2025-11-26","cumFees":782.7994139999987},{"index":592,"timestamp":"2025-12-07","cumFees":791.9883049999986},{"index":604,"timestamp":"2025-12-19","cumFees":796.4520599999988},{"index":615,"timestamp":"2025-12-30","cumFees":799.1201839999989},{"index":626,"timestamp":"2026-01-10","cumFees":803.9975249999986},{"index":638,"timestamp":"2026-01-22","cumFees":809.3183669999987},{"index":649,"timestamp":"2026-02-02","cumFees":813.5582469999987},{"index":661,"timestamp":"2026-02-14","cumFees":817.4544399999987},{"index":672,"timestamp":"2026-02-25","cumFees":819.7492789999988}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 12492 trades @ 0.12% |
| Least Populated Bin | 3 trades @ 0.46% |
| Mean | 1817 trades |
| Std Dev | 3304 trades |
| Last | 33 trades |
| Points | 60 |
| Sum | 109004 trades |
| Across 60 points the series ranged from 3 trades (0.46%) to 12492 trades (0.12%), averaging 1817 trades. The most recent value is 33 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":11585,"from":0.099812},{"bin":"0.11%","count":12199,"from":0.107545},{"bin":"0.12%","count":12492,"from":0.115277},{"bin":"0.12%","count":11794,"from":0.123009},{"bin":"0.13%","count":8963,"from":0.130742},{"bin":"0.14%","count":6817,"from":0.138474},{"bin":"0.15%","count":5844,"from":0.146206},{"bin":"0.15%","count":4807,"from":0.153939},{"bin":"0.16%","count":3641,"from":0.161671},{"bin":"0.17%","count":3055,"from":0.169403},{"bin":"0.18%","count":3180,"from":0.177135},{"bin":"0.18%","count":3015,"from":0.184868},{"bin":"0.19%","count":3755,"from":0.1926},{"bin":"0.20%","count":3269,"from":0.200332},{"bin":"0.21%","count":3087,"from":0.208065},{"bin":"0.22%","count":2973,"from":0.215797},{"bin":"0.22%","count":1330,"from":0.223529},{"bin":"0.23%","count":1272,"from":0.231261},{"bin":"0.24%","count":788,"from":0.238994},{"bin":"0.25%","count":598,"from":0.246726},{"bin":"0.25%","count":777,"from":0.254458},{"bin":"0.26%","count":413,"from":0.262191},{"bin":"0.27%","count":202,"from":0.269923},{"bin":"0.28%","count":243,"from":0.277655},{"bin":"0.29%","count":304,"from":0.285388},{"bin":"0.29%","count":222,"from":0.29312},{"bin":"0.30%","count":190,"from":0.300852},{"bin":"0.31%","count":132,"from":0.308584},{"bin":"0.32%","count":258,"from":0.316317},{"bin":"0.32%","count":328,"from":0.324049},{"bin":"0.33%","count":250,"from":0.331781},{"bin":"0.34%","count":464,"from":0.339514},{"bin":"0.35%","count":29,"from":0.347246},{"bin":"0.35%","count":24,"from":0.354978},{"bin":"0.36%","count":29,"from":0.36271},{"bin":"0.37%","count":16,"from":0.370443},{"bin":"0.38%","count":95,"from":0.378175},{"bin":"0.39%","count":54,"from":0.385907},{"bin":"0.39%","count":109,"from":0.39364},{"bin":"0.40%","count":64,"from":0.401372},{"bin":"0.41%","count":18,"from":0.409104},{"bin":"0.42%","count":58,"from":0.416836},{"bin":"0.42%","count":6,"from":0.424569},{"bin":"0.43%","count":33,"from":0.432301},{"bin":"0.44%","count":10,"from":0.440033},{"bin":"0.45%","count":14,"from":0.447766},{"bin":"0.46%","count":74,"from":0.455498},{"bin":"0.46%","count":3,"from":0.46323},{"bin":"0.47%","count":10,"from":0.470962},{"bin":"0.48%","count":10,"from":0.478695},{"bin":"0.49%","count":4,"from":0.486427},{"bin":"0.49%","count":4,"from":0.494159},{"bin":"0.50%","count":20,"from":0.501892},{"bin":"0.51%","count":5,"from":0.509624},{"bin":"0.52%","count":5,"from":0.517356},{"bin":"0.53%","count":10,"from":0.525089},{"bin":"0.53%","count":5,"from":0.532821},{"bin":"0.54%","count":10,"from":0.540553},{"bin":"0.55%","count":5,"from":0.548285},{"bin":"0.56%","count":33,"from":0.556018}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1090 |
| Coldest Window | 100.00% @ 1090 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1090) to 100.00% (1090), 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":1090,"winRate":100},{"index":2926,"winRate":100},{"index":4763,"winRate":100},{"index":6599,"winRate":100},{"index":8435,"winRate":100},{"index":10272,"winRate":100},{"index":12108,"winRate":100},{"index":13945,"winRate":100},{"index":15673,"winRate":100},{"index":17509,"winRate":100},{"index":19346,"winRate":100},{"index":21182,"winRate":100},{"index":23018,"winRate":100},{"index":24855,"winRate":100},{"index":26691,"winRate":100},{"index":28528,"winRate":100},{"index":30364,"winRate":100},{"index":32200,"winRate":100},{"index":34037,"winRate":100},{"index":35873,"winRate":100},{"index":37709,"winRate":100},{"index":39546,"winRate":100},{"index":41382,"winRate":100},{"index":43111,"winRate":100},{"index":44947,"winRate":100},{"index":46783,"winRate":100},{"index":48620,"winRate":100},{"index":50456,"winRate":100},{"index":52292,"winRate":100},{"index":54129,"winRate":100},{"index":55965,"winRate":100},{"index":57802,"winRate":100},{"index":59638,"winRate":100},{"index":61474,"winRate":100},{"index":63311,"winRate":100},{"index":65147,"winRate":100},{"index":66983,"winRate":100},{"index":68712,"winRate":100},{"index":70548,"winRate":100},{"index":72385,"winRate":100},{"index":74221,"winRate":100},{"index":76057,"winRate":100},{"index":77894,"winRate":100},{"index":79730,"winRate":100},{"index":81566,"winRate":100},{"index":83403,"winRate":100},{"index":85239,"winRate":100},{"index":87076,"winRate":100},{"index":88912,"winRate":100},{"index":90748,"winRate":100},{"index":92585,"winRate":100},{"index":94421,"winRate":100},{"index":96149,"winRate":100},{"index":97986,"winRate":100},{"index":99822,"winRate":100},{"index":101659,"winRate":100},{"index":103495,"winRate":100},{"index":105331,"winRate":100},{"index":107168,"winRate":100},{"index":109004,"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.35 USDT @ 2026-02-25 23:45:00 UTC |
| Trough Net | 0.0063 USDT @ 2024-04-24 00:08:00 UTC |
| Mean | 0.4512 USDT |
| Std Dev | 0.4027 USDT |
| Last | 1.35 USDT |
| Points | 89 |
| Sum | 40.16 USDT |
| Across 89 points the series ranged from 0.0063 USDT (2024-04-24 00:08:00 UTC) to 1.35 USDT (2026-02-25 23:45:00 UTC), averaging 0.4512 USDT. 100% of points were positive, 0% negative. The most recent value is 1.35 USDT. | |
| Showing 60 of 89 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:08:00Z","net":0.006342105,"gross":0.01386},{"timestamp":"2024-04-24T00:32:00Z","net":0.0127416675,"gross":0.02781},{"timestamp":"2024-04-24T01:01:00Z","net":0.0253134,"gross":0.05544},{"timestamp":"2024-04-24T01:03:00Z","net":0.0315569475,"gross":0.06921000000000001},{"timestamp":"2024-04-24T01:27:00Z","net":0.0438803475,"gross":0.09657},{"timestamp":"2024-04-24T01:27:00Z","net":0.0500283675,"gross":0.11025},{"timestamp":"2024-04-24T02:15:00Z","net":0.062412959999999996,"gross":0.13770000000000002},{"timestamp":"2024-04-24T02:34:00Z","net":0.06873196499999999,"gross":0.15156000000000003},{"timestamp":"2024-04-24T03:31:00Z","net":0.0812668875,"gross":0.17919000000000004},{"timestamp":"2024-04-24T03:32:00Z","net":0.08748518999999999,"gross":0.19296000000000005},{"timestamp":"2024-04-24T03:44:00Z","net":0.09979491,"gross":0.22032000000000004},{"timestamp":"2024-04-24T04:30:00Z","net":0.10594521,"gross":0.23400000000000004},{"timestamp":"2024-04-24T04:41:00Z","net":0.1181395275,"gross":0.26127000000000006},{"timestamp":"2024-04-24T04:44:00Z","net":0.1241234025,"gross":0.27477000000000007},{"timestamp":"2024-04-24T06:06:00Z","net":0.136138125,"gross":0.3018600000000001},{"timestamp":"2024-04-24T06:09:00Z","net":0.142277025,"gross":0.3155400000000001},{"timestamp":"2024-04-24T14:21:00Z","net":0.1548534525,"gross":0.3431700000000001},{"timestamp":"2024-06-24T13:06:00Z","net":0.1598440775,"gross":0.3556700000000001},{"timestamp":"2025-01-22T10:33:00Z","net":0.16982532749999998,"gross":0.3806700000000001},{"timestamp":"2025-03-26T07:31:00Z","net":0.17481595249999998,"gross":0.39317000000000013},{"timestamp":"2025-05-15T11:31:00Z","net":0.18479720249999998,"gross":0.41817000000000015},{"timestamp":"2025-07-12T16:08:00Z","net":0.18978782749999998,"gross":0.43067000000000016},{"timestamp":"2025-07-12T23:49:00Z","net":0.19976907749999998,"gross":0.4556700000000002},{"timestamp":"2025-07-15T03:42:00Z","net":0.20475970249999997,"gross":0.4681700000000002},{"timestamp":"2025-07-24T04:13:00Z","net":0.21474095249999997,"gross":0.4931700000000002},{"timestamp":"2025-07-25T14:33:00Z","net":0.21973157749999997,"gross":0.5056700000000002},{"timestamp":"2025-07-25T20:33:00Z","net":0.22971282749999997,"gross":0.5306700000000001},{"timestamp":"2025-08-30T06:26:00Z","net":0.23470345249999996,"gross":0.54317},{"timestamp":"2025-08-30T15:45:00Z","net":0.24468470249999996,"gross":0.56817},{"timestamp":"2025-11-12T19:37:00Z","net":0.24967532749999996,"gross":0.5806699999999999},{"timestamp":"2025-11-13T22:28:00Z","net":0.2596565775,"gross":0.6056699999999998},{"timestamp":"2025-11-22T07:27:00Z","net":0.2646472025,"gross":0.6181699999999998},{"timestamp":"2025-11-24T11:14:00Z","net":0.27462845250000006,"gross":0.6431699999999997},{"timestamp":"2025-11-27T11:25:00Z","net":0.2796190775000001,"gross":0.6556699999999996},{"timestamp":"2026-02-24T10:02:00Z","net":0.3357525800000001,"gross":0.7268599999999996},{"timestamp":"2026-02-24T16:01:00Z","net":0.36394459000000007,"gross":0.7625799999999996},{"timestamp":"2026-02-24T16:12:00Z","net":0.41982757500000006,"gross":0.8335199999999996},{"timestamp":"2026-02-24T16:38:00Z","net":0.44776906750000006,"gross":0.8689899999999996},{"timestamp":"2026-02-24T16:40:00Z","net":0.5036520525000001,"gross":0.9399299999999996},{"timestamp":"2026-02-24T17:50:00Z","net":0.5315935450000001,"gross":0.9753999999999996},{"timestamp":"2026-02-24T22:42:00Z","net":0.5877270475000002,"gross":1.0465899999999997},{"timestamp":"2026-02-24T23:08:00Z","net":0.6156685400000002,"gross":1.0820599999999998},{"timestamp":"2026-02-25T04:23:00Z","net":0.6715515250000001,"gross":1.153},{"timestamp":"2026-02-25T07:01:00Z","net":0.6994930175000001,"gross":1.1884700000000001},{"timestamp":"2026-02-25T08:18:00Z","net":0.7553760025000001,"gross":1.2594100000000004},{"timestamp":"2026-02-25T08:22:00Z","net":0.7833174950000001,"gross":1.2948800000000005},{"timestamp":"2026-02-25T09:11:00Z","net":0.8392004800000001,"gross":1.3658200000000007},{"timestamp":"2026-02-25T09:13:00Z","net":0.8671419725000001,"gross":1.4012900000000008},{"timestamp":"2026-02-25T09:57:00Z","net":0.9230249575000001,"gross":1.472230000000001},{"timestamp":"2026-02-25T10:32:00Z","net":0.9509664500000001,"gross":1.5077000000000012},{"timestamp":"2026-02-25T12:47:00Z","net":1.0070999525000002,"gross":1.5788900000000012},{"timestamp":"2026-02-25T12:47:00Z","net":1.0350414450000003,"gross":1.6143600000000013},{"timestamp":"2026-02-25T14:48:00Z","net":1.0904256450000005,"gross":1.6848000000000014},{"timestamp":"2026-02-25T14:48:00Z","net":1.1176279175000006,"gross":1.7195300000000013},{"timestamp":"2026-02-25T16:33:00Z","net":1.1715537525000006,"gross":1.7885100000000014},{"timestamp":"2026-02-25T16:33:00Z","net":1.1980468275000007,"gross":1.8225300000000013},{"timestamp":"2026-02-25T20:02:00Z","net":1.2496744775000006,"gross":1.8892100000000014},{"timestamp":"2026-02-25T23:15:00Z","net":1.2750486025000005,"gross":1.9221100000000013},{"timestamp":"2026-02-25T23:42:00Z","net":1.3260175275000006,"gross":1.9881300000000013},{"timestamp":"2026-02-25T23:45:00Z","net":1.3518310225000005,"gross":2.021470000000001}]
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) | 12.15 @ 2024-12-04 23:59:00 UTC |
| Worst Sharpe (30d) | -7.87 @ 2026-02-05 23:59:00 UTC |
| Mean | -1.15 |
| Std Dev | 3.27 |
| Last | -6.11 |
| Points | 643 |
| Across 643 points the series ranged from -7.87 (2026-02-05 23:59:00 UTC) to 12.15 (2024-12-04 23:59:00 UTC), averaging -1.15. The most recent value is -6.11. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":1.0056352491230094,"sharpe90":-0.7835763157263759},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":0.8132641411107421,"sharpe90":-3.2145509083586563},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-2.0652765639101207,"sharpe90":-2.3120136797360047},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-5.880542356144434,"sharpe90":-1.2603874207574475},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-5.229831530503721,"sharpe90":-2.518409160502441},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":-0.8618959956315121,"sharpe90":-1.7573197814276433},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":-0.496916687282642,"sharpe90":-0.3164034899947773},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":-2.713954218803905,"sharpe90":-0.6289756414055512},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-2.55418855635768,"sharpe90":-1.0392853045393269},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-2.2215575663996847,"sharpe90":-0.8368715027636564},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":0.8133689293375396,"sharpe90":0.1547240902106699},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":-0.3345829731767271,"sharpe90":0.6736900782500711},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":0.0005508454258661274,"sharpe90":2.5203652206428635},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":1.0556747497375651,"sharpe90":2.8042492362269114},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-1.6273984891971454,"sharpe90":0.9846841400829981},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-4.0204674228528505,"sharpe90":1.7500826187851348},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":-0.9174312594009939,"sharpe90":0.7237042141029835},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":6.10092960546624,"sharpe90":1.0669684368464232},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":11.0228520520044,"sharpe90":-0.3354019352289398},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":5.193019009967703,"sharpe90":-1.4942375616181598},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-0.5842313169278647,"sharpe90":-3.2003989407384865},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-3.513823147291778,"sharpe90":-4.045265219922821},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":-0.5032588732383548,"sharpe90":-2.92541755742277},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-3.5854068190249753,"sharpe90":-3.62234576275129},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-5.594138694729066,"sharpe90":-3.6940156925921865},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":-6.1666239314582265,"sharpe90":-2.894047787031149},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-3.8902415545863205,"sharpe90":-2.0304851695876227},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-4.100155729015871,"sharpe90":-0.16991658818318528},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-1.6540940280918073,"sharpe90":-0.5692493458928389},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-5.045885099590713,"sharpe90":-0.8548338996263616},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-2.7993140007214907,"sharpe90":-0.5195075087273096},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":0.08018774614425953,"sharpe90":-0.9519713213185153},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":1.8062674191650625,"sharpe90":1.798604592279154},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":3.630765426429213,"sharpe90":1.434775666270184},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":0.5459550262323827,"sharpe90":1.0455095866212423},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-3.3450373410950247,"sharpe90":0.2604265816028292},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-3.915582313617427,"sharpe90":0.7143244721701667},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":4.106441986801591,"sharpe90":1.1941167316628611},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":2.145312537409801,"sharpe90":1.4032945022272896},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":3.866974114952004,"sharpe90":2.1308956430330657},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":-5.646939317047371,"sharpe90":-0.9681416947177004},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":2.3012467274734547,"sharpe90":-0.435988935895657},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":0.9227779123322668,"sharpe90":-0.9999537865804721},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":2.5442704979993027,"sharpe90":-1.0497055031687366},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":0.7625133175263961,"sharpe90":-2.399230299096416},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-0.35756284606120375,"sharpe90":-1.5161376559427029},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-3.634251540036818,"sharpe90":-2.413321617063465},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-4.327489269083165,"sharpe90":-2.7011767337783748},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-3.6914597126373336,"sharpe90":-2.163553660184343},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-2.9505858092739716,"sharpe90":-1.8179413746417457},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-3.944952667259758,"sharpe90":-1.1296473924820476},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":-0.5225628779197052,"sharpe90":-1.1097129531981993},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-0.5224233454062968,"sharpe90":-1.7152466769396395},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-4.518680703253981,"sharpe90":-3.3338695062934236},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-1.9784317941174308,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-1.9017654135072701,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":-0.9472140241776406,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-5.25456048453547,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-4.726515220849325,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-6.10951741823166,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.13% @ 1 |
| Deepest Episode | -22.76% @ 443 |
| Mean | -3.29% |
| Std Dev | 6.88% |
| Last | -22.76% |
| Points | 10 |
| Across 10 points the series ranged from -22.76% (443) to -0.13% (1), averaging -3.29%. 0% of points were positive, 100% negative. The most recent value is -22.76%. | |
| Full series - 10 points. |
[{"start":"2024-04-26T23:59:00+00:00","end":"2024-05-02T23:59:00+00:00","depth":-0.23808693053894484,"durationDays":6},{"start":"2024-05-07T23:59:00+00:00","end":"2024-05-20T23:59:00+00:00","depth":-0.3925204678614532,"durationDays":13},{"start":"2024-05-23T23:59:00+00:00","end":"2024-05-27T23:59:00+00:00","depth":-0.17914613638269877,"durationDays":4},{"start":"2024-05-29T23:59:00+00:00","end":"2024-06-04T23:59:00+00:00","depth":-0.16074659856382337,"durationDays":6},{"start":"2024-06-07T23:59:00+00:00","end":"2024-11-21T23:59:00+00:00","depth":-7.940166164290724,"durationDays":167},{"start":"2024-11-22T23:59:00+00:00","end":"2024-11-23T23:59:00+00:00","depth":-0.13024559296334007,"durationDays":1},{"start":"2024-11-25T23:59:00+00:00","end":"2024-11-27T23:59:00+00:00","depth":-0.6964972731859506,"durationDays":2},{"start":"2024-11-28T23:59:00+00:00","end":"2024-11-29T23:59:00+00:00","depth":-0.149454754530804,"durationDays":1},{"start":"2024-12-07T23:59:00+00:00","end":"2024-12-08T23:59:00+00:00","depth":-0.2884760133025143,"durationDays":1},{"start":"2024-12-09T23:59:00+00:00","end":"ongoing","depth":-22.763447844228963,"durationDays":443}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 89 trades @ win |
| Shortest Streak | 89 trades @ win |
| Mean | 89 trades |
| Std Dev | 0 trades |
| Last | 89 trades |
| Points | 1 |
| Sum | 89 trades |
| Across 1 points the series ranged from 89 trades (win) to 89 trades (win), averaging 89 trades. The most recent value is 89 trades. | |
| Full series - 1 points. |
[{"type":"win","length":89,"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 | 20.75% @ 2025-04-19 23:59:00 UTC |
| Min Utilization | 1.38% @ 2024-05-05 23:59:00 UTC |
| Mean | 12.99% |
| Std Dev | 4.56% |
| Last | 8.01% |
| Points | 673 |
| Across 673 points the series ranged from 1.38% (2024-05-05 23:59:00 UTC) to 20.75% (2025-04-19 23:59:00 UTC), averaging 12.99%. 100% of points were positive, 0% negative. The most recent value is 8.01%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.6846074674018119},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.3843301712063723},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.8234651144784437},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":2.9259998805133702},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":3.8990691018762824},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":7.259901305344743},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":7.523734678588304},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":9.8658260619751},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":9.223204399973401},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":13.075550661532716},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":13.878486917796392},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":13.424198699018946},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":13.659661937291636},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":12.440949663316198},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":12.851329677049037},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":13.026915534849092},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":13.65071580638147},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":16.040830875979808},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":13.131803987425053},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":9.644415462832086},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":7.251609952200587},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":10.51474190016865},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":11.38859508378112},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":12.221535199087516},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":11.883594253697117},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":15.279569524084074},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":14.73562047185746},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":16.75500543087247},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":18.244125286144524},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":18.61494598417756},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":20.115874591712707},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":20.416646361980785},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":19.574421410874933},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":20.03625004621374},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":19.120604625390754},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":18.654432412420075},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":19.56680613360366},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":20.03127531196622},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":14.562062429729233},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":16.571007280806374},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":14.905729933718051},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":15.307043794719716},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.201489312855799},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":16.673941168937294},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":14.297693119058247},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":15.390788983529188},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":17.235012313762677},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":13.853173095382115},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":15.321534612527055},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":15.54431315086729},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":14.929711070824721},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":10.384264000844766},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.468181703859472},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":10.292829500371552},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":10.057988677119672},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":10.404836354954785},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.787950533848958},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":9.083652330420412},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":8.980241570808928},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.01086867467559}]
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.3364 @ 2024-04-24 04:49:00 UTC |
| Lowest Price | 0.0140 @ 2026-02-24 05:32:00 UTC |
| Mean | 0.1415 |
| Std Dev | 0.1373 |
| Last | 0.0151 |
| Points | 136 |
| Across 136 points the series ranged from 0.0140 (2026-02-24 05:32:00 UTC) to 0.3364 (2024-04-24 04:49:00 UTC), averaging 0.1415. The most recent value is 0.0151. | |
| Showing 60 of 136 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:01:00Z","price":0.325},{"timestamp":"2024-04-24T00:10:00Z","price":0.326},{"timestamp":"2024-04-24T00:32:00Z","price":0.3252},{"timestamp":"2024-04-24T00:39:00Z","price":0.3271},{"timestamp":"2024-04-24T01:01:00Z","price":0.328},{"timestamp":"2024-04-24T01:07:00Z","price":0.3295},{"timestamp":"2024-04-24T01:24:00Z","price":0.33},{"timestamp":"2024-04-24T01:27:00Z","price":0.3304},{"timestamp":"2024-04-24T01:31:00Z","price":0.3299},{"timestamp":"2024-04-24T02:15:00Z","price":0.3302},{"timestamp":"2024-04-24T02:31:00Z","price":0.326},{"timestamp":"2024-04-24T02:45:00Z","price":0.3286},{"timestamp":"2024-04-24T03:31:00Z","price":0.329},{"timestamp":"2024-04-24T03:44:00Z","price":0.3308},{"timestamp":"2024-04-24T04:05:00Z","price":0.3303},{"timestamp":"2024-04-24T04:39:00Z","price":0.3314},{"timestamp":"2024-04-24T04:43:00Z","price":0.3336},{"timestamp":"2024-04-24T04:47:00Z","price":0.3355},{"timestamp":"2024-04-24T06:06:00Z","price":0.3323},{"timestamp":"2024-04-24T08:17:00Z","price":0.3285},{"timestamp":"2024-06-24T13:06:00Z","price":0.2005},{"timestamp":"2024-12-22T16:21:00Z","price":0.2005},{"timestamp":"2025-03-24T21:31:00Z","price":0.08},{"timestamp":"2025-05-15T08:46:00Z","price":0.0802},{"timestamp":"2025-05-15T11:31:00Z","price":0.0802},{"timestamp":"2025-07-12T16:08:00Z","price":0.0802},{"timestamp":"2025-07-12T22:05:00Z","price":0.0802},{"timestamp":"2025-07-15T03:42:00Z","price":0.0802},{"timestamp":"2025-07-23T17:46:00Z","price":0.0802},{"timestamp":"2025-07-24T04:13:00Z","price":0.0802},{"timestamp":"2025-07-25T15:13:00Z","price":0.0802},{"timestamp":"2025-07-25T20:33:00Z","price":0.0802},{"timestamp":"2025-08-30T06:26:00Z","price":0.0802},{"timestamp":"2025-08-30T11:58:00Z","price":0.08},{"timestamp":"2025-11-12T19:36:00Z","price":0.04},{"timestamp":"2025-11-13T18:26:00Z","price":0.04},{"timestamp":"2025-11-13T19:29:00Z","price":0.04},{"timestamp":"2025-11-22T07:27:00Z","price":0.0401},{"timestamp":"2025-11-24T09:09:00Z","price":0.0401},{"timestamp":"2025-11-24T11:14:00Z","price":0.0401},{"timestamp":"2026-02-23T01:06:00Z","price":0.0151},{"timestamp":"2026-02-23T16:28:00Z","price":0.0146},{"timestamp":"2026-02-24T05:32:00Z","price":0.014},{"timestamp":"2026-02-24T12:01:00Z","price":0.014},{"timestamp":"2026-02-24T16:12:00Z","price":0.0142},{"timestamp":"2026-02-24T16:39:00Z","price":0.0142},{"timestamp":"2026-02-24T17:50:00Z","price":0.0141},{"timestamp":"2026-02-24T23:08:00Z","price":0.0141},{"timestamp":"2026-02-25T03:30:00Z","price":0.0143},{"timestamp":"2026-02-25T04:23:00Z","price":0.0142},{"timestamp":"2026-02-25T08:07:00Z","price":0.0141},{"timestamp":"2026-02-25T08:28:00Z","price":0.0141},{"timestamp":"2026-02-25T09:13:00Z","price":0.0142},{"timestamp":"2026-02-25T09:36:00Z","price":0.0142},{"timestamp":"2026-02-25T10:33:00Z","price":0.0141},{"timestamp":"2026-02-25T12:47:00Z","price":0.0141},{"timestamp":"2026-02-25T14:48:00Z","price":0.0144},{"timestamp":"2026-02-25T16:33:00Z","price":0.0147},{"timestamp":"2026-02-25T23:15:00Z","price":0.0153},{"timestamp":"2026-02-25T23:45:00Z","price":0.0151}]
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 | 37 trades @ $5.00 |
| Least Populated Bin | 1 trades @ $5.00 |
| Mean | 5 trades |
| Std Dev | 10 trades |
| Last | 1 trades |
| Points | 18 |
| Sum | 89 trades |
| Across 18 points the series ranged from 1 trades (5.00)to∗∗37trades∗∗(5.00), averaging 5 trades. The most recent value is 1 trades. | |
| Full series - 18 points. |
[
{
"bin": "$5.00",
"count": 27,
"from": 5
},
{
"bin": "$5.00",
"count": 37,
"from": 5.001
},
{
"bin": "$5.00",
"count": 1,
"from": 5.002
},
{
"bin": "$5.00",
"count": 2,
"from": 5.004
},
{
"bin": "$5.00",
"count": 4,
"from": 5.005
},
{
"bin": "$5.01",
"count": 1,
"from": 5.008
},
{
"bin": "$5.01",
"count": 2,
"from": 5.01
},
{
"bin": "$5.01",
"count": 1,
"from": 5.011
},
{
"bin": "$5.01",
"count": 1,
"from": 5.012
},
{
"bin": "$5.01",
"count": 1,
"from": 5.013
},
{
"bin": "$5.01",
"count": 2,
"from": 5.014
},
{
"bin": "$5.02",
"count": 3,
"from": 5.02
},
{
"bin": "$5.02",
"count": 1,
"from": 5.021
},
{
"bin": "$5.03",
"count": 1,
"from": 5.025
},
{
"bin": "$5.03",
"count": 2,
"from": 5.027
},
{
"bin": "$5.03",
"count": 1,
"from": 5.028
},
{
"bin": "$5.03",
"count": 1,
"from": 5.03
},
{
"bin": "$5.03",
"count": 1,
"from": 5.033
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 35 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.15 |
| Mean | 4 trades |
| Std Dev | 10 trades |
| Last | 31 trades |
| Points | 20 |
| Sum | 89 trades |
| Across 20 points the series ranged from 0 trades (0.15) to 35 trades (0.1), averaging 4 trades. The most recent value is 31 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 35,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 15,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"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.22,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.24,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.26,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.29,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.31,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.33,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.35,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.38,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.4,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.42,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.45,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.47,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.49,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.52,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.54,
"TP": 31,
"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 | 98.29 @ Jun |
| Worst Indexed Value | 84.04 @ Dec |
| Mean | 89.60 |
| Std Dev | 4.73 |
| Last | 84.04 |
| Points | 12 |
| Across 12 points the series ranged from 84.04 (Dec) to 98.29 (Jun), averaging 89.60. The most recent value is 84.04. | |
| Full series - 12 points. |
[
{
"2025": 96.37818373356399,
"2026": 97.84626845432969,
"month": "Jan"
},
{
"2025": 89.99763906561527,
"2026": 94.72220606907523,
"month": "Feb"
},
{
"2025": 84.25674698802159,
"month": "Mar"
},
{
"2024": 99.76191306946104,
"2025": 86.45848449160054,
"month": "Apr"
},
{
"2024": 100.18460675656635,
"2025": 84.96657620616212,
"month": "May"
},
{
"2024": 98.7921652509922,
"2025": 98.2913056870703,
"month": "Jun"
},
{
"2024": 97.78327395770029,
"2025": 91.00215905643198,
"month": "Jul"
},
{
"2024": 95.49659451645843,
"2025": 94.00084863015445,
"month": "Aug"
},
{
"2024": 97.07821920915876,
"2025": 93.16344635369128,
"month": "Sep"
},
{
"2024": 94.43468551993335,
"2025": 86.75298971140052,
"month": "Oct"
},
{
"2024": 102.42557371747296,
"2025": 85.9266898958887,
"month": "Nov"
},
{
"2024": 100.29870861635972,
"2025": 84.0375559096155,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 140.12 USDT @ Sun |
| Worst Weekday | 92.52 USDT @ Fri |
| Mean | 119.55 USDT |
| Std Dev | 14.95 USDT |
| Last | 140.12 USDT |
| Points | 7 |
| Sum | 836.83 USDT |
| Across 7 points the series ranged from 92.52 USDT (Fri) to 140.12 USDT (Sun), averaging 119.55 USDT. 100% of points were positive, 0% negative. The most recent value is 140.12 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 130.216923
},
{
"day": "Tue",
"profit": 124.272763
},
{
"day": "Wed",
"profit": 118.684764
},
{
"day": "Thu",
"profit": 126.486019
},
{
"day": "Fri",
"profit": 92.519012
},
{
"day": "Sat",
"profit": 104.523369
},
{
"day": "Sun",
"profit": 140.12383
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 51.09 USDT @ 14:00 |
| Worst Hour (UTC) | 25.78 USDT @ 23:00 |
| Mean | 34.87 USDT |
| Std Dev | 6.43 USDT |
| Last | 25.78 USDT |
| Points | 24 |
| Sum | 836.83 USDT |
| Across 24 points the series ranged from 25.78 USDT (23:00) to 51.09 USDT (14:00), averaging 34.87 USDT. 100% of points were positive, 0% negative. The most recent value is 25.78 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":40.150793},{"hour":"1:00","profit":35.053526},{"hour":"2:00","profit":33.254017},{"hour":"3:00","profit":28.293319},{"hour":"4:00","profit":28.573002},{"hour":"5:00","profit":27.974557},{"hour":"6:00","profit":29.975369},{"hour":"7:00","profit":33.03637},{"hour":"8:00","profit":33.647158},{"hour":"9:00","profit":32.397072},{"hour":"10:00","profit":30.146208},{"hour":"11:00","profit":30.814017},{"hour":"12:00","profit":36.316456},{"hour":"13:00","profit":43.546666},{"hour":"14:00","profit":51.090382},{"hour":"15:00","profit":46.876341},{"hour":"16:00","profit":45.50989},{"hour":"17:00","profit":40.208871},{"hour":"18:00","profit":35.939448},{"hour":"19:00","profit":33.557936},{"hour":"20:00","profit":34.439562},{"hour":"21:00","profit":30.514835},{"hour":"22:00","profit":29.735208},{"hour":"23:00","profit":25.775677}]
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.56% @ 4.5 |
| Worst Trade Return | 0.10% @ 0.03333333333333333 |
| Mean | 0.30% |
| Std Dev | 0.22% |
| Last | 0.52% |
| Points | 89 |
| Across 89 points the series ranged from 0.10% (0.03333333333333333) to 0.56% (4.5), averaging 0.30%. 100% of points were positive, 0% negative. The most recent value is 0.52%. | |
| Showing 60 of 89 points (down-sampled for readability). |
[{"hours":0.11666666666666667,"profitPct":0.1267153846,"profit":0.006342105},{"hours":0.4666666666666667,"profitPct":0.1258665644,"profit":0.006319005},{"hours":0.23333333333333334,"profitPct":0.1273126735,"profit":0.0063995625},{"hours":0.36666666666666664,"profitPct":0.1249388566,"profit":0.0062527275},{"hours":0.3333333333333333,"profitPct":0.1229362671,"profit":0.00615714},{"hours":0.25,"profitPct":0.1232680036,"profit":0.00616626},{"hours":0.03333333333333333,"profitPct":0.1226053349,"profit":0.00614802},{"hours":3.1666666666666665,"profitPct":0.1219458724,"profit":0.00612978},{"hours":0.4166666666666667,"profitPct":0.1231020346,"profit":0.0061617},{"hours":1.4166666666666667,"profitPct":0.1241008839,"profit":0.0062297775},{"hours":0.05,"profitPct":0.1258665644,"profit":0.006319005},{"hours":0.7833333333333333,"profitPct":0.1236838101,"profit":0.0062183025},{"hours":0.08333333333333333,"profitPct":0.1231020346,"profit":0.0061617},{"hours":0.5166666666666667,"profitPct":0.1226879927,"profit":0.0061503},{"hours":1.45,"profitPct":0.1213714544,"profit":0.0060735975},{"hours":0.016666666666666666,"profitPct":0.1210443038,"profit":0.0060645375},{"hours":0.03333333333333333,"profitPct":0.1180551416,"profit":0.005941125},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":34,"profitPct":0.0998125,"profit":0.004990625},{"hours":1,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":1.7333333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.4166666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":5.233333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":25.5,"profitPct":0.0998125,"profit":0.004990625},{"hours":3.783333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":2.9833333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.26666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.08333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":55.06666666666667,"profitPct":0.5206375839,"profit":0.02603417},{"hours":48.083333333333336,"profitPct":0.5344178082,"profit":0.0267235625},{"hours":4.5,"profitPct":0.56375,"profit":0.02819201},{"hours":4,"profitPct":0.56375,"profit":0.02819201},{"hours":0.016666666666666666,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0.016666666666666666,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0.016666666666666666,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":11.3,"profitPct":0.5487762238,"profit":0.0274427075},{"hours":0.016666666666666666,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0.03333333333333333,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0.016666666666666666,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":1.7166666666666666,"profitPct":0.56375,"profit":0.02819201},{"hours":0.2,"profitPct":0.5586879433,"profit":0.0279414925},{"hours":0,"profitPct":0.5439236111,"profit":0.0272022725},{"hours":0,"profitPct":0.5297619048,"profit":0.026493075},{"hours":3.216666666666667,"profitPct":0.5074013158,"profit":0.025374125},{"hours":0.05,"profitPct":0.5161666667,"profit":0.025813495},{"hours":0,"profitPct":0.5161666667,"profit":0.025813495}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 89 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 30 trades |
| Std Dev | 42 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 89 trades |
| Across 3 points the series ranged from 0 trades (SL) to 89 trades (TP), averaging 30 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 89
},
{
"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": "79315ada-cff4-4e26-baad-26ecb3c07f4d",
"symbol": "HFTUSDT",
"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": 8068.19426304,
"return_pct": -19.3181,
"total_profit_usdt": 836.82668038,
"avg_profit_per_trade_usdt": 0.00767703,
"fulfilled_trades": 109004,
"active_orders": 661,
"win_rate_pct": 100,
"best_trade_usdt": 0.02819201,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 4929.574985368215,
"max_drawdown_pct": 22.763447844228963,
"max_drawdown_abs_usdt": 2367.5538907625005,
"drawdown_duration_days": 443,
"recovery_days": null,
"cagr_pct": -11.012204677567162,
"volatility_annualized_pct": 18.769808682607636,
"sharpe_annualized": -0.5268238061080714,
"sortino_annualized": -0.6090100348887857,
"time_in_market_pct": 100,
"final_cash_usdt": 7421.8618162108,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -2661.1519073701,
"median_hold_hours": 0.4166666666666667,
"avg_hold_hours": 4.801025641025639,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 79315ada-cff4-4e26-baad-26ecb3c07f4d |
symbol | HFTUSDT |
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 | 8068.19426304 |
return_pct | -19.3181 |
total_profit_usdt | 836.82668038 |
avg_profit_per_trade_usdt | 0.00767703 |
fulfilled_trades | 109004 |
active_orders | 661 |
win_rate_pct | 100 |
best_trade_usdt | 0.02819201 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 4929.574985368215 |
max_drawdown_pct | 22.763447844228963 |
max_drawdown_abs_usdt | 2367.5538907625005 |
drawdown_duration_days | 443 |
recovery_days | null |
cagr_pct | -11.012204677567162 |
volatility_annualized_pct | 18.769808682607636 |
sharpe_annualized | -0.5268238061080714 |
sortino_annualized | -0.6090100348887857 |
time_in_market_pct | 100 |
final_cash_usdt | 7421.8618162108 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -2661.1519073701 |
median_hold_hours | 0.4166666666666667 |
avg_hold_hours | 4.801025641025639 |
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 | HFTUSDT |
| Mode | GET /backtests/{id} | $.mode_name | direct API value | 3LongTimeLong.json |
| Status | GET /backtests/{id} | $.status | direct API value | completed |
| Period start | GET /backtests/{id} | $.config.from | direct API value | 2024-04-24 00:00:01 |
| Period end | GET /backtests/{id} | $.config.to | direct API value | 2026-02-25 23:59:59 |
| Start balance | GET /backtests/{id} | $.start_balance | direct API value | 10,000.00 USDT |
| Final value | GET /backtests/{id} | $.final_value | direct API value | 8,068.19 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -19.32% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +836.83 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,004 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0282 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.0077 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 4929.6 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -22.76% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -2,367.55 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -11.01% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 18.77% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.53 |
| Sortino ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(downside_returns) * sqrt(365) (rf=0) | -0.61 |
| 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.67 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +1.35 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.0152 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 89 |
| 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.8h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.4h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 893 USDT |
Raw API Attachments
/trades. Full trade population: 109,004 closed trades - fetch the complete list via GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d - backtest summary (verbatim)
GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d - backtest summary (verbatim)
{
"id": "79315ada-cff4-4e26-baad-26ecb3c07f4d",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:11.113641Z",
"started_at": "2026-05-09T15:23:18.698390Z",
"completed_at": "2026-05-09T15:43:40.945020Z",
"mode_name": "3LongTimeLong.json",
"symbol": "HFTUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 8068.19426304,
"return_pct": -19.3181,
"total_profit": 836.82668038,
"fulfilled_trades": 109004,
"active_orders": 661,
"win_rate": 100,
"avg_profit": 0.00767703,
"max_profit": 0.02819201,
"min_profit": 0.00499063,
"elapsed_sec": 1074.58,
"max_drawdown": -22.7634,
"profit_factor": null,
"sharpe_ratio": -0.5268,
"total_fees": 819.74926959,
"avg_hold_time_hours": 26.3781,
"tp_count": 109004,
"sl_count": 0,
"tsl_count": 0,
"start_price": 0.3109,
"end_price": 0.0151,
"gross_profit_quote": 1656.57595,
"gross_loss_quote": 0,
"wins": 109004,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 109004,
"consecutive_losses_max": 0,
"holding_minutes_p50": 11,
"holding_minutes_p95": 1627,
"holding_minutes_max": 263598,
"description": "HFTUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -19.32% | 109004 trades | 100% WR",
"summary_text": "Backtest HFTUSDT (Mode: 3LongTimeLong.json)\nPeriod: 2024-04-24 00:00:01 to 2026-02-25 23:59:59\nStarting balance: 10,000.00 USDT\nFinal value: 8,068.19 USDT\nP&L: -1,931.81 USDT (-19.32%)\nResult: LOSS\nCompleted trades: 109004\nOpen orders at end: 661\nWin rate: 100.0%\nAvg. profit/trade: 0.007677 USDT\nBest trade: 0.028192 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 836.826680 USDT\nMax drawdown: -22.76%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.53\nTotal fees: 819.75 USDT\nAvg hold time: 26.4h\nTP / SL / TSL: 109004 / 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: 1074.6s",
"share_token": null,
"config_hash": "bc34bc04f8559f2fafbdd7eb3c3fa4e36e94d5b6209c15517f3c23b0e28bd488",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "HFTUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.0001,
"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/79315ada-cff4-4e26-baad-26ecb3c07f4d/equity - equity series (verbatim, 673 points)
GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 541.9,
"quote_asset_bal": 9825.096532055,
"total_value_mid": 9993.573242055,
"total_value_exit_net": 9993.4468845225,
"total_value": 9993.573242055,
"base_cost_quote": 175.6639792475,
"unrealized_pnl_exit_net": -7.31362678
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 672.6,
"quote_asset_bal": 9785.18981249,
"total_value_mid": 9993.09047249,
"total_value_exit_net": 9992.934546995,
"total_value": 9993.09047249,
"base_cost_quote": 215.8216949625,
"unrealized_pnl_exit_net": -8.0769604575
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 992.3,
"quote_asset_bal": 9689.88527643,
"total_value_mid": 9982.91146643,
"total_value_exit_net": 9982.6916967875,
"total_value": 9982.91146643,
"base_cost_quote": 311.1918489725,
"unrealized_pnl_exit_net": -18.385428615
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 1047.4,
"quote_asset_bal": 9674.6630711775,
"total_value_mid": 9983.2271111775,
"total_value_exit_net": 9982.9956881475,
"total_value": 9983.2271111775,
"base_cost_quote": 326.261452705,
"unrealized_pnl_exit_net": -17.928835735
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 1089,
"quote_asset_bal": 9664.63659698,
"total_value_mid": 9977.17959698,
"total_value_exit_net": 9976.94518973,
"total_value": 9977.17959698,
"base_cost_quote": 336.2989051525,
"unrealized_pnl_exit_net": -23.9903124025
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 1181.7,
"quote_asset_bal": 9639.7148179425,
"total_value_mid": 9975.0812779425,
"total_value_exit_net": 9974.8297530975,
"total_value": 9975.0812779425,
"base_cost_quote": 361.34648676,
"unrealized_pnl_exit_net": -26.231551605
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 1528.4,
"quote_asset_bal": 9544.7718142401,
"total_value_mid": 9969.9726942401,
"total_value_exit_net": 9969.6537935801,
"total_value": 9969.9726942401,
"base_cost_quote": 456.6889900475,
"unrealized_pnl_exit_net": -31.8070107075
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 1055.4,
"quote_asset_bal": 9680.7709880976,
"total_value_mid": 9983.5652480976,
"total_value_exit_net": 9983.3381524026,
"total_value": 9983.5652480976,
"base_cost_quote": 321.2551107625,
"unrealized_pnl_exit_net": -18.6879464575
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 1092.3,
"quote_asset_bal": 9670.2121854551,
"total_value_mid": 9995.6083554551,
"total_value_exit_net": 9995.3643083276,
"total_value": 9995.6083554551,
"base_cost_quote": 331.281374825,
"unrealized_pnl_exit_net": -6.1292519525
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 814,
"quote_asset_bal": 9755.7149150476,
"total_value_mid": 10007.8921150476,
"total_value_exit_net": 10007.7029821476,
"total_value": 10007.8921150476,
"base_cost_quote": 245.92850815,
"unrealized_pnl_exit_net": 6.05955895
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 687,
"quote_asset_bal": 9795.5615275551,
"total_value_mid": 10012.3787275551,
"total_value_exit_net": 10012.2161146551,
"total_value": 10012.3787275551,
"base_cost_quote": 205.80015444,
"unrealized_pnl_exit_net": 10.85443266
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 422.2,
"quote_asset_bal": 9881.6721133476,
"total_value_mid": 10020.4914733476,
"total_value_exit_net": 10020.3873588276,
"total_value": 10020.4914733476,
"base_cost_quote": 120.4435149375,
"unrealized_pnl_exit_net": 18.2717305425
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 620.9,
"quote_asset_bal": 9817.0555568801,
"total_value_mid": 10015.6193768801,
"total_value_exit_net": 10015.4704540151,
"total_value": 10015.6193768801,
"base_cost_quote": 185.807351075,
"unrealized_pnl_exit_net": 12.60754606
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 828.9,
"quote_asset_bal": 9752.1823361351,
"total_value_mid": 10008.5611061351,
"total_value_exit_net": 10008.3688220576,
"total_value": 10008.5611061351,
"base_cost_quote": 251.0536191025,
"unrealized_pnl_exit_net": 5.13286682
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 846.8,
"quote_asset_bal": 9747.3973202976,
"total_value_mid": 10008.4657602976,
"total_value_exit_net": 10008.2699589676,
"total_value": 10008.4657602976,
"base_cost_quote": 256.0794656625,
"unrealized_pnl_exit_net": 4.7931730075
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 771.5,
"quote_asset_bal": 9772.5611209926,
"total_value_mid": 10018.7467709926,
"total_value_exit_net": 10018.5621317551,
"total_value": 10018.7467709926,
"base_cost_quote": 230.92206175,
"unrealized_pnl_exit_net": 15.0789490125
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 806.2,
"quote_asset_bal": 9762.8945584501,
"total_value_mid": 10008.1405984501,
"total_value_exit_net": 10007.9566639201,
"total_value": 10008.1405984501,
"base_cost_quote": 240.9279305275,
"unrealized_pnl_exit_net": 4.1341749425
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 1059,
"quote_asset_bal": 9687.2216004351,
"total_value_mid": 10000.7915004351,
"total_value_exit_net": 10000.5563230101,
"total_value": 10000.7915004351,
"base_cost_quote": 316.2970349925,
"unrealized_pnl_exit_net": -2.9623124175
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 1214.4,
"quote_asset_bal": 9642.3883292076,
"total_value_mid": 9993.2284892076,
"total_value_exit_net": 9992.9653590876,
"total_value": 9993.2284892076,
"base_cost_quote": 361.448383125,
"unrealized_pnl_exit_net": -10.871353245
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 1322.5,
"quote_asset_bal": 9612.2131913176,
"total_value_mid": 9994.1511913176,
"total_value_exit_net": 9993.8647378176,
"total_value": 9994.1511913176,
"base_cost_quote": 391.574040435,
"unrealized_pnl_exit_net": -9.922493935
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 1500.6,
"quote_asset_bal": 9562.5519405802,
"total_value_mid": 9981.3694005802,
"total_value_exit_net": 9981.0552874852,
"total_value": 9981.3694005802,
"base_cost_quote": 441.7313602325,
"unrealized_pnl_exit_net": -23.2280133275
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 1067.1,
"quote_asset_bal": 9688.0912203326,
"total_value_mid": 10004.4863703327,
"total_value_exit_net": 10004.2490739702,
"total_value": 10004.4863703327,
"base_cost_quote": 316.307312695,
"unrealized_pnl_exit_net": -0.1494590575
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 1274,
"quote_asset_bal": 9628.2921134252,
"total_value_mid": 9998.6439134252,
"total_value_exit_net": 9998.3661495752,
"total_value": 9998.6439134252,
"base_cost_quote": 376.539813215,
"unrealized_pnl_exit_net": -6.465777065
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 936.4,
"quote_asset_bal": 9728.9342876727,
"total_value_mid": 10011.8207276727,
"total_value_exit_net": 10011.6085628427,
"total_value": 10011.8207276727,
"base_cost_quote": 276.115951765,
"unrealized_pnl_exit_net": 6.558323405
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 921,
"quote_asset_bal": 9734.0336175302,
"total_value_mid": 10013.6492175302,
"total_value_exit_net": 10013.4395058302,
"total_value": 10013.6492175302,
"base_cost_quote": 271.116204765,
"unrealized_pnl_exit_net": 8.289683535
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 1262.6,
"quote_asset_bal": 9633.7032750077,
"total_value_mid": 9995.0593950077,
"total_value_exit_net": 9994.7883779177,
"total_value": 9995.0593950077,
"base_cost_quote": 371.4340567675,
"unrealized_pnl_exit_net": -10.3489538575
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 846.1,
"quote_asset_bal": 9758.8680161952,
"total_value_mid": 10020.7359661952,
"total_value_exit_net": 10020.5395652327,
"total_value": 10020.7359661952,
"base_cost_quote": 246.00624641,
"unrealized_pnl_exit_net": 15.6653026275
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 864.5,
"quote_asset_bal": 9753.6338258127,
"total_value_mid": 10021.3694758127,
"total_value_exit_net": 10021.1686740752,
"total_value": 10021.3694758127,
"base_cost_quote": 251.03401441,
"unrealized_pnl_exit_net": 16.5008338525
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 948.3,
"quote_asset_bal": 9728.2464882877,
"total_value_mid": 10018.9004382877,
"total_value_exit_net": 10018.6824478252,
"total_value": 10018.9004382877,
"base_cost_quote": 276.1430620825,
"unrealized_pnl_exit_net": 14.292897455
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 1250.7000000001,
"quote_asset_bal": 9638.0356884802,
"total_value_mid": 10003.4902284802,
"total_value_exit_net": 10003.2161375752,
"total_value": 10003.4902284802,
"base_cost_quote": 366.5050427775,
"unrealized_pnl_exit_net": -1.3245936825
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 1187.4000000001,
"quote_asset_bal": 9658.0069706402,
"total_value_mid": 10010.4272906402,
"total_value_exit_net": 10010.1629754002,
"total_value": 10010.4272906402,
"base_cost_quote": 346.3919993,
"unrealized_pnl_exit_net": 5.76400546
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 1238.3000000001,
"quote_asset_bal": 9643.0815645977,
"total_value_mid": 10008.8753845977,
"total_value_exit_net": 10008.6010392327,
"total_value": 10008.8753845977,
"base_cost_quote": 361.43943642,
"unrealized_pnl_exit_net": 4.080038215
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 971.8000000001,
"quote_asset_bal": 9723.4845522402,
"total_value_mid": 10017.9399522402,
"total_value_exit_net": 10017.7191106902,
"total_value": 10017.9399522402,
"base_cost_quote": 281.15887112,
"unrealized_pnl_exit_net": 13.07568733
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 842.6000000001,
"quote_asset_bal": 9763.4467698202,
"total_value_mid": 10024.8212898202,
"total_value_exit_net": 10024.6252589302,
"total_value": 10024.8212898202,
"base_cost_quote": 241.01518592,
"unrealized_pnl_exit_net": 20.16330319
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 959.3000000001,
"quote_asset_bal": 9728.2942970977,
"total_value_mid": 10021.7441670977,
"total_value_exit_net": 10021.5240796952,
"total_value": 10021.7441670977,
"base_cost_quote": 276.161585965,
"unrealized_pnl_exit_net": 17.0681966325
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 1163.9000000001,
"quote_asset_bal": 9668.2523914527,
"total_value_mid": 10012.1848414527,
"total_value_exit_net": 10011.9268921152,
"total_value": 10012.1848414527,
"base_cost_quote": 336.4012618625,
"unrealized_pnl_exit_net": 7.2732388
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 1269.3000000001,
"quote_asset_bal": 9638.2802263102,
"total_value_mid": 10008.7888963102,
"total_value_exit_net": 10008.5110148077,
"total_value": 10008.7888963102,
"base_cost_quote": 366.5333840175,
"unrealized_pnl_exit_net": 3.69740448
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 1201.8000000001,
"quote_asset_bal": 9658.5910798552,
"total_value_mid": 10012.1606398552,
"total_value_exit_net": 10011.8954626852,
"total_value": 10012.1606398552,
"base_cost_quote": 346.431048565,
"unrealized_pnl_exit_net": 6.873334265
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 1186.3000000001,
"quote_asset_bal": 9663.4164416127,
"total_value_mid": 10012.6631616127,
"total_value_exit_net": 10012.4012265727,
"total_value": 10012.6631616127,
"base_cost_quote": 341.42035336,
"unrealized_pnl_exit_net": 7.5644316
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 1222.5000000001,
"quote_asset_bal": 9653.5333155552,
"total_value_mid": 10012.0925655552,
"total_value_exit_net": 10011.8236461177,
"total_value": 10012.0925655552,
"base_cost_quote": 351.4561045325,
"unrealized_pnl_exit_net": 6.83422603
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 1154.6000000001,
"quote_asset_bal": 9673.6731300627,
"total_value_mid": 10019.9376700627,
"total_value_exit_net": 10019.6779716577,
"total_value": 10019.9376700627,
"base_cost_quote": 331.36878033,
"unrealized_pnl_exit_net": 14.636061265
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 795.7000000001,
"quote_asset_bal": 9784.2473204227,
"total_value_mid": 10033.6197004227,
"total_value_exit_net": 10033.4326711377,
"total_value": 10033.6197004227,
"base_cost_quote": 220.890964065,
"unrealized_pnl_exit_net": 28.29438665
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 860.3000000001,
"quote_asset_bal": 9764.2968010977,
"total_value_mid": 10035.0332110977,
"total_value_exit_net": 10034.8301587902,
"total_value": 10035.0332110977,
"base_cost_quote": 240.962046095,
"unrealized_pnl_exit_net": 29.5713115975
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 924.3000000001,
"quote_asset_bal": 9744.3352955702,
"total_value_mid": 10032.0698855703,
"total_value_exit_net": 10031.8540846278,
"total_value": 10032.0698855703,
"base_cost_quote": 261.0300157925,
"unrealized_pnl_exit_net": 26.488773265
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 962.0000000001,
"quote_asset_bal": 9729.1501709077,
"total_value_mid": 10001.6847709077,
"total_value_exit_net": 10001.4803699577,
"total_value": 10001.6847709077,
"base_cost_quote": 276.038653835,
"unrealized_pnl_exit_net": -3.708454785
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 1622.6000000001,
"quote_asset_bal": 9548.5252212102,
"total_value_mid": 9979.9745612102,
"total_value_exit_net": 9979.6509742052,
"total_value": 9979.9745612102,
"base_cost_quote": 456.6825452175,
"unrealized_pnl_exit_net": -25.5567922225
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 1439.2000000001,
"quote_asset_bal": 9598.6604684002,
"total_value_mid": 9988.3958284002,
"total_value_exit_net": 9988.1035268802,
"total_value": 9988.3958284002,
"base_cost_quote": 406.541577675,
"unrealized_pnl_exit_net": -17.098519195
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 1554.4000000001,
"quote_asset_bal": 9568.6401427527,
"total_value_mid": 9981.7996627528,
"total_value_exit_net": 9981.4897931128,
"total_value": 9981.7996627528,
"base_cost_quote": 436.652984305,
"unrealized_pnl_exit_net": -23.803333945
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 1787.2000000001,
"quote_asset_bal": 9509.2753752627,
"total_value_mid": 9969.8368152628,
"total_value_exit_net": 9969.4913941828,
"total_value": 9969.8368152628,
"base_cost_quote": 496.88594517,
"unrealized_pnl_exit_net": -36.66992625
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 1522.1000000001,
"quote_asset_bal": 9580.0457166727,
"total_value_mid": 9989.3384066727,
"total_value_exit_net": 9989.0314371552,
"total_value": 9989.3384066727,
"base_cost_quote": 426.5942358975,
"unrealized_pnl_exit_net": -17.608515415
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 2025.4000000001,
"quote_asset_bal": 9450.3316928827,
"total_value_mid": 9959.9223328827,
"total_value_exit_net": 9959.5401399027,
"total_value": 9959.9223328827,
"base_cost_quote": 557.01128538,
"unrealized_pnl_exit_net": -47.80283836
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 2174.6000000001,
"quote_asset_bal": 9416.0767116077,
"total_value_mid": 9941.8949916077,
"total_value_exit_net": 9941.5006278977,
"total_value": 9941.8949916077,
"base_cost_quote": 592.1775903425,
"unrealized_pnl_exit_net": -66.7536740525
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 1988.7000000001,
"quote_asset_bal": 9461.7945079827,
"total_value_mid": 9955.3898479827,
"total_value_exit_net": 9955.0196514777,
"total_value": 9955.3898479827,
"base_cost_quote": 546.9809983025,
"unrealized_pnl_exit_net": -53.7558548075
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 1829.0000000001,
"quote_asset_bal": 9502.3878028752,
"total_value_mid": 9972.9895028752,
"total_value_exit_net": 9972.6365516002,
"total_value": 9972.9895028752,
"base_cost_quote": 506.8796047975,
"unrealized_pnl_exit_net": -36.6308560725
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 2723.5000000001,
"quote_asset_bal": 9287.5710156152,
"total_value_mid": 9907.7119656152,
"total_value_exit_net": 9907.2468599027,
"total_value": 9907.7119656152,
"base_cost_quote": 722.5738742625,
"unrealized_pnl_exit_net": -102.898029975
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 3349.6000000001,
"quote_asset_bal": 9153.8551910777,
"total_value_mid": 9860.9557510777,
"total_value_exit_net": 9860.4254256577,
"total_value": 9860.9557510777,
"base_cost_quote": 857.9382614675,
"unrealized_pnl_exit_net": -151.3680268875
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 3465.5000000001,
"quote_asset_bal": 9129.6663291227,
"total_value_mid": 9855.3420291227,
"total_value_exit_net": 9854.7977723477,
"total_value": 9855.3420291227,
"base_cost_quote": 882.9859731725,
"unrealized_pnl_exit_net": -157.8545299475
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 3392.4000000001,
"quote_asset_bal": 9145.5949368426,
"total_value_mid": 9862.0698168427,
"total_value_exit_net": 9861.5324606827,
"total_value": 9862.0698168427,
"base_cost_quote": 868.0126515975,
"unrealized_pnl_exit_net": -152.0751277575
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 3489.5000000001,
"quote_asset_bal": 9126.4567904626,
"total_value_mid": 9851.9238404626,
"total_value_exit_net": 9851.3797401751,
"total_value": 9851.9238404626,
"base_cost_quote": 888.0307739375,
"unrealized_pnl_exit_net": -163.107824225
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 3635.5000000001,
"quote_asset_bal": 9096.6844099426,
"total_value_mid": 9839.7806099426,
"total_value_exit_net": 9839.2232877926,
"total_value": 9839.7806099426,
"base_cost_quote": 918.1261085225,
"unrealized_pnl_exit_net": -175.5872306725
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 3835.7000000001,
"quote_asset_bal": 9057.0198161426,
"total_value_mid": 9823.0091061426,
"total_value_exit_net": 9822.4346141751,
"total_value": 9823.0091061426,
"base_cost_quote": 958.237679655,
"unrealized_pnl_exit_net": -192.8228816225
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 3465.6000000001,
"quote_asset_bal": 9133.5748732276,
"total_value_mid": 9854.4196732276,
"total_value_exit_net": 9853.8790396276,
"total_value": 9854.4196732276,
"base_cost_quote": 883.03890284,
"unrealized_pnl_exit_net": -162.73473644
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 3393.8000000001,
"quote_asset_bal": 9149.2074572376,
"total_value_mid": 9863.6023572376,
"total_value_exit_net": 9863.0665610626,
"total_value": 9863.6023572376,
"base_cost_quote": 867.97749525,
"unrealized_pnl_exit_net": -154.118391425
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 3564.5000000001,
"quote_asset_bal": 9114.6171241001,
"total_value_mid": 9843.9138241001,
"total_value_exit_net": 9843.3668515751,
"total_value": 9843.9138241001,
"base_cost_quote": 903.0790917175,
"unrealized_pnl_exit_net": -174.3293642425
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 3396.4000000001,
"quote_asset_bal": 9150.1852520701,
"total_value_mid": 9871.2409720701,
"total_value_exit_net": 9870.7001802801,
"total_value": 9871.2409720701,
"base_cost_quote": 867.9910554125,
"unrealized_pnl_exit_net": -147.4761272025
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 3609.7000000001,
"quote_asset_bal": 9105.5845128826,
"total_value_mid": 9854.9582328826,
"total_value_exit_net": 9854.3962025926,
"total_value": 9854.9582328826,
"base_cost_quote": 913.106016275,
"unrealized_pnl_exit_net": -164.294326565
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 3733.7000000001,
"quote_asset_bal": 9080.7759517826,
"total_value_mid": 9837.5969417826,
"total_value_exit_net": 9837.0293260401,
"total_value": 9837.5969417826,
"base_cost_quote": 938.190015175,
"unrealized_pnl_exit_net": -181.9366409175
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 3372.0000000001,
"quote_asset_bal": 9156.3930258275,
"total_value_mid": 9873.2802258276,
"total_value_exit_net": 9872.7425604276,
"total_value": 9873.2802258276,
"base_cost_quote": 862.96325739,
"unrealized_pnl_exit_net": -146.61372279
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 3585.6000000001,
"quote_asset_bal": 9111.5717032425,
"total_value_mid": 9853.4323432426,
"total_value_exit_net": 9852.8759477626,
"total_value": 9853.4323432426,
"base_cost_quote": 908.106549485,
"unrealized_pnl_exit_net": -166.802304965
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 3513.5000000001,
"quote_asset_bal": 9126.9364102325,
"total_value_mid": 9860.5552102326,
"total_value_exit_net": 9860.0049961326,
"total_value": 9860.5552102326,
"base_cost_quote": 893.05444887,
"unrealized_pnl_exit_net": -159.98586297
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 3807.6000000001,
"quote_asset_bal": 9067.4307842625,
"total_value_mid": 9833.5199042625,
"total_value_exit_net": 9832.9453374225,
"total_value": 9833.5199042625,
"base_cost_quote": 953.2669443975,
"unrealized_pnl_exit_net": -187.7523912375
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 5536.6000000001,
"quote_asset_bal": 8747.45707024,
"total_value_mid": 9710.82547024,
"total_value_exit_net": 9710.10294394,
"total_value": 9710.82547024,
"base_cost_quote": 1274.0946448425,
"unrealized_pnl_exit_net": -311.4487711425
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 6027.4000000001,
"quote_asset_bal": 8669.403325495,
"total_value_mid": 9706.7188654951,
"total_value_exit_net": 9705.9408788401,
"total_value": 9706.7188654951,
"base_cost_quote": 1354.27650617,
"unrealized_pnl_exit_net": -317.738952825
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 5408.1000000001,
"quote_asset_bal": 8780.56537583,
"total_value_mid": 9778.3598258301,
"total_value_exit_net": 9777.6114799926,
"total_value": 9778.3598258301,
"base_cost_quote": 1244.020456105,
"unrealized_pnl_exit_net": -246.9743519425
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 5993.7000000001,
"quote_asset_bal": 8676.2469358675,
"total_value_mid": 9715.5545158675,
"total_value_exit_net": 9714.7750351825,
"total_value": 9715.5545158675,
"base_cost_quote": 1349.2836143075,
"unrealized_pnl_exit_net": -310.7555149925
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 5265.6000000001,
"quote_asset_bal": 8808.12692211,
"total_value_mid": 9762.2536421101,
"total_value_exit_net": 9761.5380470701,
"total_value": 9762.2536421101,
"base_cost_quote": 1218.9420313825,
"unrealized_pnl_exit_net": -265.5309064225
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 5182.5000000001,
"quote_asset_bal": 8823.97852394,
"total_value_mid": 9772.89427394,
"total_value_exit_net": 9772.1825871275,
"total_value": 9772.89427394,
"base_cost_quote": 1203.89372361,
"unrealized_pnl_exit_net": -255.6896604225
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 5236.1000000001,
"quote_asset_bal": 8814.6421453675,
"total_value_mid": 9773.3720553675,
"total_value_exit_net": 9772.653007935,
"total_value": 9773.3720553675,
"base_cost_quote": 1213.9342983975,
"unrealized_pnl_exit_net": -255.92343583
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 5711.9000000001,
"quote_asset_bal": 8730.320663035,
"total_value_mid": 9735.0438730351,
"total_value_exit_net": 9734.2903306276,
"total_value": 9735.0438730351,
"base_cost_quote": 1299.14975209,
"unrealized_pnl_exit_net": -295.1800844975
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 5458.4000000001,
"quote_asset_bal": 8776.049184075,
"total_value_mid": 9764.0195840751,
"total_value_exit_net": 9763.2786062751,
"total_value": 9764.0195840751,
"base_cost_quote": 1254.03326008,
"unrealized_pnl_exit_net": -266.80383788
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 5237.3000000001,
"quote_asset_bal": 8816.54754158,
"total_value_mid": 9782.30566158,
"total_value_exit_net": 9781.58134299,
"total_value": 9782.30566158,
"base_cost_quote": 1213.955364185,
"unrealized_pnl_exit_net": -248.921562775
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 4756.7000000001,
"quote_asset_bal": 8907.2601430176,
"total_value_mid": 9823.8762330176,
"total_value_exit_net": 9823.1887709501,
"total_value": 9823.8762330176,
"base_cost_quote": 1123.71467439,
"unrealized_pnl_exit_net": -207.7860464575
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 4497.6000000001,
"quote_asset_bal": 8958.001178235,
"total_value_mid": 9852.5738182351,
"total_value_exit_net": 9851.9028887551,
"total_value": 9852.5738182351,
"base_cost_quote": 1073.57089474,
"unrealized_pnl_exit_net": -179.66918422
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 4420.8000000001,
"quote_asset_bal": 8973.984755315,
"total_value_mid": 9863.007635315,
"total_value_exit_net": 9862.340868155,
"total_value": 9863.007635315,
"base_cost_quote": 1058.5238278975,
"unrealized_pnl_exit_net": -170.1677150575
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 4470.7000000001,
"quote_asset_bal": 8964.4978615225,
"total_value_mid": 9858.6378615225,
"total_value_exit_net": 9857.9672565225,
"total_value": 9858.6378615225,
"base_cost_quote": 1068.558358155,
"unrealized_pnl_exit_net": -175.088963155
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 4701.9000000001,
"quote_asset_bal": 8919.9376148225,
"total_value_mid": 9836.8081148225,
"total_value_exit_net": 9836.1204619475,
"total_value": 9836.8081148225,
"base_cost_quote": 1113.7044823725,
"unrealized_pnl_exit_net": -197.5216352475
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 4177.1000000001,
"quote_asset_bal": 9025.9566080625,
"total_value_mid": 9883.9329480625,
"total_value_exit_net": 9883.2894658075,
"total_value": 9883.9329480625,
"base_cost_quote": 1008.382460055,
"unrealized_pnl_exit_net": -151.04960231
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 4299.7000000001,
"quote_asset_bal": 9001.1088260724,
"total_value_mid": 9873.5179560725,
"total_value_exit_net": 9872.863649225,
"total_value": 9873.5179560725,
"base_cost_quote": 1033.450246805,
"unrealized_pnl_exit_net": -161.6954236525
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 3871.0000000001,
"quote_asset_bal": 9092.2493508999,
"total_value_mid": 9926.0627508999,
"total_value_exit_net": 9925.4373908499,
"total_value": 9926.0627508999,
"base_cost_quote": 943.120750455,
"unrealized_pnl_exit_net": -109.932710505
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 4130.2000000001,
"quote_asset_bal": 9038.7690324149,
"total_value_mid": 9909.4151924149,
"total_value_exit_net": 9908.7622077949,
"total_value": 9909.4151924149,
"base_cost_quote": 998.317276825,
"unrealized_pnl_exit_net": -128.324101445
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 4273.4000000001,
"quote_asset_bal": 9009.7431435549,
"total_value_mid": 9900.7470435549,
"total_value_exit_net": 9900.0787906299,
"total_value": 9900.7470435549,
"base_cost_quote": 1028.394858105,
"unrealized_pnl_exit_net": -138.05921103
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 4516.9000000001,
"quote_asset_bal": 8960.1142168099,
"total_value_mid": 9871.1729468099,
"total_value_exit_net": 9870.4896527624,
"total_value": 9871.1729468099,
"base_cost_quote": 1078.5083450525,
"unrealized_pnl_exit_net": -168.1329091
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 4720.5000000001,
"quote_asset_bal": 8921.0700984899,
"total_value_mid": 9834.9588984899,
"total_value_exit_net": 9834.2734818899,
"total_value": 9834.9588984899,
"base_cost_quote": 1118.603223675,
"unrealized_pnl_exit_net": -205.399840275
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 4590.4000000001,
"quote_asset_bal": 8946.8541686849,
"total_value_mid": 9853.4581686849,
"total_value_exit_net": 9852.7782156849,
"total_value": 9853.4581686849,
"base_cost_quote": 1093.545684605,
"unrealized_pnl_exit_net": -187.621637605
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 4717.9000000001,
"quote_asset_bal": 8922.3009177698,
"total_value_mid": 9844.1785777699,
"total_value_exit_net": 9843.4871695249,
"total_value": 9844.1785777699,
"base_cost_quote": 1118.6394608325,
"unrealized_pnl_exit_net": -197.4532090775
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 5028.4000000001,
"quote_asset_bal": 8862.4854511898,
"total_value_mid": 9825.4240511899,
"total_value_exit_net": 9824.7018472399,
"total_value": 9825.4240511899,
"base_cost_quote": 1178.7973854625,
"unrealized_pnl_exit_net": -216.5809894125
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 4641.8000000001,
"quote_asset_bal": 8938.4858483098,
"total_value_mid": 9848.7428283099,
"total_value_exit_net": 9848.0601355749,
"total_value": 9848.7428283099,
"base_cost_quote": 1103.613950145,
"unrealized_pnl_exit_net": -194.03966288
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 5346.7000000001,
"quote_asset_bal": 8803.7389923073,
"total_value_mid": 9803.5718923074,
"total_value_exit_net": 9802.8220176324,
"total_value": 9803.5718923074,
"base_cost_quote": 1238.9581722375,
"unrealized_pnl_exit_net": -239.8751469125
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 5699.8000000001,
"quote_asset_bal": 8739.3208352149,
"total_value_mid": 9772.6945752149,
"total_value_exit_net": 9771.9195449099,
"total_value": 9772.6945752149,
"base_cost_quote": 1304.0953885375,
"unrealized_pnl_exit_net": -271.4966788425
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 6035.9000000001,
"quote_asset_bal": 8680.4141363424,
"total_value_mid": 9745.7504863424,
"total_value_exit_net": 9744.9514840799,
"total_value": 9745.7504863424,
"base_cost_quote": 1364.2741687975,
"unrealized_pnl_exit_net": -299.73682106
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 6899.4000000001,
"quote_asset_bal": 8536.6651404198,
"total_value_mid": 9666.7868604198,
"total_value_exit_net": 9665.9392691298,
"total_value": 9666.7868604198,
"base_cost_quote": 1509.603333985,
"unrealized_pnl_exit_net": -380.329205275
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 7788.0000000001,
"quote_asset_bal": 8397.2934806898,
"total_value_mid": 9583.4058806899,
"total_value_exit_net": 9582.5162963899,
"total_value": 9583.4058806899,
"base_cost_quote": 1649.9373556225,
"unrealized_pnl_exit_net": -464.7145399225
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 8369.3000000001,
"quote_asset_bal": 8312.6358882674,
"total_value_mid": 9532.8798282674,
"total_value_exit_net": 9531.9646453124,
"total_value": 9532.8798282674,
"base_cost_quote": 1735.097367765,
"unrealized_pnl_exit_net": -515.76861072
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 9379.6000000001,
"quote_asset_bal": 8180.9768060049,
"total_value_mid": 9412.5182860049,
"total_value_exit_net": 9411.5946298949,
"total_value": 9412.5182860049,
"base_cost_quote": 1870.3491005425,
"unrealized_pnl_exit_net": -639.7312766525
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 9380.8000000001,
"quote_asset_bal": 8182.0144969474,
"total_value_mid": 9450.2986569474,
"total_value_exit_net": 9449.3474438274,
"total_value": 9450.2986569474,
"base_cost_quote": 1870.4247172125,
"unrealized_pnl_exit_net": -603.0917703325
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 9789.8000000001,
"quote_asset_bal": 8127.9752791799,
"total_value_mid": 9422.1868391799,
"total_value_exit_net": 9421.2161805099,
"total_value": 9422.1868391799,
"base_cost_quote": 1925.464876395,
"unrealized_pnl_exit_net": -632.223975065
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 8855.1000000001,
"quote_asset_bal": 8258.7885872699,
"total_value_mid": 9566.6868572699,
"total_value_exit_net": 9565.7059335674,
"total_value": 9566.6868572699,
"base_cost_quote": 1795.22184733,
"unrealized_pnl_exit_net": -488.3045010325
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 8855.7000000001,
"quote_asset_bal": 8259.1348807374,
"total_value_mid": 9571.5496207375,
"total_value_exit_net": 9570.5653096825,
"total_value": 9571.5496207375,
"base_cost_quote": 1795.217744255,
"unrealized_pnl_exit_net": -483.78731531
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 8721.4000000001,
"quote_asset_bal": 8279.3595420175,
"total_value_mid": 9582.3367020175,
"total_value_exit_net": 9581.3594691475,
"total_value": 9582.3367020175,
"base_cost_quote": 1775.174162835,
"unrealized_pnl_exit_net": -473.174235705
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 9346.4000000001,
"quote_asset_bal": 8189.56495062,
"total_value_mid": 9509.27663062,
"total_value_exit_net": 9508.28684686,
"total_value": 9509.27663062,
"base_cost_quote": 1865.3703692925,
"unrealized_pnl_exit_net": -546.6484730525
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 8668.3000000002,
"quote_asset_bal": 8290.264300455,
"total_value_mid": 9606.979070455,
"total_value_exit_net": 9605.9915343775,
"total_value": 9606.979070455,
"base_cost_quote": 1765.14622752,
"unrealized_pnl_exit_net": -449.4189935975
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 8506.4000000002,
"quote_asset_bal": 8315.5822463425,
"total_value_mid": 9626.4184863425,
"total_value_exit_net": 9625.4353591625,
"total_value": 9626.4184863425,
"base_cost_quote": 1740.10822309,
"unrealized_pnl_exit_net": -430.25511027
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 8837.8000000002,
"quote_asset_bal": 8265.77492473,
"total_value_mid": 9582.60712473,
"total_value_exit_net": 9581.61950058,
"total_value": 9582.60712473,
"base_cost_quote": 1790.1994933875,
"unrealized_pnl_exit_net": -474.3549175375
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 8938.2000000002,
"quote_asset_bal": 8251.005043995,
"total_value_mid": 9540.787303995,
"total_value_exit_net": 9539.8199673,
"total_value": 9540.787303995,
"base_cost_quote": 1805.2782940125,
"unrealized_pnl_exit_net": -516.4633707075
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 9437.7000000002,
"quote_asset_bal": 8181.20033595,
"total_value_mid": 9500.59079595,
"total_value_exit_net": 9499.601253105,
"total_value": 9500.59079595,
"base_cost_quote": 1875.41907017,
"unrealized_pnl_exit_net": -557.018153015
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 9013.6000000002,
"quote_asset_bal": 8241.5766598975,
"total_value_mid": 9541.3377798975,
"total_value_exit_net": 9540.3629590575,
"total_value": 9541.3377798975,
"base_cost_quote": 1815.287945625,
"unrealized_pnl_exit_net": -516.501646465
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 8239.8000000002,
"quote_asset_bal": 8362.3413825225,
"total_value_mid": 9602.4312825226,
"total_value_exit_net": 9601.5012150976,
"total_value": 9602.4312825226,
"base_cost_quote": 1695.00321969,
"unrealized_pnl_exit_net": -455.843387115
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 7782.4000000002,
"quote_asset_bal": 8432.911741795,
"total_value_mid": 9653.1920617951,
"total_value_exit_net": 9652.2768515551,
"total_value": 9653.1920617951,
"base_cost_quote": 1624.87226089,
"unrealized_pnl_exit_net": -405.50715113
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 8094.7000000002,
"quote_asset_bal": 8383.3721174125,
"total_value_mid": 9654.2400174126,
"total_value_exit_net": 9653.2868664876,
"total_value": 9654.2400174126,
"base_cost_quote": 1674.97344862,
"unrealized_pnl_exit_net": -405.058699545
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 7535.5000000002,
"quote_asset_bal": 8474.1934638725,
"total_value_mid": 9716.0438638726,
"total_value_exit_net": 9715.1124760726,
"total_value": 9716.0438638726,
"base_cost_quote": 1584.78225592,
"unrealized_pnl_exit_net": -343.86324372
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 7263.5000000002,
"quote_asset_bal": 8519.9120679225,
"total_value_mid": 9733.6429179226,
"total_value_exit_net": 9732.7326197851,
"total_value": 9733.6429179226,
"base_cost_quote": 1539.675831455,
"unrealized_pnl_exit_net": -326.8552795925
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 6852.6000000002,
"quote_asset_bal": 8591.0647344925,
"total_value_mid": 9797.8075944926,
"total_value_exit_net": 9796.9025373476,
"total_value": 9797.8075944926,
"base_cost_quote": 1469.5029912675,
"unrealized_pnl_exit_net": -263.6651884125
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 6568.3000000002,
"quote_asset_bal": 8642.08054742,
"total_value_mid": 9814.52209742,
"total_value_exit_net": 9813.6427662575,
"total_value": 9814.52209742,
"base_cost_quote": 1419.3739626725,
"unrealized_pnl_exit_net": -247.811743835
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 6854.4000000002,
"quote_asset_bal": 8592.632814975,
"total_value_mid": 9781.185774975,
"total_value_exit_net": 9780.294360255,
"total_value": 9781.185774975,
"base_cost_quote": 1469.520534415,
"unrealized_pnl_exit_net": -281.858989135
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 8067.1000000002,
"quote_asset_bal": 8393.4715237025,
"total_value_mid": 9658.3928037025,
"total_value_exit_net": 9657.4441127425,
"total_value": 9658.3928037025,
"base_cost_quote": 1669.96245319,
"unrealized_pnl_exit_net": -405.98986415
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 8654.0000000002,
"quote_asset_bal": 8304.1253010175,
"total_value_mid": 9592.7059010175,
"total_value_exit_net": 9591.7394655675,
"total_value": 9592.7059010175,
"base_cost_quote": 1760.1763929375,
"unrealized_pnl_exit_net": -472.5622283875
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 9055.5000000002,
"quote_asset_bal": 8244.618083935,
"total_value_mid": 9566.721083935,
"total_value_exit_net": 9565.729506685,
"total_value": 9566.721083935,
"base_cost_quote": 1820.31313169,
"unrealized_pnl_exit_net": -499.20170894
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 8925.0000000002,
"quote_asset_bal": 8265.0165821575,
"total_value_mid": 9568.0665821576,
"total_value_exit_net": 9567.0892946576,
"total_value": 9568.0665821576,
"base_cost_quote": 1800.242990365,
"unrealized_pnl_exit_net": -498.170277865
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 9064.9000000002,
"quote_asset_bal": 8245.3766880575,
"total_value_mid": 9560.6936780576,
"total_value_exit_net": 9559.7071903151,
"total_value": 9560.6936780576,
"base_cost_quote": 1820.2623236125,
"unrealized_pnl_exit_net": -505.931821355
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 9309.4000000002,
"quote_asset_bal": 8210.3649572951,
"total_value_mid": 9544.4019772951,
"total_value_exit_net": 9543.4014495301,
"total_value": 9544.4019772951,
"base_cost_quote": 1855.325831535,
"unrealized_pnl_exit_net": -522.2893393
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 9669.9000000002,
"quote_asset_bal": 8160.6322630551,
"total_value_mid": 9482.5075930551,
"total_value_exit_net": 9481.5161865576,
"total_value": 9482.5075930551,
"base_cost_quote": 1905.4303717775,
"unrealized_pnl_exit_net": -584.546448275
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 8788.2000000002,
"quote_asset_bal": 8286.4402660576,
"total_value_mid": 9574.7903860576,
"total_value_exit_net": 9573.8241234676,
"total_value": 9574.7903860576,
"base_cost_quote": 1780.193844775,
"unrealized_pnl_exit_net": -492.809987365
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 9812.3000000002,
"quote_asset_bal": 8141.3068618726,
"total_value_mid": 9493.4418018726,
"total_value_exit_net": 9492.4277006676,
"total_value": 9493.4418018726,
"base_cost_quote": 1925.53150633,
"unrealized_pnl_exit_net": -574.410667535
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 9121.1000000002,
"quote_asset_bal": 8237.0019165851,
"total_value_mid": 9519.4285765851,
"total_value_exit_net": 9518.4667565901,
"total_value": 9519.4285765851,
"base_cost_quote": 1830.328097285,
"unrealized_pnl_exit_net": -548.86325728
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 9963.8000000003,
"quote_asset_bal": 8122.1452631501,
"total_value_mid": 9453.3089431501,
"total_value_exit_net": 9452.3105703901,
"total_value": 9453.3089431501,
"base_cost_quote": 1945.56924337,
"unrealized_pnl_exit_net": -615.40393613
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 10347.5000000003,
"quote_asset_bal": 8072.7489982251,
"total_value_mid": 9426.2019982251,
"total_value_exit_net": 9425.1869084751,
"total_value": 9426.2019982251,
"base_cost_quote": 1995.66750891,
"unrealized_pnl_exit_net": -643.22959866
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 10082.1000000003,
"quote_asset_bal": 8108.0789919826,
"total_value_mid": 9453.0311319826,
"total_value_exit_net": 9452.0224178776,
"total_value": 9453.0311319826,
"base_cost_quote": 1960.5871883875,
"unrealized_pnl_exit_net": -616.6437624925
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 9384.8000000003,
"quote_asset_bal": 8203.6866291276,
"total_value_mid": 9502.5429491276,
"total_value_exit_net": 9501.5688068876,
"total_value": 9502.5429491276,
"base_cost_quote": 1865.3753530275,
"unrealized_pnl_exit_net": -567.4931752675
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 8993.9000000003,
"quote_asset_bal": 8259.1461831651,
"total_value_mid": 9553.3683931651,
"total_value_exit_net": 9552.3977265076,
"total_value": 9553.3683931651,
"base_cost_quote": 1810.268864135,
"unrealized_pnl_exit_net": -517.0173207925
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 8753.7000000003,
"quote_asset_bal": 8294.4815080826,
"total_value_mid": 9576.8985580827,
"total_value_exit_net": 9575.9367452952,
"total_value": 9576.8985580827,
"base_cost_quote": 1775.2049358975,
"unrealized_pnl_exit_net": -493.749698685
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 9172.1000000003,
"quote_asset_bal": 8234.7160563676,
"total_value_mid": 9540.8230963677,
"total_value_exit_net": 9539.8435160877,
"total_value": 9540.8230963677,
"base_cost_quote": 1835.3221099875,
"unrealized_pnl_exit_net": -530.1946502675
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 8486.1000000003,
"quote_asset_bal": 8335.1757486601,
"total_value_mid": 9602.1504786602,
"total_value_exit_net": 9601.2002476127,
"total_value": 9602.1504786602,
"base_cost_quote": 1735.10291192,
"unrealized_pnl_exit_net": -469.0784129675
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 8454.6000000003,
"quote_asset_bal": 8340.4546558927,
"total_value_mid": 9621.3265558927,
"total_value_exit_net": 9620.3659019677,
"total_value": 9621.3265558927,
"base_cost_quote": 1730.0942482375,
"unrealized_pnl_exit_net": -450.1830021625
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 8722.9000000003,
"quote_asset_bal": 8300.5418220377,
"total_value_mid": 9597.6370520377,
"total_value_exit_net": 9596.6642306152,
"total_value": 9597.6370520377,
"base_cost_quote": 1770.1845534325,
"unrealized_pnl_exit_net": -474.062144855
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 9255.1000000003,
"quote_asset_bal": 8225.5825943902,
"total_value_mid": 9510.1904743902,
"total_value_exit_net": 9509.2270184802,
"total_value": 9510.1904743902,
"base_cost_quote": 1845.389865145,
"unrealized_pnl_exit_net": -561.745441055
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 9695.2000000003,
"quote_asset_bal": 8165.6923466502,
"total_value_mid": 9491.9957066502,
"total_value_exit_net": 9491.0009791302,
"total_value": 9491.9957066502,
"base_cost_quote": 1905.525132795,
"unrealized_pnl_exit_net": -580.216500315
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 9121.6000000003,
"quote_asset_bal": 8246.1965224677,
"total_value_mid": 9548.7610024677,
"total_value_exit_net": 9547.7840791077,
"total_value": 9548.7610024677,
"base_cost_quote": 1825.3382276875,
"unrealized_pnl_exit_net": -523.7506710475
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 8776.7000000003,
"quote_asset_bal": 8296.7470335827,
"total_value_mid": 9588.6772735828,
"total_value_exit_net": 9587.7083259028,
"total_value": 9588.6772735828,
"base_cost_quote": 1775.20044253,
"unrealized_pnl_exit_net": -484.23915021
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 7809.9000000003,
"quote_asset_bal": 8447.4080884102,
"total_value_mid": 9648.5707084103,
"total_value_exit_net": 9647.6698364453,
"total_value": 9648.5707084103,
"base_cost_quote": 1624.811275185,
"unrealized_pnl_exit_net": -424.54952715
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 7940.8000000003,
"quote_asset_bal": 8427.7211404652,
"total_value_mid": 9671.2504204653,
"total_value_exit_net": 9670.3177735053,
"total_value": 9671.2504204653,
"base_cost_quote": 1644.87789387,
"unrealized_pnl_exit_net": -402.28126083
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 7289.0000000003,
"quote_asset_bal": 8533.4946417627,
"total_value_mid": 9706.2947417628,
"total_value_exit_net": 9705.4151416878,
"total_value": 9706.2947417628,
"base_cost_quote": 1539.6273851475,
"unrealized_pnl_exit_net": -367.7068852225
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 7603.7000000003,
"quote_asset_bal": 8483.6389188952,
"total_value_mid": 9673.6179688953,
"total_value_exit_net": 9672.7254846078,
"total_value": 9673.6179688953,
"base_cost_quote": 1589.7420629875,
"unrealized_pnl_exit_net": -400.655497275
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 7534.9000000003,
"quote_asset_bal": 8494.5279295977,
"total_value_mid": 9723.4701195978,
"total_value_exit_net": 9722.5484129553,
"total_value": 9723.4701195978,
"base_cost_quote": 1579.7281982175,
"unrealized_pnl_exit_net": -351.70771486
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 7352.8000000003,
"quote_asset_bal": 8525.2824293577,
"total_value_mid": 9750.2589093577,
"total_value_exit_net": 9749.3401769977,
"total_value": 9750.2589093577,
"base_cost_quote": 1549.6738543525,
"unrealized_pnl_exit_net": -325.6161067125
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 7719.6000000003,
"quote_asset_bal": 8465.6918541077,
"total_value_mid": 9717.8109741077,
"total_value_exit_net": 9716.8718847677,
"total_value": 9717.8109741077,
"base_cost_quote": 1609.802867315,
"unrealized_pnl_exit_net": -358.622836655
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 7298.2000000003,
"quote_asset_bal": 8536.5821562352,
"total_value_mid": 9780.9252562352,
"total_value_exit_net": 9779.9919989102,
"total_value": 9780.9252562352,
"base_cost_quote": 1539.62629433,
"unrealized_pnl_exit_net": -296.2164516549
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 7178.8000000003,
"quote_asset_bal": 8557.2567731527,
"total_value_mid": 9797.0355331527,
"total_value_exit_net": 9796.1056990827,
"total_value": 9797.0355331527,
"base_cost_quote": 1519.598384655,
"unrealized_pnl_exit_net": -280.7494587249
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 7596.9000000003,
"quote_asset_bal": 8487.6561992151,
"total_value_mid": 9738.1059392152,
"total_value_exit_net": 9737.1681019102,
"total_value": 9738.1059392152,
"base_cost_quote": 1589.79613351,
"unrealized_pnl_exit_net": -340.284230815
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 7261.6000000003,
"quote_asset_bal": 8543.7331379426,
"total_value_mid": 9770.9435379427,
"total_value_exit_net": 9770.0231301427,
"total_value": 9770.9435379427,
"base_cost_quote": 1534.6601425075,
"unrealized_pnl_exit_net": -308.3701503074
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 7807.9000000003,
"quote_asset_bal": 8454.6936299226,
"total_value_mid": 9702.3960499226,
"total_value_exit_net": 9701.4602731076,
"total_value": 9702.3960499226,
"base_cost_quote": 1624.8596014025,
"unrealized_pnl_exit_net": -378.0929582175
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 8450.5000000003,
"quote_asset_bal": 8355.4573416176,
"total_value_mid": 9612.8917416177,
"total_value_exit_net": 9611.9486658177,
"total_value": 9612.8917416177,
"base_cost_quote": 1725.0553518975,
"unrealized_pnl_exit_net": -468.5640276975
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 9037.4000000003,
"quote_asset_bal": 8270.7474984801,
"total_value_mid": 9574.8443184802,
"total_value_exit_net": 9573.8662458652,
"total_value": 9574.8443184802,
"base_cost_quote": 1810.24570678,
"unrealized_pnl_exit_net": -507.126959395
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 9324.6000000003,
"quote_asset_bal": 8231.2441954426,
"total_value_mid": 9531.0934354427,
"total_value_exit_net": 9530.1185485127,
"total_value": 9531.0934354427,
"base_cost_quote": 1850.320040005,
"unrealized_pnl_exit_net": -551.445686935
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 8942.4000000003,
"quote_asset_bal": 8286.6509579226,
"total_value_mid": 9595.8183179227,
"total_value_exit_net": 9594.8364424027,
"total_value": 9595.8183179227,
"base_cost_quote": 1795.2245593625,
"unrealized_pnl_exit_net": -487.0390748825
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 9046.7000000003,
"quote_asset_bal": 8271.7898615101,
"total_value_mid": 9578.1333415102,
"total_value_exit_net": 9577.1535839002,
"total_value": 9578.1333415102,
"base_cost_quote": 1810.2443557675,
"unrealized_pnl_exit_net": -504.8806333775
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 8606.8000000003,
"quote_asset_bal": 8337.1193076051,
"total_value_mid": 9639.3281476052,
"total_value_exit_net": 9638.3514909752,
"total_value": 9639.3281476052,
"base_cost_quote": 1745.116676615,
"unrealized_pnl_exit_net": -443.884493245
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 8744.0000000003,
"quote_asset_bal": 8317.1852774401,
"total_value_mid": 9625.2876774402,
"total_value_exit_net": 9624.3066006402,
"total_value": 9625.2876774402,
"base_cost_quote": 1765.173748145,
"unrealized_pnl_exit_net": -458.0524249449
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 8677.9000000004,
"quote_asset_bal": 8327.4854731626,
"total_value_mid": 9618.7569931627,
"total_value_exit_net": 9617.7885395227,
"total_value": 9618.7569931627,
"base_cost_quote": 1755.1504463025,
"unrealized_pnl_exit_net": -464.8473799424
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 9228.3000000004,
"quote_asset_bal": 8247.5471425076,
"total_value_mid": 9556.1200825077,
"total_value_exit_net": 9555.1386528027,
"total_value": 9556.1200825077,
"base_cost_quote": 1835.3046368925,
"unrealized_pnl_exit_net": -527.7131265974
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 9015.3000000004,
"quote_asset_bal": 8278.0582380601,
"total_value_mid": 9576.2614380602,
"total_value_exit_net": 9575.2877856602,
"total_value": 9576.2614380602,
"base_cost_quote": 1805.24976263,
"unrealized_pnl_exit_net": -508.0202150299
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 8469.2000000004,
"quote_asset_bal": 8358.4251547976,
"total_value_mid": 9624.5705547977,
"total_value_exit_net": 9623.6209457477,
"total_value": 9624.5705547977,
"base_cost_quote": 1725.0774884875,
"unrealized_pnl_exit_net": -459.8816975374
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 8073.7000000004,
"quote_asset_bal": 8418.7772372052,
"total_value_mid": 9680.6965472052,
"total_value_exit_net": 9679.7501077227,
"total_value": 9680.6965472052,
"base_cost_quote": 1664.95842298,
"unrealized_pnl_exit_net": -403.9855524624
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 8106.5000000004,
"quote_asset_bal": 8414.3292558352,
"total_value_mid": 9687.0497558352,
"total_value_exit_net": 9686.0952154602,
"total_value": 9687.0497558352,
"base_cost_quote": 1669.9679873375,
"unrealized_pnl_exit_net": -398.2020277124
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 7728.9000000004,
"quote_asset_bal": 8475.1126680627,
"total_value_mid": 9724.1029080627,
"total_value_exit_net": 9723.1661653827,
"total_value": 9724.1029080627,
"base_cost_quote": 1609.79500142,
"unrealized_pnl_exit_net": -361.7415040999
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 8048.3000000004,
"quote_asset_bal": 8425.7806146377,
"total_value_mid": 9667.6333046377,
"total_value_exit_net": 9666.7019151202,
"total_value": 9667.6333046377,
"base_cost_quote": 1659.9300645375,
"unrealized_pnl_exit_net": -419.0087640549
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 8614.9000000004,
"quote_asset_bal": 8340.9215670002,
"total_value_mid": 9618.5112370002,
"total_value_exit_net": 9617.5530447477,
"total_value": 9618.5112370002,
"base_cost_quote": 1745.0981727475,
"unrealized_pnl_exit_net": -468.4666949999
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 8786.6000000004,
"quote_asset_bal": 8316.1995459702,
"total_value_mid": 9595.5285059703,
"total_value_exit_net": 9594.5690092503,
"total_value": 9595.5285059703,
"base_cost_quote": 1770.1660395575,
"unrealized_pnl_exit_net": -491.7965762774
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 8481.1000000004,
"quote_asset_bal": 8361.4329141602,
"total_value_mid": 9624.2687041603,
"total_value_exit_net": 9623.3215773178,
"total_value": 9624.2687041603,
"base_cost_quote": 1725.0714239425,
"unrealized_pnl_exit_net": -463.1827607849
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 8315.2000000004,
"quote_asset_bal": 8386.5520216027,
"total_value_mid": 9640.4841816028,
"total_value_exit_net": 9639.5437324828,
"total_value": 9640.4841816028,
"base_cost_quote": 1700.031007705,
"unrealized_pnl_exit_net": -447.0392968249
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 7699.5000000004,
"quote_asset_bal": 8482.1831308227,
"total_value_mid": 9715.6430308228,
"total_value_exit_net": 9714.7179358978,
"total_value": 9715.6430308228,
"base_cost_quote": 1604.78284512,
"unrealized_pnl_exit_net": -372.2480400449
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 8046.7000000004,
"quote_asset_bal": 8427.3195945402,
"total_value_mid": 9677.7767745403,
"total_value_exit_net": 9676.8389316553,
"total_value": 9677.7767745403,
"base_cost_quote": 1659.9472374075,
"unrealized_pnl_exit_net": -410.4279002924
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 8175.8000000004,
"quote_asset_bal": 8407.4831345052,
"total_value_mid": 9675.5497145053,
"total_value_exit_net": 9674.5986645703,
"total_value": 9675.5497145053,
"base_cost_quote": 1679.98816684,
"unrealized_pnl_exit_net": -412.8726367749
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 8942.8000000004,
"quote_asset_bal": 8292.4164690077,
"total_value_mid": 9604.3252290078,
"total_value_exit_net": 9603.3412974378,
"total_value": 9604.3252290078,
"base_cost_quote": 1795.20891764,
"unrealized_pnl_exit_net": -484.2840892099
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 8540.9000000004,
"quote_asset_bal": 8352.6442662953,
"total_value_mid": 9633.7792662953,
"total_value_exit_net": 9632.8184150453,
"total_value": 9633.7792662953,
"base_cost_quote": 1735.1065846725,
"unrealized_pnl_exit_net": -454.9324359224
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 9326.5000000004,
"quote_asset_bal": 8237.7464173278,
"total_value_mid": 9505.2177673278,
"total_value_exit_net": 9504.2671638153,
"total_value": 9505.2177673278,
"base_cost_quote": 1850.3561170425,
"unrealized_pnl_exit_net": -583.8353705549
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 9772.5000000004,
"quote_asset_bal": 8178.0712771953,
"total_value_mid": 9476.8365271953,
"total_value_exit_net": 9475.8624532578,
"total_value": 9476.8365271953,
"base_cost_quote": 1910.5001712775,
"unrealized_pnl_exit_net": -612.7089952149
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 9584.4000000004,
"quote_asset_bal": 8203.3656263953,
"total_value_mid": 9499.1765063954,
"total_value_exit_net": 9498.2046482354,
"total_value": 9499.1765063954,
"base_cost_quote": 1885.4253192325,
"unrealized_pnl_exit_net": -590.5862973924
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 9625.3000000004,
"quote_asset_bal": 8198.8534670053,
"total_value_mid": 9505.0066770054,
"total_value_exit_net": 9504.0270620979,
"total_value": 9505.0066770054,
"base_cost_quote": 1890.4356141375,
"unrealized_pnl_exit_net": -585.2620190449
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 9402.6000000004,
"quote_asset_bal": 8229.1917809628,
"total_value_mid": 9561.5402009629,
"total_value_exit_net": 9560.5409396479,
"total_value": 9561.5402009629,
"base_cost_quote": 1860.3685007025,
"unrealized_pnl_exit_net": -529.0193420174
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 9658.7000000004,
"quote_asset_bal": 8194.3534705978,
"total_value_mid": 9528.2199405979,
"total_value_exit_net": 9527.2195407454,
"total_value": 9528.2199405979,
"base_cost_quote": 1895.4682257675,
"unrealized_pnl_exit_net": -562.6021556199
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 10780.6000000004,
"quote_asset_bal": 8044.3940066853,
"total_value_mid": 9438.3255866854,
"total_value_exit_net": 9437.2801380004,
"total_value": 9438.3255866854,
"base_cost_quote": 2045.7788742675,
"unrealized_pnl_exit_net": -652.8927429524
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 11331.9000000004,
"quote_asset_bal": 7975.0395108829,
"total_value_mid": 9393.7933908829,
"total_value_exit_net": 9392.7293254729,
"total_value": 9393.7933908829,
"base_cost_quote": 2115.92523461,
"unrealized_pnl_exit_net": -698.2354200199
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 11942.9000000004,
"quote_asset_bal": 7900.2627339579,
"total_value_mid": 9341.7707639579,
"total_value_exit_net": 9340.6896329354,
"total_value": 9341.7707639579,
"base_cost_quote": 2191.07251283,
"unrealized_pnl_exit_net": -750.6456138524
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 12668.6000000004,
"quote_asset_bal": 7815.7706420279,
"total_value_mid": 9290.3956820279,
"total_value_exit_net": 9289.2897132479,
"total_value": 9290.3956820279,
"base_cost_quote": 2276.2241386875,
"unrealized_pnl_exit_net": -802.7050674675
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 13193.7000000004,
"quote_asset_bal": 7756.1883187879,
"total_value_mid": 9239.1601987879,
"total_value_exit_net": 9238.0479698779,
"total_value": 9239.1601987879,
"base_cost_quote": 2336.3475374425,
"unrealized_pnl_exit_net": -854.4878863525
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 12798.2000000004,
"quote_asset_bal": 7801.8697437654,
"total_value_mid": 9277.5022037654,
"total_value_exit_net": 9276.3954794204,
"total_value": 9277.5022037654,
"base_cost_quote": 2291.2880681675,
"unrealized_pnl_exit_net": -816.7623325125
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 11064.1000000004,
"quote_asset_bal": 8013.6990373104,
"total_value_mid": 9425.4781973104,
"total_value_exit_net": 9424.4193629404,
"total_value": 9425.4781973104,
"base_cost_quote": 2080.8621269875,
"unrealized_pnl_exit_net": -670.1418013574
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 10792.8000000004,
"quote_asset_bal": 8049.5223931954,
"total_value_mid": 9455.8242331954,
"total_value_exit_net": 9454.7695068154,
"total_value": 9455.8242331954,
"base_cost_quote": 2045.8176633375,
"unrealized_pnl_exit_net": -640.5705497174
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 10679.0000000004,
"quote_asset_bal": 8065.1967422879,
"total_value_mid": 9455.6025422879,
"total_value_exit_net": 9454.5597379379,
"total_value": 9455.6025422879,
"base_cost_quote": 2030.764712085,
"unrealized_pnl_exit_net": -641.4017164349
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 9637.3000000004,
"quote_asset_bal": 8206.3220386229,
"total_value_mid": 9547.8341986229,
"total_value_exit_net": 9546.8280645029,
"total_value": 9547.8341986229,
"base_cost_quote": 1890.45930189,
"unrealized_pnl_exit_net": -549.9532760099
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 8542.4000000004,
"quote_asset_bal": 8367.4436605579,
"total_value_mid": 9636.844300558,
"total_value_exit_net": 9635.892250078,
"total_value": 9636.844300558,
"base_cost_quote": 1730.0784163725,
"unrealized_pnl_exit_net": -461.6298268524
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 7890.6000000005,
"quote_asset_bal": 8468.5577497604,
"total_value_mid": 9712.9053697605,
"total_value_exit_net": 9711.9721090455,
"total_value": 9712.9053697605,
"base_cost_quote": 1629.8358507925,
"unrealized_pnl_exit_net": -386.4214915074
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 8730.7000000005,
"quote_asset_bal": 8344.3358837679,
"total_value_mid": 9635.606413768,
"total_value_exit_net": 9634.6379608705,
"total_value": 9635.606413768,
"base_cost_quote": 1755.1796481875,
"unrealized_pnl_exit_net": -464.8775710849
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 8979.3000000005,
"quote_asset_bal": 8310.644522778,
"total_value_mid": 9600.072002778,
"total_value_exit_net": 9599.104932168,
"total_value": 9600.072002778,
"base_cost_quote": 1790.23795221,
"unrealized_pnl_exit_net": -501.7775428199
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 9126.3000000005,
"quote_asset_bal": 8291.319296243,
"total_value_mid": 9579.9528562431,
"total_value_exit_net": 9578.9863810731,
"total_value": 9579.9528562431,
"base_cost_quote": 1810.30106827,
"unrealized_pnl_exit_net": -522.6339834399
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 8441.7000000005,
"quote_asset_bal": 8392.4414183555,
"total_value_mid": 9662.0730983556,
"total_value_exit_net": 9661.1208745956,
"total_value": 9662.0730983556,
"base_cost_quote": 1710.0780873675,
"unrealized_pnl_exit_net": -441.3986311274
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 7397.6000000005,
"quote_asset_bal": 8558.9261357405,
"total_value_mid": 9776.5710957406,
"total_value_exit_net": 9775.6578620206,
"total_value": 9776.5710957406,
"base_cost_quote": 1544.6383405475,
"unrealized_pnl_exit_net": -327.9066142674
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 7396.0000000005,
"quote_asset_bal": 8560.881320078,
"total_value_mid": 9762.7313200781,
"total_value_exit_net": 9761.8299325781,
"total_value": 9762.7313200781,
"base_cost_quote": 1544.6441048675,
"unrealized_pnl_exit_net": -343.6954923674
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 4834.8000000005,
"quote_asset_bal": 9040.8061641455,
"total_value_mid": 9924.6076041456,
"total_value_exit_net": 9923.9447530656,
"total_value": 9924.6076041456,
"base_cost_quote": 1068.395275935,
"unrealized_pnl_exit_net": -185.2566870149
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 5220.4000000005,
"quote_asset_bal": 8972.159128358,
"total_value_mid": 9908.6988883581,
"total_value_exit_net": 9907.9964835381,
"total_value": 9908.6988883581,
"base_cost_quote": 1138.5909932675,
"unrealized_pnl_exit_net": -202.7536380874
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 5209.5000000005,
"quote_asset_bal": 8974.4033765005,
"total_value_mid": 9914.1971765006,
"total_value_exit_net": 9913.4923311506,
"total_value": 9914.1971765006,
"base_cost_quote": 1138.6068851775,
"unrealized_pnl_exit_net": -199.5179305274
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 4670.3000000005,
"quote_asset_bal": 9076.916620458,
"total_value_mid": 10035.7292104581,
"total_value_exit_net": 10035.0101010156,
"total_value": 10035.7292104581,
"base_cost_quote": 1038.3904391725,
"unrealized_pnl_exit_net": -80.2969586149
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 4767.4000000005,
"quote_asset_bal": 9058.2182563705,
"total_value_mid": 10022.6632763706,
"total_value_exit_net": 10021.9399426056,
"total_value": 10022.6632763706,
"base_cost_quote": 1058.4413060525,
"unrealized_pnl_exit_net": -94.7196198174
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 4597.7000000005,
"quote_asset_bal": 9094.9676420679,
"total_value_mid": 10075.197282068,
"total_value_exit_net": 10074.462109838,
"total_value": 10075.197282068,
"base_cost_quote": 1023.383102105,
"unrealized_pnl_exit_net": -43.8886343349
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 3765.4000000005,
"quote_asset_bal": 9282.9409047204,
"total_value_mid": 10177.2234047206,
"total_value_exit_net": 10176.5526928456,
"total_value": 10177.2234047206,
"base_cost_quote": 837.7738895225,
"unrealized_pnl_exit_net": 55.8378986026
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 4132.6000000005,
"quote_asset_bal": 9199.3542557179,
"total_value_mid": 10130.429035718,
"total_value_exit_net": 10129.730729633,
"total_value": 10130.429035718,
"base_cost_quote": 923.05080928,
"unrealized_pnl_exit_net": 7.3256646351
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 4445.6000000005,
"quote_asset_bal": 9131.0401643154,
"total_value_mid": 10106.4048043156,
"total_value_exit_net": 10105.6732808356,
"total_value": 10106.4048043156,
"base_cost_quote": 993.2449854575,
"unrealized_pnl_exit_net": -18.6118689374
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 3916.5000000005,
"quote_asset_bal": 9252.6811036404,
"total_value_mid": 10179.7166536406,
"total_value_exit_net": 10179.0213769781,
"total_value": 10179.7166536406,
"base_cost_quote": 872.8915079975,
"unrealized_pnl_exit_net": 53.4487653401
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 4002.0000000005,
"quote_asset_bal": 9233.6412944654,
"total_value_mid": 10164.5064944655,
"total_value_exit_net": 10163.8083455655,
"total_value": 10164.5064944655,
"base_cost_quote": 892.9762402575,
"unrealized_pnl_exit_net": 37.1908108426
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 3811.7000000005,
"quote_asset_bal": 9279.4536718029,
"total_value_mid": 10183.207741803,
"total_value_exit_net": 10182.5299262505,
"total_value": 10183.207741803,
"base_cost_quote": 847.835700225,
"unrealized_pnl_exit_net": 55.2405542226
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 3501.4000000005,
"quote_asset_bal": 9355.5537798029,
"total_value_mid": 10236.5060198031,
"total_value_exit_net": 10235.8453056231,
"total_value": 10236.5060198031,
"base_cost_quote": 772.5816920175,
"unrealized_pnl_exit_net": 107.7098338026
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 3461.8000000005,
"quote_asset_bal": 9366.7647890279,
"total_value_mid": 10247.1005290281,
"total_value_exit_net": 10246.4402772231,
"total_value": 10247.1005290281,
"base_cost_quote": 762.56849775,
"unrealized_pnl_exit_net": 117.1069904451
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 2918.3000000005,
"quote_asset_bal": 9509.2060256154,
"total_value_mid": 10286.3493156156,
"total_value_exit_net": 10285.7664581481,
"total_value": 10286.3493156156,
"base_cost_quote": 622.0809010175,
"unrealized_pnl_exit_net": 154.4795315151
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 2576.7000000005,
"quote_asset_bal": 9604.9036776955,
"total_value_mid": 10356.5270676956,
"total_value_exit_net": 10355.9633501531,
"total_value": 10356.5270676956,
"base_cost_quote": 526.7435616,
"unrealized_pnl_exit_net": 224.3161108577
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 2614.8000000005,
"quote_asset_bal": 9595.1538632155,
"total_value_mid": 10366.5198632157,
"total_value_exit_net": 10365.9413387157,
"total_value": 10366.5198632157,
"base_cost_quote": 536.7207688975,
"unrealized_pnl_exit_net": 234.0667066027
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 2806.7000000005,
"quote_asset_bal": 9540.4492640905,
"total_value_mid": 10358.0409740907,
"total_value_exit_net": 10357.4277803082,
"total_value": 10358.0409740907,
"base_cost_quote": 591.94742785,
"unrealized_pnl_exit_net": 225.0310883676
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 2473.5000000005,
"quote_asset_bal": 9641.000035473,
"total_value_mid": 10393.1913854732,
"total_value_exit_net": 10392.6272419607,
"total_value": 10393.1913854732,
"base_cost_quote": 491.7250674125,
"unrealized_pnl_exit_net": 259.9021390752
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 2812.7000000005,
"quote_asset_bal": 9540.8303503255,
"total_value_mid": 10363.2638303257,
"total_value_exit_net": 10362.6470052157,
"total_value": 10363.2638303257,
"base_cost_quote": 591.988358525,
"unrealized_pnl_exit_net": 229.8282963651
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 2465.0000000005,
"quote_asset_bal": 9646.4653870655,
"total_value_mid": 10401.2483870657,
"total_value_exit_net": 10400.6822998157,
"total_value": 10401.2483870657,
"base_cost_quote": 486.665465555,
"unrealized_pnl_exit_net": 267.5514471952
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 3239.9000000005,
"quote_asset_bal": 9421.1642654405,
"total_value_mid": 10251.5506354407,
"total_value_exit_net": 10250.9278456632,
"total_value": 10251.5506354407,
"base_cost_quote": 712.4822712325,
"unrealized_pnl_exit_net": 117.2813089901
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 3317.0000000005,
"quote_asset_bal": 9403.986164198,
"total_value_mid": 10260.4355641982,
"total_value_exit_net": 10259.7932271482,
"total_value": 10260.4355641982,
"base_cost_quote": 732.58602775,
"unrealized_pnl_exit_net": 123.2210352001
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 2596.6000000005,
"quote_asset_bal": 9605.7238280455,
"total_value_mid": 10376.6543680457,
"total_value_exit_net": 10376.0761701407,
"total_value": 10376.6543680457,
"base_cost_quote": 531.8209567925,
"unrealized_pnl_exit_net": 238.5313853026
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 2370.4000000005,
"quote_asset_bal": 9676.1055747956,
"total_value_mid": 10395.5219747957,
"total_value_exit_net": 10394.9824124957,
"total_value": 10395.5219747957,
"base_cost_quote": 461.50639039,
"unrealized_pnl_exit_net": 257.3704473101
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 2626.1000000005,
"quote_asset_bal": 9601.2772813381,
"total_value_mid": 10379.6533213382,
"total_value_exit_net": 10379.0695393082,
"total_value": 10379.6533213382,
"base_cost_quote": 536.829020025,
"unrealized_pnl_exit_net": 240.9632379451
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 3009.0000000005,
"quote_asset_bal": 9491.1500510256,
"total_value_mid": 10342.6970510257,
"total_value_exit_net": 10342.0583907757,
"total_value": 10342.6970510257,
"base_cost_quote": 647.196693745,
"unrealized_pnl_exit_net": 203.7116460051
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 2821.0000000005,
"quote_asset_bal": 9546.4784990931,
"total_value_mid": 10365.9789990932,
"total_value_exit_net": 10365.3643737182,
"total_value": 10365.9789990932,
"base_cost_quote": 591.9769199525,
"unrealized_pnl_exit_net": 226.9089546726
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 2930.5000000005,
"quote_asset_bal": 9516.6373001856,
"total_value_mid": 10342.7452501857,
"total_value_exit_net": 10342.1256692232,
"total_value": 10342.7452501857,
"base_cost_quote": 622.0931301825,
"unrealized_pnl_exit_net": 203.3952388551
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 3718.5000000005,
"quote_asset_bal": 9305.8694091506,
"total_value_mid": 10264.1268591507,
"total_value_exit_net": 10263.4081660632,
"total_value": 10264.1268591507,
"base_cost_quote": 832.8764391875,
"unrealized_pnl_exit_net": 124.6623177251
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 4226.4000000005,
"quote_asset_bal": 9182.2080373981,
"total_value_mid": 10188.0912373982,
"total_value_exit_net": 10187.3368249982,
"total_value": 10188.0912373982,
"base_cost_quote": 958.2613073625,
"unrealized_pnl_exit_net": 46.8674802376
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 4958.0000000005,
"quote_asset_bal": 9018.7083384456,
"total_value_mid": 10079.2245384457,
"total_value_exit_net": 10078.4291512957,
"total_value": 10079.2245384457,
"base_cost_quote": 1123.7240113875,
"unrealized_pnl_exit_net": -64.0031985374
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 5129.3000000005,
"quote_asset_bal": 8986.0914008406,
"total_value_mid": 10079.6581608407,
"total_value_exit_net": 10078.8379857707,
"total_value": 10079.6581608407,
"base_cost_quote": 1158.7830459575,
"unrealized_pnl_exit_net": -66.0364610274
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 5850.9000000005,
"quote_asset_bal": 8837.3551561605,
"total_value_mid": 10013.9711461606,
"total_value_exit_net": 10013.0886841681,
"total_value": 10013.9711461606,
"base_cost_quote": 1309.237892525,
"unrealized_pnl_exit_net": -133.5043645174
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 5773.2000000005,
"quote_asset_bal": 8854.1155579405,
"total_value_mid": 10001.8277179406,
"total_value_exit_net": 10000.9669338206,
"total_value": 10001.8277179406,
"base_cost_quote": 1294.178406375,
"unrealized_pnl_exit_net": -147.3270304949
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 5087.8000000005,
"quote_asset_bal": 8996.1664326279,
"total_value_mid": 10085.464412628,
"total_value_exit_net": 10084.647439143,
"total_value": 10085.464412628,
"base_cost_quote": 1153.80410455,
"unrealized_pnl_exit_net": -65.3230980349
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 4498.5000000005,
"quote_asset_bal": 9127.4776992229,
"total_value_mid": 10156.734499223,
"total_value_exit_net": 10155.962556623,
"total_value": 10156.734499223,
"base_cost_quote": 1023.446789835,
"unrealized_pnl_exit_net": 5.0380675651
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 4809.7000000005,
"quote_asset_bal": 9057.9080870155,
"total_value_mid": 10130.4711870156,
"total_value_exit_net": 10129.6667646906,
"total_value": 10130.4711870156,
"base_cost_quote": 1093.6598201425,
"unrealized_pnl_exit_net": -21.9011424674
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 5562.9000000005,
"quote_asset_bal": 8897.9601348829,
"total_value_mid": 10046.698984883,
"total_value_exit_net": 10045.8374307455,
"total_value": 10046.698984883,
"base_cost_quote": 1254.146524965,
"unrealized_pnl_exit_net": -106.2692291024
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 5535.4000000005,
"quote_asset_bal": 8903.9157351154,
"total_value_mid": 10056.3860151155,
"total_value_exit_net": 10055.5216624055,
"total_value": 10056.3860151155,
"base_cost_quote": 1249.1745888075,
"unrealized_pnl_exit_net": -97.5686615174
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 5014.5000000005,
"quote_asset_bal": 9015.0250471854,
"total_value_mid": 10110.6932971855,
"total_value_exit_net": 10109.871545998,
"total_value": 10110.6932971855,
"base_cost_quote": 1138.8486063325,
"unrealized_pnl_exit_net": -44.0021075199
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 5392.7000000005,
"quote_asset_bal": 8935.2502516204,
"total_value_mid": 10060.1674716205,
"total_value_exit_net": 10059.3237837055,
"total_value": 10060.1674716205,
"base_cost_quote": 1219.0789539975,
"unrealized_pnl_exit_net": -95.0054219124
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 5415.1000000005,
"quote_asset_bal": 8931.1907351354,
"total_value_mid": 10055.3654951355,
"total_value_exit_net": 10054.5223640655,
"total_value": 10055.3654951355,
"base_cost_quote": 1224.079151335,
"unrealized_pnl_exit_net": -100.7475224049
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 5660.9000000005,
"quote_asset_bal": 8881.7853286528,
"total_value_mid": 10024.1549486529,
"total_value_exit_net": 10023.2981714379,
"total_value": 10024.1549486529,
"base_cost_quote": 1274.1908369325,
"unrealized_pnl_exit_net": -132.6779941474
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 5566.0000000005,
"quote_asset_bal": 8902.6348909403,
"total_value_mid": 10053.6836909404,
"total_value_exit_net": 10052.8204043404,
"total_value": 10053.6836909404,
"base_cost_quote": 1254.111298565,
"unrealized_pnl_exit_net": -103.9257851649
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 5328.3000000005,
"quote_asset_bal": 8953.4048458978,
"total_value_mid": 10087.2670858979,
"total_value_exit_net": 10086.4166892179,
"total_value": 10087.2670858979,
"base_cost_quote": 1203.9958901775,
"unrealized_pnl_exit_net": -70.9840468574
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 4844.9000000005,
"quote_asset_bal": 9059.3028144578,
"total_value_mid": 10141.6534744579,
"total_value_exit_net": 10140.8417114629,
"total_value": 10141.6534744579,
"base_cost_quote": 1098.6684538025,
"unrealized_pnl_exit_net": -17.1295567974
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 4845.2000000005,
"quote_asset_bal": 9059.7712008028,
"total_value_mid": 10145.0960008029,
"total_value_exit_net": 10144.2820072029,
"total_value": 10145.0960008029,
"base_cost_quote": 1098.6503001975,
"unrealized_pnl_exit_net": -14.1394937974
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 4845.9000000005,
"quote_asset_bal": 9060.2201882853,
"total_value_mid": 10152.9706382854,
"total_value_exit_net": 10152.1510754479,
"total_value": 10152.9706382854,
"base_cost_quote": 1098.648388765,
"unrealized_pnl_exit_net": -6.7175016024
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 4755.6000000005,
"quote_asset_bal": 9080.9260209178,
"total_value_mid": 10156.6427409179,
"total_value_exit_net": 10155.8359533779,
"total_value": 10156.6427409179,
"base_cost_quote": 1078.5584626125,
"unrealized_pnl_exit_net": -3.6485301524
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 5753.5000000005,
"quote_asset_bal": 8870.9114026253,
"total_value_mid": 10014.1318526254,
"total_value_exit_net": 10013.2744372879,
"total_value": 10014.1318526254,
"base_cost_quote": 1289.18008044,
"unrealized_pnl_exit_net": -146.8170457774
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 6592.0000000005,
"quote_asset_bal": 8711.9420970878,
"total_value_mid": 9933.4396970879,
"total_value_exit_net": 9932.5235738879,
"total_value": 9933.4396970879,
"base_cost_quote": 1449.5468153525,
"unrealized_pnl_exit_net": -228.9653385524
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 6781.5000000005,
"quote_asset_bal": 8678.5846094429,
"total_value_mid": 9927.0587594429,
"total_value_exit_net": 9926.1224038304,
"total_value": 9927.0587594429,
"base_cost_quote": 1484.6613315025,
"unrealized_pnl_exit_net": -237.1235371149
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 6564.7000000005,
"quote_asset_bal": 8719.8550857979,
"total_value_mid": 9957.301035798,
"total_value_exit_net": 9956.3729513355,
"total_value": 9957.301035798,
"base_cost_quote": 1444.5958849375,
"unrealized_pnl_exit_net": -208.0780193999
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 6484.6000000005,
"quote_asset_bal": 8735.4209825104,
"total_value_mid": 9952.5804025105,
"total_value_exit_net": 9951.6675329455,
"total_value": 9952.5804025105,
"base_cost_quote": 1429.5574145375,
"unrealized_pnl_exit_net": -213.3108641024
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 6727.1000000005,
"quote_asset_bal": 8690.812180243,
"total_value_mid": 9926.580450243,
"total_value_exit_net": 9925.6536240405,
"total_value": 9926.580450243,
"base_cost_quote": 1474.6629583425,
"unrealized_pnl_exit_net": -239.8215145449
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 7059.5000000005,
"quote_asset_bal": 8632.5319117854,
"total_value_mid": 9876.4158117855,
"total_value_exit_net": 9875.4828988605,
"total_value": 9876.4158117855,
"base_cost_quote": 1534.850815405,
"unrealized_pnl_exit_net": -291.8998283299
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 6559.1000000005,
"quote_asset_bal": 8723.8461630779,
"total_value_mid": 9935.311933078,
"total_value_exit_net": 9934.4033337505,
"total_value": 9935.311933078,
"base_cost_quote": 1444.60552216,
"unrealized_pnl_exit_net": -234.0483514874
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 6004.4000000005,
"quote_asset_bal": 8830.131890108,
"total_value_mid": 9999.7890101081,
"total_value_exit_net": 9998.9117672681,
"total_value": 9999.7890101081,
"base_cost_quote": 1339.316914885,
"unrealized_pnl_exit_net": -170.5370377249
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 5977.7000000005,
"quote_asset_bal": 8836.3229359279,
"total_value_mid": 10003.169975928,
"total_value_exit_net": 10002.294840648,
"total_value": 10003.169975928,
"base_cost_quote": 1334.3303877925,
"unrealized_pnl_exit_net": -168.3584830724
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 5117.7000000005,
"quote_asset_bal": 9012.7886711904,
"total_value_mid": 10107.9764711905,
"total_value_exit_net": 10107.1550803405,
"total_value": 10107.9764711905,
"base_cost_quote": 1158.817521795,
"unrealized_pnl_exit_net": -64.4511126449
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 5622.1000000005,
"quote_asset_bal": 8908.5839018779,
"total_value_mid": 10035.814951878,
"total_value_exit_net": 10034.9695285905,
"total_value": 10035.814951878,
"base_cost_quote": 1264.16897617,
"unrealized_pnl_exit_net": -137.7833494574
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 5470.3000000005,
"quote_asset_bal": 8941.0505481028,
"total_value_mid": 9995.7243881029,
"total_value_exit_net": 9994.9333827229,
"total_value": 9995.7243881029,
"base_cost_quote": 1234.0398262425,
"unrealized_pnl_exit_net": -180.1569916224
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 6305.1000000005,
"quote_asset_bal": 8783.4276763628,
"total_value_mid": 9931.5863863629,
"total_value_exit_net": 9930.7252673304,
"total_value": 9931.5863863629,
"base_cost_quote": 1394.43047908,
"unrealized_pnl_exit_net": -247.1328881124
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 5809.9000000005,
"quote_asset_bal": 8876.4946998953,
"total_value_mid": 9988.5095598954,
"total_value_exit_net": 9987.6755487504,
"total_value": 9988.5095598954,
"base_cost_quote": 1304.20806298,
"unrealized_pnl_exit_net": -193.0272141249
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 6393.2000000005,
"quote_asset_bal": 8768.1470639153,
"total_value_mid": 9951.5283839154,
"total_value_exit_net": 9950.6408479254,
"total_value": 9951.5283839154,
"base_cost_quote": 1414.472839585,
"unrealized_pnl_exit_net": -231.9790555749
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 6668.4000000005,
"quote_asset_bal": 8719.7599855853,
"total_value_mid": 9924.7398655854,
"total_value_exit_net": 9923.8361306754,
"total_value": 9924.7398655854,
"base_cost_quote": 1464.61956144,
"unrealized_pnl_exit_net": -260.5434163499
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 8306.4000000005,
"quote_asset_bal": 8440.2360729128,
"total_value_mid": 9792.5179929128,
"total_value_exit_net": 9791.5037814728,
"total_value": 9792.5179929128,
"base_cost_quote": 1745.3338093425,
"unrealized_pnl_exit_net": -394.0661007824
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 8428.4000000005,
"quote_asset_bal": 8421.1377407103,
"total_value_mid": 9800.8668207103,
"total_value_exit_net": 9799.8320239003,
"total_value": 9800.8668207103,
"base_cost_quote": 1765.3945636325,
"unrealized_pnl_exit_net": -386.7002804424
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 8099.1000000005,
"quote_asset_bal": 8477.0216619652,
"total_value_mid": 9790.6956819653,
"total_value_exit_net": 9789.7104264503,
"total_value": 9790.6956819653,
"base_cost_quote": 1710.2217350225,
"unrealized_pnl_exit_net": -397.5329705374
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 9182.5000000005,
"quote_asset_bal": 8312.6516128527,
"total_value_mid": 9700.1273628528,
"total_value_exit_net": 9699.0867560403,
"total_value": 9700.1273628528,
"base_cost_quote": 1875.603348275,
"unrealized_pnl_exit_net": -489.1682050874
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 10592.2000000005,
"quote_asset_bal": 8112.6779874978,
"total_value_mid": 9527.7959074978,
"total_value_exit_net": 9526.7345690578,
"total_value": 9527.7959074978,
"base_cost_quote": 2076.0514817075,
"unrealized_pnl_exit_net": -661.9949001474
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 9122.5000000005,
"quote_asset_bal": 8324.1766964278,
"total_value_mid": 9667.9209464279,
"total_value_exit_net": 9666.9131382404,
"total_value": 9667.9209464279,
"base_cost_quote": 1865.5949776225,
"unrealized_pnl_exit_net": -522.8585358099
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 9182.0000000005,
"quote_asset_bal": 8314.9311451728,
"total_value_mid": 9698.6585451729,
"total_value_exit_net": 9697.6207496229,
"total_value": 9698.6585451729,
"base_cost_quote": 1875.631049035,
"unrealized_pnl_exit_net": -492.9414445849
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 9125.9000000005,
"quote_asset_bal": 8325.4269112378,
"total_value_mid": 9689.7489612379,
"total_value_exit_net": 9688.7257197004,
"total_value": 9689.7489612379,
"base_cost_quote": 1865.633836745,
"unrealized_pnl_exit_net": -502.3350282824
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 10393.0000000005,
"quote_asset_bal": 8145.4785031653,
"total_value_mid": 9551.6514031654,
"total_value_exit_net": 9550.5967734904,
"total_value": 9551.6514031654,
"base_cost_quote": 2045.9998598825,
"unrealized_pnl_exit_net": -640.8815895574
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 11913.8000000006,
"quote_asset_bal": 7957.0889391328,
"total_value_mid": 9331.9414591329,
"total_value_exit_net": 9330.9103197429,
"total_value": 9331.9414591329,
"base_cost_quote": 2236.3599029175,
"unrealized_pnl_exit_net": -862.5385223074
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 11954.7000000006,
"quote_asset_bal": 7961.4897735653,
"total_value_mid": 9398.4447135653,
"total_value_exit_net": 9397.3669973603,
"total_value": 9398.4447135653,
"base_cost_quote": 2236.370480845,
"unrealized_pnl_exit_net": -800.4932570499
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 12100.0000000006,
"quote_asset_bal": 7949.1801312328,
"total_value_mid": 9314.0601312328,
"total_value_exit_net": 9313.0364712328,
"total_value": 9314.0601312328,
"base_cost_quote": 2251.4229017,
"unrealized_pnl_exit_net": -887.5665616999
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 13071.2000000006,
"quote_asset_bal": 7845.7481305528,
"total_value_mid": 9205.1529305528,
"total_value_exit_net": 9204.1333769528,
"total_value": 9205.1529305528,
"base_cost_quote": 2356.5967329575,
"unrealized_pnl_exit_net": -998.2114865574
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 14062.8000000006,
"quote_asset_bal": 7747.7388735953,
"total_value_mid": 9128.7058335953,
"total_value_exit_net": 9127.6701083753,
"total_value": 9128.7058335953,
"base_cost_quote": 2456.789070895,
"unrealized_pnl_exit_net": -1076.857836115
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 13770.3000000006,
"quote_asset_bal": 7780.1107873153,
"total_value_mid": 9153.0096973153,
"total_value_exit_net": 9151.9800231328,
"total_value": 9153.0096973153,
"base_cost_quote": 2426.7430432625,
"unrealized_pnl_exit_net": -1054.8738074449
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 12888.5000000006,
"quote_asset_bal": 7872.0245896453,
"total_value_mid": 9240.7832896453,
"total_value_exit_net": 9239.7567206203,
"total_value": 9240.7832896453,
"base_cost_quote": 2336.57175548,
"unrealized_pnl_exit_net": -968.8396245049
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 13017.0000000006,
"quote_asset_bal": 7858.1425236678,
"total_value_mid": 9236.6428236678,
"total_value_exit_net": 9235.6089484428,
"total_value": 9236.6428236678,
"base_cost_quote": 2351.59673577,
"unrealized_pnl_exit_net": -974.1303109949
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 12782.4000000006,
"quote_asset_bal": 7884.3949167778,
"total_value_mid": 9289.1806767779,
"total_value_exit_net": 9288.1270874579,
"total_value": 9289.1806767779,
"base_cost_quote": 2326.5492542375,
"unrealized_pnl_exit_net": -922.8170835574
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 13014.5000000006,
"quote_asset_bal": 7860.4332538928,
"total_value_mid": 9236.0659038929,
"total_value_exit_net": 9235.0341794054,
"total_value": 9236.0659038929,
"base_cost_quote": 2351.5974663175,
"unrealized_pnl_exit_net": -976.9965408049
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 12181.3000000006,
"quote_asset_bal": 7952.1216814728,
"total_value_mid": 9322.5179314729,
"total_value_exit_net": 9321.4901342854,
"total_value": 9322.5179314729,
"base_cost_quote": 2261.4292908675,
"unrealized_pnl_exit_net": -892.0608380549
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 12500.1000000006,
"quote_asset_bal": 7918.0038697328,
"total_value_mid": 9274.2647197329,
"total_value_exit_net": 9273.2475240954,
"total_value": 9274.2647197329,
"base_cost_quote": 2296.5126937,
"unrealized_pnl_exit_net": -941.2690393374
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 12267.3000000006,
"quote_asset_bal": 7944.0208334103,
"total_value_mid": 9317.9584334104,
"total_value_exit_net": 9316.9279802104,
"total_value": 9317.9584334104,
"base_cost_quote": 2271.45107157,
"unrealized_pnl_exit_net": -898.5439247699
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 12769.0000000006,
"quote_asset_bal": 7889.4450955078,
"total_value_mid": 9271.0508955079,
"total_value_exit_net": 9270.0146911579,
"total_value": 9271.0508955079,
"base_cost_quote": 2326.55925173,
"unrealized_pnl_exit_net": -945.9896560799
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 12556.4000000006,
"quote_asset_bal": 7915.3174773253,
"total_value_mid": 9252.5740773254,
"total_value_exit_net": 9251.5711348754,
"total_value": 9252.5740773254,
"base_cost_quote": 2301.5026233425,
"unrealized_pnl_exit_net": -965.2489657924
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 13481.5000000006,
"quote_asset_bal": 7821.3802099878,
"total_value_mid": 9170.8783599879,
"total_value_exit_net": 9169.8662363754,
"total_value": 9170.8783599879,
"base_cost_quote": 2396.699717655,
"unrealized_pnl_exit_net": -1048.2136912674
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 15237.0000000006,
"quote_asset_bal": 7653.5329494478,
"total_value_mid": 9088.8583494478,
"total_value_exit_net": 9087.7818553978,
"total_value": 9088.8583494478,
"base_cost_quote": 2566.982974385,
"unrealized_pnl_exit_net": -1132.734068435
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 14605.2000000006,
"quote_asset_bal": 7715.2518876178,
"total_value_mid": 9127.5747276178,
"total_value_exit_net": 9126.5154854878,
"total_value": 9127.5747276178,
"base_cost_quote": 2506.897023695,
"unrealized_pnl_exit_net": -1095.633425825
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 13692.1000000006,
"quote_asset_bal": 7806.6464940503,
"total_value_mid": 9195.0254340503,
"total_value_exit_net": 9193.9841498453,
"total_value": 9195.0254340503,
"base_cost_quote": 2416.7170494025,
"unrealized_pnl_exit_net": -1029.3793936074
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 14487.9000000006,
"quote_asset_bal": 7732.6885896478,
"total_value_mid": 9107.5902996478,
"total_value_exit_net": 9106.5591233653,
"total_value": 9107.5902996478,
"base_cost_quote": 2491.86517826,
"unrealized_pnl_exit_net": -1117.9946445425
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 12898.3000000006,
"quote_asset_bal": 7889.0750944552,
"total_value_mid": 9238.2372744553,
"total_value_exit_net": 9237.2254028203,
"total_value": 9238.2372744553,
"base_cost_quote": 2336.57039446,
"unrealized_pnl_exit_net": -988.4200860949
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 13583.9000000006,
"quote_asset_bal": 7819.6326590827,
"total_value_mid": 9183.4562190828,
"total_value_exit_net": 9182.4333514128,
"total_value": 9183.4562190828,
"base_cost_quote": 2406.6902549425,
"unrealized_pnl_exit_net": -1043.8895626124
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 18632.2000000006,
"quote_asset_bal": 7360.7175313002,
"total_value_mid": 8890.4211513003,
"total_value_exit_net": 8889.2738735853,
"total_value": 8890.4211513003,
"base_cost_quote": 2867.5134533225,
"unrealized_pnl_exit_net": -1338.9571110375
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 18024.6000000006,
"quote_asset_bal": 7414.8211914703,
"total_value_mid": 8970.3441714703,
"total_value_exit_net": 8969.1775292353,
"total_value": 8970.3441714703,
"base_cost_quote": 2817.4312197975,
"unrealized_pnl_exit_net": -1263.0748820325
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 16881.1000000006,
"quote_asset_bal": 7517.6291680452,
"total_value_mid": 9031.8638380453,
"total_value_exit_net": 9030.7281620428,
"total_value": 9031.8638380453,
"base_cost_quote": 2717.2528623375,
"unrealized_pnl_exit_net": -1204.15386834
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 16496.1000000006,
"quote_asset_bal": 7554.6989612002,
"total_value_mid": 9067.3913312003,
"total_value_exit_net": 9066.2568119228,
"total_value": 9067.3913312003,
"base_cost_quote": 2682.18176873,
"unrealized_pnl_exit_net": -1170.6239180075
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 17116.9000000006,
"quote_asset_bal": 7502.8041954652,
"total_value_mid": 9048.4602654653,
"total_value_exit_net": 9047.3010234128,
"total_value": 9048.4602654653,
"base_cost_quote": 2737.27497767,
"unrealized_pnl_exit_net": -1192.7781497225
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 17969.7000000006,
"quote_asset_bal": 7428.8434201702,
"total_value_mid": 8997.5982301703,
"total_value_exit_net": 8996.4216640628,
"total_value": 8997.5982301703,
"base_cost_quote": 2812.420034225,
"unrealized_pnl_exit_net": -1244.8417903325
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 14292.8000000006,
"quote_asset_bal": 7771.8301651452,
"total_value_mid": 9173.9538451453,
"total_value_exit_net": 9172.9022523853,
"total_value": 9173.9538451453,
"base_cost_quote": 2471.8203058725,
"unrealized_pnl_exit_net": -1070.7482186324
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 18633.6000000006,
"quote_asset_bal": 7383.7420775527,
"total_value_mid": 8893.0636775528,
"total_value_exit_net": 8891.9316863528,
"total_value": 8893.0636775528,
"base_cost_quote": 2862.4398509725,
"unrealized_pnl_exit_net": -1354.2502421725
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 19273.0000000005,
"quote_asset_bal": 7335.5946473002,
"total_value_mid": 8894.7803473003,
"total_value_exit_net": 8893.6109580253,
"total_value": 8894.7803473003,
"base_cost_quote": 2912.5223446925,
"unrealized_pnl_exit_net": -1354.5060339675
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 18063.9000000005,
"quote_asset_bal": 7437.9570324752,
"total_value_mid": 8993.2588224753,
"total_value_exit_net": 8992.0923461328,
"total_value": 8993.2588224753,
"base_cost_quote": 2812.3756709775,
"unrealized_pnl_exit_net": -1258.24035732
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 18939.2000000005,
"quote_asset_bal": 7364.5596730827,
"total_value_mid": 8938.4071930827,
"total_value_exit_net": 8937.2268074427,
"total_value": 8938.4071930827,
"base_cost_quote": 2887.4881431125,
"unrealized_pnl_exit_net": -1314.8210087525
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 19018.3000000005,
"quote_asset_bal": 7361.9237991527,
"total_value_mid": 8906.2097591527,
"total_value_exit_net": 8905.0515446827,
"total_value": 8906.2097591527,
"base_cost_quote": 2892.4916129025,
"unrealized_pnl_exit_net": -1349.3638673725
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 20278.3000000005,
"quote_asset_bal": 7262.5711125277,
"total_value_mid": 8850.3620025277,
"total_value_exit_net": 8849.1711593602,
"total_value": 8850.3620025277,
"base_cost_quote": 2992.6531777775,
"unrealized_pnl_exit_net": -1406.053130945
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 22727.8000000005,
"quote_asset_bal": 7083.3176658727,
"total_value_mid": 8665.1725458727,
"total_value_exit_net": 8663.9861547127,
"total_value": 8665.1725458727,
"base_cost_quote": 3172.9483778375,
"unrealized_pnl_exit_net": -1592.2798889975
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 25056.8000000004,
"quote_asset_bal": 6929.9113248227,
"total_value_mid": 8541.0635648227,
"total_value_exit_net": 8539.8552006427,
"total_value": 8541.0635648227,
"base_cost_quote": 3328.1591386675,
"unrealized_pnl_exit_net": -1718.2152628475
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 24144.2000000004,
"quote_asset_bal": 6992.1291679152,
"total_value_mid": 8629.1059279152,
"total_value_exit_net": 8627.8781953452,
"total_value": 8629.1059279152,
"base_cost_quote": 3268.076440415,
"unrealized_pnl_exit_net": -1632.327412985
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 23710.9000000003,
"quote_asset_bal": 7023.7574605727,
"total_value_mid": 8647.9541105728,
"total_value_exit_net": 8646.7359630853,
"total_value": 8647.9541105728,
"base_cost_quote": 3238.0328546125,
"unrealized_pnl_exit_net": -1615.0543521
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 24555.1000000002,
"quote_asset_bal": 6969.9241861077,
"total_value_mid": 8575.8277261077,
"total_value_exit_net": 8574.6232984528,
"total_value": 8575.8277261077,
"base_cost_quote": 3293.10253592,
"unrealized_pnl_exit_net": -1688.403423575
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 23797.3000000002,
"quote_asset_bal": 7020.8815992952,
"total_value_mid": 8643.8574592953,
"total_value_exit_net": 8642.6402274003,
"total_value": 8643.8574592953,
"base_cost_quote": 3243.0423289025,
"unrealized_pnl_exit_net": -1621.2837007975
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 23218.8000000002,
"quote_asset_bal": 7061.4010736903,
"total_value_mid": 8716.9015136903,
"total_value_exit_net": 8715.6598883603,
"total_value": 8716.9015136903,
"base_cost_quote": 3202.9828368,
"unrealized_pnl_exit_net": -1548.72402213
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 25041.6000000002,
"quote_asset_bal": 6936.7579460478,
"total_value_mid": 8607.0326660478,
"total_value_exit_net": 8605.7799600078,
"total_value": 8607.0326660478,
"base_cost_quote": 3328.1635219525,
"unrealized_pnl_exit_net": -1659.1415079925
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 22797.8000000001,
"quote_asset_bal": 7092.8110780353,
"total_value_mid": 8759.3302580353,
"total_value_exit_net": 8758.0803686503,
"total_value": 8759.3302580353,
"base_cost_quote": 3172.92687172,
"unrealized_pnl_exit_net": -1507.657581105
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 22666.4,
"quote_asset_bal": 7103.7210773803,
"total_value_mid": 8774.2347573803,
"total_value_exit_net": 8772.9818721203,
"total_value": 8774.2347573803,
"base_cost_quote": 3162.9063319475,
"unrealized_pnl_exit_net": -1493.6455372075
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 21092.5,
"quote_asset_bal": 7225.0059067602,
"total_value_mid": 8880.7671567602,
"total_value_exit_net": 8879.5253358227,
"total_value": 8880.7671567602,
"base_cost_quote": 3042.7245631725,
"unrealized_pnl_exit_net": -1388.20513411
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 21754.3999999999,
"quote_asset_bal": 7175.4822417027,
"total_value_mid": 8817.9394417027,
"total_value_exit_net": 8816.7075988027,
"total_value": 8817.9394417027,
"base_cost_quote": 3092.8050954225,
"unrealized_pnl_exit_net": -1451.5797383225
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 21891.5999999999,
"quote_asset_bal": 7166.0225118502,
"total_value_mid": 8777.2442718502,
"total_value_exit_net": 8776.0358555302,
"total_value": 8777.2442718502,
"base_cost_quote": 3102.814306705,
"unrealized_pnl_exit_net": -1492.800963025
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 21423.6999999998,
"quote_asset_bal": 7201.7891596378,
"total_value_mid": 8866.4106496377,
"total_value_exit_net": 8865.1621835202,
"total_value": 8866.4106496377,
"base_cost_quote": 3067.7608262975,
"unrealized_pnl_exit_net": -1404.387802415
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 21423.6999999998,
"quote_asset_bal": 7202.3079583177,
"total_value_mid": 8864.7870783177,
"total_value_exit_net": 8863.5402189777,
"total_value": 8864.7870783177,
"base_cost_quote": 3067.7631080075,
"unrealized_pnl_exit_net": -1406.5308473475
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 20650.4999999998,
"quote_asset_bal": 7262.9875194603,
"total_value_mid": 8908.8323694602,
"total_value_exit_net": 8907.5979858227,
"total_value": 8908.8323694602,
"base_cost_quote": 3007.6629866975,
"unrealized_pnl_exit_net": -1363.052520335
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 20841.4999999998,
"quote_asset_bal": 7248.5061090077,
"total_value_mid": 8899.1529090077,
"total_value_exit_net": 8897.9149239077,
"total_value": 8899.1529090077,
"base_cost_quote": 3022.689378045,
"unrealized_pnl_exit_net": -1373.280563145
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 21871.7999999998,
"quote_asset_bal": 7168.7325061778,
"total_value_mid": 8837.5508461777,
"total_value_exit_net": 8836.2992324227,
"total_value": 8837.5508461777,
"base_cost_quote": 3102.8149371775,
"unrealized_pnl_exit_net": -1435.2482109325
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 22005.8999999998,
"quote_asset_bal": 7159.0562962052,
"total_value_mid": 8844.7082362052,
"total_value_exit_net": 8843.4439972502,
"total_value": 8844.7082362052,
"base_cost_quote": 3112.823968325,
"unrealized_pnl_exit_net": -1428.43626728
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 24216.4999999997,
"quote_asset_bal": 6999.3521412753,
"total_value_mid": 8694.5071412752,
"total_value_exit_net": 8693.2357750252,
"total_value": 8694.5071412752,
"base_cost_quote": 3273.0841433775,
"unrealized_pnl_exit_net": -1579.2005096275
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 26685.3999999997,
"quote_asset_bal": 6834.9597653903,
"total_value_mid": 8534.8197453902,
"total_value_exit_net": 8533.5448504052,
"total_value": 8534.8197453902,
"base_cost_quote": 3438.3175955925,
"unrealized_pnl_exit_net": -1739.7325105775
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 26607.7999999997,
"quote_asset_bal": 6840.7252751228,
"total_value_mid": 8540.9636951227,
"total_value_exit_net": 8539.6885163077,
"total_value": 8540.9636951227,
"base_cost_quote": 3433.320240385,
"unrealized_pnl_exit_net": -1734.3569992
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 27967.8999999997,
"quote_asset_bal": 6757.0330074478,
"total_value_mid": 8471.4652774478,
"total_value_exit_net": 8470.1794532453,
"total_value": 8471.4652774478,
"base_cost_quote": 3518.438871515,
"unrealized_pnl_exit_net": -1805.2924257175
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 28721.2999999997,
"quote_asset_bal": 6712.9762451403,
"total_value_mid": 8404.6608151403,
"total_value_exit_net": 8403.3920517128,
"total_value": 8404.6608151403,
"base_cost_quote": 3563.4918058925,
"unrealized_pnl_exit_net": -1873.07599932
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 30987.2999999997,
"quote_asset_bal": 6589.3559261078,
"total_value_mid": 8234.7815561077,
"total_value_exit_net": 8233.5474868852,
"total_value": 8234.7815561077,
"base_cost_quote": 3688.66006173,
"unrealized_pnl_exit_net": -2044.4685009525
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 31174.4999999997,
"quote_asset_bal": 6580.7959259403,
"total_value_mid": 8242.3967759402,
"total_value_exit_net": 8241.1505753027,
"total_value": 8242.3967759402,
"base_cost_quote": 3698.6670513475,
"unrealized_pnl_exit_net": -2038.312401985
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 31081.6999999997,
"quote_asset_bal": 6587.1684511953,
"total_value_mid": 8228.2822111952,
"total_value_exit_net": 8227.0513758752,
"total_value": 8228.2822111952,
"base_cost_quote": 3693.6582375525,
"unrealized_pnl_exit_net": -2053.7753128725
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 30890.9999999997,
"quote_asset_bal": 6597.7046149528,
"total_value_mid": 8265.8186149527,
"total_value_exit_net": 8264.5675294527,
"total_value": 8265.8186149527,
"base_cost_quote": 3683.65258894,
"unrealized_pnl_exit_net": -2016.78967444
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 32944.4999999997,
"quote_asset_bal": 6494.8213939502,
"total_value_mid": 8115.6907939502,
"total_value_exit_net": 8114.4751419002,
"total_value": 8115.6907939502,
"base_cost_quote": 3788.7918943225,
"unrealized_pnl_exit_net": -2169.1381463725
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 31361.9999999997,
"quote_asset_bal": 6578.6276731427,
"total_value_mid": 8209.4516731427,
"total_value_exit_net": 8208.2285551427,
"total_value": 8209.4516731427,
"base_cost_quote": 3708.68114629,
"unrealized_pnl_exit_net": -2079.08026429
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 33144.9999999997,
"quote_asset_bal": 6489.7307406777,
"total_value_mid": 8103.8922406777,
"total_value_exit_net": 8102.6816195527,
"total_value": 8103.8922406777,
"base_cost_quote": 3798.8093718,
"unrealized_pnl_exit_net": -2185.858492925
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 30008.9999999997,
"quote_asset_bal": 6656.9902594527,
"total_value_mid": 8358.5005594527,
"total_value_exit_net": 8357.2244267277,
"total_value": 8358.5005594527,
"base_cost_quote": 3633.582164265,
"unrealized_pnl_exit_net": -1933.34799699
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 30723.5999999997,
"quote_asset_bal": 6617.8013760877,
"total_value_mid": 8295.3099360877,
"total_value_exit_net": 8294.0518046677,
"total_value": 8295.3099360877,
"base_cost_quote": 3673.64280723,
"unrealized_pnl_exit_net": -1997.39237865
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 30000.6999999997,
"quote_asset_bal": 6658.4231040377,
"total_value_mid": 8344.4624440377,
"total_value_exit_net": 8343.1979145327,
"total_value": 8344.4624440377,
"base_cost_quote": 3633.581203545,
"unrealized_pnl_exit_net": -1948.80639305
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 29828.5999999997,
"quote_asset_bal": 6668.9390702852,
"total_value_mid": 8381.1007102852,
"total_value_exit_net": 8379.8165890552,
"total_value": 8381.1007102852,
"base_cost_quote": 3623.5783170025,
"unrealized_pnl_exit_net": -1912.7007982325
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 31761.7999999997,
"quote_asset_bal": 6564.4428157027,
"total_value_mid": 8196.9993357027,
"total_value_exit_net": 8195.7749183127,
"total_value": 8196.9993357027,
"base_cost_quote": 3728.71960387,
"unrealized_pnl_exit_net": -2097.38750126
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 31941.8999999997,
"quote_asset_bal": 6555.3286962752,
"total_value_mid": 8200.3365462752,
"total_value_exit_net": 8199.1027903877,
"total_value": 8200.3365462752,
"base_cost_quote": 3738.7319975375,
"unrealized_pnl_exit_net": -2094.957903425
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 32332.3999999997,
"quote_asset_bal": 6535.8318824927,
"total_value_mid": 8178.3178024927,
"total_value_exit_net": 8177.0859380527,
"total_value": 8178.3178024927,
"base_cost_quote": 3758.758816395,
"unrealized_pnl_exit_net": -2117.504760835
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 33548.2999999997,
"quote_asset_bal": 6476.9342213027,
"total_value_mid": 8100.6719413027,
"total_value_exit_net": 8099.4541380127,
"total_value": 8100.6719413027,
"base_cost_quote": 3818.847008765,
"unrealized_pnl_exit_net": -2196.327092055
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 32727.3999999997,
"quote_asset_bal": 6517.9310649152,
"total_value_mid": 8177.2102449152,
"total_value_exit_net": 8175.9657855302,
"total_value": 8177.2102449152,
"base_cost_quote": 3778.7920000225,
"unrealized_pnl_exit_net": -2120.7572794075
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 31377.1999999997,
"quote_asset_bal": 6588.9167518827,
"total_value_mid": 8283.2855518827,
"total_value_exit_net": 8282.0147752827,
"total_value": 8283.2855518827,
"base_cost_quote": 3708.69895964,
"unrealized_pnl_exit_net": -2015.60093624
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 28834.6999999997,
"quote_asset_bal": 6735.4046306677,
"total_value_mid": 8500.0882706676,
"total_value_exit_net": 8498.7647579376,
"total_value": 8500.0882706676,
"base_cost_quote": 3563.49681965,
"unrealized_pnl_exit_net": -1800.13669238
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 24837.0999999996,
"quote_asset_bal": 7004.3284917177,
"total_value_mid": 8663.4467717176,
"total_value_exit_net": 8662.2024330076,
"total_value": 8663.4467717176,
"base_cost_quote": 3298.1125806375,
"unrealized_pnl_exit_net": -1640.2386393475
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 26287.8999999995,
"quote_asset_bal": 6910.2191058502,
"total_value_mid": 8600.5310758501,
"total_value_exit_net": 8599.2633418726,
"total_value": 8600.5310758501,
"base_cost_quote": 3393.2521018025,
"unrealized_pnl_exit_net": -1704.20786578
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 25022.0999999994,
"quote_asset_bal": 6996.3797657402,
"total_value_mid": 8707.8914057401,
"total_value_exit_net": 8706.6077720101,
"total_value": 8707.8914057401,
"base_cost_quote": 3308.12811666,
"unrealized_pnl_exit_net": -1597.90011039
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 24735.6999999994,
"quote_asset_bal": 7017.4878510652,
"total_value_mid": 8726.7247210651,
"total_value_exit_net": 8725.4427934126,
"total_value": 8726.7247210651,
"base_cost_quote": 3288.105330825,
"unrealized_pnl_exit_net": -1580.1503884775
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 24091.9999999993,
"quote_asset_bal": 7063.9159394952,
"total_value_mid": 8784.0847394951,
"total_value_exit_net": 8782.7946128951,
"total_value": 8784.0847394951,
"base_cost_quote": 3243.038395955,
"unrealized_pnl_exit_net": -1524.1597225551
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 24162.0999999992,
"quote_asset_bal": 7060.1637635727,
"total_value_mid": 8821.5808535726,
"total_value_exit_net": 8820.2597907551,
"total_value": 8821.5808535726,
"base_cost_quote": 3248.044667845,
"unrealized_pnl_exit_net": -1487.9486406626
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 23758.4999999992,
"quote_asset_bal": 7090.8534679752,
"total_value_mid": 8858.4858679751,
"total_value_exit_net": 8857.1601436751,
"total_value": 8858.4858679751,
"base_cost_quote": 3217.9968188475,
"unrealized_pnl_exit_net": -1451.6901431476
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 25655.7999999991,
"quote_asset_bal": 6956.2751219277,
"total_value_mid": 8726.5253219276,
"total_value_exit_net": 8725.1976342776,
"total_value": 8726.5253219276,
"base_cost_quote": 3353.218208885,
"unrealized_pnl_exit_net": -1584.2956965351
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 24873.799999999,
"quote_asset_bal": 7012.4018296152,
"total_value_mid": 8788.3911496151,
"total_value_exit_net": 8787.0591576251,
"total_value": 8788.3911496151,
"base_cost_quote": 3298.12193765,
"unrealized_pnl_exit_net": -1523.4646096401
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 26549.399999999,
"quote_asset_bal": 6898.0653754152,
"total_value_mid": 8663.6004754151,
"total_value_exit_net": 8662.2763240901,
"total_value": 8663.6004754151,
"base_cost_quote": 3413.2844548075,
"unrealized_pnl_exit_net": -1649.0735061326
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 25531.9999999989,
"quote_asset_bal": 6969.3987277552,
"total_value_mid": 8692.8087277551,
"total_value_exit_net": 8691.5161702551,
"total_value": 8692.8087277551,
"base_cost_quote": 3343.178564795,
"unrealized_pnl_exit_net": -1621.0611222951
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 26508.0999999989,
"quote_asset_bal": 6905.0995305227,
"total_value_mid": 8657.2849405226,
"total_value_exit_net": 8655.9708014651,
"total_value": 8657.2849405226,
"base_cost_quote": 3408.2820257975,
"unrealized_pnl_exit_net": -1657.4107548551
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 27279.3999999989,
"quote_asset_bal": 6855.9526482052,
"total_value_mid": 8590.9224882051,
"total_value_exit_net": 8589.6212608251,
"total_value": 8590.9224882051,
"base_cost_quote": 3458.3473666625,
"unrealized_pnl_exit_net": -1724.6787540426
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 28762.7999999989,
"quote_asset_bal": 6766.5100728127,
"total_value_mid": 8457.7627128126,
"total_value_exit_net": 8456.4942733326,
"total_value": 8457.7627128126,
"base_cost_quote": 3548.457888905,
"unrealized_pnl_exit_net": -1858.4736883851
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 27833.3999999989,
"quote_asset_bal": 6822.9561922927,
"total_value_mid": 8520.7935922926,
"total_value_exit_net": 8519.5202142426,
"total_value": 8520.7935922926,
"base_cost_quote": 3493.38919834,
"unrealized_pnl_exit_net": -1796.8251763901
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 28493.6999999989,
"quote_asset_bal": 6783.8157686177,
"total_value_mid": 8484.8896586176,
"total_value_exit_net": 8483.6138532001,
"total_value": 8484.8896586176,
"base_cost_quote": 3533.46126987,
"unrealized_pnl_exit_net": -1833.6631852876
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 29004.3999999989,
"quote_asset_bal": 6755.1425223652,
"total_value_mid": 8483.8047623651,
"total_value_exit_net": 8482.5082656851,
"total_value": 8483.8047623651,
"base_cost_quote": 3563.4977103175,
"unrealized_pnl_exit_net": -1836.1319669976
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 28584.0999999989,
"quote_asset_bal": 6781.1865187627,
"total_value_mid": 8493.3741087626,
"total_value_exit_net": 8492.0899680701,
"total_value": 8493.3741087626,
"base_cost_quote": 3538.459595805,
"unrealized_pnl_exit_net": -1827.5561464976
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 23381.2999999988,
"quote_asset_bal": 7128.3529667877,
"total_value_mid": 8846.8785167876,
"total_value_exit_net": 8845.5896226251,
"total_value": 8846.8785167876,
"base_cost_quote": 3192.957063105,
"unrealized_pnl_exit_net": -1475.7204072676
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 21169.9999999987,
"quote_asset_bal": 7299.9886838977,
"total_value_mid": 8987.2376838976,
"total_value_exit_net": 8985.9722471476,
"total_value": 8987.2376838976,
"base_cost_quote": 3022.68911785,
"unrealized_pnl_exit_net": -1336.7055546001
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 18775.5999999987,
"quote_asset_bal": 7502.8818094477,
"total_value_mid": 9170.1550894476,
"total_value_exit_net": 9168.9046344876,
"total_value": 9170.1550894476,
"base_cost_quote": 2822.3663984075,
"unrealized_pnl_exit_net": -1156.3435733676
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 19945.3999999987,
"quote_asset_bal": 7405.2526841577,
"total_value_mid": 9092.6335241575,
"total_value_exit_net": 9091.3679885275,
"total_value": 9092.6335241575,
"base_cost_quote": 2922.5437751325,
"unrealized_pnl_exit_net": -1236.4284707626
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 18776.2999999987,
"quote_asset_bal": 7509.1532373151,
"total_value_mid": 9161.467637315,
"total_value_exit_net": 9160.228401515,
"total_value": 9161.467637315,
"base_cost_quote": 2822.369210515,
"unrealized_pnl_exit_net": -1171.2940463151
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 17971.4999999987,
"quote_asset_bal": 7587.0080477651,
"total_value_mid": 9236.791747765,
"total_value_exit_net": 9235.55440999,
"total_value": 9236.791747765,
"base_cost_quote": 2747.233060635,
"unrealized_pnl_exit_net": -1098.6866984101
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 19733.9999999987,
"quote_asset_bal": 7433.8354524251,
"total_value_mid": 9127.012652425,
"total_value_exit_net": 9125.742769525,
"total_value": 9127.012652425,
"base_cost_quote": 2902.5100611075,
"unrealized_pnl_exit_net": -1210.6027440076
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 21433.1999999987,
"quote_asset_bal": 7295.6294399126,
"total_value_mid": 8980.2789599125,
"total_value_exit_net": 8979.0154727725,
"total_value": 8980.2789599125,
"base_cost_quote": 3042.7229819875,
"unrealized_pnl_exit_net": -1359.3369491276
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 22613.5999999987,
"quote_asset_bal": 7206.9495742801,
"total_value_mid": 8912.01501428,
"total_value_exit_net": 8910.7362152,
"total_value": 8912.01501428,
"base_cost_quote": 3132.8716227975,
"unrealized_pnl_exit_net": -1429.0849818776
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 23493.9999999986,
"quote_asset_bal": 7142.9635528001,
"total_value_mid": 8862.7243528,
"total_value_exit_net": 8861.4345322,
"total_value": 8862.7243528,
"base_cost_quote": 3197.973222405,
"unrealized_pnl_exit_net": -1479.5022430051
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 22832.3999999985,
"quote_asset_bal": 7194.1313669326,
"total_value_mid": 8931.6770069325,
"total_value_exit_net": 8930.3738477025,
"total_value": 8931.6770069325,
"base_cost_quote": 3147.89619278,
"unrealized_pnl_exit_net": -1411.6537120101
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 23786.8999999984,
"quote_asset_bal": 7125.0435357101,
"total_value_mid": 8866.24461571,
"total_value_exit_net": 8864.9387149,
"total_value": 8866.24461571,
"base_cost_quote": 3218.0086877425,
"unrealized_pnl_exit_net": -1478.1135085526
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 22991.4999999983,
"quote_asset_bal": 7186.0783654001,
"total_value_mid": 8924.2357654,
"total_value_exit_net": 8922.93214735,
"total_value": 8924.2357654,
"base_cost_quote": 3157.913239935,
"unrealized_pnl_exit_net": -1421.0594579851
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 23060.8999999982,
"quote_asset_bal": 7182.0215000376,
"total_value_mid": 8927.7316300375,
"total_value_exit_net": 8926.42234744,
"total_value": 8927.7316300375,
"base_cost_quote": 3162.9203424475,
"unrealized_pnl_exit_net": -1418.5194950451
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 19652.8999999982,
"quote_asset_bal": 7459.6068407926,
"total_value_mid": 9094.7281207925,
"total_value_exit_net": 9093.5017798325,
"total_value": 9094.7281207925,
"base_cost_quote": 2887.4934070575,
"unrealized_pnl_exit_net": -1253.5984680177
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 22021.0999999982,
"quote_asset_bal": 7275.9883111951,
"total_value_mid": 8925.368701195,
"total_value_exit_net": 8924.1316659025,
"total_value": 8925.368701195,
"base_cost_quote": 3072.77461382,
"unrealized_pnl_exit_net": -1424.6312591126
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 22699.4999999982,
"quote_asset_bal": 7226.4766652426,
"total_value_mid": 8888.0800652425,
"total_value_exit_net": 8886.8338626925,
"total_value": 8888.0800652425,
"base_cost_quote": 3122.844378,
"unrealized_pnl_exit_net": -1462.4871805501
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 23111.9999999981,
"quote_asset_bal": 7197.4775155951,
"total_value_mid": 8856.919115595,
"total_value_exit_net": 8855.674534395,
"total_value": 8856.919115595,
"base_cost_quote": 3152.882869985,
"unrealized_pnl_exit_net": -1494.6858511851
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 22566.199999998,
"quote_asset_bal": 7238.0925078476,
"total_value_mid": 8876.3986278475,
"total_value_exit_net": 8875.1698982575,
"total_value": 8876.3986278475,
"base_cost_quote": 3112.824488715,
"unrealized_pnl_exit_net": -1475.7470983052
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 22094.799999998,
"quote_asset_bal": 7273.9274452726,
"total_value_mid": 8928.8279652725,
"total_value_exit_net": 8927.5867898825,
"total_value": 8928.8279652725,
"base_cost_quote": 3077.7813760775,
"unrealized_pnl_exit_net": -1424.1220314677
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 23060.9999999979,
"quote_asset_bal": 7204.8227777051,
"total_value_mid": 8858.296477705,
"total_value_exit_net": 8857.05637243,
"total_value": 8858.296477705,
"base_cost_quote": 3147.87729862,
"unrealized_pnl_exit_net": -1495.6437038952
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 25497.4999999978,
"quote_asset_bal": 7035.6582858551,
"total_value_mid": 8756.739535855,
"total_value_exit_net": 8755.4487249175,
"total_value": 8756.739535855,
"base_cost_quote": 3318.13197393,
"unrealized_pnl_exit_net": -1598.3415348677
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 29291.7999999978,
"quote_asset_bal": 6802.2431352877,
"total_value_mid": 8474.8049152875,
"total_value_exit_net": 8473.5504939525,
"total_value": 8474.8049152875,
"base_cost_quote": 3553.4665525875,
"unrealized_pnl_exit_net": -1882.1591939226
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 28343.4999999978,
"quote_asset_bal": 6859.1961126477,
"total_value_mid": 8542.8000126475,
"total_value_exit_net": 8541.5373097225,
"total_value": 8542.8000126475,
"base_cost_quote": 3498.3909568475,
"unrealized_pnl_exit_net": -1816.0497597726
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 27759.0999999978,
"quote_asset_bal": 6895.4763978252,
"total_value_mid": 8577.677857825,
"total_value_exit_net": 8576.41620673,
"total_value": 8577.677857825,
"base_cost_quote": 3463.35192727,
"unrealized_pnl_exit_net": -1782.4121183651
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 27435.0999999978,
"quote_asset_bal": 6916.6897460777,
"total_value_mid": 8617.6659460775,
"total_value_exit_net": 8616.3902139275,
"total_value": 8617.6659460775,
"base_cost_quote": 3443.3154011375,
"unrealized_pnl_exit_net": -1743.6149332876
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 28004.7999999978,
"quote_asset_bal": 6882.5820880027,
"total_value_mid": 8574.0720080026,
"total_value_exit_net": 8572.8033905626,
"total_value": 8574.0720080026,
"base_cost_quote": 3478.3680909525,
"unrealized_pnl_exit_net": -1788.1467883926
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 28848.5999999978,
"quote_asset_bal": 6833.3481933102,
"total_value_mid": 8518.1064333101,
"total_value_exit_net": 8516.8428646301,
"total_value": 8518.1064333101,
"base_cost_quote": 3528.425435825,
"unrealized_pnl_exit_net": -1844.9307645051
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 30907.9999999978,
"quote_asset_bal": 6719.6922250802,
"total_value_mid": 8376.3610250801,
"total_value_exit_net": 8375.1185234801,
"total_value": 8376.3610250801,
"base_cost_quote": 3643.593747325,
"unrealized_pnl_exit_net": -1988.1674489251
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 30263.5999999978,
"quote_asset_bal": 6755.7848431152,
"total_value_mid": 8408.1774031151,
"total_value_exit_net": 8406.9381086951,
"total_value": 8408.1774031151,
"base_cost_quote": 3608.550764785,
"unrealized_pnl_exit_net": -1957.3974992051
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 29103.1999999978,
"quote_asset_bal": 6821.6256678702,
"total_value_mid": 8497.9699878701,
"total_value_exit_net": 8496.7127296301,
"total_value": 8497.9699878701,
"base_cost_quote": 3543.4527979,
"unrealized_pnl_exit_net": -1868.3657361401
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 28412.5999999978,
"quote_asset_bal": 6862.4284968302,
"total_value_mid": 8533.08937683,
"total_value_exit_net": 8531.83638117,
"total_value": 8533.08937683,
"base_cost_quote": 3503.40010089,
"unrealized_pnl_exit_net": -1833.9922165501
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 26375.7999999978,
"quote_asset_bal": 6989.6718674702,
"total_value_mid": 8664.5351674701,
"total_value_exit_net": 8663.2790199951,
"total_value": 8664.5351674701,
"base_cost_quote": 3378.216223345,
"unrealized_pnl_exit_net": -1704.6090708201
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 25832.5999999978,
"quote_asset_bal": 7025.9217293427,
"total_value_mid": 8751.5394093426,
"total_value_exit_net": 8750.2451960826,
"total_value": 8751.5394093426,
"base_cost_quote": 3343.1634834925,
"unrealized_pnl_exit_net": -1618.8400167527
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 28095.5999999978,
"quote_asset_bal": 6881.9489101952,
"total_value_mid": 8612.6378701951,
"total_value_exit_net": 8611.3398534751,
"total_value": 8612.6378701951,
"base_cost_quote": 3488.3675149,
"unrealized_pnl_exit_net": -1758.9765716201
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 30496.9999999978,
"quote_asset_bal": 6743.0226768577,
"total_value_mid": 8435.6061768576,
"total_value_exit_net": 8434.3367392326,
"total_value": 8435.6061768576,
"base_cost_quote": 3628.5556872325,
"unrealized_pnl_exit_net": -1937.2416248576
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 30864.3999999978,
"quote_asset_bal": 6724.7446264852,
"total_value_mid": 8379.0764664851,
"total_value_exit_net": 8377.8357176051,
"total_value": 8379.0764664851,
"base_cost_quote": 3648.58326666,
"unrealized_pnl_exit_net": -1995.4921755401
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 31241.5999999978,
"quote_asset_bal": 6705.3754526327,
"total_value_mid": 8348.6836126326,
"total_value_exit_net": 8347.4511315126,
"total_value": 8348.6836126326,
"base_cost_quote": 3668.6086044075,
"unrealized_pnl_exit_net": -2026.5329255276
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 31142.7999999978,
"quote_asset_bal": 6710.9172576002,
"total_value_mid": 8392.6284576001,
"total_value_exit_net": 8391.3671742001,
"total_value": 8392.6284576001,
"base_cost_quote": 3663.60768653,
"unrealized_pnl_exit_net": -1983.1577699301
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 31314.1999999978,
"quote_asset_bal": 6701.9219953977,
"total_value_mid": 8408.5458953976,
"total_value_exit_net": 8407.2659274726,
"total_value": 8408.5458953976,
"base_cost_quote": 3673.6325495425,
"unrealized_pnl_exit_net": -1968.2886174676
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 32358.2999999978,
"quote_asset_bal": 6647.8946677852,
"total_value_mid": 8307.8754577851,
"total_value_exit_net": 8306.6304721926,
"total_value": 8307.8754577851,
"base_cost_quote": 3728.693164055,
"unrealized_pnl_exit_net": -2069.9573596476
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 32555.8999999978,
"quote_asset_bal": 6639.0660550377,
"total_value_mid": 8305.9281350376,
"total_value_exit_net": 8304.6779884776,
"total_value": 8305.9281350376,
"base_cost_quote": 3738.7078994775,
"unrealized_pnl_exit_net": -2073.0959660376
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 32166.9999999978,
"quote_asset_bal": 6659.8376755127,
"total_value_mid": 8329.3049755126,
"total_value_exit_net": 8328.0528750376,
"total_value": 8329.3049755126,
"base_cost_quote": 3718.6841128925,
"unrealized_pnl_exit_net": -2050.4689133676
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 32164.4999999978,
"quote_asset_bal": 6660.7011497102,
"total_value_mid": 8333.2551497101,
"total_value_exit_net": 8332.0007342101,
"total_value": 8333.2551497101,
"base_cost_quote": 3718.684303035,
"unrealized_pnl_exit_net": -2047.3847185351
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 33561.2999999978,
"quote_asset_bal": 6591.4053743927,
"total_value_mid": 8202.3477743926,
"total_value_exit_net": 8201.1395675926,
"total_value": 8202.3477743926,
"base_cost_quote": 3788.7687369675,
"unrealized_pnl_exit_net": -2179.0345437676
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 35171.6999999978,
"quote_asset_bal": 6517.6889086252,
"total_value_mid": 8128.5527686251,
"total_value_exit_net": 8127.3446207301,
"total_value": 8128.5527686251,
"base_cost_quote": 3863.861984695,
"unrealized_pnl_exit_net": -2254.2062725901
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 32214.5999999978,
"quote_asset_bal": 6664.2919455902,
"total_value_mid": 8355.5584455901,
"total_value_exit_net": 8354.2899957151,
"total_value": 8355.5584455901,
"base_cost_quote": 3718.678919,
"unrealized_pnl_exit_net": -2028.6808688751
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 30914.6999999978,
"quote_asset_bal": 6735.3518012377,
"total_value_mid": 8444.9347112376,
"total_value_exit_net": 8443.6525240551,
"total_value": 8444.9347112376,
"base_cost_quote": 3648.5865190975,
"unrealized_pnl_exit_net": -1940.2857962801
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 32214.6999999978,
"quote_asset_bal": 6666.1153490552,
"total_value_mid": 8360.6085690551,
"total_value_exit_net": 8359.3376991401,
"total_value": 8360.6085690551,
"base_cost_quote": 3718.672053855,
"unrealized_pnl_exit_net": -2025.4497037701
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 32505.6999999978,
"quote_asset_bal": 6652.1427096552,
"total_value_mid": 8332.687399655,
"total_value_exit_net": 8331.4269911375,
"total_value": 8332.687399655,
"base_cost_quote": 3733.694312105,
"unrealized_pnl_exit_net": -2054.4100306226
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 32501.1999999978,
"quote_asset_bal": 6653.2553750927,
"total_value_mid": 8346.5678950925,
"total_value_exit_net": 8345.2979107025,
"total_value": 8346.5678950925,
"base_cost_quote": 3733.6925007475,
"unrealized_pnl_exit_net": -2041.6499651376
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 30655.5999999978,
"quote_asset_bal": 6754.6249828276,
"total_value_mid": 8495.8630628275,
"total_value_exit_net": 8494.5571342675,
"total_value": 8495.8630628275,
"base_cost_quote": 3633.5601777875,
"unrealized_pnl_exit_net": -1893.6280263476
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 22276.4999999978,
"quote_asset_bal": 7313.3024944226,
"total_value_mid": 8859.2915944225,
"total_value_exit_net": 8858.1321025975,
"total_value": 8859.2915944225,
"base_cost_quote": 3077.745919505,
"unrealized_pnl_exit_net": -1532.9163113302
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 10585.7999999976,
"quote_asset_bal": 8516.5044099527,
"total_value_mid": 9882.0726099524,
"total_value_exit_net": 9881.0484338024,
"total_value": 9882.0726099524,
"base_cost_quote": 1880.53206204,
"unrealized_pnl_exit_net": -515.9880381903
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 10741.3999999977,
"quote_asset_bal": 8501.5219918627,
"total_value_mid": 9951.6109918624,
"total_value_exit_net": 9950.5234251124,
"total_value": 9951.6109918624,
"base_cost_quote": 1900.5889434275,
"unrealized_pnl_exit_net": -451.5875101778
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 9866.6999999977,
"quote_asset_bal": 8645.7931976277,
"total_value_mid": 9991.6110776274,
"total_value_exit_net": 9990.6017142174,
"total_value": 9991.6110776274,
"base_cost_quote": 1760.2003909225,
"unrealized_pnl_exit_net": -415.3918743328
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 10544.1999999977,
"quote_asset_bal": 8559.3307838227,
"total_value_mid": 9912.1516438224,
"total_value_exit_net": 9911.1370281774,
"total_value": 9912.1516438224,
"base_cost_quote": 1850.3854190025,
"unrealized_pnl_exit_net": -498.5791746478
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 12613.5999999977,
"quote_asset_bal": 8316.3146938477,
"total_value_mid": 9700.0266138474,
"total_value_exit_net": 9698.9888299074,
"total_value": 9700.0266138474,
"base_cost_quote": 2095.880952665,
"unrealized_pnl_exit_net": -713.2068166053
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 12612.0999999977,
"quote_asset_bal": 8318.2250193427,
"total_value_mid": 9676.5481893424,
"total_value_exit_net": 9675.5294469649,
"total_value": 9676.5481893424,
"base_cost_quote": 2095.86804299,
"unrealized_pnl_exit_net": -738.5636153677
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 14798.9999999977,
"quote_asset_bal": 8099.5731242852,
"total_value_mid": 9532.116324285,
"total_value_exit_net": 9531.041916885,
"total_value": 9532.116324285,
"base_cost_quote": 2316.27098131,
"unrealized_pnl_exit_net": -884.8021887102
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 15502.8999999977,
"quote_asset_bal": 8037.6321818852,
"total_value_mid": 9463.898981885,
"total_value_exit_net": 9462.829281785,
"total_value": 9463.898981885,
"base_cost_quote": 2381.3996612125,
"unrealized_pnl_exit_net": -956.2025613127
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 16068.6999999977,
"quote_asset_bal": 7990.8217509677,
"total_value_mid": 9416.1154409675,
"total_value_exit_net": 9415.0464707,
"total_value": 9416.1154409675,
"base_cost_quote": 2431.4543140675,
"unrealized_pnl_exit_net": -1007.2295943352
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 16014.8999999977,
"quote_asset_bal": 7998.1443992876,
"total_value_mid": 9441.0868892874,
"total_value_exit_net": 9440.0046824199,
"total_value": 9441.0868892874,
"base_cost_quote": 2426.45423682,
"unrealized_pnl_exit_net": -984.5939536877
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 15901.7999999977,
"quote_asset_bal": 8010.3713498351,
"total_value_mid": 9451.0744298349,
"total_value_exit_net": 9449.9939025249,
"total_value": 9451.0744298349,
"base_cost_quote": 2416.43476785,
"unrealized_pnl_exit_net": -976.8122151602
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 17641.8999999977,
"quote_asset_bal": 7858.0054857251,
"total_value_mid": 9345.2176557249,
"total_value_exit_net": 9344.1022465974,
"total_value": 9345.2176557249,
"base_cost_quote": 2571.7145303925,
"unrealized_pnl_exit_net": -1085.6177695202
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 19171.2999999977,
"quote_asset_bal": 7735.1400355877,
"total_value_mid": 9272.6782955875,
"total_value_exit_net": 9271.5251418925,
"total_value": 9272.6782955875,
"base_cost_quote": 2696.93450499,
"unrealized_pnl_exit_net": -1160.5493986852
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 19170.0999999977,
"quote_asset_bal": 7737.5488401602,
"total_value_mid": 9271.15684016,
"total_value_exit_net": 9270.00663416,
"total_value": 9271.15684016,
"base_cost_quote": 2696.924117205,
"unrealized_pnl_exit_net": -1164.4663232052
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 19814.1999999977,
"quote_asset_bal": 7689.6928314902,
"total_value_mid": 9229.25617149,
"total_value_exit_net": 9228.101498985,
"total_value": 9229.25617149,
"base_cost_quote": 2746.9874265475,
"unrealized_pnl_exit_net": -1208.5787590527
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 13818.4999999977,
"quote_asset_bal": 8225.4842159927,
"total_value_mid": 9500.9317659925,
"total_value_exit_net": 9499.97518033,
"total_value": 9500.9317659925,
"base_cost_quote": 2216.08393734,
"unrealized_pnl_exit_net": -941.5929730027
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 15612.4999999977,
"quote_asset_bal": 8072.9339036802,
"total_value_mid": 9378.13890368,
"total_value_exit_net": 9377.15999993,
"total_value": 9378.13890368,
"base_cost_quote": 2371.3305750575,
"unrealized_pnl_exit_net": -1067.1044788077
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 16590.6999999977,
"quote_asset_bal": 7995.2412906453,
"total_value_mid": 9334.1107806451,
"total_value_exit_net": 9333.1066285276,
"total_value": 9334.1107806451,
"base_cost_quote": 2451.454753155,
"unrealized_pnl_exit_net": -1113.5894152727
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 16965.0999999976,
"quote_asset_bal": 7967.7670085028,
"total_value_mid": 9321.5819885026,
"total_value_exit_net": 9320.5666272676,
"total_value": 9321.5819885026,
"base_cost_quote": 2481.50025039,
"unrealized_pnl_exit_net": -1128.7006316252
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 16904.9999999976,
"quote_asset_bal": 7973.7865182528,
"total_value_mid": 9326.1865182526,
"total_value_exit_net": 9325.1722182526,
"total_value": 9326.1865182526,
"base_cost_quote": 2476.4890448025,
"unrealized_pnl_exit_net": -1125.1033448027
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 15742.5999999976,
"quote_asset_bal": 8071.1602131353,
"total_value_mid": 9388.8158331351,
"total_value_exit_net": 9387.8275914201,
"total_value": 9388.8158331351,
"base_cost_quote": 2381.349773825,
"unrealized_pnl_exit_net": -1064.6823955402
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 14977.7999999976,
"quote_asset_bal": 8139.4022719378,
"total_value_mid": 9434.9819719376,
"total_value_exit_net": 9434.0102871626,
"total_value": 9434.9819719376,
"base_cost_quote": 2316.25953273,
"unrealized_pnl_exit_net": -1021.6515175052
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 14613.3999999976,
"quote_asset_bal": 8173.2413962353,
"total_value_mid": 9446.0685362351,
"total_value_exit_net": 9445.1139158801,
"total_value": 9446.0685362351,
"base_cost_quote": 2286.2046784825,
"unrealized_pnl_exit_net": -1014.3321588377
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 16531.4999999976,
"quote_asset_bal": 8016.1944586478,
"total_value_mid": 9358.5522586476,
"total_value_exit_net": 9357.5454902976,
"total_value": 9358.5522586476,
"base_cost_quote": 2446.4712683425,
"unrealized_pnl_exit_net": -1105.1202366927
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 18074.1999999975,
"quote_asset_bal": 7897.8536020604,
"total_value_mid": 9282.3373220602,
"total_value_exit_net": 9281.2989592702,
"total_value": 9282.3373220602,
"base_cost_quote": 2566.6719112625,
"unrealized_pnl_exit_net": -1183.2265540527
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 16229.8999999973,
"quote_asset_bal": 8045.7244765479,
"total_value_mid": 9381.4452465476,
"total_value_exit_net": 9380.4434559702,
"total_value": 9381.4452465476,
"base_cost_quote": 2421.4336241825,
"unrealized_pnl_exit_net": -1086.7146447602
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 17035.3999999974,
"quote_asset_bal": 7982.2503224354,
"total_value_mid": 9345.0823224352,
"total_value_exit_net": 9344.0601984352,
"total_value": 9345.0823224352,
"base_cost_quote": 2486.5238052325,
"unrealized_pnl_exit_net": -1124.7139292327
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 14100.9999999973,
"quote_asset_bal": 8231.2248948979,
"total_value_mid": 9501.7249948977,
"total_value_exit_net": 9500.7721198227,
"total_value": 9501.7249948977,
"base_cost_quote": 2241.1230526025,
"unrealized_pnl_exit_net": -971.5758276777
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 15577.7999999974,
"quote_asset_bal": 8110.8820709005,
"total_value_mid": 9417.8594909002,
"total_value_exit_net": 9416.8792578352,
"total_value": 9417.8594909002,
"base_cost_quote": 2366.3442381075,
"unrealized_pnl_exit_net": -1060.3470511727
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 16676.7999999973,
"quote_asset_bal": 8023.7603916055,
"total_value_mid": 9361.2397516053,
"total_value_exit_net": 9360.2366420853,
"total_value": 9361.2397516053,
"base_cost_quote": 2456.4808098725,
"unrealized_pnl_exit_net": -1120.0045593927
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 18494.7999999972,
"quote_asset_bal": 7885.017836138,
"total_value_mid": 9279.5257561378,
"total_value_exit_net": 9278.4798751978,
"total_value": 9279.5257561378,
"base_cost_quote": 2596.7014965725,
"unrealized_pnl_exit_net": -1203.2394575127
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 21637.2999999972,
"quote_asset_bal": 7660.7538586955,
"total_value_mid": 9149.4000986953,
"total_value_exit_net": 9148.2836140153,
"total_value": 9149.4000986953,
"base_cost_quote": 2822.0510820975,
"unrealized_pnl_exit_net": -1334.5213267777
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 21795.899999997,
"quote_asset_bal": 7652.855861978,
"total_value_mid": 9134.9770619778,
"total_value_exit_net": 9133.8654710778,
"total_value": 9134.9770619778,
"base_cost_quote": 2832.0736734075,
"unrealized_pnl_exit_net": -1351.0640643077
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 22458.799999997,
"quote_asset_bal": 7614.773976463,
"total_value_mid": 9099.3006564628,
"total_value_exit_net": 9098.1872614528,
"total_value": 9099.3006564628,
"base_cost_quote": 2872.132705165,
"unrealized_pnl_exit_net": -1388.7194201752
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 21634.0999999969,
"quote_asset_bal": 7670.673381968,
"total_value_mid": 9137.4653619678,
"total_value_exit_net": 9136.3652679828,
"total_value": 9137.4653619678,
"base_cost_quote": 2817.0492935675,
"unrealized_pnl_exit_net": -1351.3574075527
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 19906.0999999968,
"quote_asset_bal": 7792.0111170655,
"total_value_mid": 9201.3629970653,
"total_value_exit_net": 9200.3059831553,
"total_value": 9201.3629970653,
"base_cost_quote": 2696.86837543,
"unrealized_pnl_exit_net": -1288.5735093402
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 21738.5999999968,
"quote_asset_bal": 7668.2693771105,
"total_value_mid": 9107.3646971103,
"total_value_exit_net": 9106.2853756203,
"total_value": 9107.3646971103,
"base_cost_quote": 2822.0685351775,
"unrealized_pnl_exit_net": -1384.0525366677
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 18504.5999999966,
"quote_asset_bal": 7905.647226763,
"total_value_mid": 9276.8380867628,
"total_value_exit_net": 9275.8096936178,
"total_value": 9276.8380867628,
"base_cost_quote": 2586.67311092,
"unrealized_pnl_exit_net": -1216.5106440653
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 18769.6999999965,
"quote_asset_bal": 7886.948968943,
"total_value_mid": 9305.9382889428,
"total_value_exit_net": 9304.8740469528,
"total_value": 9305.9382889428,
"base_cost_quote": 2606.7126192875,
"unrealized_pnl_exit_net": -1188.7875412778
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 18382.8999999964,
"quote_asset_bal": 7918.3254681005,
"total_value_mid": 9352.1916681003,
"total_value_exit_net": 9351.1162684503,
"total_value": 9352.1916681003,
"base_cost_quote": 2576.6585956625,
"unrealized_pnl_exit_net": -1143.8677953128
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 11438.1999999964,
"quote_asset_bal": 8605.4125573006,
"total_value_mid": 9888.7785973002,
"total_value_exit_net": 9887.8160727702,
"total_value": 9888.7785973002,
"base_cost_quote": 1895.4454086675,
"unrealized_pnl_exit_net": -613.0418931979
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 12133.0999999964,
"quote_asset_bal": 8533.016943068,
"total_value_mid": 9833.6852630677,
"total_value_exit_net": 9832.7097618277,
"total_value": 9833.6852630677,
"base_cost_quote": 1970.5712908525,
"unrealized_pnl_exit_net": -670.8784720929
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 13564.9999999964,
"quote_asset_bal": 8389.9846143631,
"total_value_mid": 9717.9981143627,
"total_value_exit_net": 9717.0021042377,
"total_value": 9717.9981143627,
"base_cost_quote": 2115.8198656425,
"unrealized_pnl_exit_net": -788.8023757679
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 14025.2999999964,
"quote_asset_bal": 8347.8517401406,
"total_value_mid": 9711.1109001402,
"total_value_exit_net": 9710.0884557702,
"total_value": 9711.1109001402,
"base_cost_quote": 2160.939389925,
"unrealized_pnl_exit_net": -798.7026742954
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 14072.1999999964,
"quote_asset_bal": 8344.9132234331,
"total_value_mid": 9707.1021834328,
"total_value_exit_net": 9706.0805417128,
"total_value": 9707.1021834328,
"base_cost_quote": 2165.9410083275,
"unrealized_pnl_exit_net": -804.7736900479
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 16419.0999999964,
"quote_asset_bal": 8131.7704970106,
"total_value_mid": 9565.1579270103,
"total_value_exit_net": 9564.0828864378,
"total_value": 9565.1579270103,
"base_cost_quote": 2381.3264063125,
"unrealized_pnl_exit_net": -949.0140168853
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 16815.9999999964,
"quote_asset_bal": 8098.6510065081,
"total_value_mid": 9551.5534065078,
"total_value_exit_net": 9550.4637297078,
"total_value": 9551.5534065078,
"base_cost_quote": 2416.385030575,
"unrealized_pnl_exit_net": -964.5723073753
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 16873.5999999964,
"quote_asset_bal": 8094.7307603281,
"total_value_mid": 9555.9845203278,
"total_value_exit_net": 9554.8885800078,
"total_value": 9555.9845203278,
"base_cost_quote": 2421.3877297875,
"unrealized_pnl_exit_net": -961.2299101078
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 17104.0999999964,
"quote_asset_bal": 8075.7667581081,
"total_value_mid": 9548.4297681077,
"total_value_exit_net": 9547.3252708502,
"total_value": 9548.4297681077,
"base_cost_quote": 2441.427638455,
"unrealized_pnl_exit_net": -969.8691257128
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 17396.5999999964,
"quote_asset_bal": 8052.4565512805,
"total_value_mid": 9531.1675512802,
"total_value_exit_net": 9530.0585180302,
"total_value": 9531.1675512802,
"base_cost_quote": 2466.4598285275,
"unrealized_pnl_exit_net": -988.8578617778
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 18850.8999999964,
"quote_asset_bal": 7933.8244343556,
"total_value_mid": 9458.8622443553,
"total_value_exit_net": 9457.7184659978,
"total_value": 9458.8622443553,
"base_cost_quote": 2586.6536463325,
"unrealized_pnl_exit_net": -1062.7596146903
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 17222.7999999964,
"quote_asset_bal": 8070.8960488381,
"total_value_mid": 9550.3345688378,
"total_value_exit_net": 9549.2249899478,
"total_value": 9550.3345688378,
"base_cost_quote": 2451.43740015,
"unrealized_pnl_exit_net": -973.1084590403
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 18534.9999999964,
"quote_asset_bal": 7962.1438725331,
"total_value_mid": 9487.5743725328,
"total_value_exit_net": 9486.4302996578,
"total_value": 9487.5743725328,
"base_cost_quote": 2561.6179035975,
"unrealized_pnl_exit_net": -1037.3314764728
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 16204.6999999964,
"quote_asset_bal": 8165.6850564606,
"total_value_mid": 9620.8671164603,
"total_value_exit_net": 9619.7757299153,
"total_value": 9620.8671164603,
"base_cost_quote": 2361.2806832875,
"unrealized_pnl_exit_net": -907.1900098328
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 17113.3999999964,
"quote_asset_bal": 8086.7797140656,
"total_value_mid": 9570.5114940653,
"total_value_exit_net": 9569.3986952303,
"total_value": 9570.5114940653,
"base_cost_quote": 2441.4051916325,
"unrealized_pnl_exit_net": -958.7862104678
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 16811.5999999964,
"quote_asset_bal": 8113.6309645931,
"total_value_mid": 9562.7908845927,
"total_value_exit_net": 9561.7040146527,
"total_value": 9562.7908845927,
"base_cost_quote": 2416.368378095,
"unrealized_pnl_exit_net": -968.2953280353
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 20549.4999999964,
"quote_asset_bal": 7809.6639480356,
"total_value_mid": 9389.9204980353,
"total_value_exit_net": 9388.7353056228,
"total_value": 9389.9204980353,
"base_cost_quote": 2721.86130608,
"unrealized_pnl_exit_net": -1142.7899484928
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 19846.0999999963,
"quote_asset_bal": 7865.5657641305,
"total_value_mid": 9447.2999341302,
"total_value_exit_net": 9446.1136335027,
"total_value": 9447.2999341302,
"base_cost_quote": 2666.783368585,
"unrealized_pnl_exit_net": -1086.2354992128
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 19777.8999999963,
"quote_asset_bal": 7871.458882133,
"total_value_mid": 9447.7575121327,
"total_value_exit_net": 9446.5752881602,
"total_value": 9447.7575121327,
"base_cost_quote": 2661.765688145,
"unrealized_pnl_exit_net": -1086.6492821178
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 19342.3999999963,
"quote_asset_bal": 7908.1648954856,
"total_value_mid": 9476.8335354853,
"total_value_exit_net": 9475.6570340053,
"total_value": 9476.8335354853,
"base_cost_quote": 2626.7222552675,
"unrealized_pnl_exit_net": -1059.2301167478
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 20235.7999999963,
"quote_asset_bal": 7838.8589402281,
"total_value_mid": 9413.2041802278,
"total_value_exit_net": 9412.0234212978,
"total_value": 9413.2041802278,
"base_cost_quote": 2696.830847305,
"unrealized_pnl_exit_net": -1123.6663662353
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 19670.4999999963,
"quote_asset_bal": 7884.6859401531,
"total_value_mid": 9446.5236401528,
"total_value_exit_net": 9445.3522618778,
"total_value": 9446.5236401528,
"base_cost_quote": 2651.7539149425,
"unrealized_pnl_exit_net": -1091.0875932178
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 19370.5999999963,
"quote_asset_bal": 7910.9287633706,
"total_value_mid": 9450.8914633703,
"total_value_exit_net": 9449.7364913453,
"total_value": 9450.8914633703,
"base_cost_quote": 2626.69194255,
"unrealized_pnl_exit_net": -1087.8842145753
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 20135.4999999963,
"quote_asset_bal": 7851.9049239931,
"total_value_mid": 9410.3926239928,
"total_value_exit_net": 9409.2237582178,
"total_value": 9410.3926239928,
"base_cost_quote": 2686.7940553525,
"unrealized_pnl_exit_net": -1129.4752211278
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 15715.7999999962,
"quote_asset_bal": 8227.2752466456,
"total_value_mid": 9657.4130466452,
"total_value_exit_net": 9656.3404432952,
"total_value": 9657.4130466452,
"base_cost_quote": 2316.20733361,
"unrealized_pnl_exit_net": -887.1421369603
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 15627.4999999962,
"quote_asset_bal": 8241.1146301057,
"total_value_mid": 9669.4681301053,
"total_value_exit_net": 9668.3968649803,
"total_value": 9669.4681301053,
"base_cost_quote": 2306.1761858875,
"unrealized_pnl_exit_net": -878.8939510128
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 16468.0999999962,
"quote_asset_bal": 8167.5951024982,
"total_value_mid": 9618.4347124978,
"total_value_exit_net": 9617.3465827903,
"total_value": 9618.4347124978,
"base_cost_quote": 2381.2964438575,
"unrealized_pnl_exit_net": -931.5449635653
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 13432.8999999962,
"quote_asset_bal": 8456.7340810107,
"total_value_mid": 9787.9344710103,
"total_value_exit_net": 9786.9360707178,
"total_value": 9787.9344710103,
"base_cost_quote": 2095.8118108475,
"unrealized_pnl_exit_net": -765.6098211404
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 14103.2999999962,
"quote_asset_bal": 8393.5729750682,
"total_value_mid": 9753.1310950679,
"total_value_exit_net": 9752.1114264779,
"total_value": 9753.1310950679,
"base_cost_quote": 2160.9128200125,
"unrealized_pnl_exit_net": -802.3743686029
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 14849.0999999962,
"quote_asset_bal": 8324.8550132908,
"total_value_mid": 9714.7307732904,
"total_value_exit_net": 9713.6883664704,
"total_value": 9714.7307732904,
"base_cost_quote": 2231.0208116,
"unrealized_pnl_exit_net": -842.1874584204
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 14906.4999999962,
"quote_asset_bal": 8321.2442122633,
"total_value_mid": 9704.567412263,
"total_value_exit_net": 9703.529919863,
"total_value": 9704.567412263,
"base_cost_quote": 2236.0269734075,
"unrealized_pnl_exit_net": -853.7412658079
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 16290.4999999962,
"quote_asset_bal": 8197.5419244408,
"total_value_mid": 9637.6221244405,
"total_value_exit_net": 9636.5420642905,
"total_value": 9637.6221244405,
"base_cost_quote": 2361.2381313975,
"unrealized_pnl_exit_net": -922.2379915478
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 14555.9999999962,
"quote_asset_bal": 8360.3994279884,
"total_value_mid": 9714.107427988,
"total_value_exit_net": 9713.092146988,
"total_value": 9714.107427988,
"base_cost_quote": 2200.966427705,
"unrealized_pnl_exit_net": -848.2737087054
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 14400.2999999962,
"quote_asset_bal": 8376.7592464809,
"total_value_mid": 9727.5073864805,
"total_value_exit_net": 9726.4943253755,
"total_value": 9727.5073864805,
"base_cost_quote": 2185.94979367,
"unrealized_pnl_exit_net": -836.2147147754
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 14560.9999999962,
"quote_asset_bal": 8362.5882794384,
"total_value_mid": 9715.305179438,
"total_value_exit_net": 9714.290641763,
"total_value": 9715.305179438,
"base_cost_quote": 2200.96624757,
"unrealized_pnl_exit_net": -849.2638852454
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 14331.5999999962,
"quote_asset_bal": 8384.0477241359,
"total_value_mid": 9752.7155241356,
"total_value_exit_net": 9751.6890232856,
"total_value": 9752.7155241356,
"base_cost_quote": 2180.93931863,
"unrealized_pnl_exit_net": -813.2980194804
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 15457.8999999962,
"quote_asset_bal": 8280.5442846909,
"total_value_mid": 9688.7589746906,
"total_value_exit_net": 9687.7028136731,
"total_value": 9688.7589746906,
"base_cost_quote": 2286.11914438,
"unrealized_pnl_exit_net": -878.9606153978
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 16134.0999999962,
"quote_asset_bal": 8222.2101662659,
"total_value_mid": 9651.6914262656,
"total_value_exit_net": 9650.6193153206,
"total_value": 9651.6914262656,
"base_cost_quote": 2346.238500105,
"unrealized_pnl_exit_net": -917.8293510503
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 15838.6999999962,
"quote_asset_bal": 8248.8448795259,
"total_value_mid": 9675.9117495256,
"total_value_exit_net": 9674.8414493731,
"total_value": 9675.9117495256,
"base_cost_quote": 2321.1841133975,
"unrealized_pnl_exit_net": -895.1875435503
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 15509.7999999962,
"quote_asset_bal": 8280.4325018459,
"total_value_mid": 9698.0282218456,
"total_value_exit_net": 9696.9650250556,
"total_value": 9698.0282218456,
"base_cost_quote": 2291.13282182,
"unrealized_pnl_exit_net": -874.6002986103
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 15342.3999999962,
"quote_asset_bal": 8296.5135979909,
"total_value_mid": 9709.5486379906,
"total_value_exit_net": 9708.4888617106,
"total_value": 9709.5486379906,
"base_cost_quote": 2276.1200206575,
"unrealized_pnl_exit_net": -864.1447569378
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 17263.5999999962,
"quote_asset_bal": 8127.2403801509,
"total_value_mid": 9606.7309001506,
"total_value_exit_net": 9605.6212822606,
"total_value": 9606.7309001506,
"base_cost_quote": 2446.4199698975,
"unrealized_pnl_exit_net": -968.0390677878
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 16056.9999999962,
"quote_asset_bal": 8233.7802807084,
"total_value_mid": 9664.458980708,
"total_value_exit_net": 9663.385971683,
"total_value": 9664.458980708,
"base_cost_quote": 2341.2401241325,
"unrealized_pnl_exit_net": -911.6344331578
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 17193.8999999962,
"quote_asset_bal": 8134.7971212309,
"total_value_mid": 9620.3500812306,
"total_value_exit_net": 9619.2359165106,
"total_value": 9620.3500812306,
"base_cost_quote": 2441.3984866075,
"unrealized_pnl_exit_net": -956.9596913278
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 19244.2999999962,
"quote_asset_bal": 7965.5729903409,
"total_value_mid": 9472.4016803406,
"total_value_exit_net": 9471.2715588231,
"total_value": 9472.4016803406,
"base_cost_quote": 2611.6817433375,
"unrealized_pnl_exit_net": -1105.9831748553
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 19556.5999999962,
"quote_asset_bal": 7941.3414227909,
"total_value_mid": 9464.8005627906,
"total_value_exit_net": 9463.6579684356,
"total_value": 9464.8005627906,
"base_cost_quote": 2636.7291948475,
"unrealized_pnl_exit_net": -1114.4126492028
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 20442.1999999962,
"quote_asset_bal": 7872.0955977909,
"total_value_mid": 9460.4545377906,
"total_value_exit_net": 9459.2632685856,
"total_value": 9460.4545377906,
"base_cost_quote": 2706.8498159,
"unrealized_pnl_exit_net": -1119.6821451053
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 23233.4999999961,
"quote_asset_bal": 7667.7802464409,
"total_value_mid": 9308.0653464406,
"total_value_exit_net": 9306.8351326156,
"total_value": 9308.0653464406,
"base_cost_quote": 2912.1770058825,
"unrealized_pnl_exit_net": -1273.1221197078
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 21509.199999996,
"quote_asset_bal": 7794.0004968059,
"total_value_mid": 9402.8886568056,
"total_value_exit_net": 9401.6819906856,
"total_value": 9402.8886568056,
"base_cost_quote": 2786.9817197875,
"unrealized_pnl_exit_net": -1179.3002259078
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 21116.4999999959,
"quote_asset_bal": 7824.8615360509,
"total_value_mid": 9412.8223360506,
"total_value_exit_net": 9411.6313654506,
"total_value": 9412.8223360506,
"base_cost_quote": 2756.9303981875,
"unrealized_pnl_exit_net": -1170.1605687878
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 20724.1999999959,
"quote_asset_bal": 7855.4141484409,
"total_value_mid": 9453.2499684406,
"total_value_exit_net": 9452.0515915756,
"total_value": 9453.2499684406,
"base_cost_quote": 2726.8785561975,
"unrealized_pnl_exit_net": -1130.2411130628
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 21992.3999999959,
"quote_asset_bal": 7760.7490038434,
"total_value_mid": 9377.1904038431,
"total_value_exit_net": 9375.9780727931,
"total_value": 9377.1904038431,
"base_cost_quote": 2822.0287453575,
"unrealized_pnl_exit_net": -1206.7996764078
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 22128.2999999958,
"quote_asset_bal": 7751.3995688559,
"total_value_mid": 9366.7654688556,
"total_value_exit_net": 9365.5539444306,
"total_value": 9366.7654688556,
"base_cost_quote": 2832.04748378,
"unrealized_pnl_exit_net": -1217.8931082053
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 20529.6999999958,
"quote_asset_bal": 7872.2453503959,
"total_value_mid": 9450.9792803956,
"total_value_exit_net": 9449.7952299481,
"total_value": 9450.9792803956,
"base_cost_quote": 2711.864954435,
"unrealized_pnl_exit_net": -1134.3150748828
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 20016.0999999958,
"quote_asset_bal": 7913.0552332759,
"total_value_mid": 9480.3158632756,
"total_value_exit_net": 9479.1404178031,
"total_value": 9480.3158632756,
"base_cost_quote": 2671.78717863,
"unrealized_pnl_exit_net": -1105.7019941028
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 20278.1999999957,
"quote_asset_bal": 7893.7532727959,
"total_value_mid": 9453.1468527956,
"total_value_exit_net": 9451.9773076106,
"total_value": 9453.1468527956,
"base_cost_quote": 2691.82443531,
"unrealized_pnl_exit_net": -1133.6004004953
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 21142.6999999957,
"quote_asset_bal": 7829.1183758259,
"total_value_mid": 9416.9351458256,
"total_value_exit_net": 9415.7442832481,
"total_value": 9416.9351458256,
"base_cost_quote": 2756.92290257,
"unrealized_pnl_exit_net": -1170.2969951478
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 22231.4999999956,
"quote_asset_bal": 7749.5096516959,
"total_value_mid": 9354.6239516956,
"total_value_exit_net": 9353.4201159706,
"total_value": 9354.6239516956,
"base_cost_quote": 2837.0328700175,
"unrealized_pnl_exit_net": -1233.1224057428
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 20621.4999999956,
"quote_asset_bal": 7870.4366961284,
"total_value_mid": 9450.0435961281,
"total_value_exit_net": 9448.8588909531,
"total_value": 9450.0435961281,
"base_cost_quote": 2716.8542035675,
"unrealized_pnl_exit_net": -1138.4320087428
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 21913.5999999955,
"quote_asset_bal": 7775.9653655934,
"total_value_mid": 9344.9791255931,
"total_value_exit_net": 9343.8023652731,
"total_value": 9344.9791255931,
"base_cost_quote": 2812.0076952025,
"unrealized_pnl_exit_net": -1244.1706955228
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 21160.0999999954,
"quote_asset_bal": 7831.6098027684,
"total_value_mid": 9408.0372527681,
"total_value_exit_net": 9406.8549321806,
"total_value": 9408.0372527681,
"base_cost_quote": 2756.9253544075,
"unrealized_pnl_exit_net": -1181.6802249953
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 22331.1999999954,
"quote_asset_bal": 7747.1163779084,
"total_value_mid": 9352.7296579081,
"total_value_exit_net": 9351.5254479481,
"total_value": 9352.7296579081,
"base_cost_quote": 2842.037390595,
"unrealized_pnl_exit_net": -1237.6283205553
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 22239.5999999953,
"quote_asset_bal": 7759.5220824584,
"total_value_mid": 8847.0385224582,
"total_value_exit_net": 8846.2228851282,
"total_value": 8847.0385224582,
"base_cost_quote": 2832.0645065375,
"unrealized_pnl_exit_net": -1745.3637038677
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 24008.2999999953,
"quote_asset_bal": 7668.1166321384,
"total_value_mid": 8902.1432521382,
"total_value_exit_net": 8901.2177321732,
"total_value": 8902.1432521382,
"base_cost_quote": 2927.1827917875,
"unrealized_pnl_exit_net": -1694.0816917527
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 23118.6999999953,
"quote_asset_bal": 7715.6328047184,
"total_value_mid": 8998.7206547181,
"total_value_exit_net": 8997.7583388306,
"total_value": 8998.7206547181,
"base_cost_quote": 2882.1297273125,
"unrealized_pnl_exit_net": -1600.0041932003
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 22883.5999999953,
"quote_asset_bal": 7728.6427255159,
"total_value_mid": 9138.2724855156,
"total_value_exit_net": 9137.2152631956,
"total_value": 9138.2724855156,
"base_cost_quote": 2872.116893315,
"unrealized_pnl_exit_net": -1463.5443556353
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 24315.8999999953,
"quote_asset_bal": 7645.5274690883,
"total_value_mid": 9024.2389990881,
"total_value_exit_net": 9023.2049654406,
"total_value": 9024.2389990881,
"base_cost_quote": 2957.2420393275,
"unrealized_pnl_exit_net": -1579.5645429753
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 25469.4999999953,
"quote_asset_bal": 7582.4325419708,
"total_value_mid": 8978.1611419706,
"total_value_exit_net": 8977.1143455206,
"total_value": 8978.1611419706,
"base_cost_quote": 3022.3270465,
"unrealized_pnl_exit_net": -1627.6452429503
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 24787.7999999953,
"quote_asset_bal": 7625.2478911608,
"total_value_mid": 8983.6193311605,
"total_value_exit_net": 8982.6005525805,
"total_value": 8983.6193311605,
"base_cost_quote": 2982.270806835,
"unrealized_pnl_exit_net": -1624.9181454153
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 26292.9999999953,
"quote_asset_bal": 7547.9535517958,
"total_value_mid": 8907.3016517955,
"total_value_exit_net": 8906.2821407205,
"total_value": 8907.3016517955,
"base_cost_quote": 3062.379683465,
"unrealized_pnl_exit_net": -1704.0510945402
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 26111.5999999953,
"quote_asset_bal": 7559.1789001833,
"total_value_mid": 8901.315140183,
"total_value_exit_net": 8900.308538003,
"total_value": 8901.315140183,
"base_cost_quote": 3052.3613253275,
"unrealized_pnl_exit_net": -1711.2316875077
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 25828.4999999953,
"quote_asset_bal": 7575.2575165983,
"total_value_mid": 8928.670916598,
"total_value_exit_net": 8927.655856548,
"total_value": 8928.670916598,
"base_cost_quote": 3037.3475934675,
"unrealized_pnl_exit_net": -1684.9492535177
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 26206.6999999953,
"quote_asset_bal": 7556.4170775458,
"total_value_mid": 8921.7861475455,
"total_value_exit_net": 8920.762120743,
"total_value": 8921.7861475455,
"base_cost_quote": 3057.37447237,
"unrealized_pnl_exit_net": -1693.0294291727
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 27805.3999999953,
"quote_asset_bal": 7477.6587390183,
"total_value_mid": 8826.2206390181,
"total_value_exit_net": 8825.2092175931,
"total_value": 8826.2206390181,
"base_cost_quote": 3137.4844198025,
"unrealized_pnl_exit_net": -1789.9339412277
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 28121.1999999953,
"quote_asset_bal": 7463.9262884983,
"total_value_mid": 8813.743888498,
"total_value_exit_net": 8812.731525298,
"total_value": 8813.743888498,
"base_cost_quote": 3152.4983518125,
"unrealized_pnl_exit_net": -1803.6931150127
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 27196.3999999953,
"quote_asset_bal": 7509.7640745458,
"total_value_mid": 8869.5840745455,
"total_value_exit_net": 8868.5642095455,
"total_value": 8869.5840745455,
"base_cost_quote": 3107.44111421,
"unrealized_pnl_exit_net": -1748.6409792102
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 26897.1999999953,
"quote_asset_bal": 7525.5338070533,
"total_value_mid": 8875.773247053,
"total_value_exit_net": 8874.760567473,
"total_value": 8875.773247053,
"base_cost_quote": 3092.4204671675,
"unrealized_pnl_exit_net": -1743.1937067477
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 27097.4999999953,
"quote_asset_bal": 7515.8490604058,
"total_value_mid": 8870.7240604055,
"total_value_exit_net": 8869.7079041555,
"total_value": 8870.7240604055,
"base_cost_quote": 3102.432860835,
"unrealized_pnl_exit_net": -1748.5740170852
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 26312.3999999953,
"quote_asset_bal": 7556.5850313258,
"total_value_mid": 8924.8298313255,
"total_value_exit_net": 8923.8036477255,
"total_value": 8924.8298313255,
"base_cost_quote": 3062.378842835,
"unrealized_pnl_exit_net": -1695.1602264352
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 27090.8999999953,
"quote_asset_bal": 7517.4743063908,
"total_value_mid": 8880.1465763905,
"total_value_exit_net": 8879.124572188,
"total_value": 8880.1465763905,
"base_cost_quote": 3102.4278771,
"unrealized_pnl_exit_net": -1740.7776113027
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 28415.7999999953,
"quote_asset_bal": 7453.4493726658,
"total_value_mid": 8814.5661926655,
"total_value_exit_net": 8813.5453550505,
"total_value": 8814.5661926655,
"base_cost_quote": 3167.519319095,
"unrealized_pnl_exit_net": -1807.4233367102
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 28104.5999999953,
"quote_asset_bal": 7469.5911395808,
"total_value_mid": 8821.4223995805,
"total_value_exit_net": 8820.4085261355,
"total_value": 8821.4223995805,
"base_cost_quote": 3152.49968281,
"unrealized_pnl_exit_net": -1801.6822962552
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 30954.4999999953,
"quote_asset_bal": 7341.1289093307,
"total_value_mid": 8693.8405593305,
"total_value_exit_net": 8692.826025593,
"total_value": 8693.8405593305,
"base_cost_quote": 3282.661410945,
"unrealized_pnl_exit_net": -1930.9642946827
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 30270.8999999953,
"quote_asset_bal": 7372.0526726882,
"total_value_mid": 8722.134812688,
"total_value_exit_net": 8721.122251083,
"total_value": 8722.134812688,
"base_cost_quote": 3252.6273522825,
"unrealized_pnl_exit_net": -1903.5577738877
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 29282.2999999953,
"quote_asset_bal": 7418.0986674632,
"total_value_mid": 8776.797387463,
"total_value_exit_net": 8775.778363423,
"total_value": 8776.797387463,
"base_cost_quote": 3207.5744879575,
"unrealized_pnl_exit_net": -1849.8947919977
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 30045.6999999953,
"quote_asset_bal": 7383.9714547107,
"total_value_mid": 8748.0462347105,
"total_value_exit_net": 8747.0231786255,
"total_value": 8748.0462347105,
"base_cost_quote": 3242.61237668,
"unrealized_pnl_exit_net": -1879.5606527652
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 33507.1999999953,
"quote_asset_bal": 7240.2360965433,
"total_value_mid": 8573.8226565431,
"total_value_exit_net": 8572.8224666231,
"total_value": 8573.8226565431,
"base_cost_quote": 3387.782392595,
"unrealized_pnl_exit_net": -2055.1960225152
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 32152.4999999953,
"quote_asset_bal": 7298.7518071908,
"total_value_mid": 8633.0805571906,
"total_value_exit_net": 8632.0798106281,
"total_value": 8633.0805571906,
"base_cost_quote": 3332.7157935975,
"unrealized_pnl_exit_net": -1999.3877901602
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 31460.8999999953,
"quote_asset_bal": 7330.6057979158,
"total_value_mid": 8677.1323179156,
"total_value_exit_net": 8676.1224230256,
"total_value": 8677.1323179156,
"base_cost_quote": 3302.67887279,
"unrealized_pnl_exit_net": -1957.1622476802
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 32779.7999999953,
"quote_asset_bal": 7277.0838680033,
"total_value_mid": 8621.0556680031,
"total_value_exit_net": 8620.0476891531,
"total_value": 8621.0556680031,
"base_cost_quote": 3357.7409283825,
"unrealized_pnl_exit_net": -2014.7771072327
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 29469.4999999953,
"quote_asset_bal": 7424.5687745383,
"total_value_mid": 8815.5291745381,
"total_value_exit_net": 8814.4859542381,
"total_value": 8815.5291745381,
"base_cost_quote": 3212.5712327075,
"unrealized_pnl_exit_net": -1822.6540530077
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 29580.0999999953,
"quote_asset_bal": 7421.0293175958,
"total_value_mid": 8805.3779975956,
"total_value_exit_net": 8804.3397360856,
"total_value": 8805.3779975956,
"base_cost_quote": 3217.57289114,
"unrealized_pnl_exit_net": -1834.2624726502
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 29680.9999999953,
"quote_asset_bal": 7417.2647759683,
"total_value_mid": 8782.5907759681,
"total_value_exit_net": 8781.5667814681,
"total_value": 8782.5907759681,
"base_cost_quote": 3222.5829959025,
"unrealized_pnl_exit_net": -1858.2809904027
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 29571.7999999953,
"quote_asset_bal": 7423.5069799558,
"total_value_mid": 8789.7241399556,
"total_value_exit_net": 8788.6994770856,
"total_value": 8789.7241399556,
"base_cost_quote": 3217.57749459,
"unrealized_pnl_exit_net": -1852.3849974602
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 30912.8999999953,
"quote_asset_bal": 7364.7692209058,
"total_value_mid": 8709.4803709056,
"total_value_exit_net": 8708.4718375431,
"total_value": 8709.4803709056,
"base_cost_quote": 3277.65583958,
"unrealized_pnl_exit_net": -1933.9532229427
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 32330.9999999953,
"quote_asset_bal": 7306.1604172258,
"total_value_mid": 8641.4307172256,
"total_value_exit_net": 8640.4292645006,
"total_value": 8641.4307172256,
"base_cost_quote": 3337.718112525,
"unrealized_pnl_exit_net": -2003.4492652502
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 32457.3999999953,
"quote_asset_bal": 7302.6879888584,
"total_value_mid": 8636.6871288582,
"total_value_exit_net": 8635.6866295032,
"total_value": 8636.6871288582,
"base_cost_quote": 3342.7242343025,
"unrealized_pnl_exit_net": -2009.7255936577
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 33858.4999999953,
"quote_asset_bal": 7248.6348162659,
"total_value_mid": 8521.7144162657,
"total_value_exit_net": 8520.7596065657,
"total_value": 8521.7144162657,
"base_cost_quote": 3397.783447765,
"unrealized_pnl_exit_net": -2125.6586574652
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 33722.2999999953,
"quote_asset_bal": 7253.9384555459,
"total_value_mid": 8589.3415355457,
"total_value_exit_net": 8588.3399832357,
"total_value": 8589.3415355457,
"base_cost_quote": 3392.7777463025,
"unrealized_pnl_exit_net": -2058.3762186127
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 34498.2999999952,
"quote_asset_bal": 7224.2309743159,
"total_value_mid": 8535.1663743157,
"total_value_exit_net": 8534.1831727657,
"total_value": 8535.1663743157,
"base_cost_quote": 3422.806801215,
"unrealized_pnl_exit_net": -2112.8546027652
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 35195.4999999952,
"quote_asset_bal": 7199.7620106683,
"total_value_mid": 8470.3195606682,
"total_value_exit_net": 8469.3666425057,
"total_value": 8470.3195606682,
"base_cost_quote": 3447.83305684,
"unrealized_pnl_exit_net": -2178.2284250027
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 35201.2999999951,
"quote_asset_bal": 7200.4790235708,
"total_value_mid": 8478.2862135706,
"total_value_exit_net": 8477.3278581781,
"total_value": 8478.2862135706,
"base_cost_quote": 3447.8364693975,
"unrealized_pnl_exit_net": -2170.9876347902
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 35515.7999999951,
"quote_asset_bal": 7191.2805237608,
"total_value_mid": 8484.0556437606,
"total_value_exit_net": 8483.0860624206,
"total_value": 8484.0556437606,
"base_cost_quote": 3457.8428285425,
"unrealized_pnl_exit_net": -2166.0372898827
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 31919.099999995,
"quote_asset_bal": 7340.3106247483,
"total_value_mid": 8725.5995647481,
"total_value_exit_net": 8724.5605980431,
"total_value": 8725.5995647481,
"base_cost_quote": 3312.68060847,
"unrealized_pnl_exit_net": -1928.4306351752
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 23082.999999995,
"quote_asset_bal": 7846.5106054083,
"total_value_mid": 8972.9610054081,
"total_value_exit_net": 8972.1161676081,
"total_value": 8972.9610054081,
"base_cost_quote": 2816.9932515675,
"unrealized_pnl_exit_net": -1691.3876893677
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 24496.599999995,
"quote_asset_bal": 7800.4351596083,
"total_value_mid": 8731.3059596081,
"total_value_exit_net": 8730.6078065081,
"total_value": 8731.3059596081,
"base_cost_quote": 2867.0394781075,
"unrealized_pnl_exit_net": -1936.8668312077
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 24247.2999999949,
"quote_asset_bal": 7811.8948023158,
"total_value_mid": 8716.3190923156,
"total_value_exit_net": 8715.6407740981,
"total_value": 8716.3190923156,
"base_cost_quote": 2857.03136765,
"unrealized_pnl_exit_net": -1953.2853958677
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 23370.8999999948,
"quote_asset_bal": 7851.2978554584,
"total_value_mid": 8783.7967654582,
"total_value_exit_net": 8783.0973912757,
"total_value": 8783.7967654582,
"base_cost_quote": 2821.9847724025,
"unrealized_pnl_exit_net": -1890.1852365852
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 24136.1999999948,
"quote_asset_bal": 7821.9372037009,
"total_value_mid": 8739.1128037007,
"total_value_exit_net": 8738.4249220007,
"total_value": 8739.1128037007,
"base_cost_quote": 2852.0227239825,
"unrealized_pnl_exit_net": -1935.5350056827
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 24013.3999999947,
"quote_asset_bal": 7827.5917545534,
"total_value_mid": 8735.2982745532,
"total_value_exit_net": 8734.6174946632,
"total_value": 8735.2982745532,
"base_cost_quote": 2847.0185136375,
"unrealized_pnl_exit_net": -1939.9927735277
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 24151.8999999947,
"quote_asset_bal": 7823.4089660659,
"total_value_mid": 8760.5026860657,
"total_value_exit_net": 8759.7998657757,
"total_value": 8760.5026860657,
"base_cost_quote": 2852.0245053175,
"unrealized_pnl_exit_net": -1915.6336056077
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 24951.5999999947,
"quote_asset_bal": 7793.7028600434,
"total_value_mid": 8716.9120600432,
"total_value_exit_net": 8716.2196531432,
"total_value": 8716.9120600432,
"base_cost_quote": 2882.0529097425,
"unrealized_pnl_exit_net": -1959.5361166427
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 25503.1999999947,
"quote_asset_bal": 7774.2544423209,
"total_value_mid": 8682.1683623207,
"total_value_exit_net": 8681.4874268807,
"total_value": 8682.1683623207,
"base_cost_quote": 2902.076586245,
"unrealized_pnl_exit_net": -1994.8436016852
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 26370.1999999947,
"quote_asset_bal": 7744.7764969634,
"total_value_mid": 8638.7262769632,
"total_value_exit_net": 8638.0558146282,
"total_value": 8638.7262769632,
"base_cost_quote": 2932.1079428825,
"unrealized_pnl_exit_net": -2038.8286252177
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 27444.8999999946,
"quote_asset_bal": 7711.0590197509,
"total_value_mid": 8592.0403097507,
"total_value_exit_net": 8591.3795737832,
"total_value": 8592.0403097507,
"base_cost_quote": 2967.145191125,
"unrealized_pnl_exit_net": -2086.8246370927
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 27137.1999999946,
"quote_asset_bal": 7721.8581005034,
"total_value_mid": 8620.0994205032,
"total_value_exit_net": 8619.4257395132,
"total_value": 8620.0994205032,
"base_cost_quote": 2957.1371807425,
"unrealized_pnl_exit_net": -2059.5695417327
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 26099.9999999946,
"quote_asset_bal": 7757.7736739434,
"total_value_mid": 8658.2236739432,
"total_value_exit_net": 8657.5483364432,
"total_value": 8658.2236739432,
"base_cost_quote": 2922.101273505,
"unrealized_pnl_exit_net": -2022.3266110052
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 26537.0999999945,
"quote_asset_bal": 7743.6194556809,
"total_value_mid": 8653.8419856807,
"total_value_exit_net": 8653.1593187832,
"total_value": 8653.8419856807,
"base_cost_quote": 2937.1161362125,
"unrealized_pnl_exit_net": -2027.5762731102
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 28055.0999999945,
"quote_asset_bal": 7694.1012283334,
"total_value_mid": 8591.8644283332,
"total_value_exit_net": 8591.1911059332,
"total_value": 8591.8644283332,
"base_cost_quote": 2987.166235655,
"unrealized_pnl_exit_net": -2090.0763580552
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 26993.2999999945,
"quote_asset_bal": 7730.2396156409,
"total_value_mid": 8648.0118156408,
"total_value_exit_net": 8647.3234864908,
"total_value": 8648.0118156408,
"base_cost_quote": 2952.1315293175,
"unrealized_pnl_exit_net": -2035.0476584677
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 27440.7999999945,
"quote_asset_bal": 7715.6581158534,
"total_value_mid": 8618.4604358533,
"total_value_exit_net": 8617.7833341133,
"total_value": 8618.4604358533,
"base_cost_quote": 2967.148233405,
"unrealized_pnl_exit_net": -2065.0230151452
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 27293.1999999945,
"quote_asset_bal": 7720.8676001685,
"total_value_mid": 8618.8138801683,
"total_value_exit_net": 8618.1404204583,
"total_value": 8618.8138801683,
"base_cost_quote": 2962.1462347175,
"unrealized_pnl_exit_net": -2064.8734144277
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 27166.7999999945,
"quote_asset_bal": 7726.260717536,
"total_value_mid": 8658.0819575358,
"total_value_exit_net": 8657.3830916058,
"total_value": 8658.0819575358,
"base_cost_quote": 2957.1358997825,
"unrealized_pnl_exit_net": -2026.0135257127
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 27901.2999999945,
"quote_asset_bal": 7701.986860796,
"total_value_mid": 8628.3100207958,
"total_value_exit_net": 8627.6152784258,
"total_value": 8628.3100207958,
"base_cost_quote": 2982.1681198775,
"unrealized_pnl_exit_net": -2056.5397022477
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 27438.6999999945,
"quote_asset_bal": 7717.4193429085,
"total_value_mid": 8636.6157929083,
"total_value_exit_net": 8635.9263955708,
"total_value": 8636.6157929083,
"base_cost_quote": 2967.14545132,
"unrealized_pnl_exit_net": -2048.6383986577
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 28055.9999999945,
"quote_asset_bal": 7697.720726396,
"total_value_mid": 8609.5407263958,
"total_value_exit_net": 8608.8568613958,
"total_value": 8609.5407263958,
"base_cost_quote": 2987.1707890675,
"unrealized_pnl_exit_net": -2076.0346540677
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 27597.3999999944,
"quote_asset_bal": 7712.8584433285,
"total_value_mid": 8626.3323833283,
"total_value_exit_net": 8625.6472778733,
"total_value": 8626.3323833283,
"base_cost_quote": 2972.154145025,
"unrealized_pnl_exit_net": -2059.3653104802
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 28534.3999999944,
"quote_asset_bal": 7683.0538786885,
"total_value_mid": 8561.9133986883,
"total_value_exit_net": 8561.2542540483,
"total_value": 8561.9133986883,
"base_cost_quote": 3002.1839605075,
"unrealized_pnl_exit_net": -2123.9835851477
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 29522.6999999944,
"quote_asset_bal": 7653.5966014635,
"total_value_mid": 8533.3730614633,
"total_value_exit_net": 8532.7132291183,
"total_value": 8533.3730614633,
"base_cost_quote": 3032.2108237775,
"unrealized_pnl_exit_net": -2153.0941961227
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 29864.6999999944,
"quote_asset_bal": 7644.0163178435,
"total_value_mid": 8513.0790878433,
"total_value_exit_net": 8512.4272907658,
"total_value": 8513.0790878433,
"base_cost_quote": 3042.22179638,
"unrealized_pnl_exit_net": -2173.8108234577
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 31666.2999999944,
"quote_asset_bal": 7594.513284731,
"total_value_mid": 8443.1701247308,
"total_value_exit_net": 8442.5336321008,
"total_value": 8443.1701247308,
"base_cost_quote": 3092.2800419275,
"unrealized_pnl_exit_net": -2244.2596945577
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 32831.6999999944,
"quote_asset_bal": 7565.095431756,
"total_value_mid": 8389.1711017558,
"total_value_exit_net": 8388.5530450033,
"total_value": 8389.1711017558,
"base_cost_quote": 3122.3071053475,
"unrealized_pnl_exit_net": -2298.8494921001
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 32238.6999999944,
"quote_asset_bal": 7580.674020706,
"total_value_mid": 8451.1189207058,
"total_value_exit_net": 8450.4660870308,
"total_value": 8451.1189207058,
"base_cost_quote": 3107.294584395,
"unrealized_pnl_exit_net": -2237.5025180702
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 31508.3999999944,
"quote_asset_bal": 7601.017806166,
"total_value_mid": 8486.4038461658,
"total_value_exit_net": 8485.7398066358,
"total_value": 8486.4038461658,
"base_cost_quote": 3087.26939676,
"unrealized_pnl_exit_net": -2202.5473962902
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 31682.5999999944,
"quote_asset_bal": 7596.2586427035,
"total_value_mid": 8448.5205827033,
"total_value_exit_net": 8447.8813862483,
"total_value": 8448.5205827033,
"base_cost_quote": 3092.2730967225,
"unrealized_pnl_exit_net": -2240.6503531777
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 31495.3999999944,
"quote_asset_bal": 7601.668202466,
"total_value_mid": 8455.1935424658,
"total_value_exit_net": 8454.5533984608,
"total_value": 8455.1935424658,
"base_cost_quote": 3087.2687062425,
"unrealized_pnl_exit_net": -2234.3835102477
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 31863.9999999944,
"quote_asset_bal": 7591.9695069635,
"total_value_mid": 8468.2295069633,
"total_value_exit_net": 8467.5723119633,
"total_value": 8468.2295069633,
"base_cost_quote": 3097.2820206,
"unrealized_pnl_exit_net": -2221.6792156002
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 30770.7999999944,
"quote_asset_bal": 7622.3892133685,
"total_value_mid": 8508.5882533683,
"total_value_exit_net": 8507.9236040883,
"total_value": 8508.5882533683,
"base_cost_quote": 3067.248572395,
"unrealized_pnl_exit_net": -2181.7141816752
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 31482.1999999944,
"quote_asset_bal": 7602.7413879334,
"total_value_mid": 8468.5018879333,
"total_value_exit_net": 8467.8525675583,
"total_value": 8468.5018879333,
"base_cost_quote": 3087.2672851775,
"unrealized_pnl_exit_net": -2222.1561055527
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 31313.9999999944,
"quote_asset_bal": 7608.1264164309,
"total_value_mid": 8506.8382164308,
"total_value_exit_net": 8506.1641825808,
"total_value": 8506.8382164308,
"base_cost_quote": 3082.2634551175,
"unrealized_pnl_exit_net": -2184.2256889677
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 30971.3999999944,
"quote_asset_bal": 7618.6377462459,
"total_value_mid": 8532.2940462458,
"total_value_exit_net": 8531.6088040208,
"total_value": 8532.2940462458,
"base_cost_quote": 3072.253803505,
"unrealized_pnl_exit_net": -2159.2827457302
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 31322.3999999944,
"quote_asset_bal": 7608.8198279309,
"total_value_mid": 8485.8470279308,
"total_value_exit_net": 8485.1892575308,
"total_value": 8485.8470279308,
"base_cost_quote": 3082.2649162125,
"unrealized_pnl_exit_net": -2205.8954866127
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 31317.3999999944,
"quote_asset_bal": 7609.0455715184,
"total_value_mid": 8485.9327715183,
"total_value_exit_net": 8485.2751061183,
"total_value": 8485.9327715183,
"base_cost_quote": 3082.2672579675,
"unrealized_pnl_exit_net": -2206.0377233677
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 32050.4999999944,
"quote_asset_bal": 7589.3799004984,
"total_value_mid": 8438.7181504983,
"total_value_exit_net": 8438.0811468108,
"total_value": 8438.7181504983,
"base_cost_quote": 3102.28917315,
"unrealized_pnl_exit_net": -2253.5879268377
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 31851.6999999944,
"quote_asset_bal": 7595.1592269609,
"total_value_mid": 8448.7847869608,
"total_value_exit_net": 8448.1445677908,
"total_value": 8448.7847869608,
"base_cost_quote": 3097.28658402,
"unrealized_pnl_exit_net": -2244.3012431902
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 30590.5999999944,
"quote_asset_bal": 7631.2811420684,
"total_value_mid": 8518.4085420683,
"total_value_exit_net": 8517.7431965183,
"total_value": 8518.4085420683,
"base_cost_quote": 3062.2469539925,
"unrealized_pnl_exit_net": -2175.7848995427
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 30243.1999999944,
"quote_asset_bal": 7641.6181197384,
"total_value_mid": 8536.8168397383,
"total_value_exit_net": 8536.1454406983,
"total_value": 8536.8168397383,
"base_cost_quote": 3052.2333694325,
"unrealized_pnl_exit_net": -2157.7060484727
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 30410.9999999944,
"quote_asset_bal": 7637.0479628659,
"total_value_mid": 8522.0080628658,
"total_value_exit_net": 8521.3443427908,
"total_value": 8522.0080628658,
"base_cost_quote": 3057.2372095,
"unrealized_pnl_exit_net": -2172.9408295752
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 29740.6999999944,
"quote_asset_bal": 7657.4354199934,
"total_value_mid": 8546.6823499932,
"total_value_exit_net": 8546.0154147957,
"total_value": 8546.6823499932,
"base_cost_quote": 3037.218386635,
"unrealized_pnl_exit_net": -2148.6383918327
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 30249.4999999944,
"quote_asset_bal": 7642.8393635734,
"total_value_mid": 8556.3742635732,
"total_value_exit_net": 8555.6891123982,
"total_value": 8556.3742635732,
"base_cost_quote": 3052.2354710075,
"unrealized_pnl_exit_net": -2139.3857221827
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 29756.1999999944,
"quote_asset_bal": 7658.5094162159,
"total_value_mid": 8583.9272362157,
"total_value_exit_net": 8583.2331728507,
"total_value": 8583.9272362157,
"base_cost_quote": 3037.2188770025,
"unrealized_pnl_exit_net": -2112.4951203677
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 29112.3999999944,
"quote_asset_bal": 7679.0348438684,
"total_value_mid": 8596.0754438682,
"total_value_exit_net": 8595.3876634182,
"total_value": 8596.0754438682,
"base_cost_quote": 3017.1982527875,
"unrealized_pnl_exit_net": -2100.8454332377
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 29913.5999999944,
"quote_asset_bal": 7654.4671701084,
"total_value_mid": 8551.8751701082,
"total_value_exit_net": 8551.2021141082,
"total_value": 8551.8751701082,
"base_cost_quote": 3042.2269502425,
"unrealized_pnl_exit_net": -2145.4920062427
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 30081.3999999944,
"quote_asset_bal": 7649.8110132109,
"total_value_mid": 8546.2367332107,
"total_value_exit_net": 8545.5644139207,
"total_value": 8546.2367332107,
"base_cost_quote": 3047.2311405725,
"unrealized_pnl_exit_net": -2151.4777398627
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 29597.7999999944,
"quote_asset_bal": 7665.6572441859,
"total_value_mid": 8556.5510241857,
"total_value_exit_net": 8555.8828538507,
"total_value": 8556.5510241857,
"base_cost_quote": 3032.2185295525,
"unrealized_pnl_exit_net": -2141.9929198877
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 30105.2999999944,
"quote_asset_bal": 7650.8473823459,
"total_value_mid": 8532.9326723457,
"total_value_exit_net": 8532.2711083782,
"total_value": 8532.9326723457,
"base_cost_quote": 3047.234132815,
"unrealized_pnl_exit_net": -2165.8104067827
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 30452.6999999944,
"quote_asset_bal": 7641.3035751759,
"total_value_mid": 8518.3413351757,
"total_value_exit_net": 8517.6835568557,
"total_value": 8518.3413351757,
"base_cost_quote": 3057.246036115,
"unrealized_pnl_exit_net": -2180.8660544352
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 29601.7999999944,
"quote_asset_bal": 7666.8132188483,
"total_value_mid": 8563.7477588482,
"total_value_exit_net": 8563.0750579432,
"total_value": 8563.7477588482,
"base_cost_quote": 3032.2150669575,
"unrealized_pnl_exit_net": -2135.9532278627
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 29748.7999999944,
"quote_asset_bal": 7662.3299088433,
"total_value_mid": 8554.7939088432,
"total_value_exit_net": 8554.1245608432,
"total_value": 8554.7939088432,
"base_cost_quote": 3037.222469695,
"unrealized_pnl_exit_net": -2145.4278176952
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 30426.3999999944,
"quote_asset_bal": 7642.8743817983,
"total_value_mid": 8528.2826217982,
"total_value_exit_net": 8527.6185656182,
"total_value": 8528.2826217982,
"base_cost_quote": 3057.2433641125,
"unrealized_pnl_exit_net": -2172.4991802927
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 29576.0999999944,
"quote_asset_bal": 7668.3346203158,
"total_value_mid": 8567.4480603156,
"total_value_exit_net": 8566.7737252356,
"total_value": 8567.4480603156,
"base_cost_quote": 3032.21477674,
"unrealized_pnl_exit_net": -2133.7756718202
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 28936.1999999944,
"quote_asset_bal": 7688.9935664783,
"total_value_mid": 8609.1647264781,
"total_value_exit_net": 8608.4745981081,
"total_value": 8609.1647264781,
"base_cost_quote": 3012.1940424425,
"unrealized_pnl_exit_net": -2092.7130108127
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 29162.0999999944,
"quote_asset_bal": 7685.0248054533,
"total_value_mid": 8562.8040154532,
"total_value_exit_net": 8562.1456810457,
"total_value": 8562.8040154532,
"base_cost_quote": 3017.1972720525,
"unrealized_pnl_exit_net": -2140.0763964602
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 29114.6999999944,
"quote_asset_bal": 7685.6322548633,
"total_value_mid": 8527.0470848631,
"total_value_exit_net": 8526.4160237406,
"total_value": 8527.0470848631,
"base_cost_quote": 3017.200944805,
"unrealized_pnl_exit_net": -2176.4171759277
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 31126.3999999944,
"quote_asset_bal": 7631.2533514958,
"total_value_mid": 8443.6523914957,
"total_value_exit_net": 8443.0430922157,
"total_value": 8443.6523914957,
"base_cost_quote": 3072.261929595,
"unrealized_pnl_exit_net": -2260.4721888751
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 30941.0999999944,
"quote_asset_bal": 7636.9057252458,
"total_value_mid": 8463.0330952457,
"total_value_exit_net": 8462.4134997182,
"total_value": 8463.0330952457,
"base_cost_quote": 3067.2534460475,
"unrealized_pnl_exit_net": -2241.7456715752
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 31689.1999999944,
"quote_asset_bal": 7617.2590115433,
"total_value_mid": 8444.3471315432,
"total_value_exit_net": 8443.7268154532,
"total_value": 8444.3471315432,
"base_cost_quote": 3087.2742103675,
"unrealized_pnl_exit_net": -2260.8064064576
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 31308.8999999944,
"quote_asset_bal": 7627.7852696333,
"total_value_mid": 8457.4711196332,
"total_value_exit_net": 8456.8488552457,
"total_value": 8457.4711196332,
"base_cost_quote": 3077.2649690625,
"unrealized_pnl_exit_net": -2248.2013834502
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 31116.5999999944,
"quote_asset_bal": 7633.0240945083,
"total_value_mid": 8448.2790145082,
"total_value_exit_net": 8447.6675733182,
"total_value": 8448.2790145082,
"base_cost_quote": 3072.262890315,
"unrealized_pnl_exit_net": -2257.6194115051
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 32275.1999999944,
"quote_asset_bal": 7603.6788098333,
"total_value_mid": 8397.6487298332,
"total_value_exit_net": 8397.0532523932,
"total_value": 8397.6487298332,
"base_cost_quote": 3102.2886827825,
"unrealized_pnl_exit_net": -2308.9142402226
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 31879.8999999944,
"quote_asset_bal": 7613.9389467383,
"total_value_mid": 8436.4403667382,
"total_value_exit_net": 8435.8234906732,
"total_value": 8436.4403667382,
"base_cost_quote": 3092.2795415525,
"unrealized_pnl_exit_net": -2270.3949976176
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 32280.0999999944,
"quote_asset_bal": 7604.1607846008,
"total_value_mid": 8436.9873646007,
"total_value_exit_net": 8436.3627446657,
"total_value": 8436.9873646007,
"base_cost_quote": 3102.2914048225,
"unrealized_pnl_exit_net": -2270.0894447576
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 32473.6999999944,
"quote_asset_bal": 7599.5632886458,
"total_value_mid": 8404.9110486457,
"total_value_exit_net": 8404.3070378257,
"total_value": 8404.9110486457,
"base_cost_quote": 3107.2952348825,
"unrealized_pnl_exit_net": -2302.5514857026
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 33512.6999999944,
"quote_asset_bal": 7575.5234196233,
"total_value_mid": 8379.8282196232,
"total_value_exit_net": 8379.2249910232,
"total_value": 8379.8282196232,
"base_cost_quote": 3132.3212102975,
"unrealized_pnl_exit_net": -2328.6196388976
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 32889.7999999944,
"quote_asset_bal": 7591.4980910733,
"total_value_mid": 8407.1651310732,
"total_value_exit_net": 8406.5533807932,
"total_value": 8407.1651310732,
"base_cost_quote": 3117.3047163675,
"unrealized_pnl_exit_net": -2302.2494266476
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 34389.0999999944,
"quote_asset_bal": 7557.6831095608,
"total_value_mid": 8334.8767695607,
"total_value_exit_net": 8334.2938743157,
"total_value": 8334.8767695607,
"base_cost_quote": 3152.341063935,
"unrealized_pnl_exit_net": -2375.7302991801
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 35779.2999999944,
"quote_asset_bal": 7528.8116289708,
"total_value_mid": 8273.0210689707,
"total_value_exit_net": 8272.4629118907,
"total_value": 8273.0210689707,
"base_cost_quote": 3182.3710195225,
"unrealized_pnl_exit_net": -2438.7197366026
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 35537.6999999944,
"quote_asset_bal": 7534.9575828858,
"total_value_mid": 8288.3568228857,
"total_value_exit_net": 8287.7917734557,
"total_value": 8288.3568228857,
"base_cost_quote": 3177.3661486825,
"unrealized_pnl_exit_net": -2424.5319581126
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 36275.0999999944,
"quote_asset_bal": 7521.1561146508,
"total_value_mid": 8264.7956646507,
"total_value_exit_net": 8264.2379349882,
"total_value": 8264.7956646507,
"base_cost_quote": 3192.38093133,
"unrealized_pnl_exit_net": -2449.2991109926
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 37259.6999999945,
"quote_asset_bal": 7502.1432121358,
"total_value_mid": 8224.9813921357,
"total_value_exit_net": 8224.4392635007,
"total_value": 8224.9813921357,
"base_cost_quote": 3212.39901364,
"unrealized_pnl_exit_net": -2490.1029622751
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 40658.0999999944,
"quote_asset_bal": 7444.4711728758,
"total_value_mid": 8107.1982028757,
"total_value_exit_net": 8106.7011576032,
"total_value": 8107.1982028757,
"base_cost_quote": 3272.45282024,
"unrealized_pnl_exit_net": -2610.2228355126
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 39276.4999999944,
"quote_asset_bal": 7471.1520405883,
"total_value_mid": 8197.7672905882,
"total_value_exit_net": 8197.2223291507,
"total_value": 8197.7672905882,
"base_cost_quote": 3247.4286361675,
"unrealized_pnl_exit_net": -2521.3583476051
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 39546.8999999944,
"quote_asset_bal": 7466.7406049458,
"total_value_mid": 8194.4035649457,
"total_value_exit_net": 8193.8578177257,
"total_value": 8194.4035649457,
"base_cost_quote": 3252.4339273225,
"unrealized_pnl_exit_net": -2525.3167145426
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 39546.8999999944,
"quote_asset_bal": 7467.2198821108,
"total_value_mid": 8186.9734621107,
"total_value_exit_net": 8186.4336469257,
"total_value": 8186.9734621107,
"base_cost_quote": 3252.4339273225,
"unrealized_pnl_exit_net": -2533.2201625076
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 39010.6999999944,
"quote_asset_bal": 7477.6363743033,
"total_value_mid": 8218.8396743032,
"total_value_exit_net": 8218.2837718282,
"total_value": 8218.8396743032,
"base_cost_quote": 3242.42507631,
"unrealized_pnl_exit_net": -2501.7776787851
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 39824.7999999944,
"quote_asset_bal": 7462.9999207783,
"total_value_mid": 8183.8288007782,
"total_value_exit_net": 8183.2881791182,
"total_value": 8183.8288007782,
"base_cost_quote": 3257.4389782975,
"unrealized_pnl_exit_net": -2537.1507199576
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 39548.4999999944,
"quote_asset_bal": 7468.3697758283,
"total_value_mid": 8200.0170258282,
"total_value_exit_net": 8199.4682903907,
"total_value": 8200.0170258282,
"base_cost_quote": 3252.434197525,
"unrealized_pnl_exit_net": -2521.3356829626
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 39267.4999999944,
"quote_asset_bal": 7474.0877008833,
"total_value_mid": 8208.3899508832,
"total_value_exit_net": 8207.8392241957,
"total_value": 8208.3899508832,
"base_cost_quote": 3247.4305175775,
"unrealized_pnl_exit_net": -2513.6789942651
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 38729.7999999944,
"quote_asset_bal": 7484.4864214708,
"total_value_mid": 8220.3526214707,
"total_value_exit_net": 8219.8007218207,
"total_value": 8220.3526214707,
"base_cost_quote": 3237.42208688,
"unrealized_pnl_exit_net": -2502.1077865301
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 39258.0999999944,
"quote_asset_bal": 7474.9611911033,
"total_value_mid": 8213.0134711032,
"total_value_exit_net": 8212.4599318932,
"total_value": 8213.0134711032,
"base_cost_quote": 3247.430767765,
"unrealized_pnl_exit_net": -2509.9320269751
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 40355.8999999944,
"quote_asset_bal": 7455.5617952058,
"total_value_mid": 8173.8968152057,
"total_value_exit_net": 8173.3580639407,
"total_value": 8173.8968152057,
"base_cost_quote": 3267.4488200525,
"unrealized_pnl_exit_net": -2549.6525513176
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 39528.3999999944,
"quote_asset_bal": 7470.9543926458,
"total_value_mid": 8206.1826326457,
"total_value_exit_net": 8205.6312114657,
"total_value": 8206.1826326457,
"base_cost_quote": 3252.4350681775,
"unrealized_pnl_exit_net": -2517.7582493576
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 40074.9999999944,
"quote_asset_bal": 7461.9871632582,
"total_value_mid": 8183.3371632581,
"total_value_exit_net": 8182.7961507581,
"total_value": 8183.3371632581,
"base_cost_quote": 3262.4450500375,
"unrealized_pnl_exit_net": -2541.6360625376
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 40917.8999999944,
"quote_asset_bal": 7447.3695558658,
"total_value_mid": 8155.2492258656,
"total_value_exit_net": 8154.7183161131,
"total_value": 8155.2492258656,
"base_cost_quote": 3277.4568804725,
"unrealized_pnl_exit_net": -2570.1081202251
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 41520.8999999944,
"quote_asset_bal": 7437.8259156183,
"total_value_mid": 8122.9207656182,
"total_value_exit_net": 8122.4069444807,
"total_value": 8122.9207656182,
"base_cost_quote": 3287.4671825725,
"unrealized_pnl_exit_net": -2602.8861537101
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 41515.9999999944,
"quote_asset_bal": 7438.5415070783,
"total_value_mid": 8136.0103070782,
"total_value_exit_net": 8135.4872054782,
"total_value": 8136.0103070782,
"base_cost_quote": 3287.46739273,
"unrealized_pnl_exit_net": -2590.5216943301
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 41220.6999999944,
"quote_asset_bal": 7443.9895955158,
"total_value_mid": 8111.7649355157,
"total_value_exit_net": 8111.2641040107,
"total_value": 8111.7649355157,
"base_cost_quote": 3282.4622116575,
"unrealized_pnl_exit_net": -2615.1877031626
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 42166.3999999944,
"quote_asset_bal": 7429.8824492558,
"total_value_mid": 8083.4616492557,
"total_value_exit_net": 8082.9714648557,
"total_value": 8083.4616492557,
"base_cost_quote": 3297.476033585,
"unrealized_pnl_exit_net": -2644.3870179851
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 42837.7999999944,
"quote_asset_bal": 7420.5402866033,
"total_value_mid": 8037.4046066032,
"total_value_exit_net": 8036.9419583632,
"total_value": 8037.4046066032,
"base_cost_quote": 3307.48467444,
"unrealized_pnl_exit_net": -2691.0830026801
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 43187.4999999944,
"quote_asset_bal": 7416.0103449908,
"total_value_mid": 8033.5915949907,
"total_value_exit_net": 8033.1284090532,
"total_value": 8033.5915949907,
"base_cost_quote": 3312.4891349725,
"unrealized_pnl_exit_net": -2695.3710709101
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 42835.5999999944,
"quote_asset_bal": 7421.8618162108,
"total_value_mid": 8068.6793762107,
"total_value_exit_net": 8068.1942630407,
"total_value": 8068.6793762107,
"base_cost_quote": 3307.4843542,
"unrealized_pnl_exit_net": -2661.1519073701
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 89-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (109,004 closed trades) via GET /backtests/79315ada-cff4-4e26-baad-26ecb3c07f4d/trades (paginate through all pages).89-row audit sample from 109,004 closed trades (RFC 4180 CSV)
89-row audit sample from 109,004 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:01:00Z,2024-04-24T00:08:00Z,0.325,0.3259,15.4,,,0.006342105,0.1267153846,0.00375375,0.003764145,,,TP
,,2024-04-24T00:10:00Z,2024-04-24T00:38:00Z,0.326,0.3269,15.4,,,0.006319005,0.1258665644,0.0037653,0.003775695,,,TP
,,2024-04-24T00:15:00Z,2024-04-24T14:21:00Z,0.3253,0.3262,15.4,,,0.006335175,0.1264601906,0.003757215,0.00376761,,,TP
,,2024-04-24T00:18:00Z,2024-04-24T00:32:00Z,0.3243,0.3252,15.5,,,0.0063995625,0.1273126735,0.0037699875,0.00378045,,,TP
,,2024-04-24T00:39:00Z,2024-04-24T01:01:00Z,0.3271,0.328,15.3,,,0.0062527275,0.1249388566,0.0037534725,0.0037638,,,TP
,,2024-04-24T00:55:00Z,2024-04-24T01:03:00Z,0.3275,0.3284,15.3,,,0.0062435475,0.1246030534,0.0037580625,0.00376839,,,TP
,,2024-04-24T01:07:00Z,2024-04-24T01:27:00Z,0.3295,0.3304,15.2,,,0.00615714,0.1229362671,0.0037563,0.00376656,,,TP
,,2024-04-24T01:09:00Z,2024-04-24T01:24:00Z,0.3291,0.33,15.2,,,0.00616626,0.1232680036,0.00375174,0.003762,,,TP
,,2024-04-24T01:13:00Z,2024-04-24T01:50:00Z,0.3284,0.3293,15.3,,,0.0062228925,0.1238504872,0.00376839,0.0037787175,,,TP
,,2024-04-24T01:25:00Z,2024-04-24T01:27:00Z,0.3299,0.3308,15.2,,,0.00614802,0.1226053349,0.00376086,0.00377112,,,TP
,,2024-04-24T01:30:00Z,2024-04-24T04:40:00Z,0.3307,0.3316,15.2,,,0.00612978,0.1219458724,0.00376998,0.00378024,,,TP
,,2024-04-24T01:31:00Z,2024-04-24T03:44:00Z,0.3299,0.3308,15.2,,,0.00614802,0.1226053349,0.00376086,0.00377112,,,TP
,,2024-04-24T01:50:00Z,2024-04-24T02:15:00Z,0.3293,0.3302,15.2,,,0.0061617,0.1231020346,0.00375402,0.00376428,,,TP
,,2024-04-24T02:06:00Z,2024-04-24T03:31:00Z,0.3281,0.329,15.3,,,0.0062297775,0.1241008839,0.0037649475,0.003775275,,,TP
,,2024-04-24T02:30:00Z,2024-04-24T03:22:00Z,0.3266,0.3275,15.4,,,0.006305145,0.1253597673,0.00377223,0.003782625,,,TP
,,2024-04-24T02:31:00Z,2024-04-24T02:34:00Z,0.326,0.3269,15.4,,,0.006319005,0.1258665644,0.0037653,0.003775695,,,TP
,,2024-04-24T02:45:00Z,2024-04-24T03:32:00Z,0.3286,0.3295,15.3,,,0.0062183025,0.1236838101,0.003770685,0.0037810125,,,TP
,,2024-04-24T03:22:00Z,2024-04-24T08:17:00Z,0.3276,0.3285,15.3,,,0.0062412525,0.1245192308,0.00375921,0.0037695375,,,TP
,,2024-04-24T03:32:00Z,2024-04-24T03:37:00Z,0.3293,0.3302,15.2,,,0.0061617,0.1231020346,0.00375402,0.00376428,,,TP
,,2024-04-24T03:59:00Z,2024-04-24T04:30:00Z,0.3298,0.3307,15.2,,,0.0061503,0.1226879927,0.00375972,0.00376998,,,TP
,,2024-04-24T04:05:00Z,2024-04-24T06:09:00Z,0.3303,0.3312,15.2,,,0.0061389,0.1222752044,0.00376542,0.00377568,,,TP
,,2024-04-24T04:39:00Z,2024-04-24T06:06:00Z,0.3314,0.3323,15.1,,,0.0060735975,0.1213714544,0.003753105,0.0037632975,,,TP
,,2024-04-24T04:40:00Z,2024-04-24T04:41:00Z,0.3318,0.3327,15.1,,,0.0060645375,0.1210443038,0.003757635,0.0037678275,,,TP
,,2024-04-24T04:43:00Z,2024-04-24T04:44:00Z,0.3336,0.3345,15,,,0.005983875,0.1195818345,0.003753,0.003763125,,,TP
,,2024-04-24T04:47:00Z,2024-04-24T04:49:00Z,0.3355,0.3364,15,,,0.005941125,0.1180551416,0.003774375,0.0037845,,,TP
,,2024-06-24T13:04:00Z,2024-06-24T13:06:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2024-12-22T16:20:00Z,2024-12-22T16:21:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-01-22T10:33:00Z,2025-01-22T10:33:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-03-24T21:31:00Z,2025-03-26T07:31:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-15T08:35:00Z,2025-05-15T08:46:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-05-15T10:31:00Z,2025-05-15T11:31:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-12T16:05:00Z,2025-07-12T16:08:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-12T20:50:00Z,2025-07-12T22:05:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-12T22:05:00Z,2025-07-12T23:49:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-15T03:41:00Z,2025-07-15T03:42:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-23T17:45:00Z,2025-07-23T17:46:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-24T03:48:00Z,2025-07-24T04:13:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-25T14:33:00Z,2025-07-25T14:33:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-25T15:07:00Z,2025-07-25T15:13:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-25T15:19:00Z,2025-07-25T20:33:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-29T04:56:00Z,2025-08-30T06:26:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-30T08:50:00Z,2025-08-30T09:37:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-30T11:58:00Z,2025-08-30T15:45:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-12T19:36:00Z,2025-11-12T19:37:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-13T18:26:00Z,2025-11-13T19:06:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-13T19:29:00Z,2025-11-13T22:28:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-22T07:11:00Z,2025-11-22T07:27:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-24T08:34:00Z,2025-11-24T09:09:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-24T11:13:00Z,2025-11-24T11:14:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-27T11:20:00Z,2025-11-27T11:25:00Z,0.04,0.0401,125,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-23T01:06:00Z,2026-02-25T20:02:00Z,0.0151,0.0152,331.2,,,0.02559348,0.5117549669,0.00375084,0.00377568,,,TP
,,2026-02-23T11:51:00Z,2026-02-25T18:55:00Z,0.0149,0.015,335.6,,,0.02603417,0.5206375839,0.00375033,0.0037755,,,TP
,,2026-02-23T16:28:00Z,2026-02-25T16:33:00Z,0.0146,0.0147,342.5,,,0.0267235625,0.5344178082,0.003750375,0.0037760625,,,TP
,,2026-02-24T04:16:00Z,2026-02-24T04:16:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T05:32:00Z,2026-02-24T10:02:00Z,0.014,0.0141,357.2,,,0.02819201,0.56375,0.0037506,0.00377739,,,TP
,,2026-02-24T12:01:00Z,2026-02-24T16:01:00Z,0.014,0.0141,357.2,,,0.02819201,0.56375,0.0037506,0.00377739,,,TP
,,2026-02-24T16:01:00Z,2026-02-24T16:01:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T16:11:00Z,2026-02-24T16:12:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T16:38:00Z,2026-02-24T16:39:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T16:38:00Z,2026-02-24T16:38:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T16:39:00Z,2026-02-24T16:40:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T17:50:00Z,2026-02-24T17:50:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T19:13:00Z,2026-02-24T22:42:00Z,0.014,0.0141,357.2,,,0.02819201,0.56375,0.0037506,0.00377739,,,TP
,,2026-02-24T22:42:00Z,2026-02-24T22:42:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-24T23:08:00Z,2026-02-24T23:08:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T00:54:00Z,2026-02-25T00:54:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T03:30:00Z,2026-02-25T14:48:00Z,0.0143,0.0144,349.7,,,0.0274427075,0.5487762238,0.0037505325,0.00377676,,,TP
,,2026-02-25T04:22:00Z,2026-02-25T04:23:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T07:01:00Z,2026-02-25T07:01:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T08:07:00Z,2026-02-25T08:07:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T08:18:00Z,2026-02-25T08:18:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T08:22:00Z,2026-02-25T08:22:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T08:28:00Z,2026-02-25T08:28:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T09:11:00Z,2026-02-25T09:13:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T09:11:00Z,2026-02-25T09:11:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T09:35:00Z,2026-02-25T09:36:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T09:57:00Z,2026-02-25T09:57:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T10:32:00Z,2026-02-25T10:32:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T10:33:00Z,2026-02-25T10:33:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T11:04:00Z,2026-02-25T12:47:00Z,0.014,0.0141,357.2,,,0.02819201,0.56375,0.0037506,0.00377739,,,TP
,,2026-02-25T12:47:00Z,2026-02-25T12:47:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T12:47:00Z,2026-02-25T12:59:00Z,0.0141,0.0142,354.7,,,0.0279414925,0.5586879433,0.0037509525,0.003777555,,,TP
,,2026-02-25T14:48:00Z,2026-02-25T14:48:00Z,0.0144,0.0145,347.3,,,0.0272022725,0.5439236111,0.00375084,0.0037768875,,,TP
,,2026-02-25T15:20:00Z,2026-02-25T15:20:00Z,0.0144,0.0145,347.3,,,0.0272022725,0.5439236111,0.00375084,0.0037768875,,,TP
,,2026-02-25T16:33:00Z,2026-02-25T16:33:00Z,0.0147,0.0148,340.2,,,0.026493075,0.5297619048,0.003750705,0.00377622,,,TP
,,2026-02-25T20:02:00Z,2026-02-25T23:15:00Z,0.0152,0.0153,329,,,0.025374125,0.5074013158,0.0037506,0.003775275,,,TP
,,2026-02-25T23:15:00Z,2026-02-25T23:15:00Z,0.0153,0.0154,326.8,,,0.02515543,0.5031045752,0.00375003,0.00377454,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:45:00Z,0.015,0.0151,333.4,,,0.025813495,0.5161666667,0.00375075,0.003775755,,,TP
,,2026-02-25T23:42:00Z,2026-02-25T23:42:00Z,0.015,0.0151,333.4,,,0.025813495,0.5161666667,0.00375075,0.003775755,,,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 HFTUSDT?
Did it beat Buy & Hold of HFTUSDT?
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 HFTUSDT (Mode: 3LongTimeLong.json)
Period: 2024-04-24 00:00:01 to 2026-02-25 23:59:59
Starting balance: 10,000.00 USDT
Final value: 8,068.19 USDT
P&L: -1,931.81 USDT (-19.32%)
Result: LOSS
Completed trades: 109004
Open orders at end: 661
Win rate: 100.0%
Avg. profit/trade: 0.007677 USDT
Best trade: 0.028192 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 836.826680 USDT
Max drawdown: -22.76%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.53
Total fees: 819.75 USDT
Avg hold time: 26.4h
TP / SL / TSL: 109004 / 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: 1074.6s
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":"HFTUSDT","mode_name":"3LongTimeLong.json","interval":"1m","from":"2024-04-24 00:00:01","to":"2026-02-25 23:59:59","canBuy":true,"canSell":true,"canBuyUp":true,"startBal":10000,"stepSize":0.1,"stopLoss":false,"tickSize":0.0001,"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": "HFTUSDT LongTimeLong Backtest",
"alternateName": "HFTUSDT-3LongTimeLong.json-79315ada-cff4-4e26-baad-26ecb3c07f4d",
"description": "Backtest of the LongTimeLong strategy on HFTUSDT: -19.32% return over 2024-04-24 to 2026-02-25.",
"identifier": "79315ada-cff4-4e26-baad-26ecb3c07f4d",
"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": [
"HFTUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "HFTUSDT",
"description": "Trading pair: HFTUSDT"
},
{
"@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": -19.3181,
"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": 836.82668038,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 8068.19426304,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 109004,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 661,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.02819201,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.00767703,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 1074.58,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -11.012204677567162,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -22.763447844228963,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -2367.5538907625005,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 443,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.5268238061080714,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.6090100348887857,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 18.769808682607636,
"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.015189112612359562,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.015189112612359562,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.006305145,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 1.351831022500001,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.6696389774999997,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 892.8519699999995,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 89,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 0.4166666666666667,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 4.801025641025639,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 4929.574985368215,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:11.113Z",
"dateModified": "2026-05-15T13:01:11.567Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:11 UTC