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.
GTCUSDT * LongTimeLong
GTCUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -17.55% | 121,010 closed trades | 100.0% closed WR | 658 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 | 2,155.56 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 914.16 USDT | Buy + sell fees across all trades. |
| Fee Drag | 42.4% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 16.6 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 121,010 | 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 GTCUSDT, 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 42.4% 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="afe91539-2f10-44da-8d0a-a2a481f76e6b" */}
...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 GTCUSDT, 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 GTCUSDT 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: GTCUSDT 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 -17.55% return on GTCUSDT a good backtest result?
Is a -17.55% return on GTCUSDT 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 GTCUSDT backtest?
What is the annualised return for this GTCUSDT 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 GTCUSDT?
How is this backtest different from others on GTCUSDT?
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 | GTCUSDT |
| 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,244.83 USDT |
| Avg Profit / Trade | +0.0103 USDT |
| Trades / Month | 5472.5 |
| Status | completed |
| Created | 2026-05-08 13:39:08 UTC |
| Started | 2026-05-10 02:44:51 UTC |
| Completed | 2026-05-10 03:07:33 UTC |
| Compute Time | 20m 4s |
| Backtest ID | afe91539-2f10-44da-8d0a-a2a481f76e6b |
| Engine summary: |
Backtest GTCUSDT (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,244.83 USDT
P&L: -1,755.17 USDT (-17.55%)
Result: LOSS
Completed trades: 121010
Open orders at end: 658
Win rate: 100.0%
Avg. profit/trade: 0.010259 USDT
Best trade: 0.054245 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 1,241.400937 USDT
Max drawdown: -22.19%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.60
Total fees: 914.16 USDT
Avg hold time: 16.6h
TP / SL / TSL: 121010 / 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: 1204.0s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -17.55% over the tested window | return_pct = -17.5517 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 8,244.83 USDT | final_value - start_balance = -1,755.17 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 121010 of 121010 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 22.19% | max_drawdown_pct = 22.1852 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.60 | sharpe_annualized = -0.5980 | 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.001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "GTCUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.001,
"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.001 | 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: GTCUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.1
stopLoss: false
tickSize: 0.001
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 | GTCUSDT | 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,380 | #
| ## #:
|##::# ::##
|:::::#### #::::#
|::::::::: #####::::::#
|:::::::::####::::::::::::### ####
|:::::::::::::::::::::::::::: ::::##
|::::::::::::::::::::::::::::## #### ##::::::#
|::::::::::::::::::::::::::::::# ::::# #:::::::::#########
8,270 |:::::::::::::::::::::::::::::::#:::::##:::::::::::::::::::##
+------------------------------------------------------------
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,525.30 USDT @ 2024-12-06 23:59:00 UTC |
| Trough | 8,190.25 USDT @ 2025-04-08 23:59:00 UTC |
| Drawdown Duration | 123.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,525.30 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,567.83 | 7,567.83 | 91.8% |
| GTC | 7,445.10000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 677.00 | 8.2% |
| Total | - | 8,244.83 | 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) | +2.13 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 | +2.13 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.32 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.32 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.64 USDT | buy + sell on matched pairs |
| Open-position buy fees | 913.52 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 658 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 914.16 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 | 42916.82% | 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/afe91539-2f10-44da-8d0a-a2a481f76e6b/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.320373 + 0.322453
= 0.642826 USDT
(B) bt.total_fees = 914.159931 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 914.159931 - 0.642826
= 913.517104 USDT
Identity check: (A) + (C) ?= (B)
0.642826 + 913.517104 = 914.159931 USDT
vs bt.total_fees = 914.159931 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 658 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.1h | 5.1h | 76.6h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:03:00 UTC | 2026-02-25 18:34:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 85 | +2.13 USDT | +0.50% |
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.20 |
| 2025-02 | 23 | 23 | 100.0% | +0.11 |
| 2025-03 | 2 | 2 | 100.0% | +0.01 |
| 2026-02 | 35 | 35 | 100.0% | +1.81 |
Top Trades
GET /backtests/{id}/trades * Fields used: fill_type, buy_time, sell_time, buy_price, sell_price, profit, profit_percentageTop 10 Winners
Top 10 Winners
| # | Type | Period | Buy | Sell | Profit | % |
|---|---|---|---|---|---|---|
| 1 | TP | 2026-02-06 -> 2026-02-06 | 0.081000 | 0.082000 | +0.0542 | +1.08% |
| 2 | TP | 2026-02-06 -> 2026-02-06 | 0.083000 | 0.084000 | +0.0527 | +1.05% |
| 3 | TP | 2026-02-06 -> 2026-02-06 | 0.083000 | 0.084000 | +0.0527 | +1.05% |
| 4 | TP | 2026-02-06 -> 2026-02-06 | 0.083000 | 0.084000 | +0.0527 | +1.05% |
| 5 | TP | 2026-02-23 -> 2026-02-23 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
| 6 | TP | 2026-02-24 -> 2026-02-24 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
| 7 | TP | 2026-02-24 -> 2026-02-24 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
| 8 | TP | 2026-02-24 -> 2026-02-24 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
| 9 | TP | 2026-02-24 -> 2026-02-24 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
| 10 | TP | 2026-02-24 -> 2026-02-24 | 0.084000 | 0.085000 | +0.0520 | +1.04% |
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.19% @ 2025-04-08 23:59:00 UTC |
| Mean | -12.21% |
| Std Dev | 6.82% |
| Last | -21.67% |
| Points | 673 |
| Across 673 points the series ranged from -22.19% (2025-04-08 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -12.21%. 0% of points were positive, 97% negative. The most recent value is -21.67%. | |
| 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.01070837488448868},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":-0.04343296652754165},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":-0.008801586859342887},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-1.276736461721187},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-3.762794041238789},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-3.5925622433527074},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-5.52191863330016},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-3.781372929524386},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-9.076276276851553},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-9.435316512012868},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-8.9206071353448},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-8.537809181118808},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-7.42900460750856},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-7.324151125080955},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-6.092138582599289},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-5.763256389994137},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-8.900306998910276},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-5.366416212004252},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-1.5513248298581794},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":-0.06318795738361177},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-7.526221108153662},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-6.558464795769324},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-7.562928119485628},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-9.522815501402201},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-13.641641153269928},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-12.293941043955966},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-13.847924383734192},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-17.647474135988396},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-15.836597060680074},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-18.326803539637258},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-20.218435739114284},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-17.45022552690127},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-18.68925032285514},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-17.25295636235499},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-17.925641301333357},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-19.15480016244031},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-20.634800263020548},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-20.761072349675906},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-17.397014869780364},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-16.732683376885916},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-17.315722465199272},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-11.789300320238647},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-12.82565110476808},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-12.214282715588407},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-12.423066411912103},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-15.587014567190291},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-17.24913348440912},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-17.332712878369666},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-19.540499517697125},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-19.025187186023032},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-19.097542552151445},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-19.888029689705576},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-20.462725824982314},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-19.794570717112506},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-19.030405531402863},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-19.89189238430126},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-20.653866751715558},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-20.804834045619582},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-21.666587692695412}]
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 | 343.89 USDT @ 2024-12-06 23:59:00 UTC |
| Worst Unrealized | -2,675.53 USDT @ 2026-02-24 23:59:00 UTC |
| Mean | -1,250.03 USDT |
| Std Dev | 818.67 USDT |
| Last | -2,637.95 USDT |
| Points | 673 |
| Sum | -841,269.75 USDT |
| Across 673 points the series ranged from -2,675.53 USDT (2026-02-24 23:59:00 UTC) to 343.89 USDT (2024-12-06 23:59:00 UTC), averaging -1,250.03 USDT. 8% of points were positive, 92% negative. The most recent value is -2,637.95 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-6.71536985},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":28.5422716},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":84.070612225},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":101.403124225},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":16.707459325},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-234.033199925},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-230.6523167},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-446.2117351},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-293.355110125},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-853.056098125},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-904.3881929},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-862.177143475},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-825.555670925},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-715.9875974},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-725.751396825},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-610.8927771751},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-593.6387151501},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-921.4686835251},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-582.1079604251},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":-224.9342182751},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":335.2023917748},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-437.0796907751},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-359.9368839751},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-479.8410688751},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-697.9869594501},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-1137.3592760751},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-1024.9631517251},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-1211.5698900751},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-1633.9488074751},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-1459.6005863751},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-1732.3450488001},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-1959.4702723251},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-1686.3294014251},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-1842.8684148252},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-1712.4668216002},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-1790.9572837252},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-1947.7490028002},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-2115.3956660252},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-2155.9717626502},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-1827.7239567753},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-1768.7753161503},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-1840.8813431754},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-1282.0776837505},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-1412.5622127505},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-1359.6787941005},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-1387.6381014005},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-1727.7992694504},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-1913.9957379754},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-1943.4039911253},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-2187.8901547753},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-2162.7076179003},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-2206.5857954253},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-2305.9807652752},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-2392.6328637252},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-2352.7348827252},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-2284.2130134003},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-2390.2864842002},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-2495.5572868252},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-2535.9022353502},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-2637.9456710502}]
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,525.30 USDT @ 2024-12-06 23:59:00 UTC |
| Trough Total Equity | 8,190.25 USDT @ 2025-04-08 23:59:00 UTC |
| Mean | 9,105.45 USDT |
| Std Dev | 577.72 USDT |
| Last | 8,244.83 USDT |
| Points | 673 |
| Sum | 6,127,968.16 USDT |
| Across 673 points the series ranged from 8,190.25 USDT (2025-04-08 23:59:00 UTC) to 10,525.30 USDT (2024-12-06 23:59:00 UTC), averaging 9,105.45 USDT. 100% of points were positive, 0% negative. The most recent value is 8,244.83 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9833.94030125,"base":160.62464109999928,"total":9994.56494235},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9700.763743675,"base":297.14587332500014,"total":9997.909617},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9748.117361975,"base":271.79550037509944,"total":10019.9128623501},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9877.4319916001,"base":167.4473202499994,"total":10044.8793118501},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9264.8196771502,"base":717.7075153499991,"total":9982.5271925002},{"timestamp":"2024-06-20T23:59:00+00:00","quote":8813.8758169503,"base":917.27053075,"total":9731.1463477003},{"timestamp":"2024-07-01T23:59:00+00:00","quote":8782.3220224003,"base":966.0375280499993,"total":9748.3595504503},{"timestamp":"2024-07-13T23:59:00+00:00","quote":8116.3863197253,"base":1436.8839282,"total":9553.2702479253},{"timestamp":"2024-07-24T23:59:00+00:00","quote":8533.4292720003,"base":1195.8384480000004,"total":9729.2677200003},{"timestamp":"2024-08-05T23:59:00+00:00","quote":7770.8773392004,"base":1422.9895568000002,"total":9193.8668960004},{"timestamp":"2024-08-16T23:59:00+00:00","quote":7609.6895659254,"base":1547.8725242749997,"total":9157.5620902004},{"timestamp":"2024-08-27T23:59:00+00:00","quote":7594.4783335254,"base":1615.1292438750006,"total":9209.6075774004},{"timestamp":"2024-09-08T23:59:00+00:00","quote":7651.8701070004,"base":1596.444567900001,"total":9248.3146749004},{"timestamp":"2024-09-19T23:59:00+00:00","quote":7755.2276540504,"base":1605.2051925000005,"total":9360.4328465504},{"timestamp":"2024-09-30T23:59:00+00:00","quote":7745.1753487006,"base":1625.8598898498994,"total":9371.0352385505},{"timestamp":"2024-10-12T23:59:00+00:00","quote":7921.1786503257,"base":1574.4330888999002,"total":9495.6117392256},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8048.0547194009,"base":1480.8123571499,"total":9528.8670765508},{"timestamp":"2024-11-04T23:59:00+00:00","quote":7731.527783826,"base":1480.1324674499,"total":9211.6602512759},{"timestamp":"2024-11-15T23:59:00+00:00","quote":8127.1237855762,"base":1441.8702856248992,"total":9568.9940712011},{"timestamp":"2024-11-26T23:59:00+00:00","quote":8554.2666034511,"base":1400.4952401998999,"total":9954.761843651},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9305.5068812511,"base":1213.1470567998003,"total":10518.6539380509},{"timestamp":"2024-12-19T23:59:00+00:00","quote":8282.3299912511,"base":1450.8169705749006,"total":9733.146961826},{"timestamp":"2024-12-31T23:59:00+00:00","quote":8291.9180469007,"base":1543.0882151998994,"total":9835.0062621006},{"timestamp":"2025-01-11T23:59:00+00:00","quote":8144.6458073007,"base":1584.637629749901,"total":9729.2834370506},{"timestamp":"2025-01-22T23:59:00+00:00","quote":7930.0258458758,"base":1592.9734731748995,"total":9522.9993190507},{"timestamp":"2025-02-03T23:59:00+00:00","quote":7397.7507202008,"base":1691.729650449899,"total":9089.4803706507},{"timestamp":"2025-02-14T23:59:00+00:00","quote":7497.5272411007,"base":1733.8026719999007,"total":9231.3299131006},{"timestamp":"2025-02-26T23:59:00+00:00","quote":7314.4403152506,"base":1753.3281169249003,"total":9067.7684321755},{"timestamp":"2025-03-09T23:59:00+00:00","quote":7146.1455830257,"base":1521.7086618999,"total":8667.8542449256},{"timestamp":"2025-03-20T23:59:00+00:00","quote":7212.5846031507,"base":1645.8699710248993,"total":8858.4545741756},{"timestamp":"2025-04-01T23:59:00+00:00","quote":7102.7777775257,"base":1493.5749780000006,"total":8596.3527555257},{"timestamp":"2025-04-12T23:59:00+00:00","quote":6980.272835976,"base":1416.9798674498998,"total":8397.2527034259},{"timestamp":"2025-04-23T23:59:00+00:00","quote":7209.3479451759,"base":1479.2673167997991,"total":8688.6152619757},{"timestamp":"2025-05-05T23:59:00+00:00","quote":7130.0720303506,"base":1428.1320969999006,"total":8558.2041273505},{"timestamp":"2025-05-16T23:59:00+00:00","quote":7160.9566305507,"base":1548.4218119998004,"total":8709.3784425505},{"timestamp":"2025-05-28T23:59:00+00:00","quote":7103.3955530506,"base":1535.1807502498004,"total":8638.5763033004},{"timestamp":"2025-06-08T23:59:00+00:00","quote":7080.6138348759,"base":1428.5897534998003,"total":8509.2035883757},{"timestamp":"2025-06-19T23:59:00+00:00","quote":7042.357610401,"base":1311.0714583748004,"total":8353.4290687758},{"timestamp":"2025-07-01T23:59:00+00:00","quote":7044.5421735511,"base":1295.5963733998005,"total":8340.1385469509},{"timestamp":"2025-07-12T23:59:00+00:00","quote":7195.7559342012,"base":1498.4599115496994,"total":8694.2158457509},{"timestamp":"2025-07-24T23:59:00+00:00","quote":7236.7203829511,"base":1527.4183763997007,"total":8764.1387593508},{"timestamp":"2025-08-04T23:59:00+00:00","quote":7182.2283827513,"base":1520.5437362496996,"total":8702.772119001},{"timestamp":"2025-08-15T23:59:00+00:00","quote":7833.0816261764,"base":1451.3632605493995,"total":9284.4448867258},{"timestamp":"2025-08-27T23:59:00+00:00","quote":7839.5098532264,"base":1335.8559560494996,"total":9175.3658092759},{"timestamp":"2025-09-07T23:59:00+00:00","quote":7896.1154502513,"base":1343.5987445994997,"total":9239.7141948508},{"timestamp":"2025-09-19T23:59:00+00:00","quote":7831.7713307264,"base":1385.9677439994994,"total":9217.7390747259},{"timestamp":"2025-09-30T23:59:00+00:00","quote":7703.5304520015,"base":1181.1934399996007,"total":8884.7238920011},{"timestamp":"2025-10-11T23:59:00+00:00","quote":7684.7033972016,"base":1025.0774148996006,"total":8709.7808121012},{"timestamp":"2025-10-23T23:59:00+00:00","quote":7635.0974410517,"base":1065.8863851996002,"total":8700.9838262513},{"timestamp":"2025-11-03T23:59:00+00:00","quote":7541.9634608517,"base":926.6440952997009,"total":8468.6075561514},{"timestamp":"2025-11-14T23:59:00+00:00","quote":7611.1110632768,"base":911.7346857496987,"total":8522.8457490265},{"timestamp":"2025-11-26T23:59:00+00:00","quote":7622.2997267517,"base":892.9303995496994,"total":8515.2301263014},{"timestamp":"2025-12-07T23:59:00+00:00","quote":7578.3788648517,"base":853.6500818996992,"total":8432.0289467514},{"timestamp":"2025-12-19T23:59:00+00:00","quote":7564.4515985768,"base":807.0888290497996,"total":8371.5404276266},{"timestamp":"2025-12-30T23:59:00+00:00","quote":7609.896933327,"base":831.9688550248011,"total":8441.8657883518},{"timestamp":"2026-01-10T23:59:00+00:00","quote":7646.8719634771,"base":875.4245387998008,"total":8522.2965022769},{"timestamp":"2026-01-22T23:59:00+00:00","quote":7607.1476065772,"base":824.4747797997989,"total":8431.622386377},{"timestamp":"2026-02-02T23:59:00+00:00","quote":7592.1416506273,"base":759.2806121247995,"total":8351.4222627521},{"timestamp":"2026-02-14T23:59:00+00:00","quote":7601.5768750023,"base":733.9556201247997,"total":8335.5324951271},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7567.8343264024,"base":676.9959719248009,"total":8244.8302983272}]
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 | 19.34% @ 2025-02-26 23:59:00 UTC |
| Min Exposure | 1.61% @ 2024-04-24 23:59:00 UTC |
| Mean | 13.82% |
| Std Dev | 4.25% |
| Last | 8.21% |
| Points | 673 |
| Across 673 points the series ranged from 1.61% (2024-04-24 23:59:00 UTC) to 19.34% (2025-02-26 23:59:00 UTC), averaging 13.82%. 100% of points were positive, 0% negative. The most recent value is 8.21%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.6071198899252133},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.972080011803133},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.7125535332385287},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":1.6669918577564113},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":7.189637468648296},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":9.426130262307408},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":9.909744537534788},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":15.040754536511205},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":12.29114546351453},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":15.477595802687139},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":16.902670263425172},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":17.53743827085957},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":17.262005284408144},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":17.148835089304303},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":17.34984287713964},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":16.580638848111757},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":15.54027719406403},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":16.068031463110984},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":15.068149012280827},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":14.0685961371654},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":11.533291844608359},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":14.905939222587449},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":15.689753255635654},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":16.287300498568662},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":16.727644514141318},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":18.61195119483812},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":18.781721467232824},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":19.335828104117667},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":17.555771231279646},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":18.57965130648164},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":17.374519409291768},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":16.87432684825362},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":17.02535182186706},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":16.68728714282292},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":17.778786651810165},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":17.771224057641057},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":16.788759825318742},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.695009170251309},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":15.534470633865693},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":17.235135843585454},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":17.428048760296484},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":17.47194704696283},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.632202875418532},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":14.559157463771163},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":14.541561743849977},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":15.035875205012925},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":13.294655572392372},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":11.769267643054553},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":12.250182352756111},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":10.94210694208646},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":10.697538270639702},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":10.48627443187545},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.123898853888354},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":9.640864020513556},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":9.855272233452975},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":10.272167115588077},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.778364613812705},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":9.091632397887983},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":8.805143769205694},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.21115714246001}]
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 | 692.14 USDT @ 2025-08-13 23:59:00 UTC |
| Worst Day | -342.75 USDT @ 2025-03-03 23:59:00 UTC |
| Mean | -2.60 USDT |
| Std Dev | 73.89 USDT |
| Last | 37.88 USDT |
| Points | 672 |
| Sum | -1,749.73 USDT |
| Across 672 points the series ranged from -342.75 USDT (2025-03-03 23:59:00 UTC) to 692.14 USDT (2025-08-13 23:59:00 UTC), averaging -2.60 USDT. 48% of points were positive, 52% negative. The most recent value is 37.88 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":1.6127958750003017},{"timestamp":"2024-05-06T23:59:00+00:00","delta":0.5283595500004594},{"timestamp":"2024-05-18T23:59:00+00:00","delta":0.5545958999991853},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-1.223070349999034},{"timestamp":"2024-06-09T23:59:00+00:00","delta":-4.083320249999815},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-1.6935284999999567},{"timestamp":"2024-07-02T23:59:00+00:00","delta":-27.394875524898453},{"timestamp":"2024-07-14T23:59:00+00:00","delta":68.19598917499934},{"timestamp":"2024-07-25T23:59:00+00:00","delta":51.75522735010054},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-58.508510749999914},{"timestamp":"2024-08-17T23:59:00+00:00","delta":62.16268737500104},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-31.9131995000007},{"timestamp":"2024-09-08T23:59:00+00:00","delta":127.68334110000069},{"timestamp":"2024-09-20T23:59:00+00:00","delta":26.26449649999995},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-64.18123799999921},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-5.746097149900379},{"timestamp":"2024-10-24T23:59:00+00:00","delta":48.399758550000115},{"timestamp":"2024-11-04T23:59:00+00:00","delta":-51.74859895000009},{"timestamp":"2024-11-16T23:59:00+00:00","delta":127.98541815000135},{"timestamp":"2024-11-27T23:59:00+00:00","delta":98.76457730000038},{"timestamp":"2024-12-08T23:59:00+00:00","delta":19.487084124999456},{"timestamp":"2024-12-20T23:59:00+00:00","delta":58.58072322500084},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-36.787168450000536},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-27.39385567499994},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-0.2466812000002392},{"timestamp":"2025-02-03T23:59:00+00:00","delta":37.98779452499912},{"timestamp":"2025-02-15T23:59:00+00:00","delta":-43.14250052500029},{"timestamp":"2025-02-26T23:59:00+00:00","delta":25.289085849901312},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-186.19566057500015},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-57.388534849998905},{"timestamp":"2025-04-01T23:59:00+00:00","delta":25.322910525001134},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-125.06855582500066},{"timestamp":"2025-04-24T23:59:00+00:00","delta":73.43283222500031},{"timestamp":"2025-05-05T23:59:00+00:00","delta":16.539385224999933},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-50.2058649999999},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-19.895513624998785},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-20.260464975001014},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-15.813708724999742},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-48.23862414999894},{"timestamp":"2025-07-13T23:59:00+00:00","delta":32.89858292500139},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-46.680599924999115},{"timestamp":"2025-08-04T23:59:00+00:00","delta":26.37998555000013},{"timestamp":"2025-08-16T23:59:00+00:00","delta":-35.592492174899235},{"timestamp":"2025-08-27T23:59:00+00:00","delta":1.6313374000001204},{"timestamp":"2025-09-07T23:59:00+00:00","delta":24.302060199999687},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-131.41988065000078},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-34.54513564999979},{"timestamp":"2025-10-12T23:59:00+00:00","delta":86.2126346999994},{"timestamp":"2025-10-23T23:59:00+00:00","delta":37.15674655000112},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-109.55553362499995},{"timestamp":"2025-11-15T23:59:00+00:00","delta":1.8407516250008484},{"timestamp":"2025-11-26T23:59:00+00:00","delta":18.500660949999656},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-10.839922750001278},{"timestamp":"2025-12-19T23:59:00+00:00","delta":53.17010289999962},{"timestamp":"2025-12-30T23:59:00+00:00","delta":9.305764175100194},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-11.81033435000063},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-10.90569617500114},{"timestamp":"2026-02-02T23:59:00+00:00","delta":50.27311807499973},{"timestamp":"2026-02-14T23:59:00+00:00","delta":14.452723599999445},{"timestamp":"2026-02-25T23:59:00+00:00","delta":37.87504912500117}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 9.46% @ 2024-11 |
| Worst Month | -5.93% @ 2024-12 |
| Mean | -0.78% |
| Std Dev | 3.64% |
| Last | -0.68% |
| Points | 23 |
| Across 23 points the series ranged from -5.93% (2024-12) to 9.46% (2024-11), averaging -0.78%. 35% of points were positive, 65% negative. The most recent value is -0.68%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.24647065672283153},{"month":"2024-05","returnPct":0.920529199223764},{"month":"2024-06","returnPct":-3.264696130524583},{"month":"2024-07","returnPct":-1.743051924485586},{"month":"2024-08","returnPct":-3.507920139270684},{"month":"2024-09","returnPct":2.7735773751957327},{"month":"2024-10","returnPct":0.7969692233918506},{"month":"2024-11","returnPct":9.464708005137755},{"month":"2024-12","returnPct":-5.926175579395269},{"month":"2025-01","returnPct":-4.077290522909744},{"month":"2025-02","returnPct":-2.2671759748058276},{"month":"2025-03","returnPct":-5.63661989508984},{"month":"2025-04","returnPct":1.5676750510636488},{"month":"2025-05","returnPct":-3.6304690201613408},{"month":"2025-06","returnPct":-1.3508406486800535},{"month":"2025-07","returnPct":3.928123799209213},{"month":"2025-08","returnPct":5.85731319040377},{"month":"2025-09","returnPct":-3.0216147834876197},{"month":"2025-10","returnPct":-4.67919409272163},{"month":"2025-11","returnPct":-1.162759244963712},{"month":"2025-12","returnPct":0.10292295156768731},{"month":"2026-01","returnPct":-2.1330424744810483},{"month":"2026-02","returnPct":-0.6784463857755421}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 1,241.40 USDT @ 2026-02-25 |
| Trough Cum. | 1.28 USDT @ 2024-04-24 |
| Mean | 606.97 USDT |
| Std Dev | 374.52 USDT |
| Last | 1,241.40 USDT |
| Points | 673 |
| Sum | 408,488.14 USDT |
| Across 673 points the series ranged from 1.28 USDT (2024-04-24) to 1,241.40 USDT (2026-02-25), averaging 606.97 USDT. 100% of points were positive, 0% negative. The most recent value is 1,241.40 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":1.280312},{"timestamp":"2024-05-05","cumProfit":10.540301000000001},{"timestamp":"2024-05-17","cumProfit":21.543479},{"timestamp":"2024-05-28","cumProfit":33.176814},{"timestamp":"2024-06-09","cumProfit":55.520358},{"timestamp":"2024-06-20","cumProfit":70.614565},{"timestamp":"2024-07-01","cumProfit":84.44688600000002},{"timestamp":"2024-07-13","cumProfit":104.91700200000004},{"timestamp":"2024-07-24","cumProfit":128.05784800000004},{"timestamp":"2024-08-05","cumProfit":158.78202700000003},{"timestamp":"2024-08-16","cumProfit":181.64909300000008},{"timestamp":"2024-08-27","cumProfit":201.33581500000014},{"timestamp":"2024-09-08","cumProfit":218.17749900000013},{"timestamp":"2024-09-19","cumProfit":231.3944890000001},{"timestamp":"2024-09-30","cumProfit":252.38344800000013},{"timestamp":"2024-10-12","cumProfit":269.1351010000001},{"timestamp":"2024-10-23","cumProfit":285.13637600000004},{"timestamp":"2024-11-04","cumProfit":304.0139050000001},{"timestamp":"2024-11-15","cumProfit":331.56908300000015},{"timestamp":"2024-11-26","cumProfit":360.1631150000001},{"timestamp":"2024-12-08","cumProfit":384.3208900000002},{"timestamp":"2024-12-19","cumProfit":415.8549410000001},{"timestamp":"2024-12-31","cumProfit":441.19330100000013},{"timestamp":"2025-01-11","cumProfit":455.37466000000006},{"timestamp":"2025-01-22","cumProfit":478.0350260000001},{"timestamp":"2025-02-03","cumProfit":504.91315099999997},{"timestamp":"2025-02-14","cumProfit":534.3665699999999},{"timestamp":"2025-02-26","cumProfit":557.4118269999999},{"timestamp":"2025-03-09","cumProfit":579.8765559999998},{"timestamp":"2025-03-20","cumProfit":596.8001669999999},{"timestamp":"2025-04-01","cumProfit":609.603931},{"timestamp":"2025-04-12","cumProfit":639.082991},{"timestamp":"2025-04-23","cumProfit":664.3178350000001},{"timestamp":"2025-05-05","cumProfit":696.1369789999999},{"timestamp":"2025-05-16","cumProfit":723.9608849999998},{"timestamp":"2025-05-28","cumProfit":736.1978149999998},{"timestamp":"2025-06-08","cumProfit":768.8014039999998},{"timestamp":"2025-06-19","cumProfit":782.885604},{"timestamp":"2025-07-01","cumProfit":810.1711799999997},{"timestamp":"2025-07-12","cumProfit":839.3112539999997},{"timestamp":"2025-07-24","cumProfit":856.1939549999996},{"timestamp":"2025-08-04","cumProfit":881.6588769999996},{"timestamp":"2025-08-15","cumProfit":910.4686379999997},{"timestamp":"2025-08-27","cumProfit":932.0600279999998},{"timestamp":"2025-09-07","cumProfit":943.5560189999998},{"timestamp":"2025-09-19","cumProfit":949.5402069999998},{"timestamp":"2025-09-30","cumProfit":960.4683249999998},{"timestamp":"2025-10-11","cumProfit":976.651408},{"timestamp":"2025-10-23","cumProfit":997.2626770000002},{"timestamp":"2025-11-03","cumProfit":1009.3725690000002},{"timestamp":"2025-11-14","cumProfit":1038.4434360000005},{"timestamp":"2025-11-26","cumProfit":1075.4783720000003},{"timestamp":"2025-12-07","cumProfit":1091.8482940000001},{"timestamp":"2025-12-19","cumProfit":1118.5614860000003},{"timestamp":"2025-12-30","cumProfit":1151.1540890000003},{"timestamp":"2026-01-10","cumProfit":1163.7108190000006},{"timestamp":"2026-01-22","cumProfit":1179.8941610000006},{"timestamp":"2026-02-02","cumProfit":1205.6045200000005},{"timestamp":"2026-02-14","cumProfit":1230.0597030000008},{"timestamp":"2026-02-25","cumProfit":1241.4009420000007}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 8.83 USDT @ 2025-08-14 |
| Worst Day | 0.1252 USDT @ 2026-02-17 |
| Mean | 1.84 USDT |
| Std Dev | 1.18 USDT |
| Last | 0.2935 USDT |
| Points | 673 |
| Sum | 1,241.40 USDT |
| Across 673 points the series ranged from 0.1252 USDT (2026-02-17) to 8.83 USDT (2025-08-14), averaging 1.84 USDT. 100% of points were positive, 0% negative. The most recent value is 0.2935 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":1.280312},{"day":"2024-05-05","profit":0.521644},{"day":"2024-05-17","profit":0.570688},{"day":"2024-05-28","profit":1.615322},{"day":"2024-06-09","profit":0.633386},{"day":"2024-06-20","profit":1.665637},{"day":"2024-07-01","profit":0.470584},{"day":"2024-07-13","profit":0.744964},{"day":"2024-07-24","profit":3.747438},{"day":"2024-08-05","profit":5.164449},{"day":"2024-08-16","profit":1.223901},{"day":"2024-08-27","profit":2.471751},{"day":"2024-09-08","profit":1.634834},{"day":"2024-09-19","profit":1.782855},{"day":"2024-09-30","profit":2.230481},{"day":"2024-10-12","profit":0.479797},{"day":"2024-10-23","profit":1.883742},{"day":"2024-11-04","profit":0.97894},{"day":"2024-11-15","profit":3.440242},{"day":"2024-11-26","profit":3.768224},{"day":"2024-12-08","profit":1.03978},{"day":"2024-12-19","profit":3.398091},{"day":"2024-12-31","profit":1.671298},{"day":"2025-01-11","profit":0.590947},{"day":"2025-01-22","profit":1.048471},{"day":"2025-02-03","profit":4.432371},{"day":"2025-02-14","profit":1.01482},{"day":"2025-02-26","profit":1.622845},{"day":"2025-03-09","profit":1.240181},{"day":"2025-03-20","profit":0.870606},{"day":"2025-04-01","profit":1.068441},{"day":"2025-04-12","profit":2.35488},{"day":"2025-04-23","profit":2.502328},{"day":"2025-05-05","profit":1.197504},{"day":"2025-05-16","profit":2.490367},{"day":"2025-05-28","profit":1.014416},{"day":"2025-06-08","profit":1.651982},{"day":"2025-06-19","profit":1.598187},{"day":"2025-07-01","profit":3.808359},{"day":"2025-07-12","profit":2.794515},{"day":"2025-07-24","profit":0.839084},{"day":"2025-08-04","profit":4.197407},{"day":"2025-08-15","profit":3.101232},{"day":"2025-08-27","profit":1.429397},{"day":"2025-09-07","profit":0.757915},{"day":"2025-09-19","profit":0.698442},{"day":"2025-09-30","profit":1.858443},{"day":"2025-10-11","profit":2.459183},{"day":"2025-10-23","profit":1.034877},{"day":"2025-11-03","profit":3.157649},{"day":"2025-11-14","profit":3.187308},{"day":"2025-11-26","profit":1.463388},{"day":"2025-12-07","profit":1.094816},{"day":"2025-12-19","profit":1.623057},{"day":"2025-12-30","profit":3.006039},{"day":"2026-01-10","profit":0.326911},{"day":"2026-01-22","profit":1.847692},{"day":"2026-02-02","profit":2.654652},{"day":"2026-02-14","profit":0.362267},{"day":"2026-02-25","profit":0.2935}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 817 trades @ 2025-08-14 |
| Quietest Day | 3 trades @ 2026-02-17 |
| Mean | 180 trades |
| Std Dev | 125 trades |
| Last | 6 trades |
| Points | 673 |
| Sum | 121010 trades |
| Across 673 points the series ranged from 3 trades (2026-02-17) to 817 trades (2025-08-14), averaging 180 trades. The most recent value is 6 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":154},{"day":"2024-05-05","count":97},{"day":"2024-05-17","count":82},{"day":"2024-05-28","count":203},{"day":"2024-06-09","count":87},{"day":"2024-06-20","count":225},{"day":"2024-07-01","count":65},{"day":"2024-07-13","count":68},{"day":"2024-07-24","count":422},{"day":"2024-08-05","count":568},{"day":"2024-08-16","count":130},{"day":"2024-08-27","count":306},{"day":"2024-09-08","count":173},{"day":"2024-09-19","count":222},{"day":"2024-09-30","count":295},{"day":"2024-10-12","count":69},{"day":"2024-10-23","count":264},{"day":"2024-11-04","count":93},{"day":"2024-11-15","count":447},{"day":"2024-11-26","count":368},{"day":"2024-12-08","count":128},{"day":"2024-12-19","count":569},{"day":"2024-12-31","count":289},{"day":"2025-01-11","count":84},{"day":"2025-01-22","count":115},{"day":"2025-02-03","count":511},{"day":"2025-02-14","count":75},{"day":"2025-02-26","count":100},{"day":"2025-03-09","count":175},{"day":"2025-03-20","count":151},{"day":"2025-04-01","count":125},{"day":"2025-04-12","count":200},{"day":"2025-04-23","count":301},{"day":"2025-05-05","count":115},{"day":"2025-05-16","count":298},{"day":"2025-05-28","count":102},{"day":"2025-06-08","count":143},{"day":"2025-06-19","count":111},{"day":"2025-07-01","count":257},{"day":"2025-07-12","count":267},{"day":"2025-07-24","count":86},{"day":"2025-08-04","count":390},{"day":"2025-08-15","count":515},{"day":"2025-08-27","count":187},{"day":"2025-09-07","count":104},{"day":"2025-09-19","count":100},{"day":"2025-09-30","count":154},{"day":"2025-10-11","count":146},{"day":"2025-10-23","count":61},{"day":"2025-11-03","count":139},{"day":"2025-11-14","count":143},{"day":"2025-11-26","count":59},{"day":"2025-12-07","count":39},{"day":"2025-12-19","count":50},{"day":"2025-12-30","count":99},{"day":"2026-01-10","count":12},{"day":"2026-01-22","count":59},{"day":"2026-02-02","count":70},{"day":"2026-02-14","count":9},{"day":"2026-02-25","count":6}]
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 | 914.16 USDT @ 2026-02-25 |
| Start | 1.17 USDT @ 2024-04-24 |
| Mean | 524.94 USDT |
| Std Dev | 293.71 USDT |
| Last | 914.16 USDT |
| Points | 673 |
| Sum | 353,284.34 USDT |
| Across 673 points the series ranged from 1.17 USDT (2024-04-24) to 914.16 USDT (2026-02-25), averaging 524.94 USDT. 100% of points were positive, 0% negative. The most recent value is 914.16 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.172888},{"index":11,"timestamp":"2024-05-05","cumFees":12.191456},{"index":23,"timestamp":"2024-05-17","cumFees":24.553250000000002},{"index":34,"timestamp":"2024-05-28","cumFees":35.997912},{"index":46,"timestamp":"2024-06-09","cumFees":60.097568},{"index":57,"timestamp":"2024-06-20","cumFees":75.32575399999998},{"index":68,"timestamp":"2024-07-01","cumFees":88.571733},{"index":80,"timestamp":"2024-07-13","cumFees":108.116318},{"index":91,"timestamp":"2024-07-24","cumFees":126.677272},{"index":103,"timestamp":"2024-08-05","cumFees":154.33970699999998},{"index":114,"timestamp":"2024-08-16","cumFees":175.48551799999998},{"index":125,"timestamp":"2024-08-27","cumFees":194.76997999999998},{"index":137,"timestamp":"2024-09-08","cumFees":207.994154},{"index":148,"timestamp":"2024-09-19","cumFees":219.51775700000002},{"index":159,"timestamp":"2024-09-30","cumFees":240.24766600000004},{"index":171,"timestamp":"2024-10-12","cumFees":256.6492850000001},{"index":182,"timestamp":"2024-10-23","cumFees":273.8248100000002},{"index":194,"timestamp":"2024-11-04","cumFees":291.72026600000027},{"index":205,"timestamp":"2024-11-15","cumFees":318.48946900000027},{"index":216,"timestamp":"2024-11-26","cumFees":346.4572370000003},{"index":228,"timestamp":"2024-12-08","cumFees":369.7199530000003},{"index":239,"timestamp":"2024-12-19","cumFees":401.58694600000035},{"index":251,"timestamp":"2024-12-31","cumFees":431.47655100000037},{"index":262,"timestamp":"2025-01-11","cumFees":446.0573920000004},{"index":273,"timestamp":"2025-01-22","cumFees":467.2921200000004},{"index":285,"timestamp":"2025-02-03","cumFees":486.7838510000003},{"index":296,"timestamp":"2025-02-14","cumFees":502.1220320000003},{"index":308,"timestamp":"2025-02-26","cumFees":514.0948750000002},{"index":319,"timestamp":"2025-03-09","cumFees":532.6201460000001},{"index":330,"timestamp":"2025-03-20","cumFees":550.547438},{"index":342,"timestamp":"2025-04-01","cumFees":564.0928930000002},{"index":353,"timestamp":"2025-04-12","cumFees":582.0386230000004},{"index":364,"timestamp":"2025-04-23","cumFees":601.0119360000004},{"index":376,"timestamp":"2025-05-05","cumFees":629.7897570000005},{"index":387,"timestamp":"2025-05-16","cumFees":653.7663360000004},{"index":399,"timestamp":"2025-05-28","cumFees":664.0395140000003},{"index":410,"timestamp":"2025-06-08","cumFees":685.1905110000004},{"index":421,"timestamp":"2025-06-19","cumFees":693.8678690000002},{"index":433,"timestamp":"2025-07-01","cumFees":707.7188930000001},{"index":444,"timestamp":"2025-07-12","cumFees":724.9127000000003},{"index":456,"timestamp":"2025-07-24","cumFees":739.5361260000004},{"index":467,"timestamp":"2025-08-04","cumFees":757.6376390000004},{"index":478,"timestamp":"2025-08-15","cumFees":779.3695300000004},{"index":490,"timestamp":"2025-08-27","cumFees":801.3502790000003},{"index":501,"timestamp":"2025-09-07","cumFees":812.6516120000005},{"index":513,"timestamp":"2025-09-19","cumFees":819.6083240000005},{"index":524,"timestamp":"2025-09-30","cumFees":828.1434390000003},{"index":535,"timestamp":"2025-10-11","cumFees":838.4905510000002},{"index":547,"timestamp":"2025-10-23","cumFees":848.7706820000002},{"index":558,"timestamp":"2025-11-03","cumFees":853.5319900000003},{"index":569,"timestamp":"2025-11-14","cumFees":864.1419340000002},{"index":581,"timestamp":"2025-11-26","cumFees":875.8135800000003},{"index":592,"timestamp":"2025-12-07","cumFees":880.5309890000003},{"index":604,"timestamp":"2025-12-19","cumFees":887.1461080000004},{"index":615,"timestamp":"2025-12-30","cumFees":895.0114290000002},{"index":626,"timestamp":"2026-01-10","cumFees":898.1981850000003},{"index":638,"timestamp":"2026-01-22","cumFees":902.3042310000002},{"index":649,"timestamp":"2026-02-02","cumFees":908.0327510000002},{"index":661,"timestamp":"2026-02-14","cumFees":912.3033680000003},{"index":672,"timestamp":"2026-02-25","cumFees":914.1599290000001}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 25104 trades @ 0.15% |
| Least Populated Bin | 1 trades @ 1.07% |
| Mean | 2017 trades |
| Std Dev | 4503 trades |
| Last | 1 trades |
| Points | 60 |
| Sum | 121010 trades |
| Across 60 points the series ranged from 1 trades (1.07%) to 25104 trades (0.15%), averaging 2017 trades. The most recent value is 1 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":11665,"from":0.099812},{"bin":"0.12%","count":8818,"from":0.11621},{"bin":"0.13%","count":14994,"from":0.132607},{"bin":"0.15%","count":25104,"from":0.149004},{"bin":"0.17%","count":12861,"from":0.165401},{"bin":"0.18%","count":8288,"from":0.181798},{"bin":"0.20%","count":7398,"from":0.198195},{"bin":"0.21%","count":7256,"from":0.214593},{"bin":"0.23%","count":3813,"from":0.23099},{"bin":"0.25%","count":1487,"from":0.247387},{"bin":"0.26%","count":1635,"from":0.263784},{"bin":"0.28%","count":4267,"from":0.280181},{"bin":"0.30%","count":2399,"from":0.296578},{"bin":"0.31%","count":1118,"from":0.312976},{"bin":"0.33%","count":989,"from":0.329373},{"bin":"0.35%","count":454,"from":0.34577},{"bin":"0.36%","count":528,"from":0.362167},{"bin":"0.38%","count":369,"from":0.378564},{"bin":"0.39%","count":99,"from":0.394961},{"bin":"0.41%","count":62,"from":0.411359},{"bin":"0.43%","count":254,"from":0.427756},{"bin":"0.44%","count":694,"from":0.444153},{"bin":"0.46%","count":491,"from":0.46055},{"bin":"0.48%","count":946,"from":0.476947},{"bin":"0.49%","count":211,"from":0.493344},{"bin":"0.51%","count":91,"from":0.509741},{"bin":"0.53%","count":95,"from":0.526139},{"bin":"0.54%","count":149,"from":0.542536},{"bin":"0.56%","count":412,"from":0.558933},{"bin":"0.58%","count":441,"from":0.57533},{"bin":"0.59%","count":571,"from":0.591727},{"bin":"0.61%","count":544,"from":0.608124},{"bin":"0.62%","count":885,"from":0.624522},{"bin":"0.64%","count":466,"from":0.640919},{"bin":"0.66%","count":20,"from":0.657316},{"bin":"0.67%","count":15,"from":0.673713},{"bin":"0.69%","count":12,"from":0.69011},{"bin":"0.71%","count":58,"from":0.706507},{"bin":"0.72%","count":54,"from":0.722905},{"bin":"0.74%","count":79,"from":0.739302},{"bin":"0.76%","count":103,"from":0.755699},{"bin":"0.77%","count":18,"from":0.772096},{"bin":"0.79%","count":29,"from":0.788493},{"bin":"0.80%","count":20,"from":0.80489},{"bin":"0.82%","count":22,"from":0.821287},{"bin":"0.84%","count":111,"from":0.837685},{"bin":"0.85%","count":148,"from":0.854082},{"bin":"0.87%","count":69,"from":0.870479},{"bin":"0.89%","count":142,"from":0.886876},{"bin":"0.90%","count":80,"from":0.903273},{"bin":"0.92%","count":104,"from":0.91967},{"bin":"0.94%","count":14,"from":0.936068},{"bin":"0.95%","count":5,"from":0.952465},{"bin":"0.97%","count":5,"from":0.968862},{"bin":"0.99%","count":5,"from":0.985259},{"bin":"1.00%","count":5,"from":1.001656},{"bin":"1.02%","count":6,"from":1.018053},{"bin":"1.03%","count":28,"from":1.034451},{"bin":"1.05%","count":3,"from":1.050848},{"bin":"1.07%","count":1,"from":1.067245}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1210 |
| Coldest Window | 100.00% @ 1210 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1210) to 100.00% (1210), 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":1210,"winRate":100},{"index":3249,"winRate":100},{"index":5287,"winRate":100},{"index":7326,"winRate":100},{"index":9365,"winRate":100},{"index":11403,"winRate":100},{"index":13442,"winRate":100},{"index":15480,"winRate":100},{"index":17399,"winRate":100},{"index":19438,"winRate":100},{"index":21476,"winRate":100},{"index":23515,"winRate":100},{"index":25554,"winRate":100},{"index":27592,"winRate":100},{"index":29631,"winRate":100},{"index":31670,"winRate":100},{"index":33708,"winRate":100},{"index":35747,"winRate":100},{"index":37786,"winRate":100},{"index":39824,"winRate":100},{"index":41863,"winRate":100},{"index":43901,"winRate":100},{"index":45940,"winRate":100},{"index":47859,"winRate":100},{"index":49897,"winRate":100},{"index":51936,"winRate":100},{"index":53975,"winRate":100},{"index":56013,"winRate":100},{"index":58052,"winRate":100},{"index":60091,"winRate":100},{"index":62129,"winRate":100},{"index":64168,"winRate":100},{"index":66207,"winRate":100},{"index":68245,"winRate":100},{"index":70284,"winRate":100},{"index":72323,"winRate":100},{"index":74361,"winRate":100},{"index":76280,"winRate":100},{"index":78319,"winRate":100},{"index":80357,"winRate":100},{"index":82396,"winRate":100},{"index":84434,"winRate":100},{"index":86473,"winRate":100},{"index":88512,"winRate":100},{"index":90550,"winRate":100},{"index":92589,"winRate":100},{"index":94628,"winRate":100},{"index":96666,"winRate":100},{"index":98705,"winRate":100},{"index":100744,"winRate":100},{"index":102782,"winRate":100},{"index":104821,"winRate":100},{"index":106740,"winRate":100},{"index":108778,"winRate":100},{"index":110817,"winRate":100},{"index":112855,"winRate":100},{"index":114894,"winRate":100},{"index":116933,"winRate":100},{"index":118971,"winRate":100},{"index":121010,"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 | 2.13 USDT @ 2026-02-25 18:34:00 UTC |
| Trough Net | 0.0080 USDT @ 2024-04-24 00:06:00 UTC |
| Mean | 0.6281 USDT |
| Std Dev | 0.6324 USDT |
| Last | 2.13 USDT |
| Points | 85 |
| Sum | 53.39 USDT |
| Across 85 points the series ranged from 0.0080 USDT (2024-04-24 00:06:00 UTC) to 2.13 USDT (2026-02-25 18:34:00 UTC), averaging 0.6281 USDT. 100% of points were positive, 0% negative. The most recent value is 2.13 USDT. | |
| Showing 60 of 85 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:06:00Z","net":0.00798915,"gross":0.0156},{"timestamp":"2024-04-24T00:24:00Z","net":0.0160368,"gross":0.0312},{"timestamp":"2024-04-24T00:31:00Z","net":0.032061900000000004,"gross":0.0624},{"timestamp":"2024-04-24T00:31:00Z","net":0.0400686,"gross":0.078},{"timestamp":"2024-04-24T00:42:00Z","net":0.056023500000000004,"gross":0.1092},{"timestamp":"2024-04-24T00:51:00Z","net":0.06398925,"gross":0.12480000000000001},{"timestamp":"2024-04-24T01:04:00Z","net":0.07988565,"gross":0.156},{"timestamp":"2024-04-24T01:30:00Z","net":0.08782215,"gross":0.1716},{"timestamp":"2024-04-24T01:48:00Z","net":0.0957645,"gross":0.1872},{"timestamp":"2024-04-24T02:34:00Z","net":0.1116843,"gross":0.2184},{"timestamp":"2024-04-24T02:39:00Z","net":0.1196559,"gross":0.234},{"timestamp":"2024-04-24T03:28:00Z","net":0.13560495,"gross":0.2652},{"timestamp":"2024-04-24T03:31:00Z","net":0.14357655,"gross":0.2808},{"timestamp":"2024-04-24T04:15:00Z","net":0.15950219999999998,"gross":0.312},{"timestamp":"2024-04-24T04:18:00Z","net":0.16745039999999997,"gross":0.3276},{"timestamp":"2024-04-24T04:21:00Z","net":0.17538689999999998,"gross":0.3432},{"timestamp":"2024-04-24T04:56:00Z","net":0.19097044999999999,"gross":0.374},{"timestamp":"2024-04-24T05:15:00Z","net":0.1988777,"gross":0.3896},{"timestamp":"2025-02-06T15:39:00Z","net":0.20885895,"gross":0.4146},{"timestamp":"2025-02-06T15:50:00Z","net":0.213849575,"gross":0.42710000000000004},{"timestamp":"2025-02-06T16:05:00Z","net":0.21884019999999998,"gross":0.43960000000000005},{"timestamp":"2025-02-06T16:19:00Z","net":0.22882144999999998,"gross":0.46460000000000007},{"timestamp":"2025-02-06T16:26:00Z","net":0.23381207499999998,"gross":0.4771000000000001},{"timestamp":"2025-02-06T16:30:00Z","net":0.24379332499999998,"gross":0.5021000000000001},{"timestamp":"2025-02-06T16:31:00Z","net":0.24878394999999998,"gross":0.5146000000000001},{"timestamp":"2025-02-06T16:39:00Z","net":0.25876520000000003,"gross":0.5396},{"timestamp":"2025-02-06T16:54:00Z","net":0.26375582500000005,"gross":0.5520999999999999},{"timestamp":"2025-02-06T16:56:00Z","net":0.2687464500000001,"gross":0.5645999999999999},{"timestamp":"2025-02-06T20:00:00Z","net":0.27872770000000013,"gross":0.5895999999999998},{"timestamp":"2025-02-06T21:31:00Z","net":0.28371832500000016,"gross":0.6020999999999997},{"timestamp":"2025-02-08T02:42:00Z","net":0.2936995750000002,"gross":0.6270999999999997},{"timestamp":"2025-02-08T04:41:00Z","net":0.29869020000000024,"gross":0.6395999999999996},{"timestamp":"2025-02-08T05:20:00Z","net":0.3086714500000003,"gross":0.6645999999999995},{"timestamp":"2025-02-08T07:01:00Z","net":0.3136620750000003,"gross":0.6770999999999995},{"timestamp":"2025-03-05T19:40:00Z","net":0.31865270000000034,"gross":0.6895999999999994},{"timestamp":"2026-02-06T00:18:00Z","net":0.3763907500000004,"gross":0.7623999999999994},{"timestamp":"2026-02-06T00:20:00Z","net":0.4306357000000004,"gross":0.8241999999999994},{"timestamp":"2026-02-06T00:29:00Z","net":0.5361305500000004,"gross":0.9447999999999994},{"timestamp":"2026-02-23T02:03:00Z","net":0.5881762500000004,"gross":1.0043999999999995},{"timestamp":"2026-02-24T07:25:00Z","net":0.6922676500000003,"gross":1.1235999999999997},{"timestamp":"2026-02-24T07:52:00Z","net":0.7443133500000003,"gross":1.1831999999999998},{"timestamp":"2026-02-24T08:17:00Z","net":0.7963590500000003,"gross":1.2428},{"timestamp":"2026-02-24T08:54:00Z","net":0.9004504500000002,"gross":1.362},{"timestamp":"2026-02-24T09:16:00Z","net":0.9524961500000002,"gross":1.4216000000000002},{"timestamp":"2026-02-24T10:01:00Z","net":1.0565875500000004,"gross":1.5408000000000004},{"timestamp":"2026-02-24T10:06:00Z","net":1.1086332500000005,"gross":1.6004000000000005},{"timestamp":"2026-02-24T10:45:00Z","net":1.1606789500000005,"gross":1.6600000000000006},{"timestamp":"2026-02-24T11:10:00Z","net":1.2647703500000007,"gross":1.7792000000000008},{"timestamp":"2026-02-24T11:17:00Z","net":1.3168160500000008,"gross":1.8388000000000009},{"timestamp":"2026-02-24T12:21:00Z","net":1.420907450000001,"gross":1.958000000000001},{"timestamp":"2026-02-24T12:45:00Z","net":1.472953150000001,"gross":2.017600000000001},{"timestamp":"2026-02-24T13:17:00Z","net":1.5770445500000012,"gross":2.1368000000000014},{"timestamp":"2026-02-24T14:02:00Z","net":1.6290902500000013,"gross":2.1964000000000015},{"timestamp":"2026-02-24T14:07:00Z","net":1.6811359500000014,"gross":2.2560000000000016},{"timestamp":"2026-02-24T15:02:00Z","net":1.7852273500000015,"gross":2.3752000000000018},{"timestamp":"2026-02-24T15:16:00Z","net":1.8365734250000016,"gross":2.4341000000000017},{"timestamp":"2026-02-25T08:03:00Z","net":1.9365685000000017,"gross":2.5492000000000017},{"timestamp":"2026-02-25T12:22:00Z","net":1.9859150250000017,"gross":2.606100000000002},{"timestamp":"2026-02-25T15:48:00Z","net":2.0826224750000017,"gross":2.717900000000002},{"timestamp":"2026-02-25T18:34:00Z","net":2.1300737250000017,"gross":2.772900000000002}]
Rolling Sharpe Ratio (30d / 90d)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: rollingSharpe(equity, 30) + rollingSharpe(equity, 90)sharpe30).| Stat | Value |
|---|---|
| Peak Sharpe (30d) | 9.94 @ 2024-12-04 23:59:00 UTC |
| Worst Sharpe (30d) | -10.00 @ 2024-07-05 23:59:00 UTC |
| Mean | -0.90 |
| Std Dev | 3.21 |
| Last | -3.83 |
| Points | 643 |
| Across 643 points the series ranged from -10.00 (2024-07-05 23:59:00 UTC) to 9.94 (2024-12-04 23:59:00 UTC), averaging -0.90. The most recent value is -3.83. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":2.584673520068788,"sharpe90":-1.8024546350237587},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":5.3352122712929,"sharpe90":-3.1558552249485494},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-4.153906974182509,"sharpe90":-2.8436501467886397},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-6.126640946345474,"sharpe90":-2.1771858762639726},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-7.345588596735428,"sharpe90":-2.785031362696634},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":-1.6156301461842417,"sharpe90":-1.758459939466496},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":-0.591487903873629,"sharpe90":-0.886589317306532},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":-1.7412819513772424,"sharpe90":-0.25669885517731617},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-3.6807823198816276,"sharpe90":-0.7430787731737384},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-2.876618778830529,"sharpe90":-0.31722008249905104},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":0.21300230669133915,"sharpe90":0.942620169203958},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":0.007985436422857584,"sharpe90":0.4940672405013374},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":1.3106947740256243,"sharpe90":3.844511467459816},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":2.5713115692573387,"sharpe90":2.7847681811174447},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":1.8351196877364364,"sharpe90":0.9237990303112171},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-1.3805077490916922,"sharpe90":1.3415696377844284},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":0.07849929004342968,"sharpe90":0.32414078953711273},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":4.159452200160643,"sharpe90":0.19969985938913679},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":9.026341382930486,"sharpe90":-0.9404941506712087},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":2.1731983302266116,"sharpe90":-0.9739459047114157},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-0.8127298920946108,"sharpe90":-2.3090806904369656},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-3.242849163135582,"sharpe90":-3.3932026945319254},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":-0.4111333408143514,"sharpe90":-1.8375012221039126},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-4.238665147135175,"sharpe90":-2.925891886088428},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-5.172624680727076,"sharpe90":-3.253201504070577},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":-2.027356514319074,"sharpe90":-1.920875810613315},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-2.1417040252974227,"sharpe90":-1.3147363538903651},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-2.8498976571827144,"sharpe90":-0.5656945943834798},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-1.938495178749224,"sharpe90":-1.2201163183850827},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-4.570042687828807,"sharpe90":-0.9995047870654655},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-3.9534106151737722,"sharpe90":-0.8103613614523046},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":-0.20207741983245253,"sharpe90":-1.2020076534208735},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":1.8106108704920998,"sharpe90":0.39489389588191426},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":2.6651412466426905,"sharpe90":1.3892144234019355},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":-1.068403941591537,"sharpe90":0.12480252687724477},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-2.9093068667976567,"sharpe90":-0.35014097477216166},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-4.080385252998236,"sharpe90":0.8606783380073776},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-1.9628632505228143,"sharpe90":1.4615989343440614},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":1.1893118440750028,"sharpe90":1.5980029287696473},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":8.438273629651576,"sharpe90":2.228715554097839},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":1.5238981241069982,"sharpe90":1.1450632535103782},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":4.085016127246195,"sharpe90":0.1592568238210124},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":1.8501922445538894,"sharpe90":-0.2286266545544775},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":1.9799219419193879,"sharpe90":-0.4377230661959868},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":0.2565496911947937,"sharpe90":-2.402021923144259},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-1.9402679467197457,"sharpe90":-2.4208623243034277},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-3.2007533776277732,"sharpe90":-2.95745741044782},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-4.644503375456164,"sharpe90":-3.6553868930314675},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-2.902318597169946,"sharpe90":-2.2040309845067463},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":-3.0502007817338668,"sharpe90":-1.9299486945588806},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":-4.49903844869672,"sharpe90":-1.6520984369834273},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":-1.4063437874728775,"sharpe90":-1.0470098146218825},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-3.607973749268278,"sharpe90":-1.971153683476146},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-1.9518770578953992,"sharpe90":-1.4210805824979773},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":1.5054139943380112,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":1.423255986524342,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":1.387771797904616,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-3.9779983278538262,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-2.1468639087232426,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-3.831794228027835,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.31% @ 6 |
| Deepest Episode | -22.19% @ 445 |
| Mean | -6.76% |
| Std Dev | 8.61% |
| Last | -22.19% |
| Points | 5 |
| Across 5 points the series ranged from -22.19% (445) to -0.31% (6), averaging -6.76%. 0% of points were positive, 100% negative. The most recent value is -22.19%. | |
| Full series - 5 points. |
[{"start":"2024-04-30T23:59:00+00:00","end":"2024-05-06T23:59:00+00:00","depth":-0.30902206433002816,"durationDays":6},{"start":"2024-05-12T23:59:00+00:00","end":"2024-05-20T23:59:00+00:00","depth":-0.3882641480872896,"durationDays":8},{"start":"2024-06-06T23:59:00+00:00","end":"2024-11-29T23:59:00+00:00","depth":-10.329269655136384,"durationDays":176},{"start":"2024-12-02T23:59:00+00:00","end":"2024-12-03T23:59:00+00:00","depth":-0.5983953683564256,"durationDays":1},{"start":"2024-12-07T23:59:00+00:00","end":"ongoing","depth":-22.185170242071703,"durationDays":445}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 85 trades @ win |
| Shortest Streak | 85 trades @ win |
| Mean | 85 trades |
| Std Dev | 0 trades |
| Last | 85 trades |
| Points | 1 |
| Sum | 85 trades |
| Across 1 points the series ranged from 85 trades (win) to 85 trades (win), averaging 85 trades. The most recent value is 85 trades. | |
| Full series - 1 points. |
[{"type":"win","length":85,"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 | 19.34% @ 2025-02-26 23:59:00 UTC |
| Min Utilization | 1.61% @ 2024-04-24 23:59:00 UTC |
| Mean | 13.82% |
| Std Dev | 4.25% |
| Last | 8.21% |
| Points | 673 |
| Across 673 points the series ranged from 1.61% (2024-04-24 23:59:00 UTC) to 19.34% (2025-02-26 23:59:00 UTC), averaging 13.82%. 100% of points were positive, 0% negative. The most recent value is 8.21%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":1.6071198899252133},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":2.972080011803133},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.7125535332385287},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":1.6669918577564113},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":7.189637468648296},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":9.426130262307408},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":9.909744537534788},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":15.040754536511205},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":12.29114546351453},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":15.477595802687139},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":16.902670263425172},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":17.53743827085957},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":17.262005284408144},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":17.148835089304303},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":17.34984287713964},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":16.580638848111757},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":15.54027719406403},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":16.068031463110984},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":15.068149012280827},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":14.0685961371654},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":11.533291844608359},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":14.905939222587449},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":15.689753255635654},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":16.287300498568662},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":16.727644514141318},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":18.61195119483812},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":18.781721467232824},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":19.335828104117667},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":17.555771231279646},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":18.57965130648164},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":17.374519409291768},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":16.87432684825362},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":17.02535182186706},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":16.68728714282292},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":17.778786651810165},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":17.771224057641057},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":16.788759825318742},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":15.695009170251309},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":15.534470633865693},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":17.235135843585454},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":17.428048760296484},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":17.47194704696283},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":15.632202875418532},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":14.559157463771163},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":14.541561743849977},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":15.035875205012925},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":13.294655572392372},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":11.769267643054553},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":12.250182352756111},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":10.94210694208646},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":10.697538270639702},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":10.48627443187545},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":10.123898853888354},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":9.640864020513556},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":9.855272233452975},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":10.272167115588077},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":9.778364613812705},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":9.091632397887983},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":8.805143769205694},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":8.21115714246001}]
Price Chart with Buy/Sell Markers
GET /backtests/{id}/trades * Fields used: buy_time, buy_price, sell_time, sell_price * Transform: priceWithMarkers(trades)price).| Stat | Value |
|---|---|
| Highest Price | 1.32 @ 2024-04-24 04:56:00 UTC |
| Lowest Price | 0.0810 @ 2026-02-06 00:19:00 UTC |
| Mean | 0.5957 |
| Std Dev | 0.5357 |
| Last | 0.0920 |
| Points | 140 |
| Across 140 points the series ranged from 0.0810 (2026-02-06 00:19:00 UTC) to 1.32 (2024-04-24 04:56:00 UTC), averaging 0.5957. The most recent value is 0.0920. | |
| Showing 60 of 140 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:03:00Z","price":1.299},{"timestamp":"2024-04-24T00:07:00Z","price":1.301},{"timestamp":"2024-04-24T00:21:00Z","price":1.291},{"timestamp":"2024-04-24T00:24:00Z","price":1.293},{"timestamp":"2024-04-24T00:31:00Z","price":1.303},{"timestamp":"2024-04-24T00:39:00Z","price":1.301},{"timestamp":"2024-04-24T00:46:00Z","price":1.305},{"timestamp":"2024-04-24T00:58:00Z","price":1.307},{"timestamp":"2024-04-24T01:05:00Z","price":1.31},{"timestamp":"2024-04-24T01:30:00Z","price":1.312},{"timestamp":"2024-04-24T01:56:00Z","price":1.314},{"timestamp":"2024-04-24T02:22:00Z","price":1.311},{"timestamp":"2024-04-24T02:29:00Z","price":1.306},{"timestamp":"2024-04-24T02:34:00Z","price":1.302},{"timestamp":"2024-04-24T03:00:00Z","price":1.303},{"timestamp":"2024-04-24T03:10:00Z","price":1.304},{"timestamp":"2024-04-24T03:28:00Z","price":1.304},{"timestamp":"2024-04-24T03:35:00Z","price":1.308},{"timestamp":"2024-04-24T04:15:00Z","price":1.307},{"timestamp":"2024-04-24T04:45:00Z","price":1.315},{"timestamp":"2024-04-24T04:56:00Z","price":1.324},{"timestamp":"2025-02-06T15:36:00Z","price":0.4},{"timestamp":"2025-02-06T15:50:00Z","price":0.4},{"timestamp":"2025-02-06T16:07:00Z","price":0.401},{"timestamp":"2025-02-06T16:26:00Z","price":0.4},{"timestamp":"2025-02-06T16:28:00Z","price":0.4},{"timestamp":"2025-02-06T16:31:00Z","price":0.401},{"timestamp":"2025-02-06T16:39:00Z","price":0.4},{"timestamp":"2025-02-06T16:54:00Z","price":0.401},{"timestamp":"2025-02-06T16:58:00Z","price":0.4},{"timestamp":"2025-02-06T20:00:00Z","price":0.401},{"timestamp":"2025-02-06T22:10:00Z","price":0.4},{"timestamp":"2025-02-08T02:42:00Z","price":0.401},{"timestamp":"2025-02-08T05:04:00Z","price":0.401},{"timestamp":"2025-02-08T05:20:00Z","price":0.401},{"timestamp":"2025-02-08T07:01:00Z","price":0.401},{"timestamp":"2025-03-06T12:45:00Z","price":0.4},{"timestamp":"2026-02-06T00:19:00Z","price":0.081},{"timestamp":"2026-02-06T00:27:00Z","price":0.083},{"timestamp":"2026-02-22T13:56:00Z","price":0.091},{"timestamp":"2026-02-23T00:59:00Z","price":0.089},{"timestamp":"2026-02-24T01:16:00Z","price":0.086},{"timestamp":"2026-02-24T07:06:00Z","price":0.084},{"timestamp":"2026-02-24T07:25:00Z","price":0.085},{"timestamp":"2026-02-24T08:16:00Z","price":0.084},{"timestamp":"2026-02-24T08:45:00Z","price":0.084},{"timestamp":"2026-02-24T08:54:00Z","price":0.085},{"timestamp":"2026-02-24T10:00:00Z","price":0.084},{"timestamp":"2026-02-24T10:06:00Z","price":0.085},{"timestamp":"2026-02-24T10:45:00Z","price":0.085},{"timestamp":"2026-02-24T11:16:00Z","price":0.084},{"timestamp":"2026-02-24T11:57:00Z","price":0.084},{"timestamp":"2026-02-24T12:45:00Z","price":0.084},{"timestamp":"2026-02-24T13:17:00Z","price":0.084},{"timestamp":"2026-02-24T14:02:00Z","price":0.085},{"timestamp":"2026-02-24T14:17:00Z","price":0.084},{"timestamp":"2026-02-24T15:16:00Z","price":0.086},{"timestamp":"2026-02-25T05:23:00Z","price":0.088},{"timestamp":"2026-02-25T15:17:00Z","price":0.09},{"timestamp":"2026-02-25T18:34:00Z","price":0.092}]
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 | 25 trades @ $5.00 |
| Least Populated Bin | 1 trades @ $5.00 |
| Mean | 4 trades |
| Std Dev | 7 trades |
| Last | 1 trades |
| Points | 24 |
| Sum | 85 trades |
| Across 24 points the series ranged from 1 trades (5.00)to∗∗25trades∗∗(5.00), averaging 4 trades. The most recent value is 1 trades. | |
| Full series - 24 points. |
[{"bin":"$5.00","count":25,"from":5},{"bin":"$5.00","count":1,"from":5.002},{"bin":"$5.00","count":1,"from":5.004},{"bin":"$5.00","count":5,"from":5.005},{"bin":"$5.01","count":25,"from":5.006},{"bin":"$5.01","count":3,"from":5.007},{"bin":"$5.02","count":1,"from":5.016},{"bin":"$5.03","count":1,"from":5.027},{"bin":"$5.04","count":1,"from":5.035},{"bin":"$5.05","count":1,"from":5.054},{"bin":"$5.06","count":1,"from":5.062},{"bin":"$5.07","count":2,"from":5.066},{"bin":"$5.07","count":1,"from":5.07},{"bin":"$5.07","count":2,"from":5.074},{"bin":"$5.08","count":2,"from":5.078},{"bin":"$5.08","count":3,"from":5.082},{"bin":"$5.09","count":1,"from":5.086},{"bin":"$5.09","count":1,"from":5.089},{"bin":"$5.09","count":1,"from":5.093},{"bin":"$5.10","count":2,"from":5.097},{"bin":"$5.10","count":2,"from":5.101},{"bin":"$5.11","count":1,"from":5.109},{"bin":"$5.11","count":1,"from":5.113},{"bin":"$5.12","count":1,"from":5.121}]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 28 trades @ 1.03 |
| Smallest TP Bin | 0 trades @ 0.2 |
| Mean | 4 trades |
| Std Dev | 9 trades |
| Last | 28 trades |
| Points | 20 |
| Sum | 85 trades |
| Across 20 points the series ranged from 0 trades (0.2) to 28 trades (1.03), averaging 4 trades. The most recent value is 28 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 25,
"SL": 0,
"TSL": 0
},
{
"bin": 0.2,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.25,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.3,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.35,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.39,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.44,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.49,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.54,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.59,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.64,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.69,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.74,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.79,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.84,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.89,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.94,
"TP": 3,
"SL": 0,
"TSL": 0
},
{
"bin": 0.99,
"TP": 4,
"SL": 0,
"TSL": 0
},
{
"bin": 1.03,
"TP": 28,
"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 | 95.92 @ Jan |
| Worst Indexed Value | 84.86 @ Jun |
| Mean | 88.46 |
| Std Dev | 3.36 |
| Last | 85.31 |
| Points | 12 |
| Across 12 points the series ranged from 84.86 (Jun) to 95.92 (Jan), averaging 88.46. The most recent value is 85.31. | |
| Full series - 12 points. |
[
{
"2025": 95.92270947709027,
"2026": 97.86695752551896,
"month": "Jan"
},
{
"2025": 92.18995465558379,
"2026": 96.98709275587414,
"month": "Feb"
},
{
"2025": 86.70451598732468,
"month": "Mar"
},
{
"2024": 99.75352934327717,
"2025": 88.32394340897817,
"month": "Apr"
},
{
"2024": 100.65310943224361,
"2025": 85.42200454475285,
"month": "May"
},
{
"2024": 97.75899682460779,
"2025": 84.85680200538002,
"month": "Jun"
},
{
"2024": 95.83649350372066,
"2025": 87.68293191253129,
"month": "Jul"
},
{
"2024": 91.93768967036061,
"2025": 92.70392161600918,
"month": "Aug"
},
{
"2024": 93.76131219921923,
"2025": 89.87784416435107,
"month": "Sep"
},
{
"2024": 93.86128177376334,
"2025": 86.6576330466675,
"month": "Oct"
},
{
"2024": 102.47616913470982,
"2025": 85.87259357437073,
"month": "Nov"
},
{
"2024": 98.40354551529,
"2025": 85.3095944378299,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 194.56 USDT @ Sun |
| Worst Weekday | 142.26 USDT @ Fri |
| Mean | 177.34 USDT |
| Std Dev | 18.58 USDT |
| Last | 194.56 USDT |
| Points | 7 |
| Sum | 1,241.40 USDT |
| Across 7 points the series ranged from 142.26 USDT (Fri) to 194.56 USDT (Sun), averaging 177.34 USDT. 100% of points were positive, 0% negative. The most recent value is 194.56 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 192.714347
},
{
"day": "Tue",
"profit": 185.158147
},
{
"day": "Wed",
"profit": 190.344301
},
{
"day": "Thu",
"profit": 179.480016
},
{
"day": "Fri",
"profit": 142.261113
},
{
"day": "Sat",
"profit": 156.887462
},
{
"day": "Sun",
"profit": 194.55555
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 70.86 USDT @ 14:00 |
| Worst Hour (UTC) | 42.13 USDT @ 23:00 |
| Mean | 51.73 USDT |
| Std Dev | 7.76 USDT |
| Last | 42.13 USDT |
| Points | 24 |
| Sum | 1,241.40 USDT |
| Across 24 points the series ranged from 42.13 USDT (23:00) to 70.86 USDT (14:00), averaging 51.73 USDT. 100% of points were positive, 0% negative. The most recent value is 42.13 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":54.787169},{"hour":"1:00","profit":49.972262},{"hour":"2:00","profit":46.114595},{"hour":"3:00","profit":42.574594},{"hour":"4:00","profit":43.475063},{"hour":"5:00","profit":43.805274},{"hour":"6:00","profit":45.307948},{"hour":"7:00","profit":49.795489},{"hour":"8:00","profit":52.397124},{"hour":"9:00","profit":52.020374},{"hour":"10:00","profit":46.940663},{"hour":"11:00","profit":50.597357},{"hour":"12:00","profit":55.620446},{"hour":"13:00","profit":62.709947},{"hour":"14:00","profit":70.860332},{"hour":"15:00","profit":68.906929},{"hour":"16:00","profit":62.880232},{"hour":"17:00","profit":55.277089},{"hour":"18:00","profit":53.797961},{"hour":"19:00","profit":51.38173},{"hour":"20:00","profit":49.092154},{"hour":"21:00","profit":46.237655},{"hour":"22:00","profit":44.719151},{"hour":"23:00","profit":42.129399}]
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 | 1.08% @ 0.016666666666666666 |
| Worst Trade Return | 0.10% @ 0.016666666666666666 |
| Mean | 0.50% |
| Std Dev | 0.45% |
| Last | 0.99% |
| Points | 85 |
| Across 85 points the series ranged from 0.10% (0.016666666666666666) to 1.08% (0.016666666666666666), averaging 0.50%. 100% of points were positive, 0% negative. The most recent value is 0.99%. | |
| Showing 60 of 85 points (down-sampled for readability). |
[{"hours":0.05,"profitPct":0.1576982294,"profit":0.00798915},{"hours":0.5166666666666667,"profitPct":0.1572252114,"profit":0.00797745},{"hours":0.26666666666666666,"profitPct":0.1584104938,"profit":0.0080067},{"hours":0.1,"profitPct":0.1596049574,"profit":0.00803595},{"hours":0.23333333333333334,"profitPct":0.1567536454,"profit":0.00796575},{"hours":0.05,"profitPct":0.1572252114,"profit":0.00797745},{"hours":0.1,"profitPct":0.1558148432,"profit":0.00794235},{"hours":0.85,"profitPct":0.1551145038,"profit":0.0079248},{"hours":0.35,"profitPct":0.1555810398,"profit":0.0079365},{"hours":3.1333333333333333,"profitPct":0.1544173648,"profit":0.00790725},{"hours":2.3833333333333333,"profitPct":0.1548817696,"profit":0.00791895},{"hours":1.8166666666666667,"profitPct":0.1560490046,"profit":0.0079482},{"hours":0.15,"profitPct":0.1569892473,"profit":0.0079716},{"hours":0.05,"profitPct":0.1567536454,"profit":0.00796575},{"hours":0.4166666666666667,"profitPct":0.1565184049,"profit":0.0079599},{"hours":0.08333333333333333,"profitPct":0.1574615385,"profit":0.0079833},{"hours":0.1,"profitPct":0.1567536454,"profit":0.00796575},{"hours":0.11666666666666667,"profitPct":0.1528030303,"profit":0.0076646},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.08333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.016666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.25,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":1.0539156627,"profit":0.052747425},{"hours":0.016666666666666666,"profitPct":1.0836419753,"profit":0.05424495},{"hours":0.03333333333333333,"profitPct":1.0539156627,"profit":0.052747425},{"hours":76.63333333333334,"profitPct":0.9480769231,"profit":0.04745125},{"hours":62.3,"profitPct":0.972752809,"profit":0.04865515},{"hours":49.11666666666667,"profitPct":0.9855113636,"profit":0.049346525},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":8.383333333333333,"profitPct":1.0255882353,"profit":0.051346075},{"hours":0.016666666666666666,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.1,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.016666666666666666,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.13333333333333333,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.08333333333333333,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.23333333333333334,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.016666666666666666,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.08333333333333333,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.13333333333333333,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0.016666666666666666,"profitPct":1.0395833333,"profit":0.0520457},{"hours":0,"profitPct":1.0395833333,"profit":0.0520457},{"hours":6.983333333333333,"profitPct":0.9855113636,"profit":0.049346525}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 85 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 28 trades |
| Std Dev | 40 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 85 trades |
| Across 3 points the series ranged from 0 trades (SL) to 85 trades (TP), averaging 28 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 85
},
{
"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": "afe91539-2f10-44da-8d0a-a2a481f76e6b",
"symbol": "GTCUSDT",
"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": 8244.83029833,
"return_pct": -17.5517,
"total_profit_usdt": 1241.40093652,
"avg_profit_per_trade_usdt": 0.01025866,
"fulfilled_trades": 121010,
"active_orders": 658,
"win_rate_pct": 100,
"best_trade_usdt": 0.05424495,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 5472.53191607104,
"max_drawdown_pct": 22.185170242071703,
"max_drawdown_abs_usdt": 2335.0567580000998,
"drawdown_duration_days": 123,
"recovery_days": null,
"cagr_pct": -9.958541677328759,
"volatility_annualized_pct": 15.482254379988483,
"sharpe_annualized": -0.598005060893007,
"sortino_annualized": -0.6083752613660361,
"time_in_market_pct": 100,
"final_cash_usdt": 7567.8343264024,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -2637.9456710502,
"median_hold_hours": 0.1,
"avg_hold_hours": 5.114021164021164,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | afe91539-2f10-44da-8d0a-a2a481f76e6b |
symbol | GTCUSDT |
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 | 8244.83029833 |
return_pct | -17.5517 |
total_profit_usdt | 1241.40093652 |
avg_profit_per_trade_usdt | 0.01025866 |
fulfilled_trades | 121010 |
active_orders | 658 |
win_rate_pct | 100 |
best_trade_usdt | 0.05424495 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 5472.53191607104 |
max_drawdown_pct | 22.185170242071703 |
max_drawdown_abs_usdt | 2335.0567580000998 |
drawdown_duration_days | 123 |
recovery_days | null |
cagr_pct | -9.958541677328759 |
volatility_annualized_pct | 15.482254379988483 |
sharpe_annualized | -0.598005060893007 |
sortino_annualized | -0.6083752613660361 |
time_in_market_pct | 100 |
final_cash_usdt | 7567.8343264024 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -2637.9456710502 |
median_hold_hours | 0.1 |
avg_hold_hours | 5.114021164021164 |
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 | GTCUSDT |
| 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,244.83 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -17.55% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +1,241.40 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)) | 121,010 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0542 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.0103 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 5472.5 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -22.19% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -2,335.06 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -9.96% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 15.48% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.60 |
| 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.64 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +2.13 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.0251 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 85 |
| 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 | 5.1h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.1h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 857 USDT |
Raw API Attachments
/trades. Full trade population: 121,010 closed trades - fetch the complete list via GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b - backtest summary (verbatim)
GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b - backtest summary (verbatim)
{
"id": "afe91539-2f10-44da-8d0a-a2a481f76e6b",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:08.840952Z",
"started_at": "2026-05-10T02:44:51.539863Z",
"completed_at": "2026-05-10T03:07:33.233148Z",
"mode_name": "3LongTimeLong.json",
"symbol": "GTCUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 8244.83029833,
"return_pct": -17.5517,
"total_profit": 1241.40093652,
"fulfilled_trades": 121010,
"active_orders": 658,
"win_rate": 100,
"avg_profit": 0.01025866,
"max_profit": 0.05424495,
"min_profit": 0.00499063,
"elapsed_sec": 1204,
"max_drawdown": -22.1852,
"profit_factor": null,
"sharpe_ratio": -0.598,
"total_fees": 914.15993063,
"avg_hold_time_hours": 16.5573,
"tp_count": 121010,
"sl_count": 0,
"tsl_count": 0,
"start_price": 1.228,
"end_price": 0.091,
"gross_profit_quote": 2155.560867,
"gross_loss_quote": 0,
"wins": 121010,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 121010,
"consecutive_losses_max": 0,
"holding_minutes_p50": 4,
"holding_minutes_p95": 589,
"holding_minutes_max": 277638,
"description": "GTCUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -17.55% | 121010 trades | 100% WR",
"summary_text": "Backtest GTCUSDT (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,244.83 USDT\nP&L: -1,755.17 USDT (-17.55%)\nResult: LOSS\nCompleted trades: 121010\nOpen orders at end: 658\nWin rate: 100.0%\nAvg. profit/trade: 0.010259 USDT\nBest trade: 0.054245 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 1,241.400937 USDT\nMax drawdown: -22.19%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.60\nTotal fees: 914.16 USDT\nAvg hold time: 16.6h\nTP / SL / TSL: 121010 / 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: 1204.0s",
"share_token": null,
"config_hash": "1ddfa8d9e685ee8ae02916484d31b6c6e3458e05dbe2bbdb652b39c2e477d02d",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "GTCUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.1,
"stopLoss": false,
"tickSize": 0.001,
"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/afe91539-2f10-44da-8d0a-a2a481f76e6b/equity - equity series (verbatim, 673 points)
GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 130.9,
"quote_asset_bal": 9833.94030125,
"total_value_mid": 9994.68550125,
"total_value_exit_net": 9994.56494235,
"total_value": 9994.68550125,
"base_cost_quote": 167.34001095,
"unrealized_pnl_exit_net": -6.71536985
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 133.4,
"quote_asset_bal": 9832.218799725,
"total_value_mid": 9996.300799725,
"total_value_exit_net": 9996.177738225,
"total_value": 9996.300799725,
"base_cost_quote": 167.34001095,
"unrealized_pnl_exit_net": -3.38107245
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 180.4,
"quote_asset_bal": 9776.30760995,
"total_value_mid": 9991.88560995,
"total_value_exit_net": 9991.72392645,
"total_value": 9991.88560995,
"base_cost_quote": 222.9494868,
"unrealized_pnl_exit_net": -7.5331703
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 133.7,
"quote_asset_bal": 9834.3854841,
"total_value_mid": 9999.1038841,
"total_value_exit_net": 9998.9803453,
"total_value": 9999.1038841,
"base_cost_quote": 157.225931075,
"unrealized_pnl_exit_net": 7.368930125
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 212.9,
"quote_asset_bal": 9738.566325625,
"total_value_mid": 9992.130225625,
"total_value_exit_net": 9991.9400527,
"total_value": 9992.130225625,
"base_cost_quote": 253.42292475,
"unrealized_pnl_exit_net": -0.049197675
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 235.5,
"quote_asset_bal": 9712.46763215,
"total_value_mid": 9991.06413215,
"total_value_exit_net": 9990.855184775,
"total_value": 9991.06413215,
"base_cost_quote": 273.623764025,
"unrealized_pnl_exit_net": 4.7637886
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 358.2,
"quote_asset_bal": 9572.627474,
"total_value_mid": 9970.229474,
"total_value_exit_net": 9969.9312725,
"total_value": 9970.229474,
"base_cost_quote": 410.296191525,
"unrealized_pnl_exit_net": -12.992393025
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 372.1,
"quote_asset_bal": 9558.7064514,
"total_value_mid": 9968.3885514,
"total_value_exit_net": 9968.081289825,
"total_value": 9968.3885514,
"base_cost_quote": 425.564033825,
"unrealized_pnl_exit_net": -16.1891954
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 318,
"quote_asset_bal": 9620.052831775,
"total_value_mid": 9983.844831775,
"total_value_exit_net": 9983.571987775,
"total_value": 9983.844831775,
"base_cost_quote": 364.88365765,
"unrealized_pnl_exit_net": -1.36450165
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 263.9,
"quote_asset_bal": 9683.37229765,
"total_value_mid": 9992.39919765,
"total_value_exit_net": 9992.167427475,
"total_value": 9992.39919765,
"base_cost_quote": 299.028203075,
"unrealized_pnl_exit_net": 9.76692675
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 271.6,
"quote_asset_bal": 9674.79933215,
"total_value_mid": 9992.02813215,
"total_value_exit_net": 9991.79021055,
"total_value": 9992.02813215,
"base_cost_quote": 298.993777275,
"unrealized_pnl_exit_net": 17.997101125
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 250.1,
"quote_asset_bal": 9700.763743675,
"total_value_mid": 9998.132643675,
"total_value_exit_net": 9997.909617,
"total_value": 9998.132643675,
"base_cost_quote": 268.603601725,
"unrealized_pnl_exit_net": 28.5422716
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 229.1,
"quote_asset_bal": 9727.615945525,
"total_value_mid": 9998.641245525,
"total_value_exit_net": 9998.43797655,
"total_value": 9998.641245525,
"base_cost_quote": 238.213226025,
"unrealized_pnl_exit_net": 32.608805
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 168.1,
"quote_asset_bal": 9811.7335752,
"total_value_mid": 10008.7467752001,
"total_value_exit_net": 10008.5990153001,
"total_value": 10008.7467752001,
"base_cost_quote": 146.8920865,
"unrealized_pnl_exit_net": 49.9733536
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 140.6,
"quote_asset_bal": 9846.42903325,
"total_value_mid": 10014.02423325,
"total_value_exit_net": 10013.89853685,
"total_value": 10014.02423325,
"base_cost_quote": 106.449677425,
"unrealized_pnl_exit_net": 61.019826175
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 126.9,
"quote_asset_bal": 9861.7029131,
"total_value_mid": 10024.3887131,
"total_value_exit_net": 10024.26669875,
"total_value": 10024.3887131,
"base_cost_quote": 91.114184425,
"unrealized_pnl_exit_net": 71.449601225
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 191.8,
"quote_asset_bal": 9781.542657025,
"total_value_mid": 10016.3058570251,
"total_value_exit_net": 10016.1297846251,
"total_value": 10016.3058570251,
"base_cost_quote": 172.34416125,
"unrealized_pnl_exit_net": 62.24296635
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 204,
"quote_asset_bal": 9766.975244775,
"total_value_mid": 10016.8752447751,
"total_value_exit_net": 10016.6878197751,
"total_value": 10016.8752447751,
"base_cost_quote": 187.46589405,
"unrealized_pnl_exit_net": 62.24668095
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 216.7,
"quote_asset_bal": 9751.9336629,
"total_value_mid": 10013.4905629001,
"total_value_exit_net": 10013.2943952251,
"total_value": 10013.4905629001,
"base_cost_quote": 202.851524625,
"unrealized_pnl_exit_net": 58.5092077
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 284.8,
"quote_asset_bal": 9671.842669475,
"total_value_mid": 10004.4890694751,
"total_value_exit_net": 10004.2395846751,
"total_value": 10004.4890694751,
"base_cost_quote": 273.601047,
"unrealized_pnl_exit_net": 58.7958682
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 366.1,
"quote_asset_bal": 9580.377319575,
"total_value_mid": 9985.6500195751,
"total_value_exit_net": 9985.3460650501,
"total_value": 9985.6500195751,
"base_cost_quote": 364.742651975,
"unrealized_pnl_exit_net": 40.2260935
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 257.4,
"quote_asset_bal": 9705.8922013,
"total_value_mid": 10012.1982013001,
"total_value_exit_net": 10011.9684718001,
"total_value": 10012.1982013001,
"base_cost_quote": 233.267119225,
"unrealized_pnl_exit_net": 72.809151275
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 293.5,
"quote_asset_bal": 9663.80581565,
"total_value_mid": 10005.4398156501,
"total_value_exit_net": 10005.1835901501,
"total_value": 10005.4398156501,
"base_cost_quote": 273.691614875,
"unrealized_pnl_exit_net": 67.686159625
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 223.5,
"quote_asset_bal": 9748.117361975,
"total_value_mid": 10020.1168619751,
"total_value_exit_net": 10019.9128623501,
"total_value": 10020.1168619751,
"base_cost_quote": 187.72488815,
"unrealized_pnl_exit_net": 84.070612225
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 227.7,
"quote_asset_bal": 9743.564391425,
"total_value_mid": 10020.6752914251,
"total_value_exit_net": 10020.4674582501,
"total_value": 10020.6752914251,
"base_cost_quote": 192.7492536,
"unrealized_pnl_exit_net": 84.153813225
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 310.5,
"quote_asset_bal": 9646.2200286,
"total_value_mid": 9999.5690286001,
"total_value_exit_net": 9999.3040168501,
"total_value": 9999.5690286001,
"base_cost_quote": 288.790130275,
"unrealized_pnl_exit_net": 64.293857975
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 153.3,
"quote_asset_bal": 9837.3011957,
"total_value_mid": 10033.3718957001,
"total_value_exit_net": 10033.2248426751,
"total_value": 10033.3718957001,
"base_cost_quote": 96.504424075,
"unrealized_pnl_exit_net": 99.4192229
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 151.1,
"quote_asset_bal": 9839.1821953751,
"total_value_mid": 10040.2962953751,
"total_value_exit_net": 10040.1454598001,
"total_value": 10040.2962953751,
"base_cost_quote": 96.5999957,
"unrealized_pnl_exit_net": 104.363268725
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 217.2,
"quote_asset_bal": 9754.34423545,
"total_value_mid": 10032.7946354501,
"total_value_exit_net": 10032.5857976501,
"total_value": 10032.7946354501,
"base_cost_quote": 182.558716425,
"unrealized_pnl_exit_net": 95.682845775
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 217,
"quote_asset_bal": 9755.7776395251,
"total_value_mid": 10033.3206395251,
"total_value_exit_net": 10033.1124822751,
"total_value": 10033.3206395251,
"base_cost_quote": 182.81841105,
"unrealized_pnl_exit_net": 94.5164317
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 150.4,
"quote_asset_bal": 9843.4257514501,
"total_value_mid": 10043.7585514501,
"total_value_exit_net": 10043.6083018501,
"total_value": 10043.7585514501,
"base_cost_quote": 96.573275675,
"unrealized_pnl_exit_net": 103.609274725
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 131.3,
"quote_asset_bal": 9869.4286488501,
"total_value_mid": 10045.8958488501,
"total_value_exit_net": 10045.7634984501,
"total_value": 10045.8958488501,
"base_cost_quote": 71.008116175,
"unrealized_pnl_exit_net": 105.326733425
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 154.1,
"quote_asset_bal": 9839.5941654001,
"total_value_mid": 10042.8520654001,
"total_value_exit_net": 10042.6996219751,
"total_value": 10042.8520654001,
"base_cost_quote": 101.449930425,
"unrealized_pnl_exit_net": 101.65552615
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 180.5,
"quote_asset_bal": 9804.9268417251,
"total_value_mid": 10043.7283417251,
"total_value_exit_net": 10043.5492406001,
"total_value": 10043.7283417251,
"base_cost_quote": 136.93402355,
"unrealized_pnl_exit_net": 101.688375325
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 129.4,
"quote_asset_bal": 9877.4319916001,
"total_value_mid": 10045.0049916001,
"total_value_exit_net": 10044.8793118501,
"total_value": 10045.0049916001,
"base_cost_quote": 66.044196025,
"unrealized_pnl_exit_net": 101.403124225
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 164.4,
"quote_asset_bal": 9833.2177888001,
"total_value_mid": 10043.8141888001,
"total_value_exit_net": 10043.6562415001,
"total_value": 10043.8141888001,
"base_cost_quote": 111.432811975,
"unrealized_pnl_exit_net": 99.005640725
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 150.3,
"quote_asset_bal": 9849.6714384251,
"total_value_mid": 10054.0794384251,
"total_value_exit_net": 10053.9261324251,
"total_value": 10054.0794384251,
"base_cost_quote": 96.41725875,
"unrealized_pnl_exit_net": 107.83743525
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 124.2,
"quote_asset_bal": 9886.9595466501,
"total_value_mid": 10059.9701466502,
"total_value_exit_net": 10059.8403887002,
"total_value": 10059.9701466502,
"base_cost_quote": 60.788657325,
"unrealized_pnl_exit_net": 112.092184725
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 142.8,
"quote_asset_bal": 9854.0436127752,
"total_value_mid": 10100.5164127752,
"total_value_exit_net": 10100.3315581752,
"total_value": 10100.5164127752,
"base_cost_quote": 96.31278045,
"unrealized_pnl_exit_net": 149.97516495
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 170.3,
"quote_asset_bal": 9811.9765772252,
"total_value_mid": 10094.8448772252,
"total_value_exit_net": 10094.6327260002,
"total_value": 10094.8448772252,
"base_cost_quote": 142.13191905,
"unrealized_pnl_exit_net": 140.524229725
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 158.1,
"quote_asset_bal": 9835.2983257002,
"total_value_mid": 10099.4834257002,
"total_value_exit_net": 10099.2852868752,
"total_value": 10099.4834257002,
"base_cost_quote": 121.881242425,
"unrealized_pnl_exit_net": 142.10571875
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 202.9,
"quote_asset_bal": 9757.5204489752,
"total_value_mid": 10106.9142489752,
"total_value_exit_net": 10106.6522036252,
"total_value": 10106.9142489752,
"base_cost_quote": 203.191779625,
"unrealized_pnl_exit_net": 145.939975025
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 176.8,
"quote_asset_bal": 9805.1080696252,
"total_value_mid": 10111.8560696252,
"total_value_exit_net": 10111.6260086252,
"total_value": 10111.8560696252,
"base_cost_quote": 157.469113325,
"unrealized_pnl_exit_net": 149.048825675
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 276.2,
"quote_asset_bal": 9637.8532545752,
"total_value_mid": 10090.2688545752,
"total_value_exit_net": 10089.9295428752,
"total_value": 10090.2688545752,
"base_cost_quote": 325.47572385,
"unrealized_pnl_exit_net": 126.60056445
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 389,
"quote_asset_bal": 9461.1492995252,
"total_value_mid": 10025.9772995252,
"total_value_exit_net": 10025.5536785252,
"total_value": 10025.9772995252,
"base_cost_quote": 503.2099246,
"unrealized_pnl_exit_net": 61.1944544
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 510.4,
"quote_asset_bal": 9289.4170003502,
"total_value_mid": 9987.1338003502,
"total_value_exit_net": 9986.6105127502,
"total_value": 9987.1338003502,
"base_cost_quote": 675.769347175,
"unrealized_pnl_exit_net": 21.424165225
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 528.9,
"quote_asset_bal": 9264.8196771502,
"total_value_mid": 9983.0658771502,
"total_value_exit_net": 9982.5271925002,
"total_value": 9983.0658771502,
"base_cost_quote": 701.000056025,
"unrealized_pnl_exit_net": 16.707459325
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 563.2,
"quote_asset_bal": 9220.2779748002,
"total_value_mid": 9960.3227748002,
"total_value_exit_net": 9959.7677412002,
"total_value": 9960.3227748002,
"base_cost_quote": 746.564403675,
"unrealized_pnl_exit_net": -7.074637275
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 638,
"quote_asset_bal": 9125.4055271002,
"total_value_mid": 9919.0775271002,
"total_value_exit_net": 9918.4822731002,
"total_value": 9919.0775271002,
"base_cost_quote": 842.821542425,
"unrealized_pnl_exit_net": -49.744796425
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 593.9,
"quote_asset_bal": 9182.4205643502,
"total_value_mid": 9948.5515643502,
"total_value_exit_net": 9947.9769661002,
"total_value": 9948.5515643502,
"base_cost_quote": 786.944666175,
"unrealized_pnl_exit_net": -21.388264425
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 666.2,
"quote_asset_bal": 9092.0902090502,
"total_value_mid": 9918.8444090502,
"total_value_exit_net": 9918.2243434002,
"total_value": 9918.8444090502,
"base_cost_quote": 878.234682375,
"unrealized_pnl_exit_net": -52.100548025
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 762.4,
"quote_asset_bal": 8977.8068267752,
"total_value_mid": 9866.0028267752,
"total_value_exit_net": 9865.3366797752,
"total_value": 9866.0028267752,
"base_cost_quote": 989.4879598,
"unrealized_pnl_exit_net": -101.9581068
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 772.3,
"quote_asset_bal": 8966.6161438002,
"total_value_mid": 9853.9888438002,
"total_value_exit_net": 9853.3233142752,
"total_value": 9853.9888438002,
"base_cost_quote": 994.6138013,
"unrealized_pnl_exit_net": -107.906630825
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 771.8,
"quote_asset_bal": 8967.7487984752,
"total_value_mid": 9866.8957984752,
"total_value_exit_net": 9866.2214382252,
"total_value": 9866.8957984752,
"base_cost_quote": 989.577727075,
"unrealized_pnl_exit_net": -91.105087325
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 913.8,
"quote_asset_bal": 8811.8390977752,
"total_value_mid": 9779.5532977752,
"total_value_exit_net": 9778.8275121252,
"total_value": 9779.5532977752,
"base_cost_quote": 1146.140060825,
"unrealized_pnl_exit_net": -179.151646475
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 1086.4,
"quote_asset_bal": 8643.6685092252,
"total_value_mid": 9689.8717092252,
"total_value_exit_net": 9689.0870568252,
"total_value": 9689.8717092252,
"base_cost_quote": 1317.688025375,
"unrealized_pnl_exit_net": -272.269477775
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 977.6,
"quote_asset_bal": 8751.6969289753,
"total_value_mid": 9724.4089289753,
"total_value_exit_net": 9723.6793949753,
"total_value": 9724.4089289753,
"base_cost_quote": 1211.8169816,
"unrealized_pnl_exit_net": -239.8345156
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 923.5,
"quote_asset_bal": 8813.8758169503,
"total_value_mid": 9731.8348169503,
"total_value_exit_net": 9731.1463477003,
"total_value": 9731.8348169503,
"base_cost_quote": 1151.303730675,
"unrealized_pnl_exit_net": -234.033199925
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 954,
"quote_asset_bal": 8785.7011642003,
"total_value_mid": 9730.1611642003,
"total_value_exit_net": 9729.4528192003,
"total_value": 9730.1611642003,
"base_cost_quote": 1181.657879225,
"unrealized_pnl_exit_net": -237.906224225
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 933.7,
"quote_asset_bal": 8806.8670232253,
"total_value_mid": 9734.0311232253,
"total_value_exit_net": 9733.3357501503,
"total_value": 9734.0311232253,
"base_cost_quote": 1161.450435,
"unrealized_pnl_exit_net": -234.981708075
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 1095.4,
"quote_asset_bal": 8651.3367473503,
"total_value_mid": 9693.0621473503,
"total_value_exit_net": 9692.2808533003,
"total_value": 9693.0621473503,
"base_cost_quote": 1317.8012102,
"unrealized_pnl_exit_net": -276.85710425
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 1022.7,
"quote_asset_bal": 8724.6858907253,
"total_value_mid": 9719.7729907253,
"total_value_exit_net": 9719.0266754003,
"total_value": 9719.7729907253,
"base_cost_quote": 1247.26895065,
"unrealized_pnl_exit_net": -252.928165975
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 960.7,
"quote_asset_bal": 8786.6116113503,
"total_value_mid": 9739.6260113503,
"total_value_exit_net": 9738.9112505503,
"total_value": 9739.6260113503,
"base_cost_quote": 1186.71957265,
"unrealized_pnl_exit_net": -234.41993345
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 981.9,
"quote_asset_bal": 8768.2367375253,
"total_value_mid": 9731.4806375253,
"total_value_exit_net": 9730.7582046003,
"total_value": 9731.4806375253,
"base_cost_quote": 1206.68173305,
"unrealized_pnl_exit_net": -244.160265975
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 905,
"quote_asset_bal": 8845.1959160253,
"total_value_mid": 9758.3409160253,
"total_value_exit_net": 9757.6560572753,
"total_value": 9758.3409160253,
"base_cost_quote": 1131.03584115,
"unrealized_pnl_exit_net": -218.5756999
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 1027.6,
"quote_asset_bal": 8724.2977774503,
"total_value_mid": 9725.1801774503,
"total_value_exit_net": 9724.4295156503,
"total_value": 9725.1801774503,
"base_cost_quote": 1252.501171875,
"unrealized_pnl_exit_net": -252.369433675
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 1110.9,
"quote_asset_bal": 8644.0295457003,
"total_value_mid": 9708.2717457003,
"total_value_exit_net": 9707.4735640503,
"total_value": 9708.2717457003,
"base_cost_quote": 1333.272504975,
"unrealized_pnl_exit_net": -269.828486625
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 904.7,
"quote_asset_bal": 8847.5804986503,
"total_value_mid": 9771.2791986503,
"total_value_exit_net": 9770.5864246253,
"total_value": 9771.2791986503,
"base_cost_quote": 1130.9607849,
"unrealized_pnl_exit_net": -207.954858925
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 968.7,
"quote_asset_bal": 8782.3220224003,
"total_value_mid": 9749.0846224003,
"total_value_exit_net": 9748.3595504503,
"total_value": 9749.0846224003,
"base_cost_quote": 1196.68984475,
"unrealized_pnl_exit_net": -230.6523167
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 1060.9,
"quote_asset_bal": 8692.6634796753,
"total_value_mid": 9721.7364796754,
"total_value_exit_net": 9720.9646749254,
"total_value": 9721.7364796754,
"base_cost_quote": 1287.62239305,
"unrealized_pnl_exit_net": -259.3211978
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 1303.1,
"quote_asset_bal": 8466.9561696004,
"total_value_mid": 9651.4740696004,
"total_value_exit_net": 9650.5856811754,
"total_value": 9651.4740696004,
"base_cost_quote": 1514.70657855,
"unrealized_pnl_exit_net": -331.077066975
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 1696.7,
"quote_asset_bal": 8130.5039579504,
"total_value_mid": 9503.1342579504,
"total_value_exit_net": 9502.1047852254,
"total_value": 9503.1342579504,
"base_cost_quote": 1852.779042875,
"unrealized_pnl_exit_net": -481.1782156
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 1913.7,
"quote_asset_bal": 7972.1356210003,
"total_value_mid": 9420.8065210004,
"total_value_exit_net": 9419.7200178254,
"total_value": 9420.8065210004,
"base_cost_quote": 2014.12686305,
"unrealized_pnl_exit_net": -566.542466225
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 1778,
"quote_asset_bal": 8079.8232747753,
"total_value_mid": 9527.1152747753,
"total_value_exit_net": 9526.0298057753,
"total_value": 9527.1152747753,
"base_cost_quote": 1908.2777357,
"unrealized_pnl_exit_net": -462.0712047
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 1962.4,
"quote_asset_bal": 7935.5374713503,
"total_value_mid": 9444.6230713503,
"total_value_exit_net": 9443.4912571503,
"total_value": 9444.6230713503,
"base_cost_quote": 2054.47109855,
"unrealized_pnl_exit_net": -546.51731275
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 1814.4,
"quote_asset_bal": 8054.4126608003,
"total_value_mid": 9509.5614608003,
"total_value_exit_net": 9508.4700992003,
"total_value": 9509.5614608003,
"base_cost_quote": 1938.587751175,
"unrealized_pnl_exit_net": -484.530312775
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 1770.7,
"quote_asset_bal": 8091.2954326253,
"total_value_mid": 9539.7280326253,
"total_value_exit_net": 9538.6417081753,
"total_value": 9539.7280326253,
"base_cost_quote": 1903.3296274,
"unrealized_pnl_exit_net": -455.98335185
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 1770.4,
"quote_asset_bal": 8092.5002843753,
"total_value_mid": 9531.8354843753,
"total_value_exit_net": 9530.7559829753,
"total_value": 9531.8354843753,
"base_cost_quote": 1903.26658015,
"unrealized_pnl_exit_net": -465.01088155
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 1813.7,
"quote_asset_bal": 8058.6311563753,
"total_value_mid": 9515.0322563753,
"total_value_exit_net": 9513.9399555503,
"total_value": 9515.0322563753,
"base_cost_quote": 1938.633785675,
"unrealized_pnl_exit_net": -483.3249865
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 1800.8,
"quote_asset_bal": 8070.2741554753,
"total_value_mid": 9528.9221554753,
"total_value_exit_net": 9527.8281694753,
"total_value": 9528.9221554753,
"base_cost_quote": 1928.4628632,
"unrealized_pnl_exit_net": -470.9088492
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 1745.1,
"quote_asset_bal": 8116.3863197253,
"total_value_mid": 9554.3487197253,
"total_value_exit_net": 9553.2702479253,
"total_value": 9554.3487197253,
"base_cost_quote": 1883.0956633,
"unrealized_pnl_exit_net": -446.2117351
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 1625.3,
"quote_asset_bal": 8218.2602315003,
"total_value_mid": 9622.5194315003,
"total_value_exit_net": 9621.4662371003,
"total_value": 9622.5194315003,
"base_cost_quote": 1782.1880393,
"unrealized_pnl_exit_net": -378.9820337
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 1486.4,
"quote_asset_bal": 8340.9842073003,
"total_value_mid": 9668.3394073003,
"total_value_exit_net": 9667.3438909003,
"total_value": 9668.3394073003,
"base_cost_quote": 1661.0180299,
"unrealized_pnl_exit_net": -334.6583463
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 1308.5,
"quote_asset_bal": 8510.2927727503,
"total_value_mid": 9673.5492727503,
"total_value_exit_net": 9672.6768303753,
"total_value": 9673.5492727503,
"base_cost_quote": 1494.6449436,
"unrealized_pnl_exit_net": -332.260885975
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 1477.7,
"quote_asset_bal": 8360.8276381003,
"total_value_mid": 9644.9489381003,
"total_value_exit_net": 9643.9858471253,
"total_value": 9644.9489381003,
"base_cost_quote": 1646.011483425,
"unrealized_pnl_exit_net": -362.8532744
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 1478.6,
"quote_asset_bal": 8362.6815557253,
"total_value_mid": 9632.7989557253,
"total_value_exit_net": 9631.8463676753,
"total_value": 9632.7989557253,
"base_cost_quote": 1645.908005875,
"unrealized_pnl_exit_net": -376.743193925
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 1430.8,
"quote_asset_bal": 8404.6938549503,
"total_value_mid": 9659.5054549503,
"total_value_exit_net": 9658.5643462503,
"total_value": 9659.5054549503,
"base_cost_quote": 1605.49902185,
"unrealized_pnl_exit_net": -351.62853055
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 1322.4,
"quote_asset_bal": 8502.7238276004,
"total_value_mid": 9714.0422276004,
"total_value_exit_net": 9713.1337388004,
"total_value": 9714.0422276004,
"base_cost_quote": 1509.596048525,
"unrealized_pnl_exit_net": -299.186137325
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 1327.3,
"quote_asset_bal": 8500.1910541503,
"total_value_mid": 9727.9435541503,
"total_value_exit_net": 9727.0227397753,
"total_value": 9727.9435541503,
"base_cost_quote": 1514.6463334,
"unrealized_pnl_exit_net": -287.814647775
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 1610.6,
"quote_asset_bal": 8249.1532809003,
"total_value_mid": 9631.0480809003,
"total_value_exit_net": 9630.0116598003,
"total_value": 9631.0480809003,
"base_cost_quote": 1767.1835944,
"unrealized_pnl_exit_net": -386.3252155
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 1500,
"quote_asset_bal": 8347.5874658753,
"total_value_mid": 9676.5874658754,
"total_value_exit_net": 9675.5907158754,
"total_value": 9676.5874658754,
"base_cost_quote": 1671.28792655,
"unrealized_pnl_exit_net": -343.28467655
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 1300.8,
"quote_asset_bal": 8533.4292720003,
"total_value_mid": 9730.1652720003,
"total_value_exit_net": 9729.2677200003,
"total_value": 9730.1652720003,
"base_cost_quote": 1489.193558125,
"unrealized_pnl_exit_net": -293.355110125
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 1183,
"quote_asset_bal": 8648.5589328504,
"total_value_mid": 9781.8729328504,
"total_value_exit_net": 9781.0229473504,
"total_value": 9781.8729328504,
"base_cost_quote": 1378.163548025,
"unrealized_pnl_exit_net": -245.699533525
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 1167.1,
"quote_asset_bal": 8665.6285613754,
"total_value_mid": 9802.3839613754,
"total_value_exit_net": 9801.5313948254,
"total_value": 9802.3839613754,
"base_cost_quote": 1363.313218625,
"unrealized_pnl_exit_net": -227.410385175
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 1162.8,
"quote_asset_bal": 8672.9476908504,
"total_value_mid": 9798.5380908504,
"total_value_exit_net": 9797.6938980504,
"total_value": 9798.5380908504,
"base_cost_quote": 1357.96591115,
"unrealized_pnl_exit_net": -233.21970395
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 1415.1,
"quote_asset_bal": 8442.3470350004,
"total_value_mid": 9669.2387350004,
"total_value_exit_net": 9668.3185662254,
"total_value": 9669.2387350004,
"base_cost_quote": 1590.50738655,
"unrealized_pnl_exit_net": -364.535855325
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 1449.1,
"quote_asset_bal": 8415.0257885254,
"total_value_mid": 9672.8445885254,
"total_value_exit_net": 9671.9012244254,
"total_value": 9672.8445885254,
"base_cost_quote": 1620.776771575,
"unrealized_pnl_exit_net": -363.901335675
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 1570.2,
"quote_asset_bal": 8317.1755946754,
"total_value_mid": 9626.7223946754,
"total_value_exit_net": 9625.7402345754,
"total_value": 9626.7223946754,
"base_cost_quote": 1721.4357092,
"unrealized_pnl_exit_net": -412.8710693
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 1687.1,
"quote_asset_bal": 8223.0295030004,
"total_value_mid": 9579.4579030004,
"total_value_exit_net": 9578.4405817004,
"total_value": 9579.4579030004,
"base_cost_quote": 1817.4444618,
"unrealized_pnl_exit_net": -462.0333831
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 1806.5,
"quote_asset_bal": 8129.2531672503,
"total_value_mid": 9523.8711672503,
"total_value_exit_net": 9522.8252037503,
"total_value": 9523.8711672503,
"base_cost_quote": 1913.201926075,
"unrealized_pnl_exit_net": -519.629889575
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 2058.4,
"quote_asset_bal": 7944.5566517003,
"total_value_mid": 9393.6702517003,
"total_value_exit_net": 9392.5834165003,
"total_value": 9393.6702517003,
"base_cost_quote": 2099.772349025,
"unrealized_pnl_exit_net": -651.745584225
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 2102.3,
"quote_asset_bal": 7915.9933607003,
"total_value_mid": 9349.7619607003,
"total_value_exit_net": 9348.6866342503,
"total_value": 9349.7619607003,
"base_cost_quote": 2129.885917275,
"unrealized_pnl_exit_net": -697.192643725
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 2361.9,
"quote_asset_bal": 7746.6133759004,
"total_value_mid": 9253.5055759004,
"total_value_exit_net": 9252.3754067504,
"total_value": 9253.5055759004,
"base_cost_quote": 2301.195303025,
"unrealized_pnl_exit_net": -795.433272175
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 2342.2,
"quote_asset_bal": 7770.8773392004,
"total_value_mid": 9194.9349392004,
"total_value_exit_net": 9193.8668960004,
"total_value": 9194.9349392004,
"base_cost_quote": 2276.045654925,
"unrealized_pnl_exit_net": -853.056098125
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 2343,
"quote_asset_bal": 7771.5694229504,
"total_value_mid": 9261.7174229504,
"total_value_exit_net": 9260.5998119504,
"total_value": 9261.7174229504,
"base_cost_quote": 2276.049457775,
"unrealized_pnl_exit_net": -787.019068775
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 2513,
"quote_asset_bal": 7668.2502933504,
"total_value_mid": 9186.1022933503,
"total_value_exit_net": 9184.9639043503,
"total_value": 9186.1022933503,
"base_cost_quote": 2381.68392425,
"unrealized_pnl_exit_net": -864.97031325
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 2261.2,
"quote_asset_bal": 7831.5429093504,
"total_value_mid": 9362.3753093504,
"total_value_exit_net": 9361.2271850504,
"total_value": 9362.3753093504,
"base_cost_quote": 2220.557870275,
"unrealized_pnl_exit_net": -690.873594575
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 2476,
"quote_asset_bal": 7692.4039966004,
"total_value_mid": 9279.5199966004,
"total_value_exit_net": 9278.3296596004,
"total_value": 9279.5199966004,
"base_cost_quote": 2361.63049545,
"unrealized_pnl_exit_net": -775.70483245
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 2329.1,
"quote_asset_bal": 7790.0331117754,
"total_value_mid": 9338.8846117754,
"total_value_exit_net": 9337.7229731504,
"total_value": 9338.8846117754,
"base_cost_quote": 2265.927672125,
"unrealized_pnl_exit_net": -718.23781075
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 2580.7,
"quote_asset_bal": 7630.1020577254,
"total_value_mid": 9217.2325577254,
"total_value_exit_net": 9216.0422098504,
"total_value": 9217.2325577254,
"base_cost_quote": 2427.00388875,
"unrealized_pnl_exit_net": -841.063736625
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 2308.6,
"quote_asset_bal": 7806.6765445754,
"total_value_mid": 9318.8095445754,
"total_value_exit_net": 9317.6754448254,
"total_value": 9318.8095445754,
"base_cost_quote": 2250.79262935,
"unrealized_pnl_exit_net": -739.7937291
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 2307.8,
"quote_asset_bal": 7808.5618637504,
"total_value_mid": 9340.9410637504,
"total_value_exit_net": 9339.7917793504,
"total_value": 9340.9410637504,
"base_cost_quote": 2250.740089975,
"unrealized_pnl_exit_net": -719.510174375
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 2379.4,
"quote_asset_bal": 7765.0757973754,
"total_value_mid": 9283.1329973754,
"total_value_exit_net": 9281.9944544754,
"total_value": 9283.1329973754,
"base_cost_quote": 2296.17023705,
"unrealized_pnl_exit_net": -779.25157995
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 2541.4,
"quote_asset_bal": 7665.8491706504,
"total_value_mid": 9193.2305706504,
"total_value_exit_net": 9192.0850346004,
"total_value": 9193.2305706504,
"base_cost_quote": 2396.868304,
"unrealized_pnl_exit_net": -870.63244005
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 2638.9,
"quote_asset_bal": 7609.6895659254,
"total_value_mid": 9158.7238659254,
"total_value_exit_net": 9157.5620902004,
"total_value": 9158.7238659254,
"base_cost_quote": 2452.260717175,
"unrealized_pnl_exit_net": -904.3881929
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 2529.6,
"quote_asset_bal": 7675.2983667754,
"total_value_mid": 9220.8839667754,
"total_value_exit_net": 9219.7247775754,
"total_value": 9220.8839667754,
"base_cost_quote": 2386.75372375,
"unrealized_pnl_exit_net": -842.32731295
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 2532.3,
"quote_asset_bal": 7674.6740515004,
"total_value_mid": 9239.6354515004,
"total_value_exit_net": 9238.4617304504,
"total_value": 9239.6354515004,
"base_cost_quote": 2386.714194125,
"unrealized_pnl_exit_net": -822.926515175
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 2423.6,
"quote_asset_bal": 7745.8422009004,
"total_value_mid": 9287.2518009004,
"total_value_exit_net": 9286.0957437004,
"total_value": 9287.2518009004,
"base_cost_quote": 2316.230971325,
"unrealized_pnl_exit_net": -775.977428525
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 2513.6,
"quote_asset_bal": 7690.6204582754,
"total_value_mid": 9264.1340582754,
"total_value_exit_net": 9262.9539230754,
"total_value": 9264.1340582754,
"base_cost_quote": 2371.5969647,
"unrealized_pnl_exit_net": -799.2634999
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 2360.1,
"quote_asset_bal": 7790.3869739504,
"total_value_mid": 9322.0918739504,
"total_value_exit_net": 9320.9430952754,
"total_value": 9322.0918739504,
"base_cost_quote": 2270.98175985,
"unrealized_pnl_exit_net": -740.425638525
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 2194.2,
"quote_asset_bal": 7903.7500417004,
"total_value_mid": 9402.3886417004,
"total_value_exit_net": 9401.2646627504,
"total_value": 9402.3886417004,
"base_cost_quote": 2160.10706615,
"unrealized_pnl_exit_net": -662.5924451
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 1988.8,
"quote_asset_bal": 8051.3334479254,
"total_value_mid": 9521.0566479254,
"total_value_exit_net": 9519.9543555254,
"total_value": 9521.0566479254,
"base_cost_quote": 2014.032492325,
"unrealized_pnl_exit_net": -545.411584725
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 2036.2,
"quote_asset_bal": 8017.1108638754,
"total_value_mid": 9517.7902638754,
"total_value_exit_net": 9516.6647543254,
"total_value": 9517.7902638754,
"base_cost_quote": 2049.302725175,
"unrealized_pnl_exit_net": -549.748834725
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 2169.2,
"quote_asset_bal": 7922.3459224254,
"total_value_mid": 9445.1243224254,
"total_value_exit_net": 9443.9822386254,
"total_value": 9445.1243224254,
"base_cost_quote": 2145.065893725,
"unrealized_pnl_exit_net": -623.429577525
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 2415,
"quote_asset_bal": 7758.3383381504,
"total_value_mid": 9332.9183381504,
"total_value_exit_net": 9331.7374031504,
"total_value": 9332.9183381504,
"base_cost_quote": 2311.09542255,
"unrealized_pnl_exit_net": -737.69635755
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 2680.5,
"quote_asset_bal": 7594.4783335254,
"total_value_mid": 9210.8198335254,
"total_value_exit_net": 9209.6075774004,
"total_value": 9210.8198335254,
"base_cost_quote": 2477.30638735,
"unrealized_pnl_exit_net": -862.177143475
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 2756.4,
"quote_asset_bal": 7549.8837522004,
"total_value_mid": 9178.9161522004,
"total_value_exit_net": 9177.6943779004,
"total_value": 9178.9161522004,
"base_cost_quote": 2522.68199355,
"unrealized_pnl_exit_net": -894.87136785
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 2673.7,
"quote_asset_bal": 7601.0620742754,
"total_value_mid": 9207.9557742754,
"total_value_exit_net": 9206.7506040004,
"total_value": 9207.9557742754,
"base_cost_quote": 2472.3636831,
"unrealized_pnl_exit_net": -866.675153375
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 2602.2,
"quote_asset_bal": 7646.8365337254,
"total_value_mid": 9223.7697337254,
"total_value_exit_net": 9222.5870338254,
"total_value": 9223.7697337254,
"base_cost_quote": 2427.045019575,
"unrealized_pnl_exit_net": -851.294519475
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 2694.7,
"quote_asset_bal": 7592.0134684254,
"total_value_mid": 9189.9705684254,
"total_value_exit_net": 9188.7721006004,
"total_value": 9189.9705684254,
"base_cost_quote": 2482.431128025,
"unrealized_pnl_exit_net": -885.67249585
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 2791,
"quote_asset_bal": 7536.8265357754,
"total_value_mid": 9119.3235357754,
"total_value_exit_net": 9118.1366630254,
"total_value": 9119.3235357754,
"base_cost_quote": 2537.83494975,
"unrealized_pnl_exit_net": -956.5248225
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 2707.6,
"quote_asset_bal": 7587.4156113504,
"total_value_mid": 9214.6832113504,
"total_value_exit_net": 9213.4627606504,
"total_value": 9214.6832113504,
"base_cost_quote": 2487.368428225,
"unrealized_pnl_exit_net": -861.321278925
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 2990.9,
"quote_asset_bal": 7426.3962947504,
"total_value_mid": 9068.4003947504,
"total_value_exit_net": 9067.1688916754,
"total_value": 9068.4003947504,
"base_cost_quote": 2648.428933075,
"unrealized_pnl_exit_net": -1007.65633615
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 2686.6,
"quote_asset_bal": 7602.6573561004,
"total_value_mid": 9201.1843561004,
"total_value_exit_net": 9199.9854608504,
"total_value": 9201.1843561004,
"base_cost_quote": 2472.370988575,
"unrealized_pnl_exit_net": -875.042883825
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 2768.6,
"quote_asset_bal": 7555.5682701004,
"total_value_mid": 9172.4306701004,
"total_value_exit_net": 9171.2180233004,
"total_value": 9172.4306701004,
"base_cost_quote": 2517.61099315,
"unrealized_pnl_exit_net": -901.96123995
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 2904.6999999999,
"quote_asset_bal": 7479.4985780504,
"total_value_mid": 9120.6540780504,
"total_value_exit_net": 9119.4232114254,
"total_value": 9120.6540780504,
"base_cost_quote": 2593.15560915,
"unrealized_pnl_exit_net": -953.230975775
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 2869.2999999999,
"quote_asset_bal": 7500.6926996754,
"total_value_mid": 9121.8471996754,
"total_value_exit_net": 9120.6313338004,
"total_value": 9121.8471996754,
"base_cost_quote": 2573.007209175,
"unrealized_pnl_exit_net": -953.06857505
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 2614.7999999999,
"quote_asset_bal": 7651.8701070004,
"total_value_mid": 9249.5129070004,
"total_value_exit_net": 9248.3146749004,
"total_value": 9249.5129070004,
"base_cost_quote": 2422.000238825,
"unrealized_pnl_exit_net": -825.555670925
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 2626.1999999999,
"quote_asset_bal": 7647.0193815004,
"total_value_mid": 9249.0013815004,
"total_value_exit_net": 9247.7998950004,
"total_value": 9249.0013815004,
"base_cost_quote": 2427.0100934,
"unrealized_pnl_exit_net": -826.2295799
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 2650.7999999999,
"quote_asset_bal": 7632.8967139754,
"total_value_mid": 9241.9323139754,
"total_value_exit_net": 9240.7255372754,
"total_value": 9241.9323139754,
"base_cost_quote": 2442.097300325,
"unrealized_pnl_exit_net": -834.268477025
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 2547.3999999999,
"quote_asset_bal": 7699.4389556254,
"total_value_mid": 9301.7535556254,
"total_value_exit_net": 9300.5518196754,
"total_value": 9301.7535556254,
"base_cost_quote": 2376.67817275,
"unrealized_pnl_exit_net": -775.5653087
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 2559.5999999999,
"quote_asset_bal": 7693.3646659755,
"total_value_mid": 9308.4722659754,
"total_value_exit_net": 9307.2609352754,
"total_value": 9308.4722659754,
"base_cost_quote": 2381.711044575,
"unrealized_pnl_exit_net": -767.814775275
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 2521.8999999999,
"quote_asset_bal": 7718.5411995754,
"total_value_mid": 9332.5571995754,
"total_value_exit_net": 9331.3466875754,
"total_value": 9332.5571995754,
"base_cost_quote": 2356.527771275,
"unrealized_pnl_exit_net": -743.722283275
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 2628.1999999999,
"quote_asset_bal": 7652.2459974254,
"total_value_mid": 9286.9863974254,
"total_value_exit_net": 9285.7603421254,
"total_value": 9286.9863974254,
"base_cost_quote": 2421.934989925,
"unrealized_pnl_exit_net": -788.420645225
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 2745.3999999999,
"quote_asset_bal": 7581.3742399754,
"total_value_mid": 9228.6142399754,
"total_value_exit_net": 9227.3788099754,
"total_value": 9228.6142399754,
"base_cost_quote": 2492.416411375,
"unrealized_pnl_exit_net": -846.411841375
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 2770.4999999999,
"quote_asset_bal": 7566.6209563254,
"total_value_mid": 9220.6094563254,
"total_value_exit_net": 9219.3689649504,
"total_value": 9220.6094563254,
"base_cost_quote": 2507.505119425,
"unrealized_pnl_exit_net": -854.7571108
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 2703.3999999999,
"quote_asset_bal": 7607.5538677004,
"total_value_mid": 9253.9244677004,
"total_value_exit_net": 9252.6896897504,
"total_value": 9253.9244677004,
"base_cost_quote": 2467.13796675,
"unrealized_pnl_exit_net": -822.0021447
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 2598.3999999999,
"quote_asset_bal": 7672.9764928004,
"total_value_mid": 9296.9764928004,
"total_value_exit_net": 9295.7584928004,
"total_value": 9296.9764928004,
"base_cost_quote": 2401.7235427,
"unrealized_pnl_exit_net": -778.9415427
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 2471.3999999999,
"quote_asset_bal": 7755.2276540504,
"total_value_mid": 9361.6376540504,
"total_value_exit_net": 9360.4328465504,
"total_value": 9361.6376540504,
"base_cost_quote": 2321.1927899,
"unrealized_pnl_exit_net": -715.9875974
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 2417.2999999999,
"quote_asset_bal": 7792.4759065505,
"total_value_mid": 9387.8939065504,
"total_value_exit_net": 9386.6973430504,
"total_value": 9387.8939065504,
"base_cost_quote": 2285.9856043,
"unrealized_pnl_exit_net": -691.7641678
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 2386.7999999999,
"quote_asset_bal": 7813.7076194755,
"total_value_mid": 9403.3164194754,
"total_value_exit_net": 9402.1242128754,
"total_value": 9403.3164194754,
"base_cost_quote": 2265.824594875,
"unrealized_pnl_exit_net": -677.408001475
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 2542.8999999999,
"quote_asset_bal": 7713.7952840255,
"total_value_mid": 9341.2512840254,
"total_value_exit_net": 9340.0306920254,
"total_value": 9341.2512840254,
"base_cost_quote": 2366.5103526,
"unrealized_pnl_exit_net": -740.2749446
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 2472.4999999999,
"quote_asset_bal": 7761.8505316005,
"total_value_mid": 9386.2830316004,
"total_value_exit_net": 9385.0647072254,
"total_value": 9386.2830316004,
"base_cost_quote": 2321.132244525,
"unrealized_pnl_exit_net": -697.9180689
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 2396.4999999999,
"quote_asset_bal": 7814.4871153005,
"total_value_mid": 9412.9526153004,
"total_value_exit_net": 9411.7537661754,
"total_value": 9412.9526153004,
"base_cost_quote": 2270.830546525,
"unrealized_pnl_exit_net": -673.56389565
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 2466.3999999999,
"quote_asset_bal": 7771.2783464005,
"total_value_mid": 9362.1063464004,
"total_value_exit_net": 9360.9132254004,
"total_value": 9362.1063464004,
"base_cost_quote": 2316.193943575,
"unrealized_pnl_exit_net": -726.559064575
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 2329.0999999999,
"quote_asset_bal": 7864.1652417755,
"total_value_mid": 9443.2950417754,
"total_value_exit_net": 9442.1106944254,
"total_value": 9443.2950417754,
"base_cost_quote": 2225.5202893,
"unrealized_pnl_exit_net": -647.57483665
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 2255.2999999999,
"quote_asset_bal": 7916.0351507005,
"total_value_mid": 9487.9792507004,
"total_value_exit_net": 9486.8002926254,
"total_value": 9487.9792507004,
"base_cost_quote": 2175.207883275,
"unrealized_pnl_exit_net": -604.44274135
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 2321.2999999999,
"quote_asset_bal": 7872.2549277755,
"total_value_mid": 9448.4176277754,
"total_value_exit_net": 9447.2355057504,
"total_value": 9448.4176277754,
"base_cost_quote": 2220.5517657,
"unrealized_pnl_exit_net": -645.571187725
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 2380.6999999999,
"quote_asset_bal": 7833.6385368756,
"total_value_mid": 9433.4689368755,
"total_value_exit_net": 9432.2690640755,
"total_value": 9433.4689368755,
"base_cost_quote": 2260.9176174,
"unrealized_pnl_exit_net": -662.2870902
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 2518.6999999999,
"quote_asset_bal": 7745.1753487006,
"total_value_mid": 9372.2555487005,
"total_value_exit_net": 9371.0352385505,
"total_value": 9372.2555487005,
"base_cost_quote": 2351.611286675,
"unrealized_pnl_exit_net": -725.751396825
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 2594.7999999999,
"quote_asset_bal": 7699.2845825506,
"total_value_mid": 9308.0605825505,
"total_value_exit_net": 9306.8540005505,
"total_value": 9308.0605825505,
"base_cost_quote": 2396.859997775,
"unrealized_pnl_exit_net": -789.290579775
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 2496.3999999999,
"quote_asset_bal": 7765.8545179506,
"total_value_mid": 9336.0901179505,
"total_value_exit_net": 9334.9124412505,
"total_value": 9336.0901179505,
"base_cost_quote": 2331.498813625,
"unrealized_pnl_exit_net": -762.440890325
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 2548.3999999999,
"quote_asset_bal": 7734.4071872006,
"total_value_mid": 9332.2539872005,
"total_value_exit_net": 9331.0556021005,
"total_value": 9332.2539872005,
"base_cost_quote": 2361.6907406,
"unrealized_pnl_exit_net": -765.0423257001
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 2437.1999999999,
"quote_asset_bal": 7806.3002854256,
"total_value_mid": 9385.6058854255,
"total_value_exit_net": 9384.4214062255,
"total_value": 9385.6058854255,
"base_cost_quote": 2291.169389225,
"unrealized_pnl_exit_net": -713.0482684251
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 2299.7999999999,
"quote_asset_bal": 7898.6356534506,
"total_value_mid": 9467.0992534506,
"total_value_exit_net": 9465.9229057506,
"total_value": 9467.0992534506,
"base_cost_quote": 2200.52895985,
"unrealized_pnl_exit_net": -633.2417075501
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 2255.2999999999,
"quote_asset_bal": 7929.9969010006,
"total_value_mid": 9517.7281010006,
"total_value_exit_net": 9516.5373026006,
"total_value": 9517.7281010006,
"base_cost_quote": 2170.1868203,
"unrealized_pnl_exit_net": -583.6464187001
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 2335.7999999999,
"quote_asset_bal": 7875.5406433506,
"total_value_mid": 9461.5488433506,
"total_value_exit_net": 9460.3593372006,
"total_value": 9461.5488433506,
"base_cost_quote": 2225.59854795,
"unrealized_pnl_exit_net": -640.7798541001
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 2410.6999999999,
"quote_asset_bal": 7826.6289216007,
"total_value_mid": 9427.3337216006,
"total_value_exit_net": 9426.1331930006,
"total_value": 9427.3337216006,
"base_cost_quote": 2275.9925151,
"unrealized_pnl_exit_net": -676.4882437001
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 2433.5999999999,
"quote_asset_bal": 7812.8160645257,
"total_value_mid": 9406.8240645256,
"total_value_exit_net": 9405.6285585256,
"total_value": 9406.8240645256,
"base_cost_quote": 2291.086326975,
"unrealized_pnl_exit_net": -698.2738329751
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 2501.9999999999,
"quote_asset_bal": 7768.5173923257,
"total_value_mid": 9404.8253923256,
"total_value_exit_net": 9403.5981613256,
"total_value": 9404.8253923256,
"base_cost_quote": 2336.403489375,
"unrealized_pnl_exit_net": -701.3227203751
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 2298.7999999999,
"quote_asset_bal": 7905.5838257507,
"total_value_mid": 9489.4570257506,
"total_value_exit_net": 9488.2691208506,
"total_value": 9489.4570257506,
"base_cost_quote": 2200.44089385,
"unrealized_pnl_exit_net": -617.7555987501
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 2276.8999999999,
"quote_asset_bal": 7921.1786503257,
"total_value_mid": 9496.7934503257,
"total_value_exit_net": 9495.6117392256,
"total_value": 9496.7934503257,
"base_cost_quote": 2185.325866075,
"unrealized_pnl_exit_net": -610.8927771751
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 2298.8999999999,
"quote_asset_bal": 7907.1114986507,
"total_value_mid": 9491.0535986507,
"total_value_exit_net": 9489.8656420757,
"total_value": 9491.0535986507,
"base_cost_quote": 2200.43048605,
"unrealized_pnl_exit_net": -617.6763426251
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 2226.2999999999,
"quote_asset_bal": 7958.3924171507,
"total_value_mid": 9525.7076171507,
"total_value_exit_net": 9524.5321307507,
"total_value": 9525.7076171507,
"base_cost_quote": 2150.0901591,
"unrealized_pnl_exit_net": -583.9504455001
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 2276.8999999999,
"quote_asset_bal": 7924.6362248757,
"total_value_mid": 9497.9741248757,
"total_value_exit_net": 9496.7941214507,
"total_value": 9497.9741248757,
"base_cost_quote": 2185.401122475,
"unrealized_pnl_exit_net": -613.2432259001
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 2343.1999999999,
"quote_asset_bal": 7881.0309209758,
"total_value_mid": 9467.3773209757,
"total_value_exit_net": 9466.1875611757,
"total_value": 9467.3773209757,
"base_cost_quote": 2230.694667175,
"unrealized_pnl_exit_net": -645.5380269751
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 2434.0999999999,
"quote_asset_bal": 7822.1414671008,
"total_value_mid": 9428.6474671007,
"total_value_exit_net": 9427.4425876007,
"total_value": 9428.6474671007,
"base_cost_quote": 2291.16368495,
"unrealized_pnl_exit_net": -685.8625644501
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 2306.2999999999,
"quote_asset_bal": 7909.1536834008,
"total_value_mid": 9486.6628834007,
"total_value_exit_net": 9485.4797515008,
"total_value": 9486.6628834007,
"base_cost_quote": 2205.56953745,
"unrealized_pnl_exit_net": -629.2434693501
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 2219.0999999999,
"quote_asset_bal": 7970.4624207258,
"total_value_mid": 9537.1470207257,
"total_value_exit_net": 9535.9720072757,
"total_value": 9537.1470207257,
"base_cost_quote": 2144.994640325,
"unrealized_pnl_exit_net": -579.4850537751
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 1976.2999999999,
"quote_asset_bal": 8148.9501425508,
"total_value_mid": 9615.3647425507,
"total_value_exit_net": 9614.2649316007,
"total_value": 9615.3647425507,
"base_cost_quote": 1968.7310417,
"unrealized_pnl_exit_net": -503.4162526501
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 2166.4999999999,
"quote_asset_bal": 8014.4535204758,
"total_value_mid": 9505.0055204757,
"total_value_exit_net": 9503.8876064757,
"total_value": 9505.0055204757,
"base_cost_quote": 2104.652206175,
"unrealized_pnl_exit_net": -615.2181201751
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 2101.4999999999,
"quote_asset_bal": 8061.3449497508,
"total_value_mid": 9521.8874497508,
"total_value_exit_net": 9520.7920428758,
"total_value": 9521.8874497508,
"base_cost_quote": 2059.27710035,
"unrealized_pnl_exit_net": -599.8300072251
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 2123.0999999999,
"quote_asset_bal": 8048.0547194009,
"total_value_mid": 9529.9785194008,
"total_value_exit_net": 9528.8670765508,
"total_value": 9529.9785194008,
"base_cost_quote": 2074.4510723,
"unrealized_pnl_exit_net": -593.6387151501
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 1887.2999999999,
"quote_asset_bal": 8226.9735152009,
"total_value_mid": 9578.2803152008,
"total_value_exit_net": 9577.2668351008,
"total_value": 9578.2803152008,
"base_cost_quote": 1898.0852971,
"unrealized_pnl_exit_net": -547.7919772001
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 2181.4999999999,
"quote_asset_bal": 8027.1774126259,
"total_value_mid": 9438.6079126259,
"total_value_exit_net": 9437.5493397509,
"total_value": 9438.6079126259,
"base_cost_quote": 2099.530567825,
"unrealized_pnl_exit_net": -689.1586407001
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 2325.2999999999,
"quote_asset_bal": 7936.8386001509,
"total_value_mid": 9406.4282001509,
"total_value_exit_net": 9405.3260079509,
"total_value": 9406.4282001509,
"base_cost_quote": 2190.20922585,
"unrealized_pnl_exit_net": -721.7218180501
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 2238.3999999999,
"quote_asset_bal": 7993.5557794009,
"total_value_mid": 9428.3701794009,
"total_value_exit_net": 9427.2940686009,
"total_value": 9428.3701794009,
"base_cost_quote": 2134.7858895,
"unrealized_pnl_exit_net": -701.0476003001
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 2305.5999999999,
"quote_asset_bal": 7952.8236259509,
"total_value_mid": 9419.1852259509,
"total_value_exit_net": 9418.0854547509,
"total_value": 9419.1852259509,
"base_cost_quote": 2175.121818775,
"unrealized_pnl_exit_net": -709.8599899751
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 2180.6999999999,
"quote_asset_bal": 8035.2439492509,
"total_value_mid": 9481.0480492509,
"total_value_exit_net": 9479.9636961759,
"total_value": 9481.0480492509,
"base_cost_quote": 2094.551636425,
"unrealized_pnl_exit_net": -649.8318895001
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 2115.8999999999,
"quote_asset_bal": 8083.208794801,
"total_value_mid": 9483.9345948009,
"total_value_exit_net": 9482.8840504509,
"total_value": 9483.9345948009,
"base_cost_quote": 2049.303926075,
"unrealized_pnl_exit_net": -649.6286704251
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 2343.6999999999,
"quote_asset_bal": 7938.390352001,
"total_value_mid": 9382.1095520009,
"total_value_exit_net": 9381.0267626009,
"total_value": 9382.1095520009,
"base_cost_quote": 2195.220681625,
"unrealized_pnl_exit_net": -752.5842710251
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 2428.6999999999,
"quote_asset_bal": 7888.221960301,
"total_value_mid": 9357.5854603009,
"total_value_exit_net": 9356.4834376759,
"total_value": 9357.5854603009,
"base_cost_quote": 2245.536990575,
"unrealized_pnl_exit_net": -777.2755132001
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 2406.1999999999,
"quote_asset_bal": 7903.386386976,
"total_value_mid": 9335.0753869759,
"total_value_exit_net": 9334.0016202259,
"total_value": 9335.0753869759,
"base_cost_quote": 2230.53064425,
"unrealized_pnl_exit_net": -799.9154110001
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 2593.1999999999,
"quote_asset_bal": 7796.758463626,
"total_value_mid": 9264.5096636259,
"total_value_exit_net": 9263.4088502259,
"total_value": 9264.5096636259,
"base_cost_quote": 2336.275393375,
"unrealized_pnl_exit_net": -869.6250067751
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 2712.8999999999,
"quote_asset_bal": 7731.527783826,
"total_value_mid": 9212.7711838259,
"total_value_exit_net": 9211.6602512759,
"total_value": 9212.7711838259,
"base_cost_quote": 2401.601150975,
"unrealized_pnl_exit_net": -921.4686835251
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 2579.1999999999,
"quote_asset_bal": 7806.540840401,
"total_value_mid": 9274.1056404009,
"total_value_exit_net": 9273.0049668009,
"total_value": 9274.1056404009,
"base_cost_quote": 2326.1785264,
"unrealized_pnl_exit_net": -859.7144000001
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 2329.0999999999,
"quote_asset_bal": 7957.514598151,
"total_value_mid": 9429.5057981509,
"total_value_exit_net": 9428.4018047509,
"total_value": 9429.5057981509,
"base_cost_quote": 2175.155243825,
"unrealized_pnl_exit_net": -704.2680372251
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 2404.3999999999,
"quote_asset_bal": 7911.119389201,
"total_value_mid": 9406.6561892009,
"total_value_exit_net": 9405.5345366009,
"total_value": 9406.6561892009,
"base_cost_quote": 2220.35782035,
"unrealized_pnl_exit_net": -725.9426729501
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 2393.9999999999,
"quote_asset_bal": 7919.196675776,
"total_value_mid": 9427.4166757759,
"total_value_exit_net": 9426.2855107759,
"total_value": 9427.4166757759,
"base_cost_quote": 2210.325001375,
"unrealized_pnl_exit_net": -703.2361663751
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 2221.2999999999,
"quote_asset_bal": 8031.066485926,
"total_value_mid": 9490.4605859259,
"total_value_exit_net": 9489.3660403509,
"total_value": 9490.4605859259,
"base_cost_quote": 2099.5326694,
"unrealized_pnl_exit_net": -641.2331149751
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 2099.7999999999,
"quote_asset_bal": 8114.394239801,
"total_value_mid": 9548.557639801,
"total_value_exit_net": 9547.482017251,
"total_value": 9548.557639801,
"base_cost_quote": 2018.929962675,
"unrealized_pnl_exit_net": -585.8421852251
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 1991.6999999999,
"quote_asset_bal": 8192.6119621011,
"total_value_mid": 9612.694062101,
"total_value_exit_net": 9611.629000526,
"total_value": 9612.694062101,
"base_cost_quote": 1943.395754475,
"unrealized_pnl_exit_net": -524.3787160501
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 2077.2999999999,
"quote_asset_bal": 8135.3837804761,
"total_value_mid": 9556.256980476,
"total_value_exit_net": 9555.191325576,
"total_value": 9556.256980476,
"base_cost_quote": 2003.90640345,
"unrealized_pnl_exit_net": -584.0988583501
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 2167.5999999999,
"quote_asset_bal": 8079.1429048512,
"total_value_mid": 9511.9265048511,
"total_value_exit_net": 9510.8519171511,
"total_value": 9511.9265048511,
"base_cost_quote": 2064.395636375,
"unrealized_pnl_exit_net": -632.6866240751
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 2249.1999999999,
"quote_asset_bal": 8027.9412909012,
"total_value_mid": 9505.6656909011,
"total_value_exit_net": 9504.5573976011,
"total_value": 9505.6656909011,
"base_cost_quote": 2119.720498925,
"unrealized_pnl_exit_net": -643.1043922251
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 2106.4999999999,
"quote_asset_bal": 8127.1237855762,
"total_value_mid": 9570.0762855761,
"total_value_exit_net": 9568.9940712011,
"total_value": 9570.0762855761,
"base_cost_quote": 2023.97824605,
"unrealized_pnl_exit_net": -582.1079604251
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 1977.0999999999,
"quote_asset_bal": 8219.2178424512,
"total_value_mid": 9698.0886424511,
"total_value_exit_net": 9696.9794893511,
"total_value": 9698.0886424511,
"base_cost_quote": 1933.219728175,
"unrealized_pnl_exit_net": -455.4580812751
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 2136.0999999999,
"quote_asset_bal": 8105.2949677762,
"total_value_mid": 9617.6537677761,
"total_value_exit_net": 9616.5194986761,
"total_value": 9617.6537677761,
"base_cost_quote": 2049.1857375,
"unrealized_pnl_exit_net": -537.9612066001
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 2022.0999999999,
"quote_asset_bal": 8188.5224173261,
"total_value_mid": 9735.4289173261,
"total_value_exit_net": 9734.2687374511,
"total_value": 9735.4289173261,
"base_cost_quote": 1968.5681196,
"unrealized_pnl_exit_net": -422.8217994751
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 2177.4999999999,
"quote_asset_bal": 8073.8008817011,
"total_value_mid": 9680.795881701,
"total_value_exit_net": 9679.590635451,
"total_value": 9680.795881701,
"base_cost_quote": 2084.504706875,
"unrealized_pnl_exit_net": -478.7149531251
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 2398.7999999999,
"quote_asset_bal": 7918.9998359511,
"total_value_mid": 9552.582635951,
"total_value_exit_net": 9551.357448851,
"total_value": 9552.582635951,
"base_cost_quote": 2240.813650725,
"unrealized_pnl_exit_net": -608.4560378251
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 2143.3999999999,
"quote_asset_bal": 8102.5946266011,
"total_value_mid": 9695.140826601,
"total_value_exit_net": 9693.946416951,
"total_value": 9695.140826601,
"base_cost_quote": 2059.328238675,
"unrealized_pnl_exit_net": -467.9764483251
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 1977.1999999999,
"quote_asset_bal": 8230.7658617761,
"total_value_mid": 9771.004661776,
"total_value_exit_net": 9769.849482676,
"total_value": 9771.004661776,
"base_cost_quote": 1933.36033355,
"unrealized_pnl_exit_net": -394.2767126501
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 1782.1999999999,
"quote_asset_bal": 8390.3172121011,
"total_value_mid": 9867.761012101,
"total_value_exit_net": 9866.652929251,
"total_value": 9867.761012101,
"base_cost_quote": 1776.979635925,
"unrealized_pnl_exit_net": -300.6439187751
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 1467.7999999999,
"quote_asset_bal": 8667.5633792511,
"total_value_mid": 9998.857979251,
"total_value_exit_net": 9997.859508301,
"total_value": 9998.857979251,
"base_cost_quote": 1504.36482805,
"unrealized_pnl_exit_net": -174.0686990001
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 1668.9999999999,
"quote_asset_bal": 8494.7854263261,
"total_value_mid": 9913.435426326,
"total_value_exit_net": 9912.371438826,
"total_value": 9913.435426326,
"base_cost_quote": 1681.142411875,
"unrealized_pnl_exit_net": -263.5563993751
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 1603.5999999999,
"quote_asset_bal": 8554.2666034511,
"total_value_mid": 9955.813003451,
"total_value_exit_net": 9954.761843651,
"total_value": 9955.813003451,
"base_cost_quote": 1625.429458475,
"unrealized_pnl_exit_net": -224.9342182751
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 1424.2999999999,
"quote_asset_bal": 8718.5350160011,
"total_value_mid": 10054.528416001,
"total_value_exit_net": 10053.526420951,
"total_value": 10054.528416001,
"base_cost_quote": 1464.2621736,
"unrealized_pnl_exit_net": -129.2707686501
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 1349.8999999999,
"quote_asset_bal": 8791.5729546011,
"total_value_mid": 10096.926254601,
"total_value_exit_net": 10095.947239626,
"total_value": 10096.926254601,
"base_cost_quote": 1393.6128263,
"unrealized_pnl_exit_net": -89.2385412751
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 1252.2999999999,
"quote_asset_bal": 8889.3456253511,
"total_value_mid": 10157.925525351,
"total_value_exit_net": 10156.974090426,
"total_value": 10157.925525351,
"base_cost_quote": 1297.545329675,
"unrealized_pnl_exit_net": -29.9168646001
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 1220.8999999999,
"quote_asset_bal": 8920.8042506261,
"total_value_mid": 10243.038950626,
"total_value_exit_net": 10242.047274601,
"total_value": 10243.038950626,
"base_cost_quote": 1267.282649675,
"unrealized_pnl_exit_net": 53.9603742999
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 951.7999999999,
"quote_asset_bal": 9243.8292909511,
"total_value_mid": 10455.470690951,
"total_value_exit_net": 10454.561959901,
"total_value": 10455.470690951,
"base_cost_quote": 943.5835573,
"unrealized_pnl_exit_net": 267.1491116499
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 1042.0999999999,
"quote_asset_bal": 9135.1310063761,
"total_value_mid": 10392.945706376,
"total_value_exit_net": 10392.002345351,
"total_value": 10392.945706376,
"base_cost_quote": 1039.5602859,
"unrealized_pnl_exit_net": 217.3110530748
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 961.7999999999,
"quote_asset_bal": 9236.6642704511,
"total_value_mid": 10462.959270451,
"total_value_exit_net": 10462.039549201,
"total_value": 10462.959270451,
"base_cost_quote": 938.476429825,
"unrealized_pnl_exit_net": 286.8988489248
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 957.4999999999,
"quote_asset_bal": 9243.5230374011,
"total_value_mid": 10461.4630374009,
"total_value_exit_net": 10460.5495824009,
"total_value": 10461.4630374009,
"base_cost_quote": 933.735076475,
"unrealized_pnl_exit_net": 283.2914685248
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 980.4999999999,
"quote_asset_bal": 9215.5456669261,
"total_value_mid": 10466.6636669259,
"total_value_exit_net": 10465.7253284259,
"total_value": 10466.6636669259,
"base_cost_quote": 964.0629053,
"unrealized_pnl_exit_net": 286.1167561998
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 903.0999999999,
"quote_asset_bal": 9318.7655466011,
"total_value_mid": 10526.2102466009,
"total_value_exit_net": 10525.3046630759,
"total_value": 10526.2102466009,
"base_cost_quote": 862.652804725,
"unrealized_pnl_exit_net": 343.8863117498
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 944.9999999999,
"quote_asset_bal": 9264.0338989261,
"total_value_mid": 10500.0938989259,
"total_value_exit_net": 10499.1668539259,
"total_value": 10500.0938989259,
"base_cost_quote": 918.3778672,
"unrealized_pnl_exit_net": 316.7550877998
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 914.1999999999,
"quote_asset_bal": 9305.5068812511,
"total_value_mid": 10519.5644812509,
"total_value_exit_net": 10518.6539380509,
"total_value": 10519.5644812509,
"base_cost_quote": 877.944665025,
"unrealized_pnl_exit_net": 335.2023917748
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 1221.1999999999,
"quote_asset_bal": 8940.1023082761,
"total_value_mid": 10196.717108276,
"total_value_exit_net": 10195.774647176,
"total_value": 10196.717108276,
"base_cost_quote": 1232.555423775,
"unrealized_pnl_exit_net": 23.1169151249
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 1270.5999999999,
"quote_asset_bal": 8893.8285036261,
"total_value_mid": 10163.157903626,
"total_value_exit_net": 10162.205906576,
"total_value": 10163.157903626,
"base_cost_quote": 1282.853318925,
"unrealized_pnl_exit_net": -14.4759159751
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 1153.1999999999,
"quote_asset_bal": 9017.0155395511,
"total_value_mid": 10286.688739551,
"total_value_exit_net": 10285.736484651,
"total_value": 10286.688739551,
"base_cost_quote": 1161.5929418,
"unrealized_pnl_exit_net": 107.1280032998
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 1088.1999999998,
"quote_asset_bal": 9092.2377725262,
"total_value_mid": 10356.726172526,
"total_value_exit_net": 10355.777806226,
"total_value": 10356.726172526,
"base_cost_quote": 1075.42896725,
"unrealized_pnl_exit_net": 188.1110664498
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 1094.4999999998,
"quote_asset_bal": 9086.1362257762,
"total_value_mid": 10365.606725776,
"total_value_exit_net": 10364.647122901,
"total_value": 10365.606725776,
"base_cost_quote": 1075.3182843,
"unrealized_pnl_exit_net": 203.1926128248
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 1127.9999999998,
"quote_asset_bal": 9048.1178144762,
"total_value_mid": 10343.061814476,
"total_value_exit_net": 10342.090606476,
"total_value": 10343.061814476,
"base_cost_quote": 1105.774809575,
"unrealized_pnl_exit_net": 188.1979824248
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 1219.3999999998,
"quote_asset_bal": 8967.2766921762,
"total_value_mid": 10139.120092176,
"total_value_exit_net": 10138.241209626,
"total_value": 10139.120092176,
"base_cost_quote": 1186.46378095,
"unrealized_pnl_exit_net": -15.4992635002
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 1600.5999999998,
"quote_asset_bal": 8628.7774270512,
"total_value_mid": 9992.4886270511,
"total_value_exit_net": 9991.4658436511,
"total_value": 9992.4886270511,
"base_cost_quote": 1530.097413025,
"unrealized_pnl_exit_net": -167.4089964251
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 1611.7999999998,
"quote_asset_bal": 8623.3553716762,
"total_value_mid": 9991.7735716761,
"total_value_exit_net": 9990.7472580261,
"total_value": 9991.7735716761,
"base_cost_quote": 1539.9128691,
"unrealized_pnl_exit_net": -172.5209827501
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 1818.2999999998,
"quote_asset_bal": 8460.3382534012,
"total_value_mid": 9849.519453401,
"total_value_exit_net": 9848.477567501,
"total_value": 9849.519453401,
"base_cost_quote": 1706.49030855,
"unrealized_pnl_exit_net": -318.3509944501
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 2065.2999999998,
"quote_asset_bal": 8282.3299912511,
"total_value_mid": 9734.235891251,
"total_value_exit_net": 9733.146961826,
"total_value": 9734.235891251,
"base_cost_quote": 1887.89666135,
"unrealized_pnl_exit_net": -437.0796907751
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 1988.8999999998,
"quote_asset_bal": 8340.9196078011,
"total_value_mid": 9792.816607801,
"total_value_exit_net": 9791.727685051,
"total_value": 9792.816607801,
"base_cost_quote": 1832.4072755,
"unrealized_pnl_exit_net": -381.5991982501
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 2010.0999999998,
"quote_asset_bal": 8328.355843176,
"total_value_mid": 9769.5975431759,
"total_value_exit_net": 9768.5166119009,
"total_value": 9769.5975431759,
"base_cost_quote": 1847.431435175,
"unrealized_pnl_exit_net": -407.2706664501
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 2102.5999999998,
"quote_asset_bal": 8264.523061851,
"total_value_mid": 9740.5482618509,
"total_value_exit_net": 9739.4412429509,
"total_value": 9740.5482618509,
"base_cost_quote": 1913.1161618,
"unrealized_pnl_exit_net": -438.1979807001
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 1913.9999999998,
"quote_asset_bal": 8402.848725651,
"total_value_mid": 9847.9187256509,
"total_value_exit_net": 9846.8349231509,
"total_value": 9847.9187256509,
"base_cost_quote": 1776.91188515,
"unrealized_pnl_exit_net": -332.9256876501
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 1814.0999999998,
"quote_asset_bal": 8480.449971351,
"total_value_mid": 9906.3325713508,
"total_value_exit_net": 9905.2631594008,
"total_value": 9906.3325713508,
"base_cost_quote": 1701.28160495,
"unrealized_pnl_exit_net": -276.4684169001
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 1891.1999999998,
"quote_asset_bal": 8421.3668233009,
"total_value_mid": 9890.8292233008,
"total_value_exit_net": 9889.7271265008,
"total_value": 9890.8292233008,
"base_cost_quote": 1761.83858865,
"unrealized_pnl_exit_net": -293.4782854501
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 2119.9999999998,
"quote_asset_bal": 8251.0115564009,
"total_value_mid": 9798.6115564008,
"total_value_exit_net": 9797.4508564008,
"total_value": 9798.6115564008,
"base_cost_quote": 1933.3253073,
"unrealized_pnl_exit_net": -386.8860073001
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 2104.9999999998,
"quote_asset_bal": 8262.7035071259,
"total_value_mid": 9816.1935071257,
"total_value_exit_net": 9815.0283896257,
"total_value": 9816.1935071257,
"base_cost_quote": 1922.990862275,
"unrealized_pnl_exit_net": -370.6659797751
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 1746.0999999998,
"quote_asset_bal": 8543.0115959508,
"total_value_mid": 9960.8447959507,
"total_value_exit_net": 9959.7814210507,
"total_value": 9960.8447959507,
"base_cost_quote": 1645.746484825,
"unrealized_pnl_exit_net": -228.9766597251
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 1915.7999999998,
"quote_asset_bal": 8408.9578347758,
"total_value_mid": 9912.8608347756,
"total_value_exit_net": 9911.7329075256,
"total_value": 9912.8608347756,
"base_cost_quote": 1781.88281055,
"unrealized_pnl_exit_net": -279.1077378001
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 1988.1999999998,
"quote_asset_bal": 8355.9345780007,
"total_value_mid": 9872.9311780006,
"total_value_exit_net": 9871.7934305506,
"total_value": 9872.9311780006,
"base_cost_quote": 1837.337270225,
"unrealized_pnl_exit_net": -321.4784176751
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 2075.5999999998,
"quote_asset_bal": 8291.9180469007,
"total_value_mid": 9836.1644469006,
"total_value_exit_net": 9835.0062621006,
"total_value": 9836.1644469006,
"base_cost_quote": 1903.025099175,
"unrealized_pnl_exit_net": -359.9368839751
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 1995.6999999998,
"quote_asset_bal": 8353.7845929006,
"total_value_mid": 9886.4821929005,
"total_value_exit_net": 9885.3326697005,
"total_value": 9886.4821929005,
"base_cost_quote": 1842.396261625,
"unrealized_pnl_exit_net": -310.8481848251
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 1956.3999999998,
"quote_asset_bal": 8385.5160148507,
"total_value_mid": 9911.5080148505,
"total_value_exit_net": 9910.3635208505,
"total_value": 9911.5080148505,
"base_cost_quote": 1812.085945925,
"unrealized_pnl_exit_net": -287.2384399251
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 1742.6999999998,
"quote_asset_bal": 8558.5781138256,
"total_value_mid": 9996.3056138255,
"total_value_exit_net": 9995.2273182005,
"total_value": 9996.3056138255,
"base_cost_quote": 1640.4105859,
"unrealized_pnl_exit_net": -203.7613815251
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 1779.7999999998,
"quote_asset_bal": 8529.2010693256,
"total_value_mid": 9981.5178693255,
"total_value_exit_net": 9980.4286317255,
"total_value": 9981.5178693255,
"base_cost_quote": 1670.890528725,
"unrealized_pnl_exit_net": -219.6629663251
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 1760.9999999998,
"quote_asset_bal": 8545.5956300756,
"total_value_mid": 9998.4206300755,
"total_value_exit_net": 9997.3310113255,
"total_value": 9998.4206300755,
"base_cost_quote": 1655.78190575,
"unrealized_pnl_exit_net": -204.0465245001
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 1797.0999999998,
"quote_asset_bal": 8516.5766797256,
"total_value_mid": 10008.1696797255,
"total_value_exit_net": 10007.0509849755,
"total_value": 10008.1696797255,
"base_cost_quote": 1686.1412582,
"unrealized_pnl_exit_net": -195.6669529501
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 2120.7999999998,
"quote_asset_bal": 8265.5844211256,
"total_value_mid": 9818.0100211255,
"total_value_exit_net": 9816.8457019255,
"total_value": 9818.0100211255,
"base_cost_quote": 1938.4151218,
"unrealized_pnl_exit_net": -387.1538410001
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 2226.1999999998,
"quote_asset_bal": 8191.7642237506,
"total_value_mid": 9763.4614237505,
"total_value_exit_net": 9762.2826508505,
"total_value": 9763.4614237505,
"base_cost_quote": 2013.883380575,
"unrealized_pnl_exit_net": -443.3649534751
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 2320.3999999998,
"quote_asset_bal": 8127.8871814757,
"total_value_mid": 9719.6815814755,
"total_value_exit_net": 9718.4877356755,
"total_value": 9719.6815814755,
"base_cost_quote": 2079.5312796,
"unrealized_pnl_exit_net": -488.9307254001
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 2283.8999999998,
"quote_asset_bal": 8154.2035663257,
"total_value_mid": 9752.9335663255,
"total_value_exit_net": 9751.7345188255,
"total_value": 9752.9335663255,
"base_cost_quote": 2054.3299928,
"unrealized_pnl_exit_net": -456.7990403001
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 2298.2999999998,
"quote_asset_bal": 8144.6458073007,
"total_value_mid": 9730.4728073006,
"total_value_exit_net": 9729.2834370506,
"total_value": 9730.4728073006,
"base_cost_quote": 2064.478698625,
"unrealized_pnl_exit_net": -479.8410688751
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 2379.0999999998,
"quote_asset_bal": 8090.0695537257,
"total_value_mid": 9703.0993537256,
"total_value_exit_net": 9701.8895813756,
"total_value": 9703.0993537256,
"base_cost_quote": 2119.8118674,
"unrealized_pnl_exit_net": -507.9918397501
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 2515.0999999998,
"quote_asset_bal": 8003.9966667757,
"total_value_mid": 9628.7512667756,
"total_value_exit_net": 9627.5327008256,
"total_value": 9628.7512667756,
"base_cost_quote": 2205.4512488,
"unrealized_pnl_exit_net": -581.9152147501
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 2362.4999999998,
"quote_asset_bal": 8106.8459940007,
"total_value_mid": 9708.6209940006,
"total_value_exit_net": 9707.4196627506,
"total_value": 9708.6209940006,
"base_cost_quote": 2104.747677725,
"unrealized_pnl_exit_net": -504.1740089751
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 2268.8999999998,
"quote_asset_bal": 8174.3832739757,
"total_value_mid": 9767.1510739756,
"total_value_exit_net": 9765.9564981256,
"total_value": 9767.1510739756,
"base_cost_quote": 2039.18484245,
"unrealized_pnl_exit_net": -447.6116183001
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 2369.8999999998,
"quote_asset_bal": 8105.7499614758,
"total_value_mid": 9712.5421614757,
"total_value_exit_net": 9711.3370673257,
"total_value": 9712.5421614757,
"base_cost_quote": 2109.64444755,
"unrealized_pnl_exit_net": -504.0573417001
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 2118.7999999998,
"quote_asset_bal": 8283.1520676258,
"total_value_mid": 9827.7572676257,
"total_value_exit_net": 9826.5988137257,
"total_value": 9827.7572676257,
"base_cost_quote": 1933.2948845,
"unrealized_pnl_exit_net": -389.8481384001
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 2380.8999999998,
"quote_asset_bal": 8103.7762753258,
"total_value_mid": 9687.0747753257,
"total_value_exit_net": 9685.8873014507,
"total_value": 9687.0747753257,
"base_cost_quote": 2114.71104465,
"unrealized_pnl_exit_net": -532.6000185251
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 2622.2999999998,
"quote_asset_bal": 7953.9411139258,
"total_value_mid": 9501.0981139257,
"total_value_exit_net": 9499.9377461757,
"total_value": 9501.0981139257,
"base_cost_quote": 2265.8092834,
"unrealized_pnl_exit_net": -719.8126511501
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 2719.8999999998,
"quote_asset_bal": 7897.8232741758,
"total_value_mid": 9483.5249741757,
"total_value_exit_net": 9482.3356979007,
"total_value": 9483.5249741757,
"base_cost_quote": 2321.263943225,
"unrealized_pnl_exit_net": -736.7515195001
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 2628.3999999998,
"quote_asset_bal": 7954.1169157508,
"total_value_mid": 9549.5557157507,
"total_value_exit_net": 9548.3591366507,
"total_value": 9549.5557157507,
"base_cost_quote": 2265.8208921,
"unrealized_pnl_exit_net": -671.5786712001
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 2670.2999999998,
"quote_asset_bal": 7930.0258458758,
"total_value_mid": 9524.1949458757,
"total_value_exit_net": 9522.9993190507,
"total_value": 9524.1949458757,
"base_cost_quote": 2290.960432625,
"unrealized_pnl_exit_net": -697.9869594501
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 2745.4999999998,
"quote_asset_bal": 7887.6618763508,
"total_value_mid": 9523.9798763507,
"total_value_exit_net": 9522.7526378507,
"total_value": 9523.9798763507,
"base_cost_quote": 2331.24812575,
"unrealized_pnl_exit_net": -696.1573642501
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 2765.3999999998,
"quote_asset_bal": 7877.0908500508,
"total_value_mid": 9489.3190500507,
"total_value_exit_net": 9488.1098789007,
"total_value": 9489.3190500507,
"base_cost_quote": 2341.326679,
"unrealized_pnl_exit_net": -730.3076501501
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 2768.4999999998,
"quote_asset_bal": 7876.2696313508,
"total_value_mid": 9512.4531313507,
"total_value_exit_net": 9511.2259937257,
"total_value": 9512.4531313507,
"base_cost_quote": 2341.3579024,
"unrealized_pnl_exit_net": -706.4015400251
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 2811.7999999998,
"quote_asset_bal": 7851.7791832758,
"total_value_mid": 9476.9995832757,
"total_value_exit_net": 9475.7806679757,
"total_value": 9476.9995832757,
"base_cost_quote": 2366.5539853,
"unrealized_pnl_exit_net": -742.5525006001
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 2915.4999999998,
"quote_asset_bal": 7796.9124583258,
"total_value_mid": 9429.5924583257,
"total_value_exit_net": 9428.3679483257,
"total_value": 9429.5924583257,
"base_cost_quote": 2421.939093,
"unrealized_pnl_exit_net": -790.4836030001
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 3111.6999999998,
"quote_asset_bal": 7691.6916903508,
"total_value_mid": 9337.7809903507,
"total_value_exit_net": 9336.5464233757,
"total_value": 9337.7809903507,
"base_cost_quote": 2527.520319575,
"unrealized_pnl_exit_net": -882.6655865501
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 3032.4999999998,
"quote_asset_bal": 7737.2166703008,
"total_value_mid": 9392.9616703007,
"total_value_exit_net": 9391.7198615507,
"total_value": 9392.9616703007,
"base_cost_quote": 2482.309436825,
"unrealized_pnl_exit_net": -827.8062455751
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 2830.2999999998,
"quote_asset_bal": 7851.9970131008,
"total_value_mid": 9496.4013131007,
"total_value_exit_net": 9495.1680098757,
"total_value": 9496.4013131007,
"base_cost_quote": 2366.550882975,
"unrealized_pnl_exit_net": -723.3798862001
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 2824.4999999998,
"quote_asset_bal": 7856.5871216008,
"total_value_mid": 9483.4991216007,
"total_value_exit_net": 9482.2789376007,
"total_value": 9483.4991216007,
"base_cost_quote": 2361.49879675,
"unrealized_pnl_exit_net": -735.8069807501
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 3194.9999999998,
"quote_asset_bal": 7654.9590953258,
"total_value_mid": 9325.9440953257,
"total_value_exit_net": 9324.6908565757,
"total_value": 9325.9440953257,
"base_cost_quote": 2562.792353775,
"unrealized_pnl_exit_net": -893.0605925251
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 3697.5999999998,
"quote_asset_bal": 7418.3791305258,
"total_value_mid": 9052.7183305257,
"total_value_exit_net": 9051.4925761257,
"total_value": 9052.7183305257,
"base_cost_quote": 2804.028145025,
"unrealized_pnl_exit_net": -1170.9146994251
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 3770.5999999998,
"quote_asset_bal": 7397.7507202008,
"total_value_mid": 9090.7501202007,
"total_value_exit_net": 9089.4803706507,
"total_value": 9090.7501202007,
"base_cost_quote": 2829.088926525,
"unrealized_pnl_exit_net": -1137.3592760751
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 3849.2999999998,
"quote_asset_bal": 7366.8353389508,
"total_value_mid": 9018.1850389507,
"total_value_exit_net": 9016.9465266757,
"total_value": 9018.1850389507,
"base_cost_quote": 2864.274295775,
"unrealized_pnl_exit_net": -1214.1631080501
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 3918.6999999998,
"quote_asset_bal": 7339.2775846258,
"total_value_mid": 9016.4811846257,
"total_value_exit_net": 9015.2232819257,
"total_value": 9016.4811846257,
"base_cost_quote": 2894.41818675,
"unrealized_pnl_exit_net": -1218.4724894501
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 4174.8999999998,
"quote_asset_bal": 7236.1514720758,
"total_value_mid": 8901.9365720757,
"total_value_exit_net": 8900.6872332507,
"total_value": 8901.9365720757,
"base_cost_quote": 2999.95447965,
"unrealized_pnl_exit_net": -1335.4187184751
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 4089.4999999998,
"quote_asset_bal": 7273.2997902008,
"total_value_mid": 8929.5472902007,
"total_value_exit_net": 8928.3051045757,
"total_value": 8929.5472902007,
"base_cost_quote": 2964.804036575,
"unrealized_pnl_exit_net": -1309.7987222001
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 3848.4999999998,
"quote_asset_bal": 7376.2828050008,
"total_value_mid": 9038.8348050007,
"total_value_exit_net": 9037.5878910007,
"total_value": 9038.8348050007,
"base_cost_quote": 2864.284503425,
"unrealized_pnl_exit_net": -1202.9794174251
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 3920.9999999998,
"quote_asset_bal": 7348.1860840258,
"total_value_mid": 9034.2160840257,
"total_value_exit_net": 9032.9515615257,
"total_value": 9034.2160840257,
"base_cost_quote": 2894.43459905,
"unrealized_pnl_exit_net": -1209.6691215501
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 3758.4999999998,
"quote_asset_bal": 7422.3236680508,
"total_value_mid": 9106.1316680507,
"total_value_exit_net": 9104.8688120507,
"total_value": 9106.1316680507,
"base_cost_quote": 2824.072567075,
"unrealized_pnl_exit_net": -1141.5274230751
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 3800.6999999998,
"quote_asset_bal": 7405.0111606757,
"total_value_mid": 9119.1268606756,
"total_value_exit_net": 9117.8412739006,
"total_value": 9119.1268606756,
"base_cost_quote": 2844.23617845,
"unrealized_pnl_exit_net": -1131.4060652251
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 3562.5999999998,
"quote_asset_bal": 7519.4342659007,
"total_value_mid": 9247.2952659006,
"total_value_exit_net": 9245.9993701506,
"total_value": 9247.2952659006,
"base_cost_quote": 2733.605967975,
"unrealized_pnl_exit_net": -1007.0408637251
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 3678.1999999998,
"quote_asset_bal": 7466.3764364507,
"total_value_mid": 9198.8086364506,
"total_value_exit_net": 9197.5093123006,
"total_value": 9198.8086364506,
"base_cost_quote": 2788.901808775,
"unrealized_pnl_exit_net": -1057.7689329251
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 3614.7999999998,
"quote_asset_bal": 7497.5272411007,
"total_value_mid": 9232.6312411006,
"total_value_exit_net": 9231.3299131006,
"total_value": 9232.6312411006,
"base_cost_quote": 2758.765823725,
"unrealized_pnl_exit_net": -1024.9631517251
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 3731.4999999998,
"quote_asset_bal": 7443.1551690757,
"total_value_mid": 9189.4971690756,
"total_value_exit_net": 9188.1874125756,
"total_value": 9189.4971690756,
"base_cost_quote": 2814.0753748,
"unrealized_pnl_exit_net": -1069.0431313001
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 3646.3999999998,
"quote_asset_bal": 7484.6560285757,
"total_value_mid": 9220.3424285756,
"total_value_exit_net": 9219.0406637756,
"total_value": 9220.3424285756,
"base_cost_quote": 2773.87144445,
"unrealized_pnl_exit_net": -1039.4868092501
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 3646.8999999998,
"quote_asset_bal": 7486.3546705257,
"total_value_mid": 9211.3383705256,
"total_value_exit_net": 9210.0446327506,
"total_value": 9211.3383705256,
"base_cost_quote": 2773.8408215,
"unrealized_pnl_exit_net": -1050.1508592751
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 3935.0999999998,
"quote_asset_bal": 7358.5950766257,
"total_value_mid": 9019.2072766256,
"total_value_exit_net": 9017.9618174756,
"total_value": 9019.2072766256,
"base_cost_quote": 2904.4707205,
"unrealized_pnl_exit_net": -1245.1039796501
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 3764.6999999998,
"quote_asset_bal": 7436.6639030007,
"total_value_mid": 9149.6024030006,
"total_value_exit_net": 9148.3176991256,
"total_value": 9149.6024030006,
"base_cost_quote": 2829.133960275,
"unrealized_pnl_exit_net": -1117.4801641501
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 3518.9999999998,
"quote_asset_bal": 7555.0877810257,
"total_value_mid": 9258.2837810256,
"total_value_exit_net": 9257.0063840256,
"total_value": 9258.2837810256,
"base_cost_quote": 2713.52501855,
"unrealized_pnl_exit_net": -1011.6064155501
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 3741.5999999998,
"quote_asset_bal": 7451.3334545257,
"total_value_mid": 9172.4694545256,
"total_value_exit_net": 9171.1786025256,
"total_value": 9172.4694545256,
"base_cost_quote": 2819.1135506,
"unrealized_pnl_exit_net": -1099.2684026001
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 3591.5999999998,
"quote_asset_bal": 7522.7851025757,
"total_value_mid": 9257.5279025756,
"total_value_exit_net": 9256.2268454756,
"total_value": 9257.5279025756,
"base_cost_quote": 2748.7372079,
"unrealized_pnl_exit_net": -1015.2954650001
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 3665.1999999998,
"quote_asset_bal": 7488.2363925757,
"total_value_mid": 9214.5455925756,
"total_value_exit_net": 9213.2508606756,
"total_value": 9214.5455925756,
"base_cost_quote": 2783.91457115,
"unrealized_pnl_exit_net": -1058.9001030501
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 4084.8999999998,
"quote_asset_bal": 7304.8935238757,
"total_value_mid": 8991.9572238756,
"total_value_exit_net": 8990.6919261006,
"total_value": 8991.9572238756,
"base_cost_quote": 2969.8517195,
"unrealized_pnl_exit_net": -1284.0533172751
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 4096.3999999998,
"quote_asset_bal": 7302.8150738257,
"total_value_mid": 9043.7850738256,
"total_value_exit_net": 9042.4793463256,
"total_value": 9043.7850738256,
"base_cost_quote": 2974.900403175,
"unrealized_pnl_exit_net": -1235.2361306751
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 4071.0999999998,
"quote_asset_bal": 7314.4403152506,
"total_value_mid": 9069.0844152505,
"total_value_exit_net": 9067.7684321755,
"total_value": 9069.0844152505,
"base_cost_quote": 2964.898007,
"unrealized_pnl_exit_net": -1211.5698900751
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 3967.7999999998,
"quote_asset_bal": 7361.5902645256,
"total_value_mid": 9107.4222645255,
"total_value_exit_net": 9106.1128905255,
"total_value": 9107.4222645255,
"base_cost_quote": 2919.677016675,
"unrealized_pnl_exit_net": -1175.1543906751
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 3896.5999999998,
"quote_asset_bal": 7396.1719062006,
"total_value_mid": 9114.5725062005,
"total_value_exit_net": 9113.2837057505,
"total_value": 9114.5725062005,
"base_cost_quote": 2889.496798475,
"unrealized_pnl_exit_net": -1172.3849989251
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 3977.5999999998,
"quote_asset_bal": 7361.9951964006,
"total_value_mid": 9084.2959964005,
"total_value_exit_net": 9083.0042708005,
"total_value": 9084.2959964005,
"base_cost_quote": 2924.705785425,
"unrealized_pnl_exit_net": -1203.6967110251
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 3579.9999999998,
"quote_asset_bal": 7545.3443742006,
"total_value_mid": 9270.9043742005,
"total_value_exit_net": 9269.6102042005,
"total_value": 9270.9043742005,
"base_cost_quote": 2743.687523475,
"unrealized_pnl_exit_net": -1019.4216934751
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 4163.7999999998,
"quote_asset_bal": 7291.7126915256,
"total_value_mid": 8928.0860915255,
"total_value_exit_net": 8926.8588114755,
"total_value": 8928.0860915255,
"base_cost_quote": 2999.99531025,
"unrealized_pnl_exit_net": -1364.8491903001
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 4281.6999999998,
"quote_asset_bal": 7249.0189927756,
"total_value_mid": 8884.6283927755,
"total_value_exit_net": 8883.4016857255,
"total_value": 8884.6283927755,
"base_cost_quote": 3045.1865783,
"unrealized_pnl_exit_net": -1410.8038853501
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 4203.3999999998,
"quote_asset_bal": 7281.0811128506,
"total_value_mid": 8979.2547128505,
"total_value_exit_net": 8977.9810826505,
"total_value": 8979.2547128505,
"base_cost_quote": 3015.0788144,
"unrealized_pnl_exit_net": -1318.1788446001
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 4291.0999999998,
"quote_asset_bal": 7247.5237704506,
"total_value_mid": 8916.7616704505,
"total_value_exit_net": 8915.5097420255,
"total_value": 8916.7616704505,
"base_cost_quote": 3050.23416115,
"unrealized_pnl_exit_net": -1382.2481895751
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 4305.3999999998,
"quote_asset_bal": 7244.2313564506,
"total_value_mid": 8875.9779564505,
"total_value_exit_net": 8874.7541465005,
"total_value": 8875.9779564505,
"base_cost_quote": 3055.21749585,
"unrealized_pnl_exit_net": -1424.6947058001
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 4331.3999999998,
"quote_asset_bal": 7235.3212632006,
"total_value_mid": 8855.2648632006,
"total_value_exit_net": 8854.0499055006,
"total_value": 8855.2648632006,
"base_cost_quote": 3065.2416083,
"unrealized_pnl_exit_net": -1446.5129660001
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 4586.8999999998,
"quote_asset_bal": 7146.1455830257,
"total_value_mid": 8668.9963830256,
"total_value_exit_net": 8667.8542449256,
"total_value": 8668.9963830256,
"base_cost_quote": 3155.657469375,
"unrealized_pnl_exit_net": -1633.9488074751
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 4757.0999999998,
"quote_asset_bal": 7093.8821469506,
"total_value_mid": 8592.3686469506,
"total_value_exit_net": 8591.2447820756,
"total_value": 8592.3686469506,
"base_cost_quote": 3210.871448825,
"unrealized_pnl_exit_net": -1713.5088137001
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 4761.9999999998,
"quote_asset_bal": 7096.1785141756,
"total_value_mid": 8667.6385141755,
"total_value_exit_net": 8666.4599191755,
"total_value": 8667.6385141755,
"base_cost_quote": 3210.87775355,
"unrealized_pnl_exit_net": -1640.5963485501
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 4657.4999999998,
"quote_asset_bal": 7133.7704538506,
"total_value_mid": 8721.9779538505,
"total_value_exit_net": 8720.7867982255,
"total_value": 8721.9779538505,
"base_cost_quote": 3175.721706275,
"unrealized_pnl_exit_net": -1588.7053619001
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 4717.6999999998,
"quote_asset_bal": 7115.8722217256,
"total_value_mid": 8696.3017217255,
"total_value_exit_net": 8695.1163996005,
"total_value": 8696.3017217255,
"base_cost_quote": 3195.8174668,
"unrealized_pnl_exit_net": -1616.5732889251
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 4614.5999999998,
"quote_asset_bal": 7152.0661527256,
"total_value_mid": 8757.9469527255,
"total_value_exit_net": 8756.7425421255,
"total_value": 8757.9469527255,
"base_cost_quote": 3160.669825825,
"unrealized_pnl_exit_net": -1555.9934364251
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 4487.5999999998,
"quote_asset_bal": 7197.8423616506,
"total_value_mid": 8835.8163616505,
"total_value_exit_net": 8834.5878811505,
"total_value": 8835.8163616505,
"base_cost_quote": 3115.432723425,
"unrealized_pnl_exit_net": -1478.6872039251
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 4714.7999999998,
"quote_asset_bal": 7118.1397366756,
"total_value_mid": 8744.7457366755,
"total_value_exit_net": 8743.5257821755,
"total_value": 8744.7457366755,
"base_cost_quote": 3195.7642269,
"unrealized_pnl_exit_net": -1570.3781814001
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 4419.1999999998,
"quote_asset_bal": 7224.3819713006,
"total_value_mid": 8890.4203713005,
"total_value_exit_net": 8889.1708425005,
"total_value": 8890.4203713005,
"base_cost_quote": 3090.357931425,
"unrealized_pnl_exit_net": -1425.5690602251
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 4517.1999999998,
"quote_asset_bal": 7190.0839670756,
"total_value_mid": 8838.8619670755,
"total_value_exit_net": 8837.6253835755,
"total_value": 8838.8619670755,
"base_cost_quote": 3125.547503825,
"unrealized_pnl_exit_net": -1478.0060873251
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 4396.1999999998,
"quote_asset_bal": 7236.8191118007,
"total_value_mid": 8924.9599118006,
"total_value_exit_net": 8923.6938062006,
"total_value": 8924.9599118006,
"base_cost_quote": 3080.365442675,
"unrealized_pnl_exit_net": -1393.4907482751
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 4463.6999999998,
"quote_asset_bal": 7212.5846031507,
"total_value_mid": 8859.6899031506,
"total_value_exit_net": 8858.4545741756,
"total_value": 8859.6899031506,
"base_cost_quote": 3105.4705574,
"unrealized_pnl_exit_net": -1459.6005863751
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 4520.2999999998,
"quote_asset_bal": 7193.0461594257,
"total_value_mid": 8802.2729594256,
"total_value_exit_net": 8801.0660393256,
"total_value": 8802.2729594256,
"base_cost_quote": 3125.563515825,
"unrealized_pnl_exit_net": -1517.5436359251
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 4502.0999999998,
"quote_asset_bal": 7199.2829396507,
"total_value_mid": 8865.0599396506,
"total_value_exit_net": 8863.8106069006,
"total_value": 8865.0599396506,
"base_cost_quote": 3120.550759075,
"unrealized_pnl_exit_net": -1456.0230918251
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 4475.9999999998,
"quote_asset_bal": 7209.8609578757,
"total_value_mid": 8861.5049578756,
"total_value_exit_net": 8860.2662248756,
"total_value": 8861.5049578756,
"base_cost_quote": 3110.4919206,
"unrealized_pnl_exit_net": -1460.0866536001
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 4352.4999999998,
"quote_asset_bal": 7256.3453680508,
"total_value_mid": 8897.2378680507,
"total_value_exit_net": 8896.0071986757,
"total_value": 8897.2378680507,
"base_cost_quote": 3065.29104535,
"unrealized_pnl_exit_net": -1425.6292147251
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 4352.5999999998,
"quote_asset_bal": 7257.1935397758,
"total_value_mid": 8893.7711397757,
"total_value_exit_net": 8892.5437065757,
"total_value": 8893.7711397757,
"base_cost_quote": 3065.269729375,
"unrealized_pnl_exit_net": -1429.9195625751
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 4489.7999999998,
"quote_asset_bal": 7207.6585033758,
"total_value_mid": 8819.4967033757,
"total_value_exit_net": 8818.2878247257,
"total_value": 8819.4967033757,
"base_cost_quote": 3115.4856631,
"unrealized_pnl_exit_net": -1504.8563417501
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 4545.5999999998,
"quote_asset_bal": 7187.8719394758,
"total_value_mid": 8810.6511394757,
"total_value_exit_net": 8809.4340550757,
"total_value": 8810.6511394757,
"base_cost_quote": 3135.58572685,
"unrealized_pnl_exit_net": -1514.0236112501
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 4766.7999999998,
"quote_asset_bal": 7115.3378008758,
"total_value_mid": 8650.2474008757,
"total_value_exit_net": 8649.0962186757,
"total_value": 8650.2474008757,
"base_cost_quote": 3210.84012535,
"unrealized_pnl_exit_net": -1677.0817075501
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 4959.3999999998,
"quote_asset_bal": 7056.0722108258,
"total_value_mid": 8573.6486108257,
"total_value_exit_net": 8572.5104285257,
"total_value": 8573.6486108257,
"base_cost_quote": 3271.051950375,
"unrealized_pnl_exit_net": -1754.6137326751
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 4784.8999999998,
"quote_asset_bal": 7112.2729750507,
"total_value_mid": 8595.5919750507,
"total_value_exit_net": 8594.4794858007,
"total_value": 8595.5919750507,
"base_cost_quote": 3215.87830115,
"unrealized_pnl_exit_net": -1733.6717904001
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 4901.4999999997,
"quote_asset_bal": 7077.1935631258,
"total_value_mid": 8572.1510631257,
"total_value_exit_net": 8571.0298450007,
"total_value": 8572.1510631257,
"base_cost_quote": 3250.962494575,
"unrealized_pnl_exit_net": -1757.1262127001
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 4821.5999999997,
"quote_asset_bal": 7102.7777775257,
"total_value_mid": 8597.4737775257,
"total_value_exit_net": 8596.3527555257,
"total_value": 8597.4737775257,
"base_cost_quote": 3225.9200268,
"unrealized_pnl_exit_net": -1732.3450488001
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 5116.7999999997,
"quote_asset_bal": 7017.8036137257,
"total_value_mid": 8419.8068137257,
"total_value_exit_net": 8418.7553113257,
"total_value": 8419.8068137257,
"base_cost_quote": 3311.27899805,
"unrealized_pnl_exit_net": -1910.3273004501
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 5228.2999999997,
"quote_asset_bal": 6991.6623644258,
"total_value_mid": 8377.1618644257,
"total_value_exit_net": 8376.1227398007,
"total_value": 8377.1618644257,
"base_cost_quote": 3341.343429475,
"unrealized_pnl_exit_net": -1956.8830541001
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 5229.4999999997,
"quote_asset_bal": 6994.1867751508,
"total_value_mid": 8369.5452751507,
"total_value_exit_net": 8368.5137562757,
"total_value": 8369.5452751507,
"base_cost_quote": 3341.3577402,
"unrealized_pnl_exit_net": -1967.0307590751
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 5230.1999999997,
"quote_asset_bal": 6996.1178268758,
"total_value_mid": 8366.4302268758,
"total_value_exit_net": 8365.4024925758,
"total_value": 8366.4302268758,
"base_cost_quote": 3341.34633165,
"unrealized_pnl_exit_net": -1972.0616659501
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 5594.1999999997,
"quote_asset_bal": 6908.7263449509,
"total_value_mid": 8228.9575449508,
"total_value_exit_net": 8227.9673715508,
"total_value": 8228.9575449508,
"base_cost_quote": 3431.658915325,
"unrealized_pnl_exit_net": -2112.4178887251
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 5667.6999999997,
"quote_asset_bal": 6897.6802697509,
"total_value_mid": 8246.5928697508,
"total_value_exit_net": 8245.5811853008,
"total_value": 8246.5928697508,
"base_cost_quote": 3446.6962849,
"unrealized_pnl_exit_net": -2098.7953693501
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 5730.0999999997,
"quote_asset_bal": 6884.7649521759,
"total_value_mid": 8191.2277521758,
"total_value_exit_net": 8190.2479050758,
"total_value": 8191.2277521758,
"base_cost_quote": 3461.7111376,
"unrealized_pnl_exit_net": -2156.2281847001
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 5506.2999999997,
"quote_asset_bal": 6943.8275237259,
"total_value_mid": 8375.4655237259,
"total_value_exit_net": 8374.3917952259,
"total_value": 8375.4655237259,
"base_cost_quote": 3406.528281475,
"unrealized_pnl_exit_net": -1975.9640099751
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 5604.0999999997,
"quote_asset_bal": 6920.5782832259,
"total_value_mid": 8299.1868832259,
"total_value_exit_net": 8298.1529267759,
"total_value": 8299.1868832259,
"base_cost_quote": 3431.62078675,
"unrealized_pnl_exit_net": -2054.0461432001
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 5564.1999999997,
"quote_asset_bal": 6932.769720326,
"total_value_mid": 8351.6407203259,
"total_value_exit_net": 8350.5765670759,
"total_value": 8351.6407203259,
"base_cost_quote": 3421.598375575,
"unrealized_pnl_exit_net": -2003.7915288251
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 5391.7999999997,
"quote_asset_bal": 6980.272835976,
"total_value_mid": 8398.3162359759,
"total_value_exit_net": 8397.2527034259,
"total_value": 8398.3162359759,
"base_cost_quote": 3376.450139775,
"unrealized_pnl_exit_net": -1959.4702723251
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 5608.5999999997,
"quote_asset_bal": 6927.129695601,
"total_value_mid": 8273.1936956009,
"total_value_exit_net": 8272.1841476009,
"total_value": 8273.1936956009,
"base_cost_quote": 3431.62559035,
"unrealized_pnl_exit_net": -2086.5711383501
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 5648.1999999997,
"quote_asset_bal": 6918.293189626,
"total_value_mid": 8285.1575896259,
"total_value_exit_net": 8284.1324413259,
"total_value": 8285.1575896259,
"base_cost_quote": 3441.66111135,
"unrealized_pnl_exit_net": -2075.8218596501
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 5692.1999999997,
"quote_asset_bal": 6909.967708951,
"total_value_mid": 8247.6347089509,
"total_value_exit_net": 8246.6314587009,
"total_value": 8247.6347089509,
"base_cost_quote": 3451.677518025,
"unrealized_pnl_exit_net": -2115.0137682751
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 5692.0999999997,
"quote_asset_bal": 6910.737414451,
"total_value_mid": 8242.6888144509,
"total_value_exit_net": 8241.6898509009,
"total_value": 8242.6888144509,
"base_cost_quote": 3451.696131975,
"unrealized_pnl_exit_net": -2120.7436955251
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 5691.8999999997,
"quote_asset_bal": 6911.521329801,
"total_value_mid": 8254.8097298009,
"total_value_exit_net": 8253.8022635009,
"total_value": 8254.8097298009,
"base_cost_quote": 3451.691728675,
"unrealized_pnl_exit_net": -2109.4107949751
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 5586.9999999997,
"quote_asset_bal": 6937.530455851,
"total_value_mid": 8323.1064558509,
"total_value_exit_net": 8322.0672738509,
"total_value": 8323.1064558509,
"base_cost_quote": 3426.6044273,
"unrealized_pnl_exit_net": -2042.0676093001
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 5322.2999999997,
"quote_asset_bal": 7009.411920376,
"total_value_mid": 8462.3998203759,
"total_value_exit_net": 8461.3100794509,
"total_value": 8462.3998203759,
"base_cost_quote": 3356.371692225,
"unrealized_pnl_exit_net": -1904.4735331501
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 4808.5999999996,
"quote_asset_bal": 7171.726336401,
"total_value_mid": 8792.2245364008,
"total_value_exit_net": 8791.0091627508,
"total_value": 8792.2245364008,
"base_cost_quote": 3195.702880925,
"unrealized_pnl_exit_net": -1576.4200545751
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 4810.0999999996,
"quote_asset_bal": 7186.6912088759,
"total_value_mid": 8639.3414088758,
"total_value_exit_net": 8638.2519212258,
"total_value": 8639.3414088758,
"base_cost_quote": 3185.61482055,
"unrealized_pnl_exit_net": -1734.0541082001
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 4632.5999999996,
"quote_asset_bal": 7242.2465481759,
"total_value_mid": 8701.5155481758,
"total_value_exit_net": 8700.4210964258,
"total_value": 8701.5155481758,
"base_cost_quote": 3130.44347305,
"unrealized_pnl_exit_net": -1672.2689248001
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 4744.7999999996,
"quote_asset_bal": 7209.3479451759,
"total_value_mid": 8689.7255451757,
"total_value_exit_net": 8688.6152619757,
"total_value": 8689.7255451757,
"base_cost_quote": 3165.596718225,
"unrealized_pnl_exit_net": -1686.3294014251
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 4650.5999999996,
"quote_asset_bal": 7242.4424538508,
"total_value_mid": 8763.1886538507,
"total_value_exit_net": 8762.0480942007,
"total_value": 8763.1886538507,
"base_cost_quote": 3135.443119975,
"unrealized_pnl_exit_net": -1615.8374796251
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 4767.0999999996,
"quote_asset_bal": 7205.8842707259,
"total_value_mid": 8798.0956707257,
"total_value_exit_net": 8796.9015121757,
"total_value": 8798.0956707257,
"base_cost_quote": 3175.64374785,
"unrealized_pnl_exit_net": -1584.6265064001
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 4783.2999999996,
"quote_asset_bal": 7204.2383508258,
"total_value_mid": 8777.9440508257,
"total_value_exit_net": 8776.7637715507,
"total_value": 8777.9440508257,
"base_cost_quote": 3180.6332872,
"unrealized_pnl_exit_net": -1608.1078664751
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 4801.1999999996,
"quote_asset_bal": 7202.9102112508,
"total_value_mid": 8715.2882112507,
"total_value_exit_net": 8714.1539277507,
"total_value": 8715.2882112507,
"base_cost_quote": 3185.663557075,
"unrealized_pnl_exit_net": -1674.4198405751
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 4786.8999999996,
"quote_asset_bal": 7210.4611356757,
"total_value_mid": 8723.1215356756,
"total_value_exit_net": 8721.9870403756,
"total_value": 8723.1215356756,
"base_cost_quote": 3180.685426275,
"unrealized_pnl_exit_net": -1669.1595215751
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 4835.2999999995,
"quote_asset_bal": 7197.2594148507,
"total_value_mid": 8705.8730148506,
"total_value_exit_net": 8704.7415546506,
"total_value": 8705.8730148506,
"base_cost_quote": 3195.707484375,
"unrealized_pnl_exit_net": -1688.2253445751
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 4741.7999999995,
"quote_asset_bal": 7229.0923959257,
"total_value_mid": 8732.2429959255,
"total_value_exit_net": 8731.1156329755,
"total_value": 8732.2429959255,
"base_cost_quote": 3165.609527825,
"unrealized_pnl_exit_net": -1663.5862907751
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 4710.4999999995,
"quote_asset_bal": 7242.0138602257,
"total_value_mid": 8763.5053602255,
"total_value_exit_net": 8762.3642416005,
"total_value": 8763.5053602255,
"base_cost_quote": 3155.571805175,
"unrealized_pnl_exit_net": -1635.2214238001
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 4820.6999999995,
"quote_asset_bal": 7208.6640095756,
"total_value_mid": 8712.7224095755,
"total_value_exit_net": 8711.5943657755,
"total_value": 8712.7224095755,
"base_cost_quote": 3190.7092385,
"unrealized_pnl_exit_net": -1687.7788823001
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 5075.2999999995,
"quote_asset_bal": 7133.8251996256,
"total_value_mid": 8565.0597996255,
"total_value_exit_net": 8563.9863736755,
"total_value": 8565.0597996255,
"base_cost_quote": 3266.009771575,
"unrealized_pnl_exit_net": -1835.8485975251
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 5119.7999999995,
"quote_asset_bal": 7124.5437805756,
"total_value_mid": 8542.7283805755,
"total_value_exit_net": 8541.6647421255,
"total_value": 8542.7283805755,
"base_cost_quote": 3276.026278325,
"unrealized_pnl_exit_net": -1858.9053167751
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 5104.2999999995,
"quote_asset_bal": 7130.0720303506,
"total_value_mid": 8559.2760303505,
"total_value_exit_net": 8558.2041273505,
"total_value": 8559.2760303505,
"base_cost_quote": 3271.000511825,
"unrealized_pnl_exit_net": -1842.8684148252
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 5144.3999999994,
"quote_asset_bal": 7123.5947860257,
"total_value_mid": 8543.4491860255,
"total_value_exit_net": 8542.3842952255,
"total_value": 8543.4491860255,
"base_cost_quote": 3281.0449395,
"unrealized_pnl_exit_net": -1862.2554303002
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 5212.3999999994,
"quote_asset_bal": 7110.2582027007,
"total_value_mid": 8512.3938027005,
"total_value_exit_net": 8511.3422010005,
"total_value": 8512.3938027005,
"base_cost_quote": 3296.1010231,
"unrealized_pnl_exit_net": -1895.0170248002
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 4936.1999999993,
"quote_asset_bal": 7190.5902295507,
"total_value_mid": 8681.3226295505,
"total_value_exit_net": 8680.2045802505,
"total_value": 8681.3226295505,
"base_cost_quote": 3215.806347225,
"unrealized_pnl_exit_net": -1726.1919965252
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 4679.8999999993,
"quote_asset_bal": 7274.6340124007,
"total_value_mid": 8809.6412124004,
"total_value_exit_net": 8808.4899570004,
"total_value": 8809.6412124004,
"base_cost_quote": 3135.47924705,
"unrealized_pnl_exit_net": -1601.6233024502
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 4677.4999999993,
"quote_asset_bal": 7278.0465033507,
"total_value_mid": 8919.8490033504,
"total_value_exit_net": 8918.6176514754,
"total_value": 8919.8490033504,
"base_cost_quote": 3135.473142475,
"unrealized_pnl_exit_net": -1494.9019943502
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 4721.0999999993,
"quote_asset_bal": 7264.2780191007,
"total_value_mid": 8864.7309191005,
"total_value_exit_net": 8863.5305794255,
"total_value": 8864.7309191005,
"base_cost_quote": 3150.5467392,
"unrealized_pnl_exit_net": -1551.2941788752
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 4705.0999999993,
"quote_asset_bal": 7270.4692698507,
"total_value_mid": 8898.4338698505,
"total_value_exit_net": 8897.2128964005,
"total_value": 8898.4338698505,
"base_cost_quote": 3145.565105775,
"unrealized_pnl_exit_net": -1518.8214792252
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 4634.6999999993,
"quote_asset_bal": 7296.6955758007,
"total_value_mid": 8988.3610758005,
"total_value_exit_net": 8987.0923266755,
"total_value": 8988.3610758005,
"base_cost_quote": 3120.403848975,
"unrealized_pnl_exit_net": -1430.0070981002
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 4763.5999999993,
"quote_asset_bal": 7252.2775322257,
"total_value_mid": 8886.1923322255,
"total_value_exit_net": 8884.9668961255,
"total_value": 8886.1923322255,
"base_cost_quote": 3165.576903375,
"unrealized_pnl_exit_net": -1532.8875394752
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 4949.2999999993,
"quote_asset_bal": 7193.9697715757,
"total_value_mid": 8767.8471715755,
"total_value_exit_net": 8766.6667635255,
"total_value": 8767.8471715755,
"base_cost_quote": 3225.787827725,
"unrealized_pnl_exit_net": -1653.0908357752
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 5063.9999999993,
"quote_asset_bal": 7160.9566305507,
"total_value_mid": 8710.5406305505,
"total_value_exit_net": 8709.3784425505,
"total_value": 8710.5406305505,
"base_cost_quote": 3260.8886336,
"unrealized_pnl_exit_net": -1712.4668216002
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 5199.2999999993,
"quote_asset_bal": 7121.3340221507,
"total_value_mid": 8660.3268221505,
"total_value_exit_net": 8659.1725775505,
"total_value": 8660.3268221505,
"base_cost_quote": 3301.031618275,
"unrealized_pnl_exit_net": -1763.1930628752
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 4985.4999999993,
"quote_asset_bal": 7187.4624344507,
"total_value_mid": 8737.9529344504,
"total_value_exit_net": 8736.7900665754,
"total_value": 8737.9529344504,
"base_cost_quote": 3235.8394608,
"unrealized_pnl_exit_net": -1686.5118286752
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 5136.2999999993,
"quote_asset_bal": 7142.3609736257,
"total_value_mid": 8672.9783736254,
"total_value_exit_net": 8671.8304105754,
"total_value": 8672.9783736254,
"base_cost_quote": 3281.01591775,
"unrealized_pnl_exit_net": -1751.5464808002
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 5172.7999999993,
"quote_asset_bal": 7132.5147514506,
"total_value_mid": 8689.5275514504,
"total_value_exit_net": 8688.3597918504,
"total_value": 8689.5275514504,
"base_cost_quote": 3291.081561325,
"unrealized_pnl_exit_net": -1735.2365209252
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 5090.4999999993,
"quote_asset_bal": 7157.9594634256,
"total_value_mid": 8725.8334634254,
"total_value_exit_net": 8724.6575579254,
"total_value": 8725.8334634254,
"base_cost_quote": 3265.957732575,
"unrealized_pnl_exit_net": -1699.2596380752
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 4946.5999999993,
"quote_asset_bal": 7205.2440837756,
"total_value_mid": 8817.8356837754,
"total_value_exit_net": 8816.6262400754,
"total_value": 8817.8356837754,
"base_cost_quote": 3220.790882825,
"unrealized_pnl_exit_net": -1609.4087265252
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 5154.2999999993,
"quote_asset_bal": 7141.5844535756,
"total_value_mid": 8672.4115535754,
"total_value_exit_net": 8671.2634332504,
"total_value": 8672.4115535754,
"base_cost_quote": 3285.9618244,
"unrealized_pnl_exit_net": -1756.2828447252
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 5222.3999999993,
"quote_asset_bal": 7121.7977073506,
"total_value_mid": 8662.4057073504,
"total_value_exit_net": 8661.2502513504,
"total_value": 8662.4057073504,
"base_cost_quote": 3306.04747735,
"unrealized_pnl_exit_net": -1766.5949333502
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 5241.5999999993,
"quote_asset_bal": 7117.7533840756,
"total_value_mid": 8669.2669840754,
"total_value_exit_net": 8668.1033488754,
"total_value": 8669.2669840754,
"base_cost_quote": 3311.087954875,
"unrealized_pnl_exit_net": -1760.7379900752
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 5310.5999999993,
"quote_asset_bal": 7097.9758587256,
"total_value_mid": 8632.7392587254,
"total_value_exit_net": 8631.5881861754,
"total_value": 8632.7392587254,
"base_cost_quote": 3331.15309245,
"unrealized_pnl_exit_net": -1797.5407650002
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 5259.2999999993,
"quote_asset_bal": 7113.3972925756,
"total_value_mid": 8659.6314925754,
"total_value_exit_net": 8658.4718169254,
"total_value": 8659.6314925754,
"base_cost_quote": 3316.099310575,
"unrealized_pnl_exit_net": -1771.0247862252
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 5297.6999999992,
"quote_asset_bal": 7103.3955530506,
"total_value_mid": 8639.7285530504,
"total_value_exit_net": 8638.5763033004,
"total_value": 8639.7285530504,
"base_cost_quote": 3326.138033975,
"unrealized_pnl_exit_net": -1790.9572837252
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 5373.9999999992,
"quote_asset_bal": 7083.7878629006,
"total_value_mid": 8577.7598629004,
"total_value_exit_net": 8576.6393839004,
"total_value": 8577.7598629004,
"base_cost_quote": 3346.2133792,
"unrealized_pnl_exit_net": -1853.3618582002
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 5571.1999999992,
"quote_asset_bal": 7039.1123268007,
"total_value_mid": 8420.7699268005,
"total_value_exit_net": 8419.7336836005,
"total_value": 8420.7699268005,
"base_cost_quote": 3396.38237775,
"unrealized_pnl_exit_net": -2015.7610209502
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 5468.7999999992,
"quote_asset_bal": 7067.1453255757,
"total_value_mid": 8445.2829255755,
"total_value_exit_net": 8444.2493223755,
"total_value": 8445.2829255755,
"base_cost_quote": 3371.317893475,
"unrealized_pnl_exit_net": -1994.2138966752
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 5448.8999999992,
"quote_asset_bal": 7076.7013351007,
"total_value_mid": 8504.3131351005,
"total_value_exit_net": 8503.2424262505,
"total_value": 8504.3131351005,
"base_cost_quote": 3366.291726675,
"unrealized_pnl_exit_net": -1939.7506355252
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 5392.6999999992,
"quote_asset_bal": 7095.2713139508,
"total_value_mid": 8535.1222139506,
"total_value_exit_net": 8534.0423257756,
"total_value": 8535.1222139506,
"base_cost_quote": 3351.251454925,
"unrealized_pnl_exit_net": -1912.4804431002
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 5415.2999999992,
"quote_asset_bal": 7091.1676700758,
"total_value_mid": 8553.2986700756,
"total_value_exit_net": 8552.2020718256,
"total_value": 8553.2986700756,
"base_cost_quote": 3356.272017525,
"unrealized_pnl_exit_net": -1895.2376157752
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 5495.9999999991,
"quote_asset_bal": 7071.9316796508,
"total_value_mid": 8517.3796796506,
"total_value_exit_net": 8516.2955936506,
"total_value": 8517.3796796506,
"base_cost_quote": 3376.318841375,
"unrealized_pnl_exit_net": -1931.9549273752
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 5576.9999999991,
"quote_asset_bal": 7054.7305170259,
"total_value_mid": 8443.4035170257,
"total_value_exit_net": 8442.3620122757,
"total_value": 8443.4035170257,
"base_cost_quote": 3396.377874375,
"unrealized_pnl_exit_net": -2008.7463791252
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 5575.4999999991,
"quote_asset_bal": 7056.9707074009,
"total_value_mid": 8478.7232074007,
"total_value_exit_net": 8477.6568930257,
"total_value": 8478.7232074007,
"base_cost_quote": 3396.4029932,
"unrealized_pnl_exit_net": -1975.7168075752
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 5422.3999999991,
"quote_asset_bal": 7099.0240885509,
"total_value_mid": 8530.5376885507,
"total_value_exit_net": 8529.4640533507,
"total_value": 8530.5376885507,
"base_cost_quote": 3356.2765209,
"unrealized_pnl_exit_net": -1925.8365561002
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 5498.6999999991,
"quote_asset_bal": 7080.6138348759,
"total_value_mid": 8510.2758348757,
"total_value_exit_net": 8509.2035883757,
"total_value": 8510.2758348757,
"base_cost_quote": 3376.3387563,
"unrealized_pnl_exit_net": -1947.7490028002
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 5331.3999999991,
"quote_asset_bal": 7127.645970776,
"total_value_mid": 8609.7751707757,
"total_value_exit_net": 8608.6635738757,
"total_value": 8609.7751707757,
"base_cost_quote": 3331.19872665,
"unrealized_pnl_exit_net": -1850.1811235502
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 5262.5999999991,
"quote_asset_bal": 7148.216109701,
"total_value_mid": 8658.5823097007,
"total_value_exit_net": 8657.4495350507,
"total_value": 8658.5823097007,
"base_cost_quote": 3311.106168525,
"unrealized_pnl_exit_net": -1801.8727431753
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 5338.3999999991,
"quote_asset_bal": 7128.667194201,
"total_value_mid": 8564.6967942007,
"total_value_exit_net": 8563.6197720007,
"total_value": 8564.6967942007,
"base_cost_quote": 3331.16590205,
"unrealized_pnl_exit_net": -1896.2133242502
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 5416.6999999991,
"quote_asset_bal": 7110.408098176,
"total_value_mid": 8464.5830981758,
"total_value_exit_net": 8463.5674669258,
"total_value": 8464.5830981758,
"base_cost_quote": 3351.218430175,
"unrealized_pnl_exit_net": -1998.0590614252
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 5602.5999999991,
"quote_asset_bal": 7066.239350701,
"total_value_mid": 8450.0815507008,
"total_value_exit_net": 8449.0436690508,
"total_value": 8450.0815507008,
"base_cost_quote": 3396.3721701,
"unrealized_pnl_exit_net": -2013.5678517502
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 5623.2999999991,
"quote_asset_bal": 7061.449155601,
"total_value_mid": 8427.9110556008,
"total_value_exit_net": 8426.8862091758,
"total_value": 8427.9110556008,
"base_cost_quote": 3401.38412625,
"unrealized_pnl_exit_net": -2035.9470726752
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 5602.5999999991,
"quote_asset_bal": 7066.671246601,
"total_value_mid": 8444.9108466008,
"total_value_exit_net": 8443.8771669008,
"total_value": 8444.9108466008,
"base_cost_quote": 3396.37156965,
"unrealized_pnl_exit_net": -2019.1656493502
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 5602.2999999991,
"quote_asset_bal": 7068.679503951,
"total_value_mid": 8430.0384039508,
"total_value_exit_net": 8429.0173847758,
"total_value": 8430.0384039508,
"base_cost_quote": 3396.39478705,
"unrealized_pnl_exit_net": -2036.0569062252
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 5664.8999999991,
"quote_asset_bal": 7054.219111901,
"total_value_mid": 8385.4706119008,
"total_value_exit_net": 8384.4721732758,
"total_value": 8385.4706119008,
"base_cost_quote": 3411.406737575,
"unrealized_pnl_exit_net": -2081.1536762002
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 5665.6999999991,
"quote_asset_bal": 7055.789487451,
"total_value_mid": 8404.2260874508,
"total_value_exit_net": 8403.2147600008,
"total_value": 8404.2260874508,
"base_cost_quote": 3411.4370603,
"unrealized_pnl_exit_net": -2064.0117877502
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 5729.4999999991,
"quote_asset_bal": 7042.357610401,
"total_value_mid": 8354.4131104008,
"total_value_exit_net": 8353.4290687758,
"total_value": 8354.4131104008,
"base_cost_quote": 3426.4671244,
"unrealized_pnl_exit_net": -2115.3956660252
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 5751.5999999991,
"quote_asset_bal": 7038.728656251,
"total_value_mid": 8338.5902562508,
"total_value_exit_net": 8337.6153600508,
"total_value": 8338.5902562508,
"base_cost_quote": 3431.490188875,
"unrealized_pnl_exit_net": -2132.6034850752
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 5794.8999999991,
"quote_asset_bal": 7029.833311951,
"total_value_mid": 8281.5317119508,
"total_value_exit_net": 8280.5929381508,
"total_value": 8281.5317119508,
"base_cost_quote": 3441.54222225,
"unrealized_pnl_exit_net": -2190.7825960502
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 5964.8999999991,
"quote_asset_bal": 6996.084267201,
"total_value_mid": 8206.9589672009,
"total_value_exit_net": 8206.0508111759,
"total_value": 8206.9589672009,
"base_cost_quote": 3476.63692355,
"unrealized_pnl_exit_net": -2266.6703795752
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 5774.3999999991,
"quote_asset_bal": 7037.298430851,
"total_value_mid": 8336.5384308508,
"total_value_exit_net": 8335.5640008508,
"total_value": 8336.5384308508,
"base_cost_quote": 3436.5210592,
"unrealized_pnl_exit_net": -2138.2554892002
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 5730.4999999991,
"quote_asset_bal": 7050.034270301,
"total_value_mid": 8362.3187703008,
"total_value_exit_net": 8361.3345569258,
"total_value": 8362.3187703008,
"base_cost_quote": 3426.483636775,
"unrealized_pnl_exit_net": -2115.1833501502
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 5730.3999999991,
"quote_asset_bal": 7052.885562176,
"total_value_mid": 8347.9559621758,
"total_value_exit_net": 8346.9846593758,
"total_value": 8347.9559621758,
"base_cost_quote": 3426.4835367,
"unrealized_pnl_exit_net": -2132.3844395002
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 5732.9999999991,
"quote_asset_bal": 7057.0052354261,
"total_value_mid": 8329.7312354259,
"total_value_exit_net": 8328.7766909259,
"total_value": 8329.7312354259,
"base_cost_quote": 3426.50815515,
"unrealized_pnl_exit_net": -2154.7366996502
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 5710.6999999991,
"quote_asset_bal": 7065.0118282761,
"total_value_mid": 8344.2086282759,
"total_value_exit_net": 8343.2492306759,
"total_value": 8344.2086282759,
"base_cost_quote": 3421.488092925,
"unrealized_pnl_exit_net": -2143.2506905252
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 5688.0999999991,
"quote_asset_bal": 7071.4102267511,
"total_value_mid": 8362.6089267508,
"total_value_exit_net": 8361.6405277258,
"total_value": 8362.6089267508,
"base_cost_quote": 3416.465929125,
"unrealized_pnl_exit_net": -2126.2356281502
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 5665.8999999991,
"quote_asset_bal": 7078.244490976,
"total_value_mid": 8426.7286909758,
"total_value_exit_net": 8425.7173278258,
"total_value": 8426.7286909758,
"base_cost_quote": 3411.445966975,
"unrealized_pnl_exit_net": -2063.9731301252
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 5729.5999999991,
"quote_asset_bal": 7065.8322243011,
"total_value_mid": 8389.3698243009,
"total_value_exit_net": 8388.3771711009,
"total_value": 8389.3698243009,
"base_cost_quote": 3426.46972635,
"unrealized_pnl_exit_net": -2103.9247795502
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 5840.3999999991,
"quote_asset_bal": 7044.5421735511,
"total_value_mid": 8341.1109735509,
"total_value_exit_net": 8340.1385469509,
"total_value": 8341.1109735509,
"base_cost_quote": 3451.56813605,
"unrealized_pnl_exit_net": -2155.9717626502
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 5560.5999999991,
"quote_asset_bal": 7111.7002296761,
"total_value_mid": 8468.4866296759,
"total_value_exit_net": 8467.4690398759,
"total_value": 8468.4866296759,
"base_cost_quote": 3386.3542623,
"unrealized_pnl_exit_net": -2030.5854521002
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 5560.3999999991,
"quote_asset_bal": 7112.3257884261,
"total_value_mid": 8452.3821884259,
"total_value_exit_net": 8451.3771461259,
"total_value": 8452.3821884259,
"base_cost_quote": 3386.34965885,
"unrealized_pnl_exit_net": -2047.2983011502
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 5821.1999999991,
"quote_asset_bal": 7053.4207699011,
"total_value_mid": 8345.7271699009,
"total_value_exit_net": 8344.7579401009,
"total_value": 8345.7271699009,
"base_cost_quote": 3446.54397075,
"unrealized_pnl_exit_net": -2155.2068005502
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 5585.7999999991,
"quote_asset_bal": 7111.5877044261,
"total_value_mid": 8368.3927044259,
"total_value_exit_net": 8367.4501006759,
"total_value": 8368.3927044259,
"base_cost_quote": 3391.376326025,
"unrealized_pnl_exit_net": -2135.5139297752
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 5627.4999999991,
"quote_asset_bal": 7103.8291129761,
"total_value_mid": 8392.5266129759,
"total_value_exit_net": 8391.5600898509,
"total_value": 8392.5266129759,
"base_cost_quote": 3401.38973045,
"unrealized_pnl_exit_net": -2113.6587535752
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 5625.9999999991,
"quote_asset_bal": 7106.7631940511,
"total_value_mid": 8411.9951940509,
"total_value_exit_net": 8411.0162700509,
"total_value": 8411.9951940509,
"base_cost_quote": 3401.38292535,
"unrealized_pnl_exit_net": -2097.1298493502
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 5442.2999999991,
"quote_asset_bal": 7156.1757848761,
"total_value_mid": 8473.2123848759,
"total_value_exit_net": 8472.2246074259,
"total_value": 8473.2123848759,
"base_cost_quote": 3356.239593225,
"unrealized_pnl_exit_net": -2040.1907706752
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 5380.4999999991,
"quote_asset_bal": 7172.5327006761,
"total_value_mid": 8533.7992006759,
"total_value_exit_net": 8532.7782508009,
"total_value": 8533.7992006759,
"base_cost_quote": 3341.218135575,
"unrealized_pnl_exit_net": -1980.9725854502
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 5343.6999999991,
"quote_asset_bal": 7188.9491925512,
"total_value_mid": 8674.4977925509,
"total_value_exit_net": 8673.3836311009,
"total_value": 8674.4977925509,
"base_cost_quote": 3331.187818475,
"unrealized_pnl_exit_net": -1846.7533799253
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 5385.7999999991,
"quote_asset_bal": 7179.2983798762,
"total_value_mid": 8676.5507798759,
"total_value_exit_net": 8675.4278405759,
"total_value": 8676.5507798759,
"base_cost_quote": 3341.202323725,
"unrealized_pnl_exit_net": -1845.0728630253
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 5336.599999999,
"quote_asset_bal": 7195.7559342012,
"total_value_mid": 8695.3405342009,
"total_value_exit_net": 8694.2158457509,
"total_value": 8695.3405342009,
"base_cost_quote": 3326.183868325,
"unrealized_pnl_exit_net": -1827.7239567753
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 5266.899999999,
"quote_asset_bal": 7216.6478289012,
"total_value_mid": 8728.2481289009,
"total_value_exit_net": 8727.1144286759,
"total_value": 8728.2481289009,
"base_cost_quote": 3306.104620175,
"unrealized_pnl_exit_net": -1795.6380204003
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 5252.699999999,
"quote_asset_bal": 7221.6598965762,
"total_value_mid": 8718.6793965759,
"total_value_exit_net": 8717.5566319509,
"total_value": 8718.6793965759,
"base_cost_quote": 3301.100269725,
"unrealized_pnl_exit_net": -1805.2035343503
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 5255.699999999,
"quote_asset_bal": 7222.8928600012,
"total_value_mid": 8815.3699600009,
"total_value_exit_net": 8814.1756021759,
"total_value": 8815.3699600009,
"base_cost_quote": 3301.113079325,
"unrealized_pnl_exit_net": -1709.8303371503
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 5290.899999999,
"quote_asset_bal": 7213.1707395262,
"total_value_mid": 8779.2771395259,
"total_value_exit_net": 8778.1025597259,
"total_value": 8779.2771395259,
"base_cost_quote": 3311.127984875,
"unrealized_pnl_exit_net": -1746.1961646753
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 5158.899999999,
"quote_asset_bal": 7254.0675524511,
"total_value_mid": 8822.3731524508,
"total_value_exit_net": 8821.1969232508,
"total_value": 8822.3731524508,
"base_cost_quote": 3270.956478825,
"unrealized_pnl_exit_net": -1703.8271080253
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 5278.9999999989,
"quote_asset_bal": 7218.8866496511,
"total_value_mid": 8797.3076496508,
"total_value_exit_net": 8796.1238339008,
"total_value": 8797.3076496508,
"base_cost_quote": 3306.120832325,
"unrealized_pnl_exit_net": -1728.8836480753
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 5164.7999999989,
"quote_asset_bal": 7254.2987233261,
"total_value_mid": 8845.0571233258,
"total_value_exit_net": 8843.8640545258,
"total_value": 8845.0571233258,
"base_cost_quote": 3270.97078955,
"unrealized_pnl_exit_net": -1681.4054583503
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 5007.7999999989,
"quote_asset_bal": 7306.5738136761,
"total_value_mid": 8964.1556136758,
"total_value_exit_net": 8962.9124273258,
"total_value": 8964.1556136758,
"base_cost_quote": 3220.8402198,
"unrealized_pnl_exit_net": -1564.5016061504
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 4962.7999999989,
"quote_asset_bal": 7323.7352822761,
"total_value_mid": 8986.2732822758,
"total_value_exit_net": 8985.0263787758,
"total_value": 8986.2732822758,
"base_cost_quote": 3205.817861475,
"unrealized_pnl_exit_net": -1544.5267649754
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 5007.8999999989,
"quote_asset_bal": 7310.8346140011,
"total_value_mid": 8958.4337140008,
"total_value_exit_net": 8957.1980146758,
"total_value": 8958.4337140008,
"base_cost_quote": 3220.88004965,
"unrealized_pnl_exit_net": -1574.5166489753
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 5268.2999999989,
"quote_asset_bal": 7231.5147267761,
"total_value_mid": 8812.0047267758,
"total_value_exit_net": 8810.8193592758,
"total_value": 8812.0047267758,
"base_cost_quote": 3301.20144555,
"unrealized_pnl_exit_net": -1721.8968130503
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 5252.7999999989,
"quote_asset_bal": 7236.7203829511,
"total_value_mid": 8765.2851829508,
"total_value_exit_net": 8764.1387593508,
"total_value": 8765.2851829508,
"base_cost_quote": 3296.19369255,
"unrealized_pnl_exit_net": -1768.7753161503
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 5219.0999999989,
"quote_asset_bal": 7247.0654640511,
"total_value_mid": 8812.7954640507,
"total_value_exit_net": 8811.6211665507,
"total_value": 8812.7954640507,
"base_cost_quote": 3286.13975775,
"unrealized_pnl_exit_net": -1721.5840552503
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 5169.5999999989,
"quote_asset_bal": 7262.2384513261,
"total_value_mid": 8807.9488513257,
"total_value_exit_net": 8806.7895685257,
"total_value": 8807.9488513257,
"base_cost_quote": 3271.0682626,
"unrealized_pnl_exit_net": -1726.5171454003
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 5072.8999999989,
"quote_asset_bal": 7292.767467776,
"total_value_mid": 8875.5122677757,
"total_value_exit_net": 8874.3252091757,
"total_value": 8875.5122677757,
"base_cost_quote": 3240.972207475,
"unrealized_pnl_exit_net": -1659.4144660753
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 5391.8999999989,
"quote_asset_bal": 7198.829430951,
"total_value_mid": 8746.3047309507,
"total_value_exit_net": 8745.1441244757,
"total_value": 8746.3047309507,
"base_cost_quote": 3336.3227668,
"unrealized_pnl_exit_net": -1790.0080732753
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 5274.4999999989,
"quote_asset_bal": 7234.312168776,
"total_value_mid": 8785.0151687757,
"total_value_exit_net": 8783.8521415257,
"total_value": 8785.0151687757,
"base_cost_quote": 3301.172523875,
"unrealized_pnl_exit_net": -1751.6325511253
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 5275.0999999989,
"quote_asset_bal": 7234.344947301,
"total_value_mid": 8774.6741473007,
"total_value_exit_net": 8773.5189004007,
"total_value": 8774.6741473007,
"base_cost_quote": 3301.182531375,
"unrealized_pnl_exit_net": -1762.0085782753
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 5564.2999999989,
"quote_asset_bal": 7155.395031301,
"total_value_mid": 8668.8846313007,
"total_value_exit_net": 8667.7495141007,
"total_value": 8668.8846313007,
"base_cost_quote": 3381.486314075,
"unrealized_pnl_exit_net": -1869.1318312753
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 5593.0999999988,
"quote_asset_bal": 7153.6066572761,
"total_value_mid": 8658.1505572758,
"total_value_exit_net": 8657.0221493508,
"total_value": 8658.1505572758,
"base_cost_quote": 3386.4927661,
"unrealized_pnl_exit_net": -1883.0772740253
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 5660.4999999987,
"quote_asset_bal": 7140.4931389512,
"total_value_mid": 8612.2231389509,
"total_value_exit_net": 8611.1193414509,
"total_value": 8612.2231389509,
"base_cost_quote": 3401.558556975,
"unrealized_pnl_exit_net": -1930.9323544753
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 5554.3999999987,
"quote_asset_bal": 7172.2786652513,
"total_value_mid": 8677.521065251,
"total_value_exit_net": 8676.392133451,
"total_value": 8677.521065251,
"base_cost_quote": 3371.45009255,
"unrealized_pnl_exit_net": -1867.3366243503
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 5533.3999999986,
"quote_asset_bal": 7182.2283827513,
"total_value_mid": 8703.913382751,
"total_value_exit_net": 8702.772119001,
"total_value": 8703.913382751,
"base_cost_quote": 3361.425079425,
"unrealized_pnl_exit_net": -1840.8813431754
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 5580.0999999986,
"quote_asset_bal": 7172.6643747764,
"total_value_mid": 8679.291374776,
"total_value_exit_net": 8678.161404526,
"total_value": 8679.291374776,
"base_cost_quote": 3371.44288715,
"unrealized_pnl_exit_net": -1865.9458574004
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 5567.4999999985,
"quote_asset_bal": 7178.3627395264,
"total_value_mid": 8703.857739526,
"total_value_exit_net": 8702.713618276,
"total_value": 8703.857739526,
"base_cost_quote": 3366.4593523,
"unrealized_pnl_exit_net": -1842.1084735504
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 5408.6999999985,
"quote_asset_bal": 7223.8450147514,
"total_value_mid": 8786.959314751,
"total_value_exit_net": 8785.786979026,
"total_value": 8786.959314751,
"base_cost_quote": 3321.283195575,
"unrealized_pnl_exit_net": -1759.3412313004
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 5323.0999999985,
"quote_asset_bal": 7249.2370745014,
"total_value_mid": 8814.2284745009,
"total_value_exit_net": 8813.0547309509,
"total_value": 8814.2284745009,
"base_cost_quote": 3296.17647965,
"unrealized_pnl_exit_net": -1732.3588232004
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 5272.1999999985,
"quote_asset_bal": 7264.7320332514,
"total_value_mid": 8878.0252332509,
"total_value_exit_net": 8876.8152633509,
"total_value": 8878.0252332509,
"base_cost_quote": 3281.12199725,
"unrealized_pnl_exit_net": -1669.0387671505
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 5272.6999999985,
"quote_asset_bal": 7265.1748264014,
"total_value_mid": 8868.0756264009,
"total_value_exit_net": 8866.8734508009,
"total_value": 8868.0756264009,
"base_cost_quote": 3281.094876925,
"unrealized_pnl_exit_net": -1679.3962525254
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 5374.4999999985,
"quote_asset_bal": 7235.2705038514,
"total_value_mid": 8809.9990038509,
"total_value_exit_net": 8808.8179574759,
"total_value": 8809.9990038509,
"base_cost_quote": 3311.196636325,
"unrealized_pnl_exit_net": -1737.6491827004
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 5195.2999999985,
"quote_asset_bal": 7291.2331437764,
"total_value_mid": 8917.3620437759,
"total_value_exit_net": 8916.1424471009,
"total_value": 8917.3620437759,
"base_cost_quote": 3256.03439565,
"unrealized_pnl_exit_net": -1631.1250923255
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 3829.0999999985,
"quote_asset_bal": 7886.4749807263,
"total_value_mid": 9609.5699807257,
"total_value_exit_net": 9608.2776594757,
"total_value": 9609.5699807257,
"base_cost_quote": 2668.1139858,
"unrealized_pnl_exit_net": -946.3113070507
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 3889.6999999985,
"quote_asset_bal": 7875.2176968013,
"total_value_mid": 9372.7521968008,
"total_value_exit_net": 9371.6290459258,
"total_value": 9372.7521968008,
"base_cost_quote": 2688.20364175,
"unrealized_pnl_exit_net": -1191.7922926256
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 4012.2999999985,
"quote_asset_bal": 7833.0816261764,
"total_value_mid": 9285.5342261758,
"total_value_exit_net": 9284.4448867258,
"total_value": 9285.5342261758,
"base_cost_quote": 2733.4409443,
"unrealized_pnl_exit_net": -1282.0776837505
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 4053.8999999985,
"quote_asset_bal": 7818.8989645764,
"total_value_mid": 9249.9256645759,
"total_value_exit_net": 9248.8523945509,
"total_value": 9249.9256645759,
"base_cost_quote": 2748.480115225,
"unrealized_pnl_exit_net": -1318.5266852505
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 3998.9999999985,
"quote_asset_bal": 7839.8068766014,
"total_value_mid": 9291.4438766009,
"total_value_exit_net": 9290.3551488509,
"total_value": 9291.4438766009,
"base_cost_quote": 2728.44820255,
"unrealized_pnl_exit_net": -1277.8999303005
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 4189.3999999985,
"quote_asset_bal": 7777.6256004264,
"total_value_mid": 9134.9912004259,
"total_value_exit_net": 9133.9731762259,
"total_value": 9134.9912004259,
"base_cost_quote": 2793.68669475,
"unrealized_pnl_exit_net": -1437.3391189505
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 4101.7999999985,
"quote_asset_bal": 7810.7180494264,
"total_value_mid": 9131.4976494259,
"total_value_exit_net": 9130.5070647259,
"total_value": 9131.4976494259,
"base_cost_quote": 2763.5358986,
"unrealized_pnl_exit_net": -1443.7468833005
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 4054.9999999985,
"quote_asset_bal": 7828.9587362764,
"total_value_mid": 9191.4387362759,
"total_value_exit_net": 9190.4168762759,
"total_value": 9191.4387362759,
"base_cost_quote": 2748.486319875,
"unrealized_pnl_exit_net": -1387.0281798755
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 3988.2999999985,
"quote_asset_bal": 7856.6391374514,
"total_value_mid": 9236.5909374509,
"total_value_exit_net": 9235.5559736009,
"total_value": 9236.5909374509,
"base_cost_quote": 2723.347079575,
"unrealized_pnl_exit_net": -1344.4302434255
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 3803.5999999985,
"quote_asset_bal": 7923.9881323514,
"total_value_mid": 9312.3021323509,
"total_value_exit_net": 9311.2608968509,
"total_value": 9312.3021323509,
"base_cost_quote": 2658.1269011,
"unrealized_pnl_exit_net": -1270.8541366005
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 3943.3999999985,
"quote_asset_bal": 7874.1613645514,
"total_value_mid": 9274.0683645509,
"total_value_exit_net": 9273.0184343009,
"total_value": 9274.0683645509,
"base_cost_quote": 2708.336830325,
"unrealized_pnl_exit_net": -1309.4797605755
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 3986.1999999985,
"quote_asset_bal": 7860.1618653764,
"total_value_mid": 9239.3870653759,
"total_value_exit_net": 9238.3526464759,
"total_value": 9239.3870653759,
"base_cost_quote": 2723.383907175,
"unrealized_pnl_exit_net": -1345.1931260755
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 4201.8999999985,
"quote_asset_bal": 7791.7004484264,
"total_value_mid": 9119.500848426,
"total_value_exit_net": 9118.504998126,
"total_value": 9119.500848426,
"base_cost_quote": 2793.5908229,
"unrealized_pnl_exit_net": -1466.7862732005
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 4108.5999999985,
"quote_asset_bal": 7823.0188689264,
"total_value_mid": 9174.7482689259,
"total_value_exit_net": 9173.7344718759,
"total_value": 9174.7482689259,
"base_cost_quote": 2763.479756525,
"unrealized_pnl_exit_net": -1412.7641535755
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 4063.3999999985,
"quote_asset_bal": 7839.5098532264,
"total_value_mid": 9176.3684532259,
"total_value_exit_net": 9175.3658092759,
"total_value": 9176.3684532259,
"base_cost_quote": 2748.4181688,
"unrealized_pnl_exit_net": -1412.5622127505
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 3902.8999999985,
"quote_asset_bal": 7895.6146686514,
"total_value_mid": 9277.2412686509,
"total_value_exit_net": 9276.2050487009,
"total_value": 9277.2412686509,
"base_cost_quote": 2693.205890625,
"unrealized_pnl_exit_net": -1312.6155105755
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 4052.3999999985,
"quote_asset_bal": 7846.6017667264,
"total_value_mid": 9163.6317667259,
"total_value_exit_net": 9162.6439942259,
"total_value": 9163.6317667259,
"base_cost_quote": 2743.388099075,
"unrealized_pnl_exit_net": -1427.3458715755
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 3975.9999999985,
"quote_asset_bal": 7872.4079458514,
"total_value_mid": 9188.4639458509,
"total_value_exit_net": 9187.4769038509,
"total_value": 9188.4639458509,
"base_cost_quote": 2718.29539365,
"unrealized_pnl_exit_net": -1403.2264356505
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 4052.0999999985,
"quote_asset_bal": 7848.1462489764,
"total_value_mid": 9165.0787489759,
"total_value_exit_net": 9164.0910496009,
"total_value": 9165.0787489759,
"base_cost_quote": 2743.362279725,
"unrealized_pnl_exit_net": -1427.4174791005
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 4051.9999999985,
"quote_asset_bal": 7849.6872971764,
"total_value_mid": 9162.5352971759,
"total_value_exit_net": 9161.5506611759,
"total_value": 9162.5352971759,
"base_cost_quote": 2743.3743888,
"unrealized_pnl_exit_net": -1431.5110248005
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 4067.1999999985,
"quote_asset_bal": 7845.7152754014,
"total_value_mid": 9171.6224754009,
"total_value_exit_net": 9170.6280450009,
"total_value": 9171.6224754009,
"base_cost_quote": 2748.394851325,
"unrealized_pnl_exit_net": -1423.4820817255
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 3990.8999999985,
"quote_asset_bal": 7871.8561758013,
"total_value_mid": 9192.8440758009,
"total_value_exit_net": 9191.8533348759,
"total_value": 9192.8440758009,
"base_cost_quote": 2723.305248225,
"unrealized_pnl_exit_net": -1403.3080891505
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 4082.6999999985,
"quote_asset_bal": 7842.4770468263,
"total_value_mid": 9136.6929468259,
"total_value_exit_net": 9135.7222849009,
"total_value": 9136.6929468259,
"base_cost_quote": 2753.4255215,
"unrealized_pnl_exit_net": -1460.1802834255
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 3990.4999999985,
"quote_asset_bal": 7874.2634094263,
"total_value_mid": 9215.0714094258,
"total_value_exit_net": 9214.0658034258,
"total_value": 9215.0714094258,
"base_cost_quote": 2723.346479125,
"unrealized_pnl_exit_net": -1383.5440851255
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 3961.4999999985,
"quote_asset_bal": 7885.3464326513,
"total_value_mid": 9216.4104326508,
"total_value_exit_net": 9215.4121346508,
"total_value": 9216.4104326508,
"base_cost_quote": 2713.2886414,
"unrealized_pnl_exit_net": -1383.2229394005
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 3931.5999999985,
"quote_asset_bal": 7896.1154502513,
"total_value_mid": 9240.7226502508,
"total_value_exit_net": 9239.7141948508,
"total_value": 9240.7226502508,
"base_cost_quote": 2703.2775387,
"unrealized_pnl_exit_net": -1359.6787941005
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 3901.9999999985,
"quote_asset_bal": 7906.6140666513,
"total_value_mid": 9272.3140666508,
"total_value_exit_net": 9271.2897916508,
"total_value": 9272.3140666508,
"base_cost_quote": 2693.202488075,
"unrealized_pnl_exit_net": -1328.5267630755
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 3872.5999999985,
"quote_asset_bal": 7917.3119083014,
"total_value_mid": 9303.7027083008,
"total_value_exit_net": 9302.6629152008,
"total_value": 9303.7027083008,
"base_cost_quote": 2683.209398875,
"unrealized_pnl_exit_net": -1297.8583919755
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 3886.5999999985,
"quote_asset_bal": 7912.5835315764,
"total_value_mid": 9303.9863315758,
"total_value_exit_net": 9302.9427794758,
"total_value": 9303.9863315758,
"base_cost_quote": 2688.22365675,
"unrealized_pnl_exit_net": -1297.8644088505
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 3942.8999999985,
"quote_asset_bal": 7892.9509415264,
"total_value_mid": 9272.9659415258,
"total_value_exit_net": 9271.9309302758,
"total_value": 9272.9659415258,
"base_cost_quote": 2708.290395525,
"unrealized_pnl_exit_net": -1329.3104067755
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 3859.5999999985,
"quote_asset_bal": 7923.4568303014,
"total_value_mid": 9332.2108303008,
"total_value_exit_net": 9331.1542648008,
"total_value": 9332.2108303008,
"base_cost_quote": 2678.15531115,
"unrealized_pnl_exit_net": -1270.4578766505
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 3871.7999999985,
"quote_asset_bal": 7919.5069821514,
"total_value_mid": 9386.9191821508,
"total_value_exit_net": 9385.8186230008,
"total_value": 9386.9191821508,
"base_cost_quote": 2683.19108515,
"unrealized_pnl_exit_net": -1216.8794443006
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 3940.9999999985,
"quote_asset_bal": 7894.7168939514,
"total_value_mid": 9309.5358939509,
"total_value_exit_net": 9308.4747797009,
"total_value": 9309.5358939509,
"base_cost_quote": 2708.304406025,
"unrealized_pnl_exit_net": -1294.5465202755
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 4011.4999999985,
"quote_asset_bal": 7870.1551330764,
"total_value_mid": 9274.1801330759,
"total_value_exit_net": 9273.1271143259,
"total_value": 9274.1801330759,
"base_cost_quote": 2733.432237775,
"unrealized_pnl_exit_net": -1330.4602565255
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 3968.2999999985,
"quote_asset_bal": 7885.5129169514,
"total_value_mid": 9278.3862169509,
"total_value_exit_net": 9277.3415619759,
"total_value": 9278.3862169509,
"base_cost_quote": 2718.38826325,
"unrealized_pnl_exit_net": -1326.5596182255
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 3926.8999999985,
"quote_asset_bal": 7901.0483155514,
"total_value_mid": 9326.5130155509,
"total_value_exit_net": 9325.4439170259,
"total_value": 9326.5130155509,
"base_cost_quote": 2703.3239735,
"unrealized_pnl_exit_net": -1278.9283720255
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 3899.2999999985,
"quote_asset_bal": 7911.3963866514,
"total_value_mid": 9350.2380866509,
"total_value_exit_net": 9349.1589553759,
"total_value": 9350.2380866509,
"base_cost_quote": 2693.282347925,
"unrealized_pnl_exit_net": -1255.5197792006
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 4127.9999999985,
"quote_asset_bal": 7831.7713307264,
"total_value_mid": 9218.7793307259,
"total_value_exit_net": 9217.7390747259,
"total_value": 9218.7793307259,
"base_cost_quote": 2773.6058454,
"unrealized_pnl_exit_net": -1387.6381014005
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 4068.6999999985,
"quote_asset_bal": 7853.0300919015,
"total_value_mid": 9240.456791901,
"total_value_exit_net": 9239.416221876,
"total_value": 9240.456791901,
"base_cost_quote": 2753.501878725,
"unrealized_pnl_exit_net": -1367.1157487505
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 4084.6999999985,
"quote_asset_bal": 7849.0222284265,
"total_value_mid": 9213.312028426,
"total_value_exit_net": 9212.288811076,
"total_value": 9213.312028426,
"base_cost_quote": 2758.4901171,
"unrealized_pnl_exit_net": -1395.2235344505
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 4193.8999999985,
"quote_asset_bal": 7814.6028831015,
"total_value_mid": 9097.936283101,
"total_value_exit_net": 9096.973783051,
"total_value": 9097.936283101,
"base_cost_quote": 2793.599529425,
"unrealized_pnl_exit_net": -1511.2286294755
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 4261.2999999985,
"quote_asset_bal": 7794.4233363015,
"total_value_mid": 9081.335936301,
"total_value_exit_net": 9080.370751851,
"total_value": 9081.335936301,
"base_cost_quote": 2813.659563175,
"unrealized_pnl_exit_net": -1527.7121476255
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 4279.5999999985,
"quote_asset_bal": 7789.5092392265,
"total_value_mid": 9073.389239226,
"total_value_exit_net": 9072.426329226,
"total_value": 9073.389239226,
"base_cost_quote": 2818.697338675,
"unrealized_pnl_exit_net": -1535.7802486755
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 4476.9999999985,
"quote_asset_bal": 7734.8335990515,
"total_value_mid": 8948.1005990511,
"total_value_exit_net": 8947.1906488011,
"total_value": 8948.1005990511,
"base_cost_quote": 2873.8962068,
"unrealized_pnl_exit_net": -1661.5391570504
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 4387.0999999985,
"quote_asset_bal": 7760.2821635515,
"total_value_mid": 8997.4443635511,
"total_value_exit_net": 8996.5164919011,
"total_value": 8997.4443635511,
"base_cost_quote": 2848.79679635,
"unrealized_pnl_exit_net": -1612.5624680004
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 4460.8999999984,
"quote_asset_bal": 7740.3998785515,
"total_value_mid": 8971.6082785511,
"total_value_exit_net": 8970.6848722511,
"total_value": 8971.6082785511,
"base_cost_quote": 2868.88865395,
"unrealized_pnl_exit_net": -1638.6036602504
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 4427.2999999984,
"quote_asset_bal": 7750.9875978265,
"total_value_mid": 8986.2042978261,
"total_value_exit_net": 8985.2778853011,
"total_value": 8986.2042978261,
"base_cost_quote": 2858.84592755,
"unrealized_pnl_exit_net": -1624.5556400754
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 4539.4999999984,
"quote_asset_bal": 7721.7398486515,
"total_value_mid": 8920.1678486511,
"total_value_exit_net": 8919.2690276511,
"total_value": 8920.1678486511,
"base_cost_quote": 2888.92486985,
"unrealized_pnl_exit_net": -1691.3956908504
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 4617.4999999984,
"quote_asset_bal": 7703.5304520015,
"total_value_mid": 8885.6104520011,
"total_value_exit_net": 8884.7238920011,
"total_value": 8885.6104520011,
"base_cost_quote": 2908.99270945,
"unrealized_pnl_exit_net": -1727.7992694504
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 4469.4999999984,
"quote_asset_bal": 7745.3211763015,
"total_value_mid": 8987.8421763011,
"total_value_exit_net": 8986.9102855511,
"total_value": 8987.8421763011,
"base_cost_quote": 2868.871541125,
"unrealized_pnl_exit_net": -1627.2824318754
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 4382.1999999984,
"quote_asset_bal": 7770.9175622265,
"total_value_mid": 9024.2267622261,
"total_value_exit_net": 9023.2867803261,
"total_value": 9024.2267622261,
"base_cost_quote": 2843.790944775,
"unrealized_pnl_exit_net": -1591.4217266755
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 4400.2999999984,
"quote_asset_bal": 7766.4356156015,
"total_value_mid": 9029.3217156011,
"total_value_exit_net": 9028.3745510261,
"total_value": 9029.3217156011,
"base_cost_quote": 2848.833523875,
"unrealized_pnl_exit_net": -1586.8945884505
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 4454.2999999984,
"quote_asset_bal": 7751.7416487265,
"total_value_mid": 9012.3085487261,
"total_value_exit_net": 9011.3631235511,
"total_value": 9012.3085487261,
"base_cost_quote": 2863.87849915,
"unrealized_pnl_exit_net": -1604.2570243255
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 4437.9999999984,
"quote_asset_bal": 7756.9308758015,
"total_value_mid": 8995.1328758011,
"total_value_exit_net": 8994.2042243011,
"total_value": 8995.1328758011,
"base_cost_quote": 2858.8461277,
"unrealized_pnl_exit_net": -1621.5727792004
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 4402.8999999984,
"quote_asset_bal": 7767.3156268515,
"total_value_mid": 9022.1421268511,
"total_value_exit_net": 9021.2010069761,
"total_value": 9022.1421268511,
"base_cost_quote": 2848.811707525,
"unrealized_pnl_exit_net": -1594.9263274005
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 4511.8999999984,
"quote_asset_bal": 7738.0622535016,
"total_value_mid": 8965.2990535011,
"total_value_exit_net": 8964.3786259011,
"total_value": 8965.2990535011,
"base_cost_quote": 2878.9151682,
"unrealized_pnl_exit_net": -1652.5987958004
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 4424.3999999984,
"quote_asset_bal": 7763.9441624516,
"total_value_mid": 9016.0493624511,
"total_value_exit_net": 9015.1102835511,
"total_value": 9016.0493624511,
"base_cost_quote": 2853.842277625,
"unrealized_pnl_exit_net": -1602.6761565255
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 4481.8999999983,
"quote_asset_bal": 7749.4415727766,
"total_value_mid": 8990.9278727761,
"total_value_exit_net": 8989.9967580511,
"total_value": 8990.9278727761,
"base_cost_quote": 2868.8840505,
"unrealized_pnl_exit_net": -1628.3288652255
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 4770.6999999983,
"quote_asset_bal": 7697.2927920266,
"total_value_mid": 8651.4327920263,
"total_value_exit_net": 8650.7171870263,
"total_value": 8651.4327920263,
"base_cost_quote": 2924.0245749,
"unrealized_pnl_exit_net": -1970.6001799003
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 4838.8999999983,
"quote_asset_bal": 7684.7033972016,
"total_value_mid": 8710.5501972012,
"total_value_exit_net": 8709.7808121012,
"total_value": 8710.5501972012,
"base_cost_quote": 2939.073152875,
"unrealized_pnl_exit_net": -1913.9957379754
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 4739.0999999983,
"quote_asset_bal": 7706.8179415516,
"total_value_mid": 8796.8109415512,
"total_value_exit_net": 8795.9934468012,
"total_value": 8796.8109415512,
"base_cost_quote": 2919.0032117,
"unrealized_pnl_exit_net": -1829.8277064504
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 4777.9999999983,
"quote_asset_bal": 7698.1752025766,
"total_value_mid": 8887.8972025762,
"total_value_exit_net": 8887.0049110762,
"total_value": 8887.8972025762,
"base_cost_quote": 2929.022420475,
"unrealized_pnl_exit_net": -1740.1927119754
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 4861.5999999983,
"quote_asset_bal": 7680.3519057266,
"total_value_mid": 8827.6895057262,
"total_value_exit_net": 8826.8290025262,
"total_value": 8827.6895057262,
"base_cost_quote": 2949.074448225,
"unrealized_pnl_exit_net": -1802.5973514254
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 4905.2999999983,
"quote_asset_bal": 7672.1475826016,
"total_value_mid": 8790.5559826013,
"total_value_exit_net": 8789.7171763013,
"total_value": 8790.5559826013,
"base_cost_quote": 2959.11227095,
"unrealized_pnl_exit_net": -1841.5426772504
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 5082.7999999983,
"quote_asset_bal": 7635.8395380517,
"total_value_mid": 8733.7243380513,
"total_value_exit_net": 8732.9009244513,
"total_value": 8733.7243380513,
"base_cost_quote": 2999.265863575,
"unrealized_pnl_exit_net": -1902.2044771754
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 5084.0999999983,
"quote_asset_bal": 7637.1792478517,
"total_value_mid": 8720.0925478513,
"total_value_exit_net": 8719.2803628763,
"total_value": 8720.0925478513,
"base_cost_quote": 2999.24354685,
"unrealized_pnl_exit_net": -1917.1424318254
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 5059.1999999983,
"quote_asset_bal": 7642.7536429767,
"total_value_mid": 8725.4224429763,
"total_value_exit_net": 8724.6104413763,
"total_value": 8725.4224429763,
"base_cost_quote": 2994.241498125,
"unrealized_pnl_exit_net": -1912.3846997254
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 4990.7999999983,
"quote_asset_bal": 7659.2931961267,
"total_value_mid": 8757.2691961263,
"total_value_exit_net": 8756.4457141263,
"total_value": 8757.2691961263,
"base_cost_quote": 2979.1963227,
"unrealized_pnl_exit_net": -1882.0438047004
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 5058.8999999983,
"quote_asset_bal": 7645.6881580767,
"total_value_mid": 8748.5283580763,
"total_value_exit_net": 8747.7012279263,
"total_value": 8748.5283580763,
"base_cost_quote": 2994.252506375,
"unrealized_pnl_exit_net": -1892.2394365254
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 5056.6999999983,
"quote_asset_bal": 7647.1404871767,
"total_value_mid": 8709.0474871763,
"total_value_exit_net": 8708.2510569263,
"total_value": 8709.0474871763,
"base_cost_quote": 2994.2452009,
"unrealized_pnl_exit_net": -1933.1346311504
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 5226.8999999983,
"quote_asset_bal": 7614.0081348767,
"total_value_mid": 8664.6150348763,
"total_value_exit_net": 8663.8270797013,
"total_value": 8664.6150348763,
"base_cost_quote": 3029.344805875,
"unrealized_pnl_exit_net": -1979.5258610503
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 5128.2999999983,
"quote_asset_bal": 7635.0974410517,
"total_value_mid": 8701.7838410513,
"total_value_exit_net": 8700.9838262513,
"total_value": 8701.7838410513,
"base_cost_quote": 3009.290376325,
"unrealized_pnl_exit_net": -1943.4039911253
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 5104.0999999983,
"quote_asset_bal": 7640.6470595517,
"total_value_mid": 8702.2998595513,
"total_value_exit_net": 8701.5036199513,
"total_value": 8702.2998595513,
"base_cost_quote": 3004.277219275,
"unrealized_pnl_exit_net": -1943.4206588753
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 5152.6999999983,
"quote_asset_bal": 7630.9493003517,
"total_value_mid": 8692.4055003513,
"total_value_exit_net": 8691.6094082013,
"total_value": 8692.4055003513,
"base_cost_quote": 3014.296127825,
"unrealized_pnl_exit_net": -1953.6360199753
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 5034.1999999983,
"quote_asset_bal": 7656.2932926517,
"total_value_mid": 8728.5778926513,
"total_value_exit_net": 8727.7736792013,
"total_value": 8728.5778926513,
"base_cost_quote": 2989.249356825,
"unrealized_pnl_exit_net": -1917.7689702754
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 5105.0999999983,
"quote_asset_bal": 7641.9920123267,
"total_value_mid": 8693.6426123263,
"total_value_exit_net": 8692.8538743763,
"total_value": 8693.6426123263,
"base_cost_quote": 3004.269813725,
"unrealized_pnl_exit_net": -1953.4079516753
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 5303.2999999983,
"quote_asset_bal": 7603.2557867017,
"total_value_mid": 8637.3992867013,
"total_value_exit_net": 8636.6236790763,
"total_value": 8637.3992867013,
"base_cost_quote": 3044.372268025,
"unrealized_pnl_exit_net": -2011.0043756503
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 5435.5999999983,
"quote_asset_bal": 7581.0600886267,
"total_value_mid": 8602.9528886264,
"total_value_exit_net": 8602.1864690264,
"total_value": 8602.9528886264,
"base_cost_quote": 3069.424443075,
"unrealized_pnl_exit_net": -2048.2980626753
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 5630.2999999983,
"quote_asset_bal": 7547.7715193267,
"total_value_mid": 8555.5952193264,
"total_value_exit_net": 8554.8393515514,
"total_value": 8555.5952193264,
"base_cost_quote": 3104.5210458,
"unrealized_pnl_exit_net": -2097.4532135753
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 5518.9999999983,
"quote_asset_bal": 7568.2055146017,
"total_value_mid": 8567.1445146014,
"total_value_exit_net": 8566.3953103514,
"total_value": 8567.1445146014,
"base_cost_quote": 3084.473521425,
"unrealized_pnl_exit_net": -2086.2837256753
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 5518.6999999983,
"quote_asset_bal": 7568.4631692517,
"total_value_mid": 8589.4226692514,
"total_value_exit_net": 8588.6569496264,
"total_value": 8589.4226692514,
"base_cost_quote": 3084.474522175,
"unrealized_pnl_exit_net": -2064.2807418003
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 5546.7999999983,
"quote_asset_bal": 7563.8599880767,
"total_value_mid": 8578.9243880764,
"total_value_exit_net": 8578.1630897764,
"total_value": 8578.9243880764,
"base_cost_quote": 3089.480073525,
"unrealized_pnl_exit_net": -2075.1769718253
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 5689.1999999983,
"quote_asset_bal": 7541.9634608517,
"total_value_mid": 8469.3030608514,
"total_value_exit_net": 8468.6075561514,
"total_value": 8469.3030608514,
"base_cost_quote": 3114.534250075,
"unrealized_pnl_exit_net": -2187.8901547753
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 5720.3999999983,
"quote_asset_bal": 7541.8956319267,
"total_value_mid": 8491.4820319265,
"total_value_exit_net": 8490.7698421265,
"total_value": 8491.4820319265,
"base_cost_quote": 3119.558015075,
"unrealized_pnl_exit_net": -2170.6838048753
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 5569.4999999983,
"quote_asset_bal": 7570.1314463517,
"total_value_mid": 8544.7939463515,
"total_value_exit_net": 8544.0629494765,
"total_value": 8544.7939463515,
"base_cost_quote": 3094.49293035,
"unrealized_pnl_exit_net": -2120.5614272253
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 5686.4999999983,
"quote_asset_bal": 7551.4935204767,
"total_value_mid": 8535.2580204764,
"total_value_exit_net": 8534.5201971014,
"total_value": 8535.2580204764,
"base_cost_quote": 3114.542856525,
"unrealized_pnl_exit_net": -2131.5161799003
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 5349.0999999983,
"quote_asset_bal": 7614.4803061267,
"total_value_mid": 8625.4602061264,
"total_value_exit_net": 8624.7019712014,
"total_value": 8625.4602061264,
"base_cost_quote": 3054.398381975,
"unrealized_pnl_exit_net": -2044.1767169003
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 5073.4999999983,
"quote_asset_bal": 7673.2876352768,
"total_value_mid": 8622.0321352764,
"total_value_exit_net": 8621.3205769014,
"total_value": 8622.0321352764,
"base_cost_quote": 2999.25435495,
"unrealized_pnl_exit_net": -2051.2214133253
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 5072.7999999983,
"quote_asset_bal": 7676.6772045768,
"total_value_mid": 8635.4364045765,
"total_value_exit_net": 8634.7173351765,
"total_value": 8635.4364045765,
"base_cost_quote": 2999.266263875,
"unrealized_pnl_exit_net": -2041.2261332753
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 5019.8999999983,
"quote_asset_bal": 7689.8059047268,
"total_value_mid": 8648.6068047265,
"total_value_exit_net": 8647.8877040515,
"total_value": 8648.6068047265,
"base_cost_quote": 2989.2342455,
"unrealized_pnl_exit_net": -2031.1524461753
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 5264.0999999983,
"quote_asset_bal": 7646.0436964768,
"total_value_mid": 8583.0534964765,
"total_value_exit_net": 8582.3507391265,
"total_value": 8583.0534964765,
"base_cost_quote": 3034.34785535,
"unrealized_pnl_exit_net": -2098.0408127003
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 5376.1999999983,
"quote_asset_bal": 7626.3851118018,
"total_value_mid": 8572.5963118015,
"total_value_exit_net": 8571.8866534015,
"total_value": 8572.5963118015,
"base_cost_quote": 3054.406988425,
"unrealized_pnl_exit_net": -2108.9054468253
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 5407.0999999983,
"quote_asset_bal": 7622.9538195018,
"total_value_mid": 8542.1608195015,
"total_value_exit_net": 8541.4714142515,
"total_value": 8542.1608195015,
"base_cost_quote": 3059.41223955,
"unrealized_pnl_exit_net": -2140.8946448003
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 5496.4999999983,
"quote_asset_bal": 7611.1110632768,
"total_value_mid": 8523.5300632765,
"total_value_exit_net": 8522.8457490265,
"total_value": 8523.5300632765,
"base_cost_quote": 3074.44230365,
"unrealized_pnl_exit_net": -2162.7076179003
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 5524.9999999983,
"quote_asset_bal": 7608.2243631518,
"total_value_mid": 8525.3743631515,
"total_value_exit_net": 8524.6865006515,
"total_value": 8525.3743631515,
"base_cost_quote": 3079.46246595,
"unrealized_pnl_exit_net": -2163.0003284503
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 5616.2999999983,
"quote_asset_bal": 7595.7132547018,
"total_value_mid": 8511.1701547016,
"total_value_exit_net": 8510.4835620266,
"total_value": 8511.1701547016,
"base_cost_quote": 3094.505239575,
"unrealized_pnl_exit_net": -2179.7349322503
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 5616.3999999983,
"quote_asset_bal": 7598.9329546518,
"total_value_mid": 8497.5569546516,
"total_value_exit_net": 8496.8829866516,
"total_value": 8497.5569546516,
"base_cost_quote": 3094.519450225,
"unrealized_pnl_exit_net": -2196.5694182253
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 5647.2999999983,
"quote_asset_bal": 7596.9602989518,
"total_value_mid": 8506.1755989515,
"total_value_exit_net": 8505.4936874765,
"total_value": 8506.1755989515,
"base_cost_quote": 3099.529004575,
"unrealized_pnl_exit_net": -2190.9956160503
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 5743.4999999983,
"quote_asset_bal": 7584.2953763018,
"total_value_mid": 8480.2813763015,
"total_value_exit_net": 8479.6093868015,
"total_value": 8480.2813763015,
"base_cost_quote": 3114.564472725,
"unrealized_pnl_exit_net": -2219.2504622253
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 5587.8999999983,
"quote_asset_bal": 7615.3958440018,
"total_value_mid": 8509.4598440015,
"total_value_exit_net": 8508.7892960015,
"total_value": 8509.4598440015,
"base_cost_quote": 3089.491382,
"unrealized_pnl_exit_net": -2196.0979300003
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 5817.8999999983,
"quote_asset_bal": 7585.3036777268,
"total_value_mid": 8487.0781777265,
"total_value_exit_net": 8486.4018468515,
"total_value": 8487.0781777265,
"base_cost_quote": 3124.563566425,
"unrealized_pnl_exit_net": -2223.4653973003
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 5722.4999999983,
"quote_asset_bal": 7601.9491962768,
"total_value_mid": 8483.2141962765,
"total_value_exit_net": 8482.5532475265,
"total_value": 8483.2141962765,
"base_cost_quote": 3109.526697225,
"unrealized_pnl_exit_net": -2228.9226459753
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 5657.6999999983,
"quote_asset_bal": 7615.7835395517,
"total_value_mid": 8526.6732395515,
"total_value_exit_net": 8525.9900722765,
"total_value": 8526.6732395515,
"base_cost_quote": 3099.5076886,
"unrealized_pnl_exit_net": -2189.3011558753
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 5591.2999999983,
"quote_asset_bal": 7629.3239354017,
"total_value_mid": 8523.9319354014,
"total_value_exit_net": 8523.2609794014,
"total_value": 8523.9319354014,
"base_cost_quote": 3089.49158215,
"unrealized_pnl_exit_net": -2195.5545381503
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 5718.6999999983,
"quote_asset_bal": 7610.9957642267,
"total_value_mid": 8497.3942642264,
"total_value_exit_net": 8496.7294653514,
"total_value": 8497.3942642264,
"base_cost_quote": 3109.538506075,
"unrealized_pnl_exit_net": -2223.8048049503
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 5655.6999999983,
"quote_asset_bal": 7622.2997267517,
"total_value_mid": 8515.9003267514,
"total_value_exit_net": 8515.2301263014,
"total_value": 8515.9003267514,
"base_cost_quote": 3099.516194975,
"unrealized_pnl_exit_net": -2206.5857954253
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 5530.6999999983,
"quote_asset_bal": 7645.3048949767,
"total_value_mid": 8541.2782949764,
"total_value_exit_net": 8540.6063149264,
"total_value": 8541.2782949764,
"base_cost_quote": 3079.47287375,
"unrealized_pnl_exit_net": -2184.1714538003
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 5623.9999999983,
"quote_asset_bal": 7633.1234489767,
"total_value_mid": 8521.7154489764,
"total_value_exit_net": 8521.0490049764,
"total_value": 8521.7154489764,
"base_cost_quote": 3094.505039425,
"unrealized_pnl_exit_net": -2206.5794834253
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 5751.9999999983,
"quote_asset_bal": 7614.5416738266,
"total_value_mid": 8500.3496738264,
"total_value_exit_net": 8499.6853178264,
"total_value": 8500.3496738264,
"base_cost_quote": 3114.548660875,
"unrealized_pnl_exit_net": -2229.4050168753
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 5817.6999999983,
"quote_asset_bal": 7605.1643647266,
"total_value_mid": 8489.4547647264,
"total_value_exit_net": 8488.7915469264,
"total_value": 8489.4547647264,
"base_cost_quote": 3124.5600638,
"unrealized_pnl_exit_net": -2240.9328816003
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 6093.1999999983,
"quote_asset_bal": 7565.9696556766,
"total_value_mid": 8425.1108556764,
"total_value_exit_net": 8424.4664997764,
"total_value": 8425.1108556764,
"base_cost_quote": 3164.65591315,
"unrealized_pnl_exit_net": -2306.1590690502
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 6056.3999999983,
"quote_asset_bal": 7572.6821423516,
"total_value_mid": 8438.7473423514,
"total_value_exit_net": 8438.0977934514,
"total_value": 8438.7473423514,
"base_cost_quote": 3159.6331489,
"unrealized_pnl_exit_net": -2294.2174978002
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 6021.3999999983,
"quote_asset_bal": 7578.1616276266,
"total_value_mid": 8451.2646276264,
"total_value_exit_net": 8450.6098003764,
"total_value": 8451.2646276264,
"base_cost_quote": 3154.62439515,
"unrealized_pnl_exit_net": -2282.1762224002
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 6091.6999999983,
"quote_asset_bal": 7568.6333542016,
"total_value_mid": 8433.6547542014,
"total_value_exit_net": 8433.0059881514,
"total_value": 8433.6547542014,
"base_cost_quote": 3164.64950835,
"unrealized_pnl_exit_net": -2300.2768744002
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 6274.0999999983,
"quote_asset_bal": 7545.3112433517,
"total_value_mid": 8386.0406433514,
"total_value_exit_net": 8385.4100963014,
"total_value": 8386.0406433514,
"base_cost_quote": 3189.706186775,
"unrealized_pnl_exit_net": -2349.6073338252
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 6057.5999999983,
"quote_asset_bal": 7577.2817471017,
"total_value_mid": 8443.5185471014,
"total_value_exit_net": 8442.8688695014,
"total_value": 8443.5185471014,
"base_cost_quote": 3159.6331489,
"unrealized_pnl_exit_net": -2294.0460265002
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 6058.7999999983,
"quote_asset_bal": 7578.3788648517,
"total_value_mid": 8432.6696648514,
"total_value_exit_net": 8432.0289467514,
"total_value": 8432.6696648514,
"base_cost_quote": 3159.630847175,
"unrealized_pnl_exit_net": -2305.9807652752
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 5990.9999999983,
"quote_asset_bal": 7588.9228231017,
"total_value_mid": 8457.6178231014,
"total_value_exit_net": 8456.9663018514,
"total_value": 8457.6178231014,
"base_cost_quote": 3149.6260492,
"unrealized_pnl_exit_net": -2281.5825704502
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 5921.5999999983,
"quote_asset_bal": 7599.7072147267,
"total_value_mid": 8487.9472147264,
"total_value_exit_net": 8487.2810347264,
"total_value": 8487.9472147264,
"base_cost_quote": 3139.60714065,
"unrealized_pnl_exit_net": -2252.0333206503
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 6126.9999999983,
"quote_asset_bal": 7569.9546200267,
"total_value_mid": 8446.1156200264,
"total_value_exit_net": 8445.4584992764,
"total_value": 8446.1156200264,
"base_cost_quote": 3169.66646825,
"unrealized_pnl_exit_net": -2294.1625890002
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 6127.9999999983,
"quote_asset_bal": 7572.8711017017,
"total_value_mid": 8430.7911017014,
"total_value_exit_net": 8430.1476617014,
"total_value": 8430.7911017014,
"base_cost_quote": 3169.666368175,
"unrealized_pnl_exit_net": -2312.3898081752
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 6200.2999999983,
"quote_asset_bal": 7564.6406268517,
"total_value_mid": 8420.2820268515,
"total_value_exit_net": 8419.6402958015,
"total_value": 8420.2820268515,
"base_cost_quote": 3179.687278225,
"unrealized_pnl_exit_net": -2324.6876092752
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 6127.9999999983,
"quote_asset_bal": 7577.3900097017,
"total_value_mid": 8423.0540097015,
"total_value_exit_net": 8422.4197617015,
"total_value": 8423.0540097015,
"base_cost_quote": 3169.666368175,
"unrealized_pnl_exit_net": -2324.6366161752
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 6281.3999999983,
"quote_asset_bal": 7560.9946016267,
"total_value_mid": 8365.0138016265,
"total_value_exit_net": 8364.4107872265,
"total_value": 8365.0138016265,
"base_cost_quote": 3189.703584825,
"unrealized_pnl_exit_net": -2386.2873992252
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 6317.9999999983,
"quote_asset_bal": 7559.3316369767,
"total_value_mid": 8361.7176369765,
"total_value_exit_net": 8361.1158474765,
"total_value": 8361.7176369765,
"base_cost_quote": 3194.713339325,
"unrealized_pnl_exit_net": -2392.9291288252
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 6317.9999999983,
"quote_asset_bal": 7564.2104829518,
"total_value_mid": 8366.5964829516,
"total_value_exit_net": 8365.9946934516,
"total_value": 8366.5964829516,
"base_cost_quote": 3194.713339325,
"unrealized_pnl_exit_net": -2392.9291288252
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 6478.7999999983,
"quote_asset_bal": 7547.1145169768,
"total_value_mid": 8344.0069169766,
"total_value_exit_net": 8343.4092476766,
"total_value": 8344.0069169766,
"base_cost_quote": 3214.7400481,
"unrealized_pnl_exit_net": -2418.4453174002
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 6480.1999999983,
"quote_asset_bal": 7547.8048825768,
"total_value_mid": 8318.9486825766,
"total_value_exit_net": 8318.3703247266,
"total_value": 8318.9486825766,
"base_cost_quote": 3214.745352075,
"unrealized_pnl_exit_net": -2444.1799099252
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 6359.7999999983,
"quote_asset_bal": 7564.4515985768,
"total_value_mid": 8372.1461985766,
"total_value_exit_net": 8371.5404276266,
"total_value": 8372.1461985766,
"base_cost_quote": 3199.721692775,
"unrealized_pnl_exit_net": -2392.6328637252
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 6359.7999999983,
"quote_asset_bal": 7567.0600015518,
"total_value_mid": 8387.4742015516,
"total_value_exit_net": 8386.8588909016,
"total_value": 8387.4742015516,
"base_cost_quote": 3199.721692775,
"unrealized_pnl_exit_net": -2379.9228034252
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 6438.8999999983,
"quote_asset_bal": 7558.8463719768,
"total_value_mid": 8370.1477719766,
"total_value_exit_net": 8369.5392959266,
"total_value": 8370.1477719766,
"base_cost_quote": 3209.735197275,
"unrealized_pnl_exit_net": -2399.0422733252
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 6359.7999999983,
"quote_asset_bal": 7571.2476526018,
"total_value_mid": 8391.6618526016,
"total_value_exit_net": 8391.0465419516,
"total_value": 8391.6618526016,
"base_cost_quote": 3199.721692775,
"unrealized_pnl_exit_net": -2379.9228034252
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 6320.9999999983,
"quote_asset_bal": 7580.1521134768,
"total_value_mid": 8401.8821134766,
"total_value_exit_net": 8401.2658159766,
"total_value": 8401.8821134766,
"base_cost_quote": 3194.712738875,
"unrealized_pnl_exit_net": -2373.5990363752
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 6282.4999999983,
"quote_asset_bal": 7588.4053880019,
"total_value_mid": 8392.5653880016,
"total_value_exit_net": 8391.9622680016,
"total_value": 8392.5653880016,
"base_cost_quote": 3189.703985125,
"unrealized_pnl_exit_net": -2386.1471051252
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 6440.0999999983,
"quote_asset_bal": 7571.3404016019,
"total_value_mid": 8376.3529016016,
"total_value_exit_net": 8375.7491422266,
"total_value": 8376.3529016016,
"base_cost_quote": 3209.731194275,
"unrealized_pnl_exit_net": -2405.3224536502
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 6321.2999999983,
"quote_asset_bal": 7589.5387819769,
"total_value_mid": 8404.9864819767,
"total_value_exit_net": 8404.3748962017,
"total_value": 8404.9864819767,
"base_cost_quote": 3194.712939025,
"unrealized_pnl_exit_net": -2379.8768248002
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 6172.2999999983,
"quote_asset_bal": 7613.4681514519,
"total_value_mid": 8446.7286514517,
"total_value_exit_net": 8446.1037060767,
"total_value": 8446.7286514517,
"base_cost_quote": 3174.676122675,
"unrealized_pnl_exit_net": -2342.0405680502
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 6253.7999999982,
"quote_asset_bal": 7605.2679573769,
"total_value_mid": 8437.0233573767,
"total_value_exit_net": 8436.3995408267,
"total_value": 8437.0233573767,
"base_cost_quote": 3184.696031975,
"unrealized_pnl_exit_net": -2353.5644485252
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 6293.8999999982,
"quote_asset_bal": 7602.388320277,
"total_value_mid": 8433.1831202767,
"total_value_exit_net": 8432.5600241767,
"total_value": 8433.1831202767,
"base_cost_quote": 3189.70828835,
"unrealized_pnl_exit_net": -2359.5365844502
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 6260.0999999982,
"quote_asset_bal": 7609.896933327,
"total_value_mid": 8442.4902333268,
"total_value_exit_net": 8441.8657883518,
"total_value": 8442.4902333268,
"base_cost_quote": 3184.70373775,
"unrealized_pnl_exit_net": -2352.7348827252
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 6338.2999999982,
"quote_asset_bal": 7603.442647327,
"total_value_mid": 8433.7599473268,
"total_value_exit_net": 8433.1372093518,
"total_value": 8433.7599473268,
"base_cost_quote": 3194.718243,
"unrealized_pnl_exit_net": -2365.0236809752
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 6152.8999999982,
"quote_asset_bal": 7634.0479934021,
"total_value_mid": 8501.6068934019,
"total_value_exit_net": 8500.9562242269,
"total_value": 8501.6068934019,
"base_cost_quote": 3169.667569075,
"unrealized_pnl_exit_net": -2302.7593382503
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 6081.5999999982,
"quote_asset_bal": 7645.2373029771,
"total_value_mid": 8520.9877029769,
"total_value_exit_net": 8520.3308901769,
"total_value": 8520.9877029769,
"base_cost_quote": 3159.64255595,
"unrealized_pnl_exit_net": -2284.5489687503
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 6081.5999999982,
"quote_asset_bal": 7645.4019765521,
"total_value_mid": 8527.2339765519,
"total_value_exit_net": 8526.5726025519,
"total_value": 8527.2339765519,
"base_cost_quote": 3159.64255595,
"unrealized_pnl_exit_net": -2278.4719299503
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 5978.9999999982,
"quote_asset_bal": 7660.6390548271,
"total_value_mid": 8557.4890548269,
"total_value_exit_net": 8556.8164173269,
"total_value": 8557.4890548269,
"base_cost_quote": 3144.618596425,
"unrealized_pnl_exit_net": -2248.4412339253
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 5845.8999999982,
"quote_asset_bal": 7680.9355915271,
"total_value_mid": 8581.2041915268,
"total_value_exit_net": 8580.5289900768,
"total_value": 8581.2041915268,
"base_cost_quote": 3124.5628659,
"unrealized_pnl_exit_net": -2224.9694673503
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 5878.4999999982,
"quote_asset_bal": 7676.1853699021,
"total_value_mid": 8569.7173699019,
"total_value_exit_net": 8569.0472209019,
"total_value": 8569.7173699019,
"base_cost_quote": 3129.5782246,
"unrealized_pnl_exit_net": -2236.7163736003
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 6048.8999999982,
"quote_asset_bal": 7651.2512215271,
"total_value_mid": 8534.3906215269,
"total_value_exit_net": 8533.7282669769,
"total_value": 8534.3906215269,
"base_cost_quote": 3154.62879845,
"unrealized_pnl_exit_net": -2272.1517530003
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 6084.3999999982,
"quote_asset_bal": 7646.4086294271,
"total_value_mid": 8522.5622294269,
"total_value_exit_net": 8521.9051142269,
"total_value": 8522.5622294269,
"base_cost_quote": 3159.638052575,
"unrealized_pnl_exit_net": -2284.1415677753
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 6084.3999999982,
"quote_asset_bal": 7646.5445519771,
"total_value_mid": 8528.7825519769,
"total_value_exit_net": 8528.1208734769,
"total_value": 8528.7825519769,
"base_cost_quote": 3159.638052575,
"unrealized_pnl_exit_net": -2278.0617310753
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 6083.8999999982,
"quote_asset_bal": 7646.8719634771,
"total_value_mid": 8522.9535634769,
"total_value_exit_net": 8522.2965022769,
"total_value": 8522.9535634769,
"base_cost_quote": 3159.6375522,
"unrealized_pnl_exit_net": -2284.2130134003
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 6155.4999999982,
"quote_asset_bal": 7637.0607286771,
"total_value_mid": 8511.1417286769,
"total_value_exit_net": 8510.4861679269,
"total_value": 8511.1417286769,
"base_cost_quote": 3169.670171025,
"unrealized_pnl_exit_net": -2296.2447317753
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 6262.9999999982,
"quote_asset_bal": 7623.6291215521,
"total_value_mid": 8481.6601215519,
"total_value_exit_net": 8481.0165983019,
"total_value": 8481.6601215519,
"base_cost_quote": 3184.69092815,
"unrealized_pnl_exit_net": -2327.3034514003
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 5979.3999999982,
"quote_asset_bal": 7664.6414161271,
"total_value_mid": 8549.5926161269,
"total_value_exit_net": 8548.9289027269,
"total_value": 8549.5926161269,
"base_cost_quote": 3144.6082887,
"unrealized_pnl_exit_net": -2260.3208021003
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 6013.8999999982,
"quote_asset_bal": 7659.9856921271,
"total_value_mid": 8525.9872921269,
"total_value_exit_net": 8525.3377909269,
"total_value": 8525.9872921269,
"base_cost_quote": 3149.614540575,
"unrealized_pnl_exit_net": -2284.2624417753
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 6194.2999999982,
"quote_asset_bal": 7636.1124537522,
"total_value_mid": 8478.5372537519,
"total_value_exit_net": 8477.9054351519,
"total_value": 8478.5372537519,
"base_cost_quote": 3174.66501435,
"unrealized_pnl_exit_net": -2332.8720329503
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 6120.1999999982,
"quote_asset_bal": 7647.7292504772,
"total_value_mid": 8510.6774504769,
"total_value_exit_net": 8510.0302393269,
"total_value": 8510.6774504769,
"base_cost_quote": 3164.64830745,
"unrealized_pnl_exit_net": -2302.3473186003
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 6118.2999999982,
"quote_asset_bal": 7648.0227564272,
"total_value_mid": 8541.2945564269,
"total_value_exit_net": 8540.6246025769,
"total_value": 8541.2945564269,
"base_cost_quote": 3164.65431195,
"unrealized_pnl_exit_net": -2272.0524658003
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 6224.6999999982,
"quote_asset_bal": 7633.2838050272,
"total_value_mid": 8492.2924050269,
"total_value_exit_net": 8491.6481485769,
"total_value": 8492.2924050269,
"base_cost_quote": 3179.6965852,
"unrealized_pnl_exit_net": -2321.3322416503
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 6229.3999999981,
"quote_asset_bal": 7636.2057876522,
"total_value_mid": 8489.6335876519,
"total_value_exit_net": 8488.9935168019,
"total_value": 8489.6335876519,
"base_cost_quote": 3179.687678525,
"unrealized_pnl_exit_net": -2326.8999493753
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 6456.1999999981,
"quote_asset_bal": 7608.0467864772,
"total_value_mid": 8427.984186477,
"total_value_exit_net": 8427.369233427,
"total_value": 8427.984186477,
"base_cost_quote": 3209.7519098,
"unrealized_pnl_exit_net": -2390.4294628502
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 6494.6999999981,
"quote_asset_bal": 7605.3401447772,
"total_value_mid": 8443.156444777,
"total_value_exit_net": 8442.528082552,
"total_value": 8443.156444777,
"base_cost_quote": 3214.76066355,
"unrealized_pnl_exit_net": -2377.5727257752
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 6496.7999999981,
"quote_asset_bal": 7607.1476065772,
"total_value_mid": 8432.241206577,
"total_value_exit_net": 8431.622386377,
"total_value": 8432.241206577,
"base_cost_quote": 3214.761264,
"unrealized_pnl_exit_net": -2390.2864842002
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 6417.4999999981,
"quote_asset_bal": 7619.3550832022,
"total_value_mid": 8460.047583202,
"total_value_exit_net": 8459.417063827,
"total_value": 8460.047583202,
"base_cost_quote": 3204.73955335,
"unrealized_pnl_exit_net": -2364.6775727252
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 6233.4999999981,
"quote_asset_bal": 7646.5595311773,
"total_value_mid": 8500.549031177,
"total_value_exit_net": 8499.908539052,
"total_value": 8500.549031177,
"base_cost_quote": 3179.6965852,
"unrealized_pnl_exit_net": -2326.3475773253
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 6619.7999999981,
"quote_asset_bal": 7598.5553718523,
"total_value_mid": 8419.410571852,
"total_value_exit_net": 8418.794930452,
"total_value": 8419.410571852,
"base_cost_quote": 3229.771613325,
"unrealized_pnl_exit_net": -2409.5320547252
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 6462.5999999981,
"quote_asset_bal": 7620.5550454023,
"total_value_mid": 8460.693045402,
"total_value_exit_net": 8460.062941902,
"total_value": 8460.693045402,
"base_cost_quote": 3209.741602075,
"unrealized_pnl_exit_net": -2370.2337055752
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 6462.5999999981,
"quote_asset_bal": 7622.2447942773,
"total_value_mid": 8468.845394277,
"total_value_exit_net": 8468.210443827,
"total_value": 8468.845394277,
"base_cost_quote": 3209.741602075,
"unrealized_pnl_exit_net": -2363.7759525252
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 6501.0999999981,
"quote_asset_bal": 7619.2008422273,
"total_value_mid": 8464.343842227,
"total_value_exit_net": 8463.709984977,
"total_value": 8464.343842227,
"base_cost_quote": 3214.750355825,
"unrealized_pnl_exit_net": -2370.2412130752
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 6622.5999999981,
"quote_asset_bal": 7605.7555042023,
"total_value_mid": 8400.467504202,
"total_value_exit_net": 8399.871470202,
"total_value": 8400.467504202,
"base_cost_quote": 3229.786024125,
"unrealized_pnl_exit_net": -2435.6700581252
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 6665.3999999981,
"quote_asset_bal": 7603.4548090523,
"total_value_mid": 8389.972009052,
"total_value_exit_net": 8389.382121152,
"total_value": 8389.972009052,
"base_cost_quote": 3234.797379825,
"unrealized_pnl_exit_net": -2448.8700677252
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 6893.9999999981,
"quote_asset_bal": 7582.5224607273,
"total_value_mid": 8320.1804607271,
"total_value_exit_net": 8319.6272172271,
"total_value": 8320.1804607271,
"base_cost_quote": 3259.839147075,
"unrealized_pnl_exit_net": -2522.7343905752
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 6896.1999999981,
"quote_asset_bal": 7584.4822482773,
"total_value_mid": 8301.6870482771,
"total_value_exit_net": 8301.1491446771,
"total_value": 8301.6870482771,
"base_cost_quote": 3259.8426497,
"unrealized_pnl_exit_net": -2543.1757533002
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 6845.4999999981,
"quote_asset_bal": 7592.1416506273,
"total_value_mid": 8351.9921506271,
"total_value_exit_net": 8351.4222627521,
"total_value": 8351.9921506271,
"base_cost_quote": 3254.83789895,
"unrealized_pnl_exit_net": -2495.5572868252
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 6891.1999999981,
"quote_asset_bal": 7590.1006156273,
"total_value_mid": 8327.4590156271,
"total_value_exit_net": 8326.9059968271,
"total_value": 8327.4590156271,
"base_cost_quote": 3259.836745275,
"unrealized_pnl_exit_net": -2523.0313640752
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 6984.7999999981,
"quote_asset_bal": 7580.8386135773,
"total_value_mid": 8314.2426135771,
"total_value_exit_net": 8313.6925605771,
"total_value": 8314.2426135771,
"base_cost_quote": 3269.86115795,
"unrealized_pnl_exit_net": -2537.0072109502
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 7456.6999999981,
"quote_asset_bal": 7538.4349871523,
"total_value_mid": 8202.0812871521,
"total_value_exit_net": 8201.5835524271,
"total_value": 8202.0812871521,
"base_cost_quote": 3314.948848375,
"unrealized_pnl_exit_net": -2651.8002831002
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 7246.6999999981,
"quote_asset_bal": 7561.4325239023,
"total_value_mid": 8286.1025239021,
"total_value_exit_net": 8285.5590214021,
"total_value": 8286.1025239021,
"base_cost_quote": 3294.90792895,
"unrealized_pnl_exit_net": -2570.7814314502
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 7196.6999999981,
"quote_asset_bal": 7568.8239844273,
"total_value_mid": 8288.4939844271,
"total_value_exit_net": 8287.9542319271,
"total_value": 8288.4939844271,
"base_cost_quote": 3289.90417895,
"unrealized_pnl_exit_net": -2570.7739314502
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 7298.8999999981,
"quote_asset_bal": 7560.3181901023,
"total_value_mid": 8268.3114901021,
"total_value_exit_net": 8267.7804951271,
"total_value": 8268.3114901021,
"base_cost_quote": 3299.9262899,
"unrealized_pnl_exit_net": -2592.4639848752
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 7349.9999999981,
"quote_asset_bal": 7557.8645072523,
"total_value_mid": 8270.8145072521,
"total_value_exit_net": 8270.2797947521,
"total_value": 8270.8145072521,
"base_cost_quote": 3304.93784575,
"unrealized_pnl_exit_net": -2592.5225582502
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 7299.3999999981,
"quote_asset_bal": 7565.2446855273,
"total_value_mid": 8265.9870855271,
"total_value_exit_net": 8265.4615287271,
"total_value": 8265.9870855271,
"base_cost_quote": 3299.9226872,
"unrealized_pnl_exit_net": -2599.7058440002
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 7399.7999999981,
"quote_asset_bal": 7557.2702452023,
"total_value_mid": 8260.2512452021,
"total_value_exit_net": 8259.7240094521,
"total_value": 8260.2512452021,
"base_cost_quote": 3309.944698075,
"unrealized_pnl_exit_net": -2607.4909338252
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 7141.6999999981,
"quote_asset_bal": 7584.1543668773,
"total_value_mid": 8291.1826668771,
"total_value_exit_net": 8290.6523956521,
"total_value": 8291.1826668771,
"base_cost_quote": 3284.8954252,
"unrealized_pnl_exit_net": -2578.3973964252
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 7091.5999999981,
"quote_asset_bal": 7591.1927976273,
"total_value_mid": 8321.6275976271,
"total_value_exit_net": 8321.0797715271,
"total_value": 8321.6275976271,
"base_cost_quote": 3279.8796662,
"unrealized_pnl_exit_net": -2549.9926923002
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 6995.2999999981,
"quote_asset_bal": 7601.5768750023,
"total_value_mid": 8336.0833750021,
"total_value_exit_net": 8335.5324951271,
"total_value": 8336.0833750021,
"base_cost_quote": 3269.857855475,
"unrealized_pnl_exit_net": -2535.9022353502
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 7140.6999999981,
"quote_asset_bal": 7587.2839538023,
"total_value_mid": 8315.6353538021,
"total_value_exit_net": 8315.0890902521,
"total_value": 8315.6353538021,
"base_cost_quote": 3284.89162235,
"unrealized_pnl_exit_net": -2557.0864859002
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 7042.9999999981,
"quote_asset_bal": 7597.6383718273,
"total_value_mid": 8330.1103718271,
"total_value_exit_net": 8329.5610178271,
"total_value": 8330.1103718271,
"base_cost_quote": 3274.87011185,
"unrealized_pnl_exit_net": -2542.9474658502
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 7190.2999999981,
"quote_asset_bal": 7582.7286557773,
"total_value_mid": 8308.9489557771,
"total_value_exit_net": 8308.4042905521,
"total_value": 8308.9489557771,
"base_cost_quote": 3289.90497955,
"unrealized_pnl_exit_net": -2564.2293447752
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 7342.9999999981,
"quote_asset_bal": 7569.0617343523,
"total_value_mid": 8273.9897343521,
"total_value_exit_net": 8273.4610383521,
"total_value": 8273.9897343521,
"base_cost_quote": 3304.9272378,
"unrealized_pnl_exit_net": -2600.5279338002
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 7342.9999999981,
"quote_asset_bal": 7570.5659556523,
"total_value_mid": 8260.8079556521,
"total_value_exit_net": 8260.2902741521,
"total_value": 8260.8079556521,
"base_cost_quote": 3304.9272378,
"unrealized_pnl_exit_net": -2615.2029193002
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 7396.1999999981,
"quote_asset_bal": 7568.8448842524,
"total_value_mid": 8256.6914842522,
"total_value_exit_net": 8256.1755993022,
"total_value": 8256.6914842522,
"base_cost_quote": 3309.9317884,
"unrealized_pnl_exit_net": -2622.6010733502
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 7395.6999999981,
"quote_asset_bal": 7570.4943052024,
"total_value_mid": 8258.2944052022,
"total_value_exit_net": 8257.7785551272,
"total_value": 8258.2944052022,
"base_cost_quote": 3309.937492675,
"unrealized_pnl_exit_net": -2622.6532427502
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 7560.6999999981,
"quote_asset_bal": 7555.6560572024,
"total_value_mid": 8236.1190572022,
"total_value_exit_net": 8235.6087099522,
"total_value": 8236.1190572022,
"base_cost_quote": 3324.962553025,
"unrealized_pnl_exit_net": -2645.0099002752
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 7615.5999999981,
"quote_asset_bal": 7550.9544903274,
"total_value_mid": 8213.5116903272,
"total_value_exit_net": 8213.0147724272,
"total_value": 8213.5116903272,
"base_cost_quote": 3329.970105875,
"unrealized_pnl_exit_net": -2667.9098237752
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 7673.7999999981,
"quote_asset_bal": 7547.5034093023,
"total_value_mid": 8207.4502093022,
"total_value_exit_net": 8206.9552492022,
"total_value": 8207.4502093022,
"base_cost_quote": 3334.979059775,
"unrealized_pnl_exit_net": -2675.5272198752
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 7445.0999999981,
"quote_asset_bal": 7567.8343264024,
"total_value_mid": 8245.3384264022,
"total_value_exit_net": 8244.8302983272,
"total_value": 8245.3384264022,
"base_cost_quote": 3314.941642975,
"unrealized_pnl_exit_net": -2637.9456710502
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 85-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (121,010 closed trades) via GET /backtests/afe91539-2f10-44da-8d0a-a2a481f76e6b/trades (paginate through all pages).85-row audit sample from 121,010 closed trades (RFC 4180 CSV)
85-row audit sample from 121,010 closed trades (RFC 4180 CSV)
id,symbol,buy_time,sell_time,buy_price,sell_price,buy_quantity,sell_quantity,quantity,profit,profit_percentage,buy_fee_in_quote,sell_fee_in_quote,fee_buy,fee_sell,fill_type
,,2024-04-24T00:03:00Z,2024-04-24T00:06:00Z,1.299,1.303,3.9,,,0.00798915,0.1576982294,0.003799575,0.003811275,,,TP
,,2024-04-24T00:07:00Z,2024-04-24T00:38:00Z,1.301,1.305,3.9,,,0.00797745,0.1572252114,0.003805425,0.003817125,,,TP
,,2024-04-24T00:09:00Z,2024-04-24T00:31:00Z,1.299,1.303,3.9,,,0.00798915,0.1576982294,0.003799575,0.003811275,,,TP
,,2024-04-24T00:15:00Z,2024-04-24T00:31:00Z,1.296,1.3,3.9,,,0.0080067,0.1584104938,0.0037908,0.0038025,,,TP
,,2024-04-24T00:21:00Z,2024-04-24T00:27:00Z,1.291,1.295,3.9,,,0.00803595,0.1596049574,0.003776175,0.003787875,,,TP
,,2024-04-24T00:22:00Z,2024-04-24T00:24:00Z,1.289,1.293,3.9,,,0.00804765,0.1600853375,0.003770325,0.003782025,,,TP
,,2024-04-24T00:37:00Z,2024-04-24T00:51:00Z,1.303,1.307,3.9,,,0.00796575,0.1567536454,0.003811275,0.003822975,,,TP
,,2024-04-24T00:39:00Z,2024-04-24T00:42:00Z,1.301,1.305,3.9,,,0.00797745,0.1572252114,0.003805425,0.003817125,,,TP
,,2024-04-24T00:46:00Z,2024-04-24T01:01:00Z,1.305,1.309,3.9,,,0.00795405,0.1562835249,0.003817125,0.003828825,,,TP
,,2024-04-24T00:58:00Z,2024-04-24T01:04:00Z,1.307,1.311,3.9,,,0.00794235,0.1558148432,0.003822975,0.003834675,,,TP
,,2024-04-24T01:05:00Z,2024-04-24T01:56:00Z,1.31,1.314,3.9,,,0.0079248,0.1551145038,0.00383175,0.00384345,,,TP
,,2024-04-24T01:09:00Z,2024-04-24T01:30:00Z,1.308,1.312,3.9,,,0.0079365,0.1555810398,0.0038259,0.0038376,,,TP
,,2024-04-24T01:38:00Z,2024-04-24T01:48:00Z,1.307,1.311,3.9,,,0.00794235,0.1558148432,0.003822975,0.003834675,,,TP
,,2024-04-24T02:07:00Z,2024-04-24T05:15:00Z,1.313,1.317,3.9,,,0.00790725,0.1544173648,0.003840525,0.003852225,,,TP
,,2024-04-24T02:22:00Z,2024-04-24T04:45:00Z,1.311,1.315,3.9,,,0.00791895,0.1548817696,0.003834675,0.003846375,,,TP
,,2024-04-24T02:24:00Z,2024-04-24T04:21:00Z,1.308,1.312,3.9,,,0.0079365,0.1555810398,0.0038259,0.0038376,,,TP
,,2024-04-24T02:29:00Z,2024-04-24T04:18:00Z,1.306,1.31,3.9,,,0.0079482,0.1560490046,0.00382005,0.00383175,,,TP
,,2024-04-24T02:30:00Z,2024-04-24T02:39:00Z,1.302,1.306,3.9,,,0.0079716,0.1569892473,0.00380835,0.00382005,,,TP
,,2024-04-24T02:32:00Z,2024-04-24T02:34:00Z,1.298,1.302,3.9,,,0.007995,0.1579352851,0.00379665,0.00380835,,,TP
,,2024-04-24T03:00:00Z,2024-04-24T03:03:00Z,1.303,1.307,3.9,,,0.00796575,0.1567536454,0.003811275,0.003822975,,,TP
,,2024-04-24T03:10:00Z,2024-04-24T03:35:00Z,1.304,1.308,3.9,,,0.0079599,0.1565184049,0.0038142,0.0038259,,,TP
,,2024-04-24T03:23:00Z,2024-04-24T03:28:00Z,1.3,1.304,3.9,,,0.0079833,0.1574615385,0.0038025,0.0038142,,,TP
,,2024-04-24T03:27:00Z,2024-04-24T03:31:00Z,1.302,1.306,3.9,,,0.0079716,0.1569892473,0.00380835,0.00382005,,,TP
,,2024-04-24T04:09:00Z,2024-04-24T04:15:00Z,1.303,1.307,3.9,,,0.00796575,0.1567536454,0.003811275,0.003822975,,,TP
,,2024-04-24T04:49:00Z,2024-04-24T04:56:00Z,1.32,1.324,3.8,,,0.0076646,0.1528030303,0.003762,0.0037734,,,TP
,,2025-02-06T15:36:00Z,2025-02-06T15:37:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T15:39:00Z,2025-02-06T15:39:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T15:50:00Z,2025-02-06T15:50:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:05:00Z,2025-02-06T16:07:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:05:00Z,2025-02-06T16:05:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:17:00Z,2025-02-06T16:19:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:26:00Z,2025-02-06T16:26:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:27:00Z,2025-02-06T16:27:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:28:00Z,2025-02-06T16:30:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:30:00Z,2025-02-06T16:31:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:33:00Z,2025-02-06T16:34:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:39:00Z,2025-02-06T16:39:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:52:00Z,2025-02-06T16:54:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:54:00Z,2025-02-06T16:56:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T16:58:00Z,2025-02-06T16:59:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T19:55:00Z,2025-02-06T20:00:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T21:31:00Z,2025-02-06T21:31:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-06T22:10:00Z,2025-02-06T22:10:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-08T02:41:00Z,2025-02-08T02:42:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-08T04:41:00Z,2025-02-08T04:41:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-08T05:03:00Z,2025-02-08T05:04:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-08T05:18:00Z,2025-02-08T05:20:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-08T07:00:00Z,2025-02-08T07:01:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-03-05T19:25:00Z,2025-03-05T19:40:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-03-06T12:45:00Z,2025-03-06T12:45:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-06T00:18:00Z,2026-02-06T00:18:00Z,0.083,0.084,60.3,,,0.052747425,1.0539156627,0.003753675,0.0037989,,,TP
,,2026-02-06T00:19:00Z,2026-02-06T00:20:00Z,0.081,0.082,61.8,,,0.05424495,1.0836419753,0.00375435,0.0038007,,,TP
,,2026-02-06T00:23:00Z,2026-02-06T00:23:00Z,0.083,0.084,60.3,,,0.052747425,1.0539156627,0.003753675,0.0037989,,,TP
,,2026-02-06T00:27:00Z,2026-02-06T00:29:00Z,0.083,0.084,60.3,,,0.052747425,1.0539156627,0.003753675,0.0037989,,,TP
,,2026-02-22T13:56:00Z,2026-02-25T18:34:00Z,0.091,0.092,55,,,0.04745125,0.9480769231,0.00375375,0.003795,,,TP
,,2026-02-22T15:36:00Z,2026-02-25T15:48:00Z,0.09,0.091,55.6,,,0.0480523,0.9602777778,0.003753,0.0037947,,,TP
,,2026-02-23T00:59:00Z,2026-02-25T15:17:00Z,0.089,0.09,56.2,,,0.04865515,0.972752809,0.00375135,0.0037935,,,TP
,,2026-02-23T01:02:00Z,2026-02-25T02:09:00Z,0.088,0.089,56.9,,,0.049346525,0.9855113636,0.0037554,0.003798075,,,TP
,,2026-02-23T02:03:00Z,2026-02-23T02:03:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T01:16:00Z,2026-02-25T08:03:00Z,0.086,0.087,58.2,,,0.05064855,1.0119186047,0.0037539,0.00379755,,,TP
,,2026-02-24T06:53:00Z,2026-02-24T15:16:00Z,0.085,0.086,58.9,,,0.051346075,1.0255882353,0.003754875,0.00379905,,,TP
,,2026-02-24T07:06:00Z,2026-02-24T07:07:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T07:07:00Z,2026-02-24T07:25:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T07:46:00Z,2026-02-24T07:52:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T08:16:00Z,2026-02-24T08:17:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T08:45:00Z,2026-02-24T08:53:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T08:53:00Z,2026-02-24T08:54:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T09:16:00Z,2026-02-24T09:16:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T09:31:00Z,2026-02-24T09:31:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T10:00:00Z,2026-02-24T10:01:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T10:01:00Z,2026-02-24T10:06:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T10:31:00Z,2026-02-24T10:45:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T10:45:00Z,2026-02-24T11:02:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T11:10:00Z,2026-02-24T11:10:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T11:16:00Z,2026-02-24T11:17:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T11:57:00Z,2026-02-24T12:02:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T12:21:00Z,2026-02-24T12:21:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T12:45:00Z,2026-02-24T12:45:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T12:59:00Z,2026-02-24T12:59:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T13:17:00Z,2026-02-24T13:17:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T13:54:00Z,2026-02-24T14:02:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T14:06:00Z,2026-02-24T14:07:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T14:17:00Z,2026-02-24T14:17:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-24T15:02:00Z,2026-02-24T15:02:00Z,0.084,0.085,59.6,,,0.0520457,1.0395833333,0.0037548,0.0037995,,,TP
,,2026-02-25T05:23:00Z,2026-02-25T12:22:00Z,0.088,0.089,56.9,,,0.049346525,0.9855113636,0.0037554,0.003798075,,,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 GTCUSDT?
Did it beat Buy & Hold of GTCUSDT?
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 GTCUSDT (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,244.83 USDT
P&L: -1,755.17 USDT (-17.55%)
Result: LOSS
Completed trades: 121010
Open orders at end: 658
Win rate: 100.0%
Avg. profit/trade: 0.010259 USDT
Best trade: 0.054245 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 1,241.400937 USDT
Max drawdown: -22.19%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.60
Total fees: 914.16 USDT
Avg hold time: 16.6h
TP / SL / TSL: 121010 / 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: 1204.0s
bt.summary_textAre these results guaranteed for live trading?
Are these results guaranteed for live trading?
static disclaimerGlossary
| Term | Definition |
|---|---|
| Return % | Total percentage change of portfolio value over the backtest window: (final_value - start_balance) / start_balance x 100. |
| CAGR | Compound Annual Growth Rate. Annualized return assuming compounding: (final/start)^(365.25/days) - 1. |
| Win Rate | Share of closed trades with positive net P&L (after fees): wins / (wins + losses) x 100. |
| Max Drawdown | Largest peak-to-trough decline of equity, measured in % of the previous peak. The single most important risk metric. |
| Drawdown Duration | Number of days spent below the previous equity peak before recovering (or end of window if not recovered). |
| Sharpe Ratio (annualized) | Mean daily return divided by standard deviation of daily returns, scaled by 365. Risk-adjusted return - higher is better, > 1 is decent. |
| Sortino Ratio (annualized) | Like Sharpe but only penalizes downside volatility. Often more representative for asymmetric strategies. |
| Volatility (ann.) | Standard deviation of daily returns x 365, expressed as a percentage. |
| Time in Market | Fraction of the period where the strategy held base-asset exposure (not 100% cash). |
| Buy & Hold | Reference benchmark: simply buying the underlying token at the start and holding to the end of the window. |
| Outperformance (pp) | Strategy return minus Buy & Hold return, in percentage points (not percent change). |
| Fulfilled Trades | Round-trip trades that have both an entry fill and an exit fill within the window. |
| Active Orders | Open positions still pending exit at the end of the backtest - their unrealized P&L is included in final_value. |
| Lookahead Bias | Using information that wouldn’t have been available at trade time. The validator flags trades whose buy_time precedes the configured from date. |
How to Read This Report
GET /backtests/{id} * Fields used: return_pct, fulfilled_trades, win_rateCheck the headline return
Reproduce This Run
GET /backtests/{id} * Fields used: symbol, mode_name, config (replayed verbatim)X-API-Key. Payload fields are validated against ENGINE.md Section 20; non-engine keys are stripped so the replay produces the exact same run.curl -X POST https://uncoded-backtest-api-production.up.railway.app/backtests \
-H "X-API-Key: $UNCODED_API_KEY" \
-H "Content-Type: application/json" \
-d '{"symbol":"GTCUSDT","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.001,"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": "GTCUSDT LongTimeLong Backtest",
"alternateName": "GTCUSDT-3LongTimeLong.json-afe91539-2f10-44da-8d0a-a2a481f76e6b",
"description": "Backtest of the LongTimeLong strategy on GTCUSDT: -17.55% return over 2024-04-24 to 2026-02-25.",
"identifier": "afe91539-2f10-44da-8d0a-a2a481f76e6b",
"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": [
"GTCUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "GTCUSDT",
"description": "Trading pair: GTCUSDT"
},
{
"@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": -17.5517,
"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": 1241.40093652,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 8244.83029833,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 121010,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 658,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.05424495,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.01025866,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 1204,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -9.958541677328759,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -22.185170242071703,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -2335.0567580000998,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 123,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.598005060893007,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.6083752613660361,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 15.482254379988483,
"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.02505969088235296,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.02505969088235296,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.00797745,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 2.1300737250000017,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.6428262750000002,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 857.1017,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 85,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 0.1,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 5.114021164021164,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 5472.53191607104,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:08.840Z",
"dateModified": "2026-05-15T13:01:10.433Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:10 UTC