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.
FLUXUSDT * LongTimeLong
FLUXUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -18.51% | 111,078 closed trades | 100.0% closed WR | 707 open orders
Headline Performance
GET /backtests/{id} + /equity + /trades * Fields used: return_pct, final_value, total_profit, win_rate, fulfilled_trades, active_orders, unrealized_pnl_exit_net, max_profit, min_profitfinal_value - start_balance.Return
Final Value
Portfolio PnL
Realized Profit
Unrealized PnL
Win Rate (closed)
Closed Trades
Open Orders
Best Closed Trade
Worst Closed Trade
TL;DR
Performance KPI Metrics
GET /backtests/{id} + /equity + /trades * Fields used: server aggregates from /daily-stats and /extras (Total Fees, Gross Profit/Loss, fill-type counts) plus <AnalyticsCharts> KPI strip * Transform: bt.* + dailyStats.totals + extras.deep_dive.fill_type_breakdownMax Drawdown
Profit Factor
Sharpe Ratio
Total Fees
Avg Hold Time
TP / SL / TSL
Trade Economics
| Metric | Value | Interpretation |
|---|---|---|
| Profit Factor | inf (no losing trades) | Sum of winning trades / sum of losing trades. >1 = profitable edge, >2 = strong, inf = no losses. |
| Gross Profit | 1,482.52 USDT | Sum of all winning trades before fees. |
| Gross Loss | 0.00 USDT | Absolute sum of all losing trades. |
| Total Fees | 834.52 USDT | Buy + sell fees across all trades. |
| Fee Drag | 56.3% of gross profit | What share of edge the exchange consumed. |
| Avg Hold Time | 18.9 h | Mean duration a position is open. |
Exit Mix (Fill Types)
| Exit Type | Count | Share | What It Means |
|---|---|---|---|
| TP (Take Profit) | 111,078 | 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 FLUXUSDT, the strategy’s profit factor of inf (no losing trades) indicates gross winners materially exceeded gross losers in this window, exits are TP-dominant (100.0%), so most profit comes from hitting take-profit targets, fees ate 56.3% of gross profit - over-trading risk.Chunking & Headings Guide
Chunk markers
Every section is delimited by paired JSX comments - invisible to readers, trivial for splitters. (Earlier versions of this exporter used HTML comments; we switched to JSX comments in v2.4.0 because MDX 3 - the parser Mintlify uses - forbids HTML comments at the document level.) The example below uses uppercaseRAG-CHUNK so it doesn’t accidentally match a splitter that scans this very page; real markers use lowercase rag-chunk:
{/* RAG-CHUNK:start id="tldr" type="summary" title="TL;DR" tokens~="120" backtest_id="799056ec-d9a7-427c-be64-39889b6b81a5" */}
...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 FLUXUSDT, 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 FLUXUSDT 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: FLUXUSDT 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 -18.51% return on FLUXUSDT a good backtest result?
Is a -18.51% return on FLUXUSDT 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 FLUXUSDT backtest?
What is the annualised return for this FLUXUSDT 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 FLUXUSDT?
How is this backtest different from others on FLUXUSDT?
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 | FLUXUSDT |
| 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,148.75 USDT |
| Avg Profit / Trade | +0.0058 USDT |
| Trades / Month | 5023.4 |
| Status | completed |
| Created | 2026-05-08 13:39:10 UTC |
| Started | 2026-05-09 15:28:50 UTC |
| Completed | 2026-05-09 15:48:18 UTC |
| Compute Time | 16m 49s |
| Backtest ID | 799056ec-d9a7-427c-be64-39889b6b81a5 |
| Engine summary: |
Backtest FLUXUSDT (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,148.75 USDT
P&L: -1,851.25 USDT (-18.51%)
Result: LOSS
Completed trades: 111078
Open orders at end: 707
Win rate: 100.0%
Avg. profit/trade: 0.005834 USDT
Best trade: 0.011214 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 647.995541 USDT
Max drawdown: -25.24%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.47
Total fees: 834.52 USDT
Avg hold time: 18.9h
TP / SL / TSL: 111078 / 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: 1009.4s
Verifiable Claims
| Claim | Evidence | Source |
|---|---|---|
| Strategy returned -18.51% over the tested window | return_pct = -18.5125 | GET /backtests/{id} -> return_pct |
| Capital grew from 10,000.00 to 8,148.75 USDT | final_value - start_balance = -1,851.25 USDT | GET /backtests/{id} -> start_balance, final_value |
| Roughly 111078 of 111078 trades were profitable | win_rate = 100% | GET /backtests/{id} -> win_rate, fulfilled_trades |
| Worst peak-to-trough loss was 25.24% | max_drawdown_pct = 25.2389 | derived client-side from /equity series |
| Risk-adjusted return (Sharpe, annualized, rf=0) = -0.47 | sharpe_annualized = -0.4657 | 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.01 |
stopLoss | false |
tickSize | 0.0001 |
buySplits | 9 |
{
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "FLUXUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
}
Full Mode Configuration
POST /backtests to reproduce the run.- Engine Parameters
- YAML
| Parameter | Value | Meaning |
|---|---|---|
assumed_spread_bps | 0 | Spread (basis points) added to taker fills on top of the candle price. |
buyPercentage | 0.1 | Buy-trigger threshold as a fraction (e.g. 0.1 = -0.1% from last reference price). |
buySplits | 9 | Number of price levels in the buy-ladder (DCA depth). |
buyVolumes | [20,15,10,10,10,10,5,5,5] | Per-split sizing weights (sum ~ 100). Distributes investmentPerBuy x buySplits across the ladder. |
canBuy | true | Master switch - disables all buy-side logic when false. |
canBuyDown | false | Allow re-entries below the last buy price. |
canBuyUp | true | Allow re-entries above the last buy price (true) or only below (false). |
canSell | true | Master switch - disables all sell-side logic when false. |
dontBuyBelowQuoteAssetBalance | 1 | Refuse to open new buys if free quote drops below this absolute USDT amount. |
fees_in_quote | true | If true, fees are deducted from the quote (USDT) leg of every fill. |
intrabar_mode | OLHC | Intra-bar fill model (OLHC, OHLC, …) - see ENGINE.md Section 4. |
investmentPerBuy | 25 | Notional invested per buy event, in quote (USDT). |
investmentPerFreeQuotePercent | 0.01 | When investmentPercentMode = true: fraction of free quote balance to commit per buy. |
investmentPercentMode | false | If true, sizing is taken as a fraction of free quote balance instead of fixed USDT. |
maker_fee_bps | 7.5 | Maker fee in basis points (e.g. 7.5 = 0.075%). |
minInvestmentPerQuote | 25 | Hard floor on per-buy notional, regardless of percent-mode math. |
minNotional | 5 | Exchange minimum notional per order (USDT). |
order_latency_seconds | 2 | Latency injected between signal time and order placement. |
sellActivateDistancePercentage | 0.1 | Distance from buy price (%) at which a TSL becomes armed. |
sellCancelDistancePercentage | 1 | Distance (%) at which an unfilled sell order is cancelled and re-priced. |
sellPercentages | [0.25,0.35,0.5,0.75,1,2.5,5,10,15] | Take-profit ladder, each value is the per-tier profit target as a fraction. |
startBal | 10000 | Initial portfolio value in the quote currency (USDT). |
stepSize | 0.01 | Exchange size step (base asset). |
stopLoss | false | Hard stop-loss enabled flag. |
stopLossPercentage | 5 | Hard stop-loss distance from entry as a percent (5.0 = -5%). |
taker_fee_bps | 7.5 | Taker fee in basis points. |
tickSize | 0.0001 | Exchange price tick (quote currency). |
trailingStopLossPercentages | [0,0,0,0,0,0,0,0,0] | Per-tier trailing-SL distances. Zero entries disable TSL on that tier. |
triggerCoolDown | 1 | Minimum bars/ticks between two consecutive buys on the same level. |
to: "2026-02-25 23:59:59"
from: "2024-04-24 00:00:01"
canBuy: true
symbol: FLUXUSDT
canSell: true
canBuyUp: true
startBal: 10000
stepSize: 0.01
stopLoss: false
tickSize: 0.0001
buySplits: 9
buyVolumes:
- 20
- 15
- 10
- 10
- 10
- 10
- 5
- 5
- 5
canBuyDown: false
minNotional: 5
buyPercentage: 0.1
fees_in_quote: true
intrabar_mode: OLHC
maker_fee_bps: 7.5
taker_fee_bps: 7.5
sellPercentages:
- 0.25
- 0.35
- 0.5
- 0.75
- 1
- 2.5
- 5
- 10
- 15
triggerCoolDown: 1
investmentPerBuy: 25
assumed_spread_bps: 0
stopLossPercentage: 5
investmentPercentMode: false
minInvestmentPerQuote: 25
order_latency_seconds: 2
trailingStopLossPercentages:
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
sellCancelDistancePercentage: 1
dontBuyBelowQuoteAssetBalance: 1
investmentPerFreeQuotePercent: 0.01
sellActivateDistancePercentage: 0.1
Strategy Logic
strategyLogic object to buildVerifiableMdx (or wire up getModes() so the exporter can derive a sketch) to remove this notice.GET /modes and select the entry whose filename == "3LongTimeLong.json" to inspect the public rule fields, or consult the engine source for the executable logic.
Engine Specification
engine_version field in this document’s frontmatter (see also the Data Source Metadata section).Engine Specification
uncoded.ch/docs/engine; this report only pins which revision applied (engine_version in the frontmatter).
Data Source Metadata
buildVerifiableMdx({ dataSource: ... }) to fill it in. The engine spec describes deterministic execution semantics (segment order, fill rules, fee classification) that cannot be reverse-engineered from trades alone.| Field | Value | Source |
|---|---|---|
| Market-data provider | Binance Spot | caller DataSourceInput.provider |
| Exchange / venue | binance | caller DataSourceInput.exchange |
| Symbol | FLUXUSDT | 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,225 | ##
|######### #########::####
|:::::::::#:::::::::::::::###
|:::::::::::::::::::::::::::: ##
|::::::::::::::::::::::::::::## #::# #
|::::::::::::::::::::::::::::::# ::::# #:##### #
|:::::::::::::::::::::::::::::::#:::::##:::::::## :### ##
|:::::::::::::::::::::::::::::::::::::::::::::::: ::::#::#
|::::::::::::::::::::::::::::::::::::::::::::::::# ::::::::##
7,962 |:::::::::::::::::::::::::::::::::::::::::::::::::#::::::::::
+------------------------------------------------------------
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,283.60 USDT @ 2024-12-08 23:59:00 UTC |
| Trough | 7,688.13 USDT @ 2025-11-04 23:59:00 UTC |
| Drawdown Duration | 331.0 days |
| Recovery | not yet recovered within window |
| All-time Peak | 10,283.60 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,078.95 | 7,078.95 | 86.9% |
| FLUX | 16,370.10000000 | 0.00 | 0.0% |
| Other (open positions, fee reserves, …) | - | 1,069.80 | 13.1% |
| Total | - | 8,148.75 | 100.0% |
Trade Analytics
GET /backtests/{id}/trades * Fields used: profit, profit_percentage, fill_type, buy_time, sell_time, buy_price, sell_price, buy_quantity, buy_fee_in_quote, sell_fee_in_quoteWins
Losses
Breakeven
Profit Factor
Payoff Ratio
Expectancy / Trade
Avg Win
Avg Loss
Median Trade
Max Win Streak
Max Loss Streak
Avg Holding
Median Holding
Total Volume
Total Fees
Gross Performance
| Metric | Value | Source |
|---|---|---|
| Gross Profit (winners only) | +0.72 USDT | Sum profit where profit > 0 (client-side from /trades) |
| Gross Loss (losers only) | -0.00 USDT | Sum -profit where profit < 0 (client-side from /trades) |
| Net Profit | +0.72 USDT | Gross Profit - Gross Loss |
| Closed-trade buy fees | 0.38 USDT | Sum buy_fee_in_quote over matched-pair rows of /trades |
| Closed-trade sell fees | 0.38 USDT | Sum sell_fee_in_quote over matched-pair rows of /trades |
| Closed-trade fees subtotal | 0.75 USDT | buy + sell on matched pairs |
| Open-position buy fees | 833.77 USDT | bt.total_fees - closed-trade subtotal - buy-side fees on the 707 orders still open at end of window (no matching sell row yet) |
| Total Fees Paid (authoritative) | 834.52 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 | 115186.44% | 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/799056ec-d9a7-427c-be64-39889b6b81a5/trades |
| Closed-trade sell fees | Sum row.sell_fee_in_quote | sell_fee_in_quote per row | GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/trades |
| (A) Closed-trade subtotal | Sum (buy_fee_in_quote + sell_fee_in_quote) | both fee fields, matched-pair rows only | GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/trades |
| (B) Total Fees Paid (engine) | direct read | total_fees (scalar) | GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5 |
| (C) = (B) - (A) Open-position buy fees | bt.total_fees - closed_subtotal | derived | - |
| Open orders count | direct read | active_orders | GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5 |
| Numerical walk-through for this run: |
(A) Closed-trade subtotal = 0.375115 + 0.376221
= 0.751335 USDT
(B) bt.total_fees = 834.519752 USDT <- authoritative
(C) Open-position buy fees = (B) - (A)
= 834.519752 - 0.751335
= 833.768417 USDT
Identity check: (A) + (C) ?= (B)
0.751335 + 833.768417 = 834.519752 USDT
vs bt.total_fees = 834.519752 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 707 open orders.Holding Period Distribution
| Min | Median | Avg | Max |
|---|---|---|---|
| 0.0h | 0.2h | 10.8h | 125.3h |
Trade Timeline
| First Trade | Last Trade |
|---|---|
| 2024-04-24 00:02:00 UTC | 2026-02-25 23:58:00 UTC |
Breakdown by Exit Type
| Type | Count | Cumulative Profit | Avg Return |
|---|---|---|---|
TP | 100 | +0.72 USDT | +0.14% |
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.13 |
| 2024-06 | 1 | 1 | 100.0% | +0.00 |
| 2025-02 | 2 | 2 | 100.0% | +0.01 |
| 2025-04 | 1 | 1 | 100.0% | +0.00 |
| 2025-06 | 1 | 1 | 100.0% | +0.00 |
| 2025-07 | 2 | 2 | 100.0% | +0.01 |
| 2025-08 | 6 | 6 | 100.0% | +0.03 |
| 2025-09 | 5 | 5 | 100.0% | +0.02 |
| 2025-10 | 2 | 2 | 100.0% | +0.01 |
| 2025-11 | 3 | 3 | 100.0% | +0.01 |
| 2026-01 | 3 | 3 | 100.0% | +0.03 |
| 2026-02 | 49 | 49 | 100.0% | +0.45 |
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-01-31 -> 2026-01-31 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 2 | TP | 2026-01-31 -> 2026-01-31 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 3 | TP | 2026-02-02 -> 2026-02-02 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 4 | TP | 2026-02-02 -> 2026-02-02 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 5 | TP | 2026-02-02 -> 2026-02-02 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 6 | TP | 2026-02-02 -> 2026-02-02 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 7 | TP | 2026-02-02 -> 2026-02-02 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 8 | TP | 2026-02-03 -> 2026-02-03 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 9 | TP | 2026-02-03 -> 2026-02-03 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
| 10 | TP | 2026-02-03 -> 2026-02-03 | 0.080100 | 0.080400 | +0.0112 | +0.22% |
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 | -25.24% @ 2025-11-04 23:59:00 UTC |
| Mean | -8.40% |
| Std Dev | 6.99% |
| Last | -20.76% |
| Points | 673 |
| Across 673 points the series ranged from -25.24% (2025-11-04 23:59:00 UTC) to 0.00% (2024-04-24 23:59:00 UTC), averaging -8.40%. 0% of points were positive, 96% negative. The most recent value is -20.76%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-05T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-17T23:59:00+00:00","drawdown":0},{"timestamp":"2024-05-28T23:59:00+00:00","drawdown":0},{"timestamp":"2024-06-09T23:59:00+00:00","drawdown":-0.2834083163988246},{"timestamp":"2024-06-20T23:59:00+00:00","drawdown":-1.2020934527492921},{"timestamp":"2024-07-01T23:59:00+00:00","drawdown":-1.1841957856738377},{"timestamp":"2024-07-13T23:59:00+00:00","drawdown":-1.281975406804187},{"timestamp":"2024-07-24T23:59:00+00:00","drawdown":-0.7815345431003189},{"timestamp":"2024-08-05T23:59:00+00:00","drawdown":-3.886018884728811},{"timestamp":"2024-08-16T23:59:00+00:00","drawdown":-3.6192327032614733},{"timestamp":"2024-08-27T23:59:00+00:00","drawdown":-1.1516816827198761},{"timestamp":"2024-09-08T23:59:00+00:00","drawdown":-0.8683535409763},{"timestamp":"2024-09-19T23:59:00+00:00","drawdown":-0.38436239526118476},{"timestamp":"2024-09-30T23:59:00+00:00","drawdown":-0.5850097427433155},{"timestamp":"2024-10-12T23:59:00+00:00","drawdown":-1.4340114064377538},{"timestamp":"2024-10-23T23:59:00+00:00","drawdown":-1.6064711731382488},{"timestamp":"2024-11-04T23:59:00+00:00","drawdown":-2.088439467791292},{"timestamp":"2024-11-15T23:59:00+00:00","drawdown":-0.8691153815177204},{"timestamp":"2024-11-26T23:59:00+00:00","drawdown":-0.08121393736669812},{"timestamp":"2024-12-08T23:59:00+00:00","drawdown":0},{"timestamp":"2024-12-19T23:59:00+00:00","drawdown":-2.502888602136465},{"timestamp":"2024-12-31T23:59:00+00:00","drawdown":-2.1781685559003283},{"timestamp":"2025-01-11T23:59:00+00:00","drawdown":-2.591618429040533},{"timestamp":"2025-01-22T23:59:00+00:00","drawdown":-3.404928688902742},{"timestamp":"2025-02-03T23:59:00+00:00","drawdown":-4.857381882316247},{"timestamp":"2025-02-14T23:59:00+00:00","drawdown":-4.383565148872194},{"timestamp":"2025-02-26T23:59:00+00:00","drawdown":-6.987060358940283},{"timestamp":"2025-03-09T23:59:00+00:00","drawdown":-10.916824759687259},{"timestamp":"2025-03-20T23:59:00+00:00","drawdown":-10.737280734019361},{"timestamp":"2025-04-01T23:59:00+00:00","drawdown":-12.367353211561948},{"timestamp":"2025-04-12T23:59:00+00:00","drawdown":-13.354833927446078},{"timestamp":"2025-04-23T23:59:00+00:00","drawdown":-10.284398262313841},{"timestamp":"2025-05-05T23:59:00+00:00","drawdown":-9.852400057700969},{"timestamp":"2025-05-16T23:59:00+00:00","drawdown":-8.40726264348949},{"timestamp":"2025-05-28T23:59:00+00:00","drawdown":-10.098536102635597},{"timestamp":"2025-06-08T23:59:00+00:00","drawdown":-13.268863600153743},{"timestamp":"2025-06-19T23:59:00+00:00","drawdown":-14.961887531616316},{"timestamp":"2025-07-01T23:59:00+00:00","drawdown":-15.450632354438543},{"timestamp":"2025-07-12T23:59:00+00:00","drawdown":-11.831853343948985},{"timestamp":"2025-07-24T23:59:00+00:00","drawdown":-10.565346080738784},{"timestamp":"2025-08-04T23:59:00+00:00","drawdown":-12.024786256927538},{"timestamp":"2025-08-15T23:59:00+00:00","drawdown":-13.625002847244025},{"timestamp":"2025-08-27T23:59:00+00:00","drawdown":-12.988889987134552},{"timestamp":"2025-09-07T23:59:00+00:00","drawdown":-14.047493459411346},{"timestamp":"2025-09-19T23:59:00+00:00","drawdown":-13.71575237549297},{"timestamp":"2025-09-30T23:59:00+00:00","drawdown":-14.740367139466487},{"timestamp":"2025-10-11T23:59:00+00:00","drawdown":-20.967680473036793},{"timestamp":"2025-10-23T23:59:00+00:00","drawdown":-21.17080790706287},{"timestamp":"2025-11-03T23:59:00+00:00","drawdown":-24.895697491193243},{"timestamp":"2025-11-14T23:59:00+00:00","drawdown":-13.074815015834783},{"timestamp":"2025-11-26T23:59:00+00:00","drawdown":-15.756796020388903},{"timestamp":"2025-12-07T23:59:00+00:00","drawdown":-16.64890420682945},{"timestamp":"2025-12-19T23:59:00+00:00","drawdown":-16.829797690909665},{"timestamp":"2025-12-30T23:59:00+00:00","drawdown":-17.117771238886277},{"timestamp":"2026-01-10T23:59:00+00:00","drawdown":-16.446836570049985},{"timestamp":"2026-01-22T23:59:00+00:00","drawdown":-16.91355022982067},{"timestamp":"2026-02-02T23:59:00+00:00","drawdown":-19.23297423196453},{"timestamp":"2026-02-14T23:59:00+00:00","drawdown":-19.77269819149318},{"timestamp":"2026-02-25T23:59:00+00:00","drawdown":-20.75974115333094}]
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 | 88.89 USDT @ 2024-12-08 23:59:00 UTC |
| Worst Unrealized | -2,807.36 USDT @ 2025-11-04 23:59:00 UTC |
| Mean | -960.73 USDT |
| Std Dev | 807.39 USDT |
| Last | -2,464.32 USDT |
| Points | 673 |
| Sum | -646,572.08 USDT |
| Across 673 points the series ranged from -2,807.36 USDT (2025-11-04 23:59:00 UTC) to 88.89 USDT (2024-12-08 23:59:00 UTC), averaging -960.73 USDT. 3% of points were positive, 97% negative. The most recent value is -2,464.32 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","pnl":-2.210211553},{"timestamp":"2024-05-05T23:59:00+00:00","pnl":-3.1221405965},{"timestamp":"2024-05-17T23:59:00+00:00","pnl":-7.4587686307},{"timestamp":"2024-05-28T23:59:00+00:00","pnl":7.761229642},{"timestamp":"2024-06-09T23:59:00+00:00","pnl":-18.8800680017},{"timestamp":"2024-06-20T23:59:00+00:00","pnl":-119.3481019925},{"timestamp":"2024-07-01T23:59:00+00:00","pnl":-123.1944471947},{"timestamp":"2024-07-13T23:59:00+00:00","pnl":-143.6496654795},{"timestamp":"2024-07-24T23:59:00+00:00","pnl":-104.2901900318},{"timestamp":"2024-08-05T23:59:00+00:00","pnl":-429.6168588615},{"timestamp":"2024-08-16T23:59:00+00:00","pnl":-413.110997894},{"timestamp":"2024-08-27T23:59:00+00:00","pnl":-178.6303276648},{"timestamp":"2024-09-08T23:59:00+00:00","pnl":-163.3709936553},{"timestamp":"2024-09-19T23:59:00+00:00","pnl":-122.2061508343},{"timestamp":"2024-09-30T23:59:00+00:00","pnl":-147.100984333},{"timestamp":"2024-10-12T23:59:00+00:00","pnl":-239.7025171623},{"timestamp":"2024-10-23T23:59:00+00:00","pnl":-261.287418031},{"timestamp":"2024-11-04T23:59:00+00:00","pnl":-317.4635308565},{"timestamp":"2024-11-15T23:59:00+00:00","pnl":-199.1676925015},{"timestamp":"2024-11-26T23:59:00+00:00","pnl":-22.2519522385},{"timestamp":"2024-12-08T23:59:00+00:00","pnl":88.8930161267},{"timestamp":"2024-12-19T23:59:00+00:00","pnl":-184.0870039618},{"timestamp":"2024-12-31T23:59:00+00:00","pnl":-162.865373792},{"timestamp":"2025-01-11T23:59:00+00:00","pnl":-212.667662704},{"timestamp":"2025-01-22T23:59:00+00:00","pnl":-306.7937151665},{"timestamp":"2025-02-03T23:59:00+00:00","pnl":-470.9355279933},{"timestamp":"2025-02-14T23:59:00+00:00","pnl":-436.5564063678},{"timestamp":"2025-02-26T23:59:00+00:00","pnl":-714.4133426703},{"timestamp":"2025-03-09T23:59:00+00:00","pnl":-1129.0181334288},{"timestamp":"2025-03-20T23:59:00+00:00","pnl":-1120.6553650985},{"timestamp":"2025-04-01T23:59:00+00:00","pnl":-1298.5150017325},{"timestamp":"2025-04-12T23:59:00+00:00","pnl":-1412.3311894545},{"timestamp":"2025-04-23T23:59:00+00:00","pnl":-1106.412509544},{"timestamp":"2025-05-05T23:59:00+00:00","pnl":-1073.8353618497},{"timestamp":"2025-05-16T23:59:00+00:00","pnl":-938.5637862834},{"timestamp":"2025-05-28T23:59:00+00:00","pnl":-1123.2374920264},{"timestamp":"2025-06-08T23:59:00+00:00","pnl":-1456.3767807774},{"timestamp":"2025-06-19T23:59:00+00:00","pnl":-1639.3178235727},{"timestamp":"2025-07-01T23:59:00+00:00","pnl":-1700.5680667282},{"timestamp":"2025-07-12T23:59:00+00:00","pnl":-1337.4430604852},{"timestamp":"2025-07-24T23:59:00+00:00","pnl":-1222.9553344077},{"timestamp":"2025-08-04T23:59:00+00:00","pnl":-1382.0430415829},{"timestamp":"2025-08-15T23:59:00+00:00","pnl":-1554.5997214614},{"timestamp":"2025-08-27T23:59:00+00:00","pnl":-1497.5802659189},{"timestamp":"2025-09-07T23:59:00+00:00","pnl":-1612.0687392919},{"timestamp":"2025-09-19T23:59:00+00:00","pnl":-1585.1417640889},{"timestamp":"2025-09-30T23:59:00+00:00","pnl":-1697.2510080002},{"timestamp":"2025-10-11T23:59:00+00:00","pnl":-2345.9233684555},{"timestamp":"2025-10-23T23:59:00+00:00","pnl":-2379.7200492612},{"timestamp":"2025-11-03T23:59:00+00:00","pnl":-2769.1910486272},{"timestamp":"2025-11-14T23:59:00+00:00","pnl":-1589.9400840652},{"timestamp":"2025-11-26T23:59:00+00:00","pnl":-1881.2585343554},{"timestamp":"2025-12-07T23:59:00+00:00","pnl":-1983.0455205187},{"timestamp":"2025-12-19T23:59:00+00:00","pnl":-2011.5742235045},{"timestamp":"2025-12-30T23:59:00+00:00","pnl":-2046.123617934},{"timestamp":"2026-01-10T23:59:00+00:00","pnl":-1982.2896603847},{"timestamp":"2026-01-22T23:59:00+00:00","pnl":-2038.7590980942},{"timestamp":"2026-02-02T23:59:00+00:00","pnl":-2287.6470821935},{"timestamp":"2026-02-14T23:59:00+00:00","pnl":-2356.9140190115},{"timestamp":"2026-02-25T23:59:00+00:00","pnl":-2464.322516027}]
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,283.60 USDT @ 2024-12-08 23:59:00 UTC |
| Trough Total Equity | 7,688.13 USDT @ 2025-11-04 23:59:00 UTC |
| Mean | 9,341.04 USDT |
| Std Dev | 640.34 USDT |
| Last | 8,148.75 USDT |
| Points | 673 |
| Sum | 6,286,523.05 USDT |
| Across 673 points the series ranged from 7,688.13 USDT (2025-11-04 23:59:00 UTC) to 10,283.60 USDT (2024-12-08 23:59:00 UTC), averaging 9,341.04 USDT. 100% of points were positive, 0% negative. The most recent value is 8,148.75 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","quote":9915.9183057888,"base":82.92737778499941,"total":9998.8456835738},{"timestamp":"2024-05-05T23:59:00+00:00","quote":9825.3463887293,"base":182.1857281475004,"total":10007.5321168768},{"timestamp":"2024-05-17T23:59:00+00:00","quote":9784.3102587845,"base":227.91570292399956,"total":10012.2259617085},{"timestamp":"2024-05-28T23:59:00+00:00","quote":9951.6684730799,"base":82.88323191929885,"total":10034.5517049992},{"timestamp":"2024-06-09T23:59:00+00:00","quote":9656.8100565411,"base":356.76617453749896,"total":10013.5762310786},{"timestamp":"2024-06-20T23:59:00+00:00","quote":9259.4792434377,"base":661.8422937140003,"total":9921.3215371517},{"timestamp":"2024-07-01T23:59:00+00:00","quote":9340.2074190478,"base":582.9114083099994,"total":9923.1188273578},{"timestamp":"2024-07-13T23:59:00+00:00","quote":9270.7674753218,"base":642.5322870889995,"total":9913.2997624108},{"timestamp":"2024-07-24T23:59:00+00:00","quote":9281.67325965,"base":681.8809554375002,"total":9963.5542150875},{"timestamp":"2024-08-05T23:59:00+00:00","quote":8634.3895489193,"base":1017.4112248580004,"total":9651.8007737773},{"timestamp":"2024-08-16T23:59:00+00:00","quote":8649.6662198823,"base":1028.925318806001,"total":9678.5915386883},{"timestamp":"2024-08-27T23:59:00+00:00","quote":9008.414872865,"base":917.9690324804997,"total":9926.3839053455},{"timestamp":"2024-09-08T23:59:00+00:00","quote":9286.9533706978,"base":667.8824491972991,"total":9954.8358198951},{"timestamp":"2024-09-19T23:59:00+00:00","quote":9349.4641467531,"base":653.9742391839991,"total":10003.4383859371},{"timestamp":"2024-09-30T23:59:00+00:00","quote":9235.8041768276,"base":749.2444299111994,"total":9985.0486067388},{"timestamp":"2024-10-12T23:59:00+00:00","quote":9002.7810285416,"base":896.9954994366999,"total":9899.7765279783},{"timestamp":"2024-10-23T23:59:00+00:00","quote":8961.9759672779,"base":920.4790365645003,"total":9882.4550038424},{"timestamp":"2024-11-04T23:59:00+00:00","quote":8919.6917932203,"base":914.3552508510002,"total":9834.0470440713},{"timestamp":"2024-11-15T23:59:00+00:00","quote":9137.4203972029,"base":827.3573212711999,"total":9964.7777184741},{"timestamp":"2024-11-26T23:59:00+00:00","quote":9663.2704011079,"base":493.5262435004988,"total":10156.7966446084},{"timestamp":"2024-12-08T23:59:00+00:00","quote":9924.283281158,"base":359.31491155000003,"total":10283.598192708},{"timestamp":"2024-12-19T23:59:00+00:00","quote":9103.6642511763,"base":922.546934476899,"total":10026.2111856532},{"timestamp":"2024-12-31T23:59:00+00:00","quote":9115.8537514716,"base":943.7503389876983,"total":10059.6040904593},{"timestamp":"2025-01-11T23:59:00+00:00","quote":9063.0341081786,"base":954.0524585987005,"total":10017.0865667773},{"timestamp":"2025-01-22T23:59:00+00:00","quote":8923.309360958,"base":1010.1396466350016,"total":9933.449007593},{"timestamp":"2025-02-03T23:59:00+00:00","quote":8617.6985133628,"base":1166.3860438823995,"total":9784.0845572452},{"timestamp":"2025-02-14T23:59:00+00:00","quote":8617.0256888825,"base":1215.7842773999,"total":9832.8099662824},{"timestamp":"2025-02-26T23:59:00+00:00","quote":8196.6756032486,"base":1368.401376664,"total":9565.0769799126},{"timestamp":"2025-03-09T23:59:00+00:00","quote":7626.5517118352,"base":1534.404087184501,"total":9160.9557990197},{"timestamp":"2025-03-20T23:59:00+00:00","quote":7601.6166254484,"base":1577.8027597500004,"total":9179.4193851984},{"timestamp":"2025-04-01T23:59:00+00:00","quote":7366.6199744405,"base":1645.1693069174999,"total":9011.789281358},{"timestamp":"2025-04-12T23:59:00+00:00","quote":7228.7357426047,"base":1681.5049897012996,"total":8910.240732306},{"timestamp":"2025-04-23T23:59:00+00:00","quote":7573.8888932086,"base":1652.1031056652,"total":9225.9919988738},{"timestamp":"2025-05-05T23:59:00+00:00","quote":7710.8605636408,"base":1559.5563947951005,"total":9270.4169584359},{"timestamp":"2025-05-16T23:59:00+00:00","quote":7774.2480151308,"base":1644.7810683150992,"total":9419.0290834459},{"timestamp":"2025-05-28T23:59:00+00:00","quote":7619.8307274123,"base":1625.2745891551003,"total":9245.1053165674},{"timestamp":"2025-06-08T23:59:00+00:00","quote":7251.5739866981,"base":1667.507588631599,"total":8919.0815753297},{"timestamp":"2025-06-19T23:59:00+00:00","quote":7065.2283215864,"base":1679.7494753253004,"total":8744.9777969117},{"timestamp":"2025-07-01T23:59:00+00:00","quote":6956.1065338795,"base":1738.6107092655002,"total":8694.717243145},{"timestamp":"2025-07-12T23:59:00+00:00","quote":7410.5529092067,"base":1656.3050268591005,"total":9066.8579360658},{"timestamp":"2025-07-24T23:59:00+00:00","quote":7501.3758720933,"base":1695.7245820025,"total":9197.1004540958},{"timestamp":"2025-08-04T23:59:00+00:00","quote":7285.1664026145,"base":1761.8510878990992,"total":9047.0174905136},{"timestamp":"2025-08-15T23:59:00+00:00","quote":7168.0322922558,"base":1714.4253538965995,"total":8882.4576461524},{"timestamp":"2025-08-27T23:59:00+00:00","quote":7236.4909146296,"base":1711.3820221085998,"total":8947.8729367382},{"timestamp":"2025-09-07T23:59:00+00:00","quote":7101.9861551952,"base":1737.024254,"total":8839.0104091952},{"timestamp":"2025-09-19T23:59:00+00:00","quote":7174.2284583054,"base":1698.8968710001,"total":8873.1253293055},{"timestamp":"2025-09-30T23:59:00+00:00","quote":7075.8731940072,"base":1691.8848699480995,"total":8767.7580639553},{"timestamp":"2025-10-11T23:59:00+00:00","quote":6703.7999685474,"base":1423.5662139826,"total":8127.36618253},{"timestamp":"2025-10-23T23:59:00+00:00","quote":6506.5210642783,"base":1599.9563091172995,"total":8106.4773733956},{"timestamp":"2025-11-03T23:59:00+00:00","quote":6167.6396749928,"base":1555.7850204488004,"total":7723.4246954416},{"timestamp":"2025-11-14T23:59:00+00:00","quote":7350.1338636347,"base":1588.9028884049994,"total":8939.0367520397},{"timestamp":"2025-11-26T23:59:00+00:00","quote":7620.8772751865,"base":1042.3553267401003,"total":8663.2326019266},{"timestamp":"2025-12-07T23:59:00+00:00","quote":7610.9109839185,"base":960.5807966702996,"total":8571.4917805888},{"timestamp":"2025-12-19T23:59:00+00:00","quote":7600.8182908191,"base":952.0711307101001,"total":8552.8894215292},{"timestamp":"2025-12-30T23:59:00+00:00","quote":7535.6950661194,"base":987.5803128346006,"total":8523.275378954},{"timestamp":"2026-01-10T23:59:00+00:00","quote":7595.9039370607,"base":996.367667372001,"total":8592.2716044327},{"timestamp":"2026-01-22T23:59:00+00:00","quote":7559.3400588351,"base":984.9365881163012,"total":8544.2766469514},{"timestamp":"2026-02-02T23:59:00+00:00","quote":7069.2832850616,"base":1236.4731171241,"total":8305.7564021857},{"timestamp":"2026-02-14T23:59:00+00:00","quote":7263.2004021895,"base":987.0529566484993,"total":8250.253358838},{"timestamp":"2026-02-25T23:59:00+00:00","quote":7078.9482400581,"base":1069.8015865951002,"total":8148.7498266532}]
Base Exposure (% of Portfolio)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, quote_asset_bal, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Exposure | 20.77% @ 2025-06-22 23:59:00 UTC |
| Min Exposure | 0.83% @ 2024-05-28 23:59:00 UTC |
| Mean | 12.41% |
| Std Dev | 5.56% |
| Last | 13.13% |
| Points | 673 |
| Across 673 points the series ranged from 0.83% (2024-05-28 23:59:00 UTC) to 20.77% (2025-06-22 23:59:00 UTC), averaging 12.41%. 100% of points were positive, 0% negative. The most recent value is 13.13%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":0.8293695133352574},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.8204860700897538},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.276373943173649},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":0.8259784229125705},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":3.562824772135083},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":6.670908620748198},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":5.874276207425097},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":6.481517784071761},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":6.843752146246658},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":10.541154430188568},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":10.630940614582926},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":9.247768787041979},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":6.70912570815595},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":6.537494548907909},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":7.503663321233535},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":9.060765128401151},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":9.314275007643431},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":9.297853129574381},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":8.30281763071673},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":4.859073788412222},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":3.4940582548702337},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":9.201351511496172},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":9.38158530396606},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":9.524250911067433},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":10.169072654048597},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":11.921258826597942},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":12.364565994552269},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":14.3062243987973},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":16.749388610178592},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":17.188481030664864},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":18.25574539698499},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":18.87159999622278},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":17.907051142759165},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":16.822936894720083},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":17.462320731186924},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":17.579838557842905},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":18.695956243341776},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":19.208161693886815},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":19.99617308586128},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":18.267684776119783},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":18.43759987689743},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":19.4743857823478},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":19.30124997150124},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":19.12613236920255},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":19.65179554707819},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":19.146544289069258},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":19.29666463886047},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":17.51571397192113},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":19.73676401501036},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":20.143719681335558},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":17.77487812702465},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":12.031944363450346},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":11.206693318491576},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":11.131573013367406},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":11.586863839612317},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":11.596091385867982},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":11.527442624036837},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":14.886941745591242},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":11.963910848763557},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":13.128413675137724}]
Daily Change
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: dailyDelta(equity)total_value_exit_net between consecutive equity samples (typically daily).How to read it. Green bars are gain days, red bars are loss days. A long stretch of red bars indicates a sustained drawdown, not just a single bad day.Why it matters. Shows whether returns are consistent or driven by a few jackpot days - important for compounding and for sizing live capital.Insights (auto-derived from delta).| Stat | Value |
|---|---|
| Best Day | 1,509.13 USDT @ 2025-11-07 23:59:00 UTC |
| Worst Day | -541.69 USDT @ 2025-10-10 23:59:00 UTC |
| Mean | -2.75 USDT |
| Std Dev | 87.48 USDT |
| Last | 56.46 USDT |
| Points | 672 |
| Sum | -1,850.10 USDT |
| Across 672 points the series ranged from -541.69 USDT (2025-10-10 23:59:00 UTC) to 1,509.13 USDT (2025-11-07 23:59:00 UTC), averaging -2.75 USDT. 48% of points were positive, 52% negative. The most recent value is 56.46 USDT. | |
| Showing 60 of 672 points (down-sampled for readability). |
[{"timestamp":"2024-04-25T23:59:00+00:00","delta":0.5165827684995747},{"timestamp":"2024-05-06T23:59:00+00:00","delta":0.9422483154994552},{"timestamp":"2024-05-18T23:59:00+00:00","delta":-1.0635333257996535},{"timestamp":"2024-05-29T23:59:00+00:00","delta":-1.5178222232989356},{"timestamp":"2024-06-09T23:59:00+00:00","delta":-4.564857571000175},{"timestamp":"2024-06-21T23:59:00+00:00","delta":-13.897280818300715},{"timestamp":"2024-07-02T23:59:00+00:00","delta":-18.256574481698408},{"timestamp":"2024-07-14T23:59:00+00:00","delta":17.824275266200857},{"timestamp":"2024-07-25T23:59:00+00:00","delta":7.0439646924987755},{"timestamp":"2024-08-05T23:59:00+00:00","delta":-54.685121570199044},{"timestamp":"2024-08-17T23:59:00+00:00","delta":39.62681186949885},{"timestamp":"2024-08-28T23:59:00+00:00","delta":-14.66399385170007},{"timestamp":"2024-09-08T23:59:00+00:00","delta":61.91365188349846},{"timestamp":"2024-09-20T23:59:00+00:00","delta":5.678160138000749},{"timestamp":"2024-10-01T23:59:00+00:00","delta":-81.80538132299989},{"timestamp":"2024-10-13T23:59:00+00:00","delta":-6.308452065999518},{"timestamp":"2024-10-24T23:59:00+00:00","delta":23.076333036698998},{"timestamp":"2024-11-04T23:59:00+00:00","delta":10.392714891699143},{"timestamp":"2024-11-16T23:59:00+00:00","delta":36.32962648620014},{"timestamp":"2024-11-27T23:59:00+00:00","delta":24.34359827860135},{"timestamp":"2024-12-08T23:59:00+00:00","delta":10.687433543298539},{"timestamp":"2024-12-20T23:59:00+00:00","delta":43.54524459350068},{"timestamp":"2024-12-31T23:59:00+00:00","delta":-22.993100224301088},{"timestamp":"2025-01-12T23:59:00+00:00","delta":-22.233085685000333},{"timestamp":"2025-01-23T23:59:00+00:00","delta":-24.31909483310119},{"timestamp":"2025-02-03T23:59:00+00:00","delta":-6.245203089500137},{"timestamp":"2025-02-15T23:59:00+00:00","delta":16.79586222529906},{"timestamp":"2025-02-26T23:59:00+00:00","delta":7.792596415498338},{"timestamp":"2025-03-09T23:59:00+00:00","delta":-167.6033575704987},{"timestamp":"2025-03-21T23:59:00+00:00","delta":-56.783557604199814},{"timestamp":"2025-04-01T23:59:00+00:00","delta":24.800949418800883},{"timestamp":"2025-04-13T23:59:00+00:00","delta":-110.05687828050031},{"timestamp":"2025-04-24T23:59:00+00:00","delta":62.378843381999104},{"timestamp":"2025-05-05T23:59:00+00:00","delta":18.336875233801038},{"timestamp":"2025-05-17T23:59:00+00:00","delta":-39.41451613529898},{"timestamp":"2025-05-28T23:59:00+00:00","delta":-32.723392300300475},{"timestamp":"2025-06-08T23:59:00+00:00","delta":-14.376280375499846},{"timestamp":"2025-06-20T23:59:00+00:00","delta":-75.05886861379986},{"timestamp":"2025-07-01T23:59:00+00:00","delta":-71.78016305070014},{"timestamp":"2025-07-13T23:59:00+00:00","delta":6.489273325500108},{"timestamp":"2025-07-24T23:59:00+00:00","delta":-36.92759790150012},{"timestamp":"2025-08-04T23:59:00+00:00","delta":77.7532868219987},{"timestamp":"2025-08-16T23:59:00+00:00","delta":113.99936732400056},{"timestamp":"2025-08-27T23:59:00+00:00","delta":46.91435834500044},{"timestamp":"2025-09-07T23:59:00+00:00","delta":-1.5428747613004816},{"timestamp":"2025-09-19T23:59:00+00:00","delta":-94.58799832730074},{"timestamp":"2025-09-30T23:59:00+00:00","delta":-6.482884559500235},{"timestamp":"2025-10-12T23:59:00+00:00","delta":166.29247118449985},{"timestamp":"2025-10-23T23:59:00+00:00","delta":42.73622588170019},{"timestamp":"2025-11-03T23:59:00+00:00","delta":-254.63668395199966},{"timestamp":"2025-11-15T23:59:00+00:00","delta":-7.744522544198844},{"timestamp":"2025-11-26T23:59:00+00:00","delta":14.013711550500375},{"timestamp":"2025-12-07T23:59:00+00:00","delta":-58.87974145750013},{"timestamp":"2025-12-19T23:59:00+00:00","delta":43.487336952799524},{"timestamp":"2025-12-30T23:59:00+00:00","delta":-4.412268321199008},{"timestamp":"2026-01-11T23:59:00+00:00","delta":-14.65180489820159},{"timestamp":"2026-01-22T23:59:00+00:00","delta":-21.5544458284985},{"timestamp":"2026-02-02T23:59:00+00:00","delta":9.671884342500562},{"timestamp":"2026-02-14T23:59:00+00:00","delta":12.608253271198919},{"timestamp":"2026-02-25T23:59:00+00:00","delta":56.46175130030042}]
Monthly Returns
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyReturns(equity)returnPct).| Stat | Value |
|---|---|
| Best Month | 7.65% @ 2025-11 |
| Worst Month | -10.46% @ 2025-10 |
| Mean | -0.77% |
| Std Dev | 3.64% |
| Last | -1.78% |
| Points | 23 |
| Across 23 points the series ranged from -10.46% (2025-10) to 7.65% (2025-11), averaging -0.77%. 26% of points were positive, 74% negative. The most recent value is -1.78%. | |
| Full series - 23 points. |
[{"month":"2024-04","returnPct":-0.1337776214885948},{"month":"2024-05","returnPct":0.41583880717866006},{"month":"2024-06","returnPct":-1.151819451068623},{"month":"2024-07","returnPct":-0.3069790475401468},{"month":"2024-08","returnPct":-0.5703559660417713},{"month":"2024-09","returnPct":1.7785747165755743},{"month":"2024-10","returnPct":-0.6224907831081894},{"month":"2024-11","returnPct":3.642331612167255},{"month":"2024-12","returnPct":-1.500850291588545},{"month":"2025-01","returnPct":-0.4411752226646444},{"month":"2025-02","returnPct":-4.194702521674977},{"month":"2025-03","returnPct":-5.511695708315982},{"month":"2025-04","returnPct":5.148216827923723},{"month":"2025-05","returnPct":-4.917894999987023},{"month":"2025-06","returnPct":-2.6661971187409232},{"month":"2025-07","returnPct":3.0220221959864237},{"month":"2025-08","returnPct":-0.8631245551436498},{"month":"2025-09","returnPct":-0.8999658093732977},{"month":"2025-10","returnPct":-10.462920534808072},{"month":"2025-11","returnPct":7.653404404964799},{"month":"2025-12","returnPct":-0.36601616346561217},{"month":"2026-01","returnPct":-2.9505741295016428},{"month":"2026-02","returnPct":-1.7759545587211871}]
Cumulative Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: cumulativeProfit(trades)cumProfit).| Stat | Value |
|---|---|
| Peak Cum. | 648.00 USDT @ 2026-02-25 |
| Trough Cum. | 1.11 USDT @ 2024-04-24 |
| Mean | 325.13 USDT |
| Std Dev | 193.71 USDT |
| Last | 648.00 USDT |
| Points | 673 |
| Sum | 218,812.37 USDT |
| Across 673 points the series ranged from 1.11 USDT (2024-04-24) to 648.00 USDT (2026-02-25), averaging 325.13 USDT. 100% of points were positive, 0% negative. The most recent value is 648.00 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24","cumProfit":1.105872},{"timestamp":"2024-05-05","cumProfit":10.704235},{"timestamp":"2024-05-17","cumProfit":19.734707999999998},{"timestamp":"2024-05-28","cumProfit":26.840453000000004},{"timestamp":"2024-06-09","cumProfit":33.499014},{"timestamp":"2024-06-20","cumProfit":41.928095000000006},{"timestamp":"2024-07-01","cumProfit":47.950690000000016},{"timestamp":"2024-07-13","cumProfit":60.74178500000002},{"timestamp":"2024-07-24","cumProfit":71.92282600000001},{"timestamp":"2024-08-05","cumProfit":86.28464700000002},{"timestamp":"2024-08-16","cumProfit":97.29776500000003},{"timestamp":"2024-08-27","cumProfit":113.24349900000003},{"timestamp":"2024-09-08","cumProfit":128.893248},{"timestamp":"2024-09-19","cumProfit":137.97955699999997},{"timestamp":"2024-09-30","cumProfit":145.06482899999995},{"timestamp":"2024-10-12","cumProfit":153.91805199999993},{"timestamp":"2024-10-23","cumProfit":159.02468499999995},{"timestamp":"2024-11-04","cumProfit":167.58485199999996},{"timestamp":"2024-11-15","cumProfit":182.63585599999993},{"timestamp":"2024-11-26","cumProfit":199.44436499999992},{"timestamp":"2024-12-08","cumProfit":215.10094499999994},{"timestamp":"2024-12-19","cumProfit":230.97908699999996},{"timestamp":"2024-12-31","cumProfit":245.36951499999995},{"timestamp":"2025-01-11","cumProfit":253.52897499999992},{"timestamp":"2025-01-22","cumProfit":266.03034799999995},{"timestamp":"2025-02-03","cumProfit":282.29602899999986},{"timestamp":"2025-02-14","cumProfit":296.64231399999977},{"timestamp":"2025-02-26","cumProfit":306.7662639999998},{"timestamp":"2025-03-09","cumProfit":317.62662199999977},{"timestamp":"2025-03-20","cumProfit":328.47665699999976},{"timestamp":"2025-04-01","cumProfit":339.4248219999999},{"timestamp":"2025-04-12","cumProfit":351.6924619999999},{"timestamp":"2025-04-23","cumProfit":361.8631349999999},{"timestamp":"2025-05-05","cumProfit":374.67182899999983},{"timestamp":"2025-05-16","cumProfit":388.6447739999998},{"timestamp":"2025-05-28","cumProfit":400.53851699999973},{"timestamp":"2025-06-08","cumProfit":407.72059499999966},{"timestamp":"2025-06-19","cumProfit":416.55785699999956},{"timestamp":"2025-07-01","cumProfit":427.5475479999995},{"timestamp":"2025-07-12","cumProfit":436.6182419999994},{"timestamp":"2025-07-24","cumProfit":453.45482799999945},{"timestamp":"2025-08-04","cumProfit":462.6590629999995},{"timestamp":"2025-08-15","cumProfit":470.6558999999995},{"timestamp":"2025-08-27","cumProfit":479.0517359999995},{"timestamp":"2025-09-07","cumProfit":484.67768299999955},{"timestamp":"2025-09-19","cumProfit":491.8656279999995},{"timestamp":"2025-09-30","cumProfit":498.6076049999994},{"timestamp":"2025-10-11","cumProfit":506.9637549999994},{"timestamp":"2025-10-23","cumProfit":520.2363819999996},{"timestamp":"2025-11-03","cumProfit":526.6946739999996},{"timestamp":"2025-11-14","cumProfit":563.1882449999996},{"timestamp":"2025-11-26","cumProfit":578.9743099999997},{"timestamp":"2025-12-07","cumProfit":589.082538},{"timestamp":"2025-12-19","cumProfit":599.015038},{"timestamp":"2025-12-30","cumProfit":603.950388},{"timestamp":"2026-01-10","cumProfit":609.1126559999999},{"timestamp":"2026-01-22","cumProfit":617.6096969999999},{"timestamp":"2026-02-02","cumProfit":627.9813269999996},{"timestamp":"2026-02-14","cumProfit":641.9850569999995},{"timestamp":"2026-02-25","cumProfit":647.9955329999995}]
Daily Trade Profit
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: dailyTradeProfit(trades)profit).| Stat | Value |
|---|---|
| Best Day | 5.23 USDT @ 2025-11-08 |
| Worst Day | 0.1277 USDT @ 2024-10-19 |
| Mean | 0.9628 USDT |
| Std Dev | 0.6038 USDT |
| Last | 0.6642 USDT |
| Points | 673 |
| Sum | 648.00 USDT |
| Across 673 points the series ranged from 0.1277 USDT (2024-10-19) to 5.23 USDT (2025-11-08), averaging 0.9628 USDT. 100% of points were positive, 0% negative. The most recent value is 0.6642 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","profit":1.105872},{"day":"2024-05-05","profit":0.820494},{"day":"2024-05-17","profit":0.886591},{"day":"2024-05-28","profit":0.92501},{"day":"2024-06-09","profit":0.336027},{"day":"2024-06-20","profit":0.69701},{"day":"2024-07-01","profit":0.679743},{"day":"2024-07-13","profit":1.744162},{"day":"2024-07-24","profit":0.710022},{"day":"2024-08-05","profit":3.483312},{"day":"2024-08-16","profit":0.918132},{"day":"2024-08-27","profit":1.055831},{"day":"2024-09-08","profit":1.790357},{"day":"2024-09-19","profit":0.609903},{"day":"2024-09-30","profit":0.818411},{"day":"2024-10-12","profit":0.237455},{"day":"2024-10-23","profit":0.347246},{"day":"2024-11-04","profit":1.072411},{"day":"2024-11-15","profit":1.171369},{"day":"2024-11-26","profit":2.121227},{"day":"2024-12-08","profit":0.814538},{"day":"2024-12-19","profit":2.097969},{"day":"2024-12-31","profit":0.799917},{"day":"2025-01-11","profit":0.389776},{"day":"2025-01-22","profit":0.952448},{"day":"2025-02-03","profit":3.156678},{"day":"2025-02-14","profit":0.803983},{"day":"2025-02-26","profit":0.959279},{"day":"2025-03-09","profit":0.807395},{"day":"2025-03-20","profit":0.458655},{"day":"2025-04-01","profit":1.014782},{"day":"2025-04-12","profit":0.376463},{"day":"2025-04-23","profit":0.988009},{"day":"2025-05-05","profit":0.820137},{"day":"2025-05-16","profit":0.958373},{"day":"2025-05-28","profit":0.768717},{"day":"2025-06-08","profit":0.291456},{"day":"2025-06-19","profit":0.847848},{"day":"2025-07-01","profit":0.914569},{"day":"2025-07-12","profit":0.929201},{"day":"2025-07-24","profit":1.461296},{"day":"2025-08-04","profit":0.534487},{"day":"2025-08-15","profit":0.833501},{"day":"2025-08-27","profit":0.679867},{"day":"2025-09-07","profit":0.390167},{"day":"2025-09-19","profit":0.408704},{"day":"2025-09-30","profit":0.615024},{"day":"2025-10-11","profit":2.472821},{"day":"2025-10-23","profit":0.71294},{"day":"2025-11-03","profit":1.459513},{"day":"2025-11-14","profit":2.242791},{"day":"2025-11-26","profit":0.687673},{"day":"2025-12-07","profit":0.534438},{"day":"2025-12-19","profit":0.66563},{"day":"2025-12-30","profit":0.422448},{"day":"2026-01-10","profit":0.132135},{"day":"2026-01-22","profit":0.367813},{"day":"2026-02-02","profit":1.908365},{"day":"2026-02-14","profit":0.34681},{"day":"2026-02-25","profit":0.664221}]
Trades per Day
GET /backtests/{id}/trades * Fields used: sell_time * Transform: tradesPerDay(trades)count).| Stat | Value |
|---|---|
| Busiest Day | 853 trades @ 2025-11-08 |
| Quietest Day | 21 trades @ 2026-01-10 |
| Mean | 165 trades |
| Std Dev | 102 trades |
| Last | 83 trades |
| Points | 673 |
| Sum | 111078 trades |
| Across 673 points the series ranged from 21 trades (2026-01-10) to 853 trades (2025-11-08), averaging 165 trades. The most recent value is 83 trades. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"day":"2024-04-24","count":213},{"day":"2024-05-05","count":157},{"day":"2024-05-17","count":169},{"day":"2024-05-28","count":177},{"day":"2024-06-09","count":65},{"day":"2024-06-20","count":131},{"day":"2024-07-01","count":125},{"day":"2024-07-13","count":320},{"day":"2024-07-24","count":133},{"day":"2024-08-05","count":621},{"day":"2024-08-16","count":166},{"day":"2024-08-27","count":192},{"day":"2024-09-08","count":329},{"day":"2024-09-19","count":113},{"day":"2024-09-30","count":151},{"day":"2024-10-12","count":42},{"day":"2024-10-23","count":65},{"day":"2024-11-04","count":188},{"day":"2024-11-15","count":216},{"day":"2024-11-26","count":393},{"day":"2024-12-08","count":154},{"day":"2024-12-19","count":386},{"day":"2024-12-31","count":150},{"day":"2025-01-11","count":71},{"day":"2025-01-22","count":176},{"day":"2025-02-03","count":566},{"day":"2025-02-14","count":141},{"day":"2025-02-26","count":173},{"day":"2025-03-09","count":143},{"day":"2025-03-20","count":86},{"day":"2025-04-01","count":163},{"day":"2025-04-12","count":61},{"day":"2025-04-23","count":183},{"day":"2025-05-05","count":149},{"day":"2025-05-16","count":174},{"day":"2025-05-28","count":134},{"day":"2025-06-08","count":46},{"day":"2025-06-19","count":157},{"day":"2025-07-01","count":161},{"day":"2025-07-12","count":170},{"day":"2025-07-24","count":225},{"day":"2025-08-04","count":87},{"day":"2025-08-15","count":123},{"day":"2025-08-27","count":99},{"day":"2025-09-07","count":75},{"day":"2025-09-19","count":62},{"day":"2025-09-30","count":103},{"day":"2025-10-11","count":314},{"day":"2025-10-23","count":83},{"day":"2025-11-03","count":191},{"day":"2025-11-14","count":370},{"day":"2025-11-26","count":114},{"day":"2025-12-07","count":86},{"day":"2025-12-19","count":92},{"day":"2025-12-30","count":58},{"day":"2026-01-10","count":21},{"day":"2026-01-22","count":53},{"day":"2026-02-02","count":204},{"day":"2026-02-14","count":55},{"day":"2026-02-25","count":83}]
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 | 834.52 USDT @ 2026-02-25 |
| Start | 1.60 USDT @ 2024-04-24 |
| Mean | 438.09 USDT |
| Std Dev | 252.37 USDT |
| Last | 834.52 USDT |
| Points | 673 |
| Sum | 294,832.45 USDT |
| Across 673 points the series ranged from 1.60 USDT (2024-04-24) to 834.52 USDT (2026-02-25), averaging 438.09 USDT. 100% of points were positive, 0% negative. The most recent value is 834.52 USDT. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"index":0,"timestamp":"2024-04-24","cumFees":1.600956},{"index":11,"timestamp":"2024-05-05","cumFees":15.235211},{"index":23,"timestamp":"2024-05-17","cumFees":28.095377999999997},{"index":34,"timestamp":"2024-05-28","cumFees":38.21242499999999},{"index":46,"timestamp":"2024-06-09","cumFees":47.73547699999998},{"index":57,"timestamp":"2024-06-20","cumFees":59.714912999999996},{"index":68,"timestamp":"2024-07-01","cumFees":68.145996},{"index":80,"timestamp":"2024-07-13","cumFees":85.79491099999998},{"index":91,"timestamp":"2024-07-24","cumFees":101.45538099999999},{"index":103,"timestamp":"2024-08-05","cumFees":121.27680499999998},{"index":114,"timestamp":"2024-08-16","cumFees":136.325562},{"index":125,"timestamp":"2024-08-27","cumFees":158.38511499999998},{"index":137,"timestamp":"2024-09-08","cumFees":180.016177},{"index":148,"timestamp":"2024-09-19","cumFees":192.60891100000003},{"index":159,"timestamp":"2024-09-30","cumFees":202.57266300000003},{"index":171,"timestamp":"2024-10-12","cumFees":214.81872400000003},{"index":182,"timestamp":"2024-10-23","cumFees":221.88101500000008},{"index":194,"timestamp":"2024-11-04","cumFees":233.47387300000008},{"index":205,"timestamp":"2024-11-15","cumFees":254.3682840000001},{"index":216,"timestamp":"2024-11-26","cumFees":277.8122580000001},{"index":228,"timestamp":"2024-12-08","cumFees":300.03631100000007},{"index":239,"timestamp":"2024-12-19","cumFees":322.3780009999999},{"index":251,"timestamp":"2024-12-31","cumFees":342.2363229999999},{"index":262,"timestamp":"2025-01-11","cumFees":353.6050079999999},{"index":273,"timestamp":"2025-01-22","cumFees":370.8854219999999},{"index":285,"timestamp":"2025-02-03","cumFees":393.1691649999999},{"index":296,"timestamp":"2025-02-14","cumFees":412.574942},{"index":308,"timestamp":"2025-02-26","cumFees":426.008168},{"index":319,"timestamp":"2025-03-09","cumFees":440.3039370000001},{"index":330,"timestamp":"2025-03-20","cumFees":454.253008},{"index":342,"timestamp":"2025-04-01","cumFees":467.98467200000005},{"index":353,"timestamp":"2025-04-12","cumFees":483.29357799999997},{"index":364,"timestamp":"2025-04-23","cumFees":495.83843800000005},{"index":376,"timestamp":"2025-05-05","cumFees":512.4020070000001},{"index":387,"timestamp":"2025-05-16","cumFees":530.7916920000002},{"index":399,"timestamp":"2025-05-28","cumFees":545.8528270000002},{"index":410,"timestamp":"2025-06-08","cumFees":555.032315},{"index":421,"timestamp":"2025-06-19","cumFees":566.4950380000001},{"index":433,"timestamp":"2025-07-01","cumFees":580.67646},{"index":444,"timestamp":"2025-07-12","cumFees":591.794039},{"index":456,"timestamp":"2025-07-24","cumFees":613.7354170000001},{"index":467,"timestamp":"2025-08-04","cumFees":624.8306410000001},{"index":478,"timestamp":"2025-08-15","cumFees":635.0392990000001},{"index":490,"timestamp":"2025-08-27","cumFees":644.7149600000002},{"index":501,"timestamp":"2025-09-07","cumFees":651.8735750000003},{"index":513,"timestamp":"2025-09-19","cumFees":660.2722170000003},{"index":524,"timestamp":"2025-09-30","cumFees":668.6025100000004},{"index":535,"timestamp":"2025-10-11","cumFees":678.5329040000003},{"index":547,"timestamp":"2025-10-23","cumFees":691.7693060000004},{"index":558,"timestamp":"2025-11-03","cumFees":698.6575830000002},{"index":569,"timestamp":"2025-11-14","cumFees":740.6336850000004},{"index":581,"timestamp":"2025-11-26","cumFees":758.9915330000006},{"index":592,"timestamp":"2025-12-07","cumFees":770.5591680000005},{"index":604,"timestamp":"2025-12-19","cumFees":782.5995770000006},{"index":615,"timestamp":"2025-12-30","cumFees":787.7001240000006},{"index":626,"timestamp":"2026-01-10","cumFees":793.9118340000006},{"index":638,"timestamp":"2026-01-22","cumFees":804.0444190000005},{"index":649,"timestamp":"2026-02-02","cumFees":813.0672940000007},{"index":661,"timestamp":"2026-02-14","cumFees":828.5704730000006},{"index":672,"timestamp":"2026-02-25","cumFees":834.5197600000007}]
Profit Distribution (%)
GET /backtests/{id}/trades * Fields used: profit_percentage * Transform: profitDistribution(trades, 30)count).| Stat | Value |
|---|---|
| Most Populated Bin | 10414 trades @ 0.10% |
| Least Populated Bin | 1 trades @ 0.20% |
| Mean | 1851 trades |
| Std Dev | 3096 trades |
| Last | 68 trades |
| Points | 60 |
| Sum | 111078 trades |
| Across 60 points the series ranged from 1 trades (0.20%) to 10414 trades (0.10%), averaging 1851 trades. The most recent value is 68 trades. | |
| Full series - 60 points. |
[{"bin":"0.10%","count":10414,"from":0.099812},{"bin":"0.10%","count":10184,"from":0.101886},{"bin":"0.10%","count":10066,"from":0.10396},{"bin":"0.11%","count":10318,"from":0.106034},{"bin":"0.11%","count":10246,"from":0.108108},{"bin":"0.11%","count":8712,"from":0.110182},{"bin":"0.11%","count":7568,"from":0.112256},{"bin":"0.11%","count":6568,"from":0.11433},{"bin":"0.12%","count":4560,"from":0.116404},{"bin":"0.12%","count":3451,"from":0.118478},{"bin":"0.12%","count":3089,"from":0.120552},{"bin":"0.12%","count":2853,"from":0.122626},{"bin":"0.12%","count":2440,"from":0.1247},{"bin":"0.13%","count":2221,"from":0.126774},{"bin":"0.13%","count":1874,"from":0.128848},{"bin":"0.13%","count":1605,"from":0.130922},{"bin":"0.13%","count":1540,"from":0.132996},{"bin":"0.14%","count":1492,"from":0.13507},{"bin":"0.14%","count":1143,"from":0.137144},{"bin":"0.14%","count":1233,"from":0.139218},{"bin":"0.14%","count":892,"from":0.141292},{"bin":"0.14%","count":998,"from":0.143366},{"bin":"0.15%","count":738,"from":0.14544},{"bin":"0.15%","count":820,"from":0.147514},{"bin":"0.15%","count":501,"from":0.149588},{"bin":"0.15%","count":450,"from":0.151662},{"bin":"0.15%","count":421,"from":0.153736},{"bin":"0.16%","count":426,"from":0.15581},{"bin":"0.16%","count":370,"from":0.157884},{"bin":"0.16%","count":366,"from":0.159958},{"bin":"0.16%","count":210,"from":0.162032},{"bin":"0.16%","count":220,"from":0.164106},{"bin":"0.17%","count":280,"from":0.16618},{"bin":"0.17%","count":239,"from":0.168254},{"bin":"0.17%","count":232,"from":0.170328},{"bin":"0.17%","count":274,"from":0.172402},{"bin":"0.17%","count":305,"from":0.174476},{"bin":"0.18%","count":327,"from":0.17655},{"bin":"0.18%","count":310,"from":0.178624},{"bin":"0.18%","count":302,"from":0.180697},{"bin":"0.18%","count":94,"from":0.182771},{"bin":"0.18%","count":35,"from":0.184845},{"bin":"0.19%","count":35,"from":0.186919},{"bin":"0.19%","count":23,"from":0.188993},{"bin":"0.19%","count":9,"from":0.191067},{"bin":"0.19%","count":4,"from":0.193141},{"bin":"0.20%","count":3,"from":0.195215},{"bin":"0.20%","count":3,"from":0.197289},{"bin":"0.20%","count":4,"from":0.199363},{"bin":"0.20%","count":1,"from":0.201437},{"bin":"0.20%","count":9,"from":0.203511},{"bin":"0.21%","count":33,"from":0.205585},{"bin":"0.21%","count":47,"from":0.207659},{"bin":"0.21%","count":54,"from":0.209733},{"bin":"0.21%","count":93,"from":0.211807},{"bin":"0.21%","count":88,"from":0.213881},{"bin":"0.22%","count":96,"from":0.215955},{"bin":"0.22%","count":65,"from":0.218029},{"bin":"0.22%","count":56,"from":0.220103},{"bin":"0.22%","count":68,"from":0.222177}]
Rolling Win Rate (50 Trades)
GET /backtests/{id}/trades * Fields used: profit * Transform: rollingWinRate(trades, 50)winRate).| Stat | Value |
|---|---|
| Hottest Window | 100.00% @ 1110 |
| Coldest Window | 100.00% @ 1110 |
| Mean | 100.00% |
| Std Dev | 0.00% |
| Last | 100.00% |
| Points | 1000 |
| Across 1000 points the series ranged from 100.00% (1110) to 100.00% (1110), 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":1110,"winRate":100},{"index":2981,"winRate":100},{"index":4853,"winRate":100},{"index":6724,"winRate":100},{"index":8595,"winRate":100},{"index":10467,"winRate":100},{"index":12338,"winRate":100},{"index":14209,"winRate":100},{"index":15971,"winRate":100},{"index":17842,"winRate":100},{"index":19713,"winRate":100},{"index":21585,"winRate":100},{"index":23456,"winRate":100},{"index":25327,"winRate":100},{"index":27199,"winRate":100},{"index":29070,"winRate":100},{"index":30941,"winRate":100},{"index":32812,"winRate":100},{"index":34684,"winRate":100},{"index":36555,"winRate":100},{"index":38426,"winRate":100},{"index":40298,"winRate":100},{"index":42169,"winRate":100},{"index":43930,"winRate":100},{"index":45802,"winRate":100},{"index":47673,"winRate":100},{"index":49544,"winRate":100},{"index":51416,"winRate":100},{"index":53287,"winRate":100},{"index":55158,"winRate":100},{"index":57030,"winRate":100},{"index":58901,"winRate":100},{"index":60772,"winRate":100},{"index":62644,"winRate":100},{"index":64515,"winRate":100},{"index":66386,"winRate":100},{"index":68258,"winRate":100},{"index":70019,"winRate":100},{"index":71890,"winRate":100},{"index":73762,"winRate":100},{"index":75633,"winRate":100},{"index":77504,"winRate":100},{"index":79376,"winRate":100},{"index":81247,"winRate":100},{"index":83118,"winRate":100},{"index":84989,"winRate":100},{"index":86861,"winRate":100},{"index":88732,"winRate":100},{"index":90603,"winRate":100},{"index":92475,"winRate":100},{"index":94346,"winRate":100},{"index":96217,"winRate":100},{"index":97979,"winRate":100},{"index":99850,"winRate":100},{"index":101721,"winRate":100},{"index":103593,"winRate":100},{"index":105464,"winRate":100},{"index":107335,"winRate":100},{"index":109207,"winRate":100},{"index":111078,"winRate":100}]
Gross vs. Net PnL (Fee Impact)
GET /backtests/{id}/trades * Fields used: sell_time, profit, buy_fee_in_quote, sell_fee_in_quote * Transform: grossVsNetPnL(trades)net).| Stat | Value |
|---|---|
| Peak Net | 0.7245 USDT @ 2026-02-25 23:58:00 UTC |
| Trough Net | 0.0052 USDT @ 2024-04-24 00:13:00 UTC |
| Mean | 0.3262 USDT |
| Std Dev | 0.2223 USDT |
| Last | 0.7245 USDT |
| Points | 100 |
| Sum | 32.62 USDT |
| Across 100 points the series ranged from 0.0052 USDT (2024-04-24 00:13:00 UTC) to 0.7245 USDT (2026-02-25 23:58:00 UTC), averaging 0.3262 USDT. 100% of points were positive, 0% negative. The most recent value is 0.7245 USDT. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:13:00Z","net":0.0051585982,"gross":0.012675},{"timestamp":"2024-04-24T00:32:00Z","net":0.0155566694,"gross":0.0381},{"timestamp":"2024-04-24T00:39:00Z","net":0.0206899129,"gross":0.05075},{"timestamp":"2024-04-24T00:39:00Z","net":0.0310086304,"gross":0.07610000010000001},{"timestamp":"2024-04-24T01:11:00Z","net":0.0412483136,"gross":0.1013750001},{"timestamp":"2024-04-24T01:14:00Z","net":0.0463623223,"gross":0.114},{"timestamp":"2024-04-24T02:17:00Z","net":0.0565599046,"gross":0.1392250001},{"timestamp":"2024-04-24T02:43:00Z","net":0.0670345396,"gross":0.16472500010000002},{"timestamp":"2024-04-24T02:45:00Z","net":0.07226191209999999,"gross":0.17747500010000003},{"timestamp":"2024-04-24T03:35:00Z","net":0.08265464339999998,"gross":0.2029000002},{"timestamp":"2024-04-24T03:43:00Z","net":0.09298659269999998,"gross":0.2282750003},{"timestamp":"2024-04-24T03:43:00Z","net":0.09816374769999998,"gross":0.2409750003},{"timestamp":"2024-04-24T04:29:00Z","net":0.10852039919999998,"gross":0.2663750003},{"timestamp":"2024-04-24T05:06:00Z","net":0.11865234089999997,"gross":0.2915500002},{"timestamp":"2024-04-24T05:16:00Z","net":0.12375422969999997,"gross":0.3041750002},{"timestamp":"2024-06-11T15:09:00Z","net":0.13385962089999998,"gross":0.3293000002},{"timestamp":"2025-02-09T09:30:00Z","net":0.14384087089999997,"gross":0.3543000002},{"timestamp":"2025-06-13T08:12:00Z","net":0.15382212089999997,"gross":0.37930000020000004},{"timestamp":"2025-07-02T16:19:00Z","net":0.15881274589999997,"gross":0.39180000020000005},{"timestamp":"2025-08-20T03:23:00Z","net":0.16879399589999997,"gross":0.4168000002000001},{"timestamp":"2025-08-26T09:18:00Z","net":0.17877524589999996,"gross":0.4418000002000001},{"timestamp":"2025-08-26T09:59:00Z","net":0.18376587089999996,"gross":0.4543000002000001},{"timestamp":"2025-08-29T20:19:00Z","net":0.19374712089999996,"gross":0.47930000020000013},{"timestamp":"2025-09-19T15:41:00Z","net":0.20372837089999996,"gross":0.5043000002000001},{"timestamp":"2025-09-20T11:03:00Z","net":0.20871899589999995,"gross":0.5168000002},{"timestamp":"2025-09-21T16:33:00Z","net":0.21870024589999995,"gross":0.5418000002},{"timestamp":"2025-10-06T22:00:00Z","net":0.22868149589999995,"gross":0.5668000001999999},{"timestamp":"2025-11-09T04:32:00Z","net":0.23367212089999995,"gross":0.5793000001999998},{"timestamp":"2025-11-14T04:50:00Z","net":0.24365337089999994,"gross":0.6043000001999997},{"timestamp":"2026-01-31T21:36:00Z","net":0.2660576258,"gross":0.6417340001999997},{"timestamp":"2026-01-31T21:37:00Z","net":0.2772716145,"gross":0.6604630001999997},{"timestamp":"2026-02-02T03:49:00Z","net":0.2996758694,"gross":0.6978970001999997},{"timestamp":"2026-02-02T04:19:00Z","net":0.32208012430000005,"gross":0.7353310001999996},{"timestamp":"2026-02-02T06:44:00Z","net":0.33329411300000006,"gross":0.7540600001999996},{"timestamp":"2026-02-02T07:06:00Z","net":0.3557220904000001,"gross":0.7915180001999996},{"timestamp":"2026-02-03T03:08:00Z","net":0.3781026228000001,"gross":0.8289280001999996},{"timestamp":"2026-02-03T19:32:00Z","net":0.38929288900000014,"gross":0.8476330001999995},{"timestamp":"2026-02-03T19:53:00Z","net":0.4116971439000002,"gross":0.8850670001999995},{"timestamp":"2026-02-03T20:23:00Z","net":0.4341251213000002,"gross":0.9225250001999995},{"timestamp":"2026-02-03T23:56:00Z","net":0.4453391100000002,"gross":0.9412540001999995},{"timestamp":"2026-02-08T19:02:00Z","net":0.46774336490000024,"gross":0.9786880001999995},{"timestamp":"2026-02-08T19:15:00Z","net":0.49017134230000026,"gross":1.0161460001999996},{"timestamp":"2026-02-08T20:25:00Z","net":0.4951619673000003,"gross":1.0286460001999995},{"timestamp":"2026-02-08T20:30:00Z","net":0.5175662222000003,"gross":1.0660800001999995},{"timestamp":"2026-02-08T23:07:00Z","net":0.5337708359000003,"gross":1.0973090001999994},{"timestamp":"2026-02-25T18:32:00Z","net":0.5493067849000003,"gross":1.1278690001999996},{"timestamp":"2026-02-25T18:35:00Z","net":0.5570167279000003,"gross":1.1430910000999996},{"timestamp":"2026-02-25T19:21:00Z","net":0.5724594029000003,"gross":1.1735574943999998},{"timestamp":"2026-02-25T20:04:00Z","net":0.5879480659000004,"gross":1.2040694943999999},{"timestamp":"2026-02-25T20:32:00Z","net":0.5955884619000004,"gross":1.2192214944},{"timestamp":"2026-02-25T20:50:00Z","net":0.6107785849000004,"gross":1.2494354945000001},{"timestamp":"2026-02-25T21:35:00Z","net":0.6259229539000004,"gross":1.2796034945},{"timestamp":"2026-02-25T21:36:00Z","net":0.6333827529000005,"gross":1.2945754945},{"timestamp":"2026-02-25T21:39:00Z","net":0.6483226339000004,"gross":1.3245379963},{"timestamp":"2026-02-25T21:57:00Z","net":0.6633089519000005,"gross":1.3545479963999998},{"timestamp":"2026-02-25T22:00:00Z","net":0.6707687509000005,"gross":1.3695199963999998},{"timestamp":"2026-02-25T22:12:00Z","net":0.6857327959000006,"gross":1.3995079963999997},{"timestamp":"2026-02-25T23:15:00Z","net":0.7009911469000005,"gross":1.4297899964999998},{"timestamp":"2026-02-25T23:38:00Z","net":0.7087709519000005,"gross":1.4450819965},{"timestamp":"2026-02-25T23:58:00Z","net":0.7244947914000005,"gross":1.4758299965}]
Rolling Sharpe Ratio (30d / 90d)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: rollingSharpe(equity, 30) + rollingSharpe(equity, 90)sharpe30).| Stat | Value |
|---|---|
| Peak Sharpe (30d) | 8.46 @ 2024-12-03 23:59:00 UTC |
| Worst Sharpe (30d) | -7.57 @ 2026-02-05 23:59:00 UTC |
| Mean | -0.86 |
| Std Dev | 3.09 |
| Last | -4.08 |
| Points | 643 |
| Across 643 points the series ranged from -7.57 (2026-02-05 23:59:00 UTC) to 8.46 (2024-12-03 23:59:00 UTC), averaging -0.86. The most recent value is -4.08. | |
| Showing 60 of 643 points (down-sampled for readability). |
[{"timestamp":"2024-05-24T23:59:00+00:00","sharpe30":1.2179555194807532,"sharpe90":-0.2981826587460043},{"timestamp":"2024-06-04T23:59:00+00:00","sharpe30":2.342013956963404,"sharpe90":-2.100235550508017},{"timestamp":"2024-06-15T23:59:00+00:00","sharpe30":-1.5091826111103048,"sharpe90":-1.6840216662672784},{"timestamp":"2024-06-26T23:59:00+00:00","sharpe30":-4.366931842141956,"sharpe90":-0.21087022722024332},{"timestamp":"2024-07-07T23:59:00+00:00","sharpe30":-4.577557667187152,"sharpe90":-0.5735837345543104},{"timestamp":"2024-07-17T23:59:00+00:00","sharpe30":0.16668448123681426,"sharpe90":0.09613646212098315},{"timestamp":"2024-07-28T23:59:00+00:00","sharpe30":1.4548105659940924,"sharpe90":0.4573442798032857},{"timestamp":"2024-08-08T23:59:00+00:00","sharpe30":-1.0115535954180968,"sharpe90":0.32338336034064086},{"timestamp":"2024-08-19T23:59:00+00:00","sharpe30":-0.2352739541838564,"sharpe90":-0.36107845599136296},{"timestamp":"2024-08-30T23:59:00+00:00","sharpe30":-0.6081290616243392,"sharpe90":-0.1152563130087307},{"timestamp":"2024-09-10T23:59:00+00:00","sharpe30":2.0294172480886226,"sharpe90":1.011918055257377},{"timestamp":"2024-09-21T23:59:00+00:00","sharpe30":1.78853329871477,"sharpe90":0.13686153253843242},{"timestamp":"2024-10-02T23:59:00+00:00","sharpe30":0.030388370101388416,"sharpe90":2.084310504191967},{"timestamp":"2024-10-12T23:59:00+00:00","sharpe30":-1.6094424526272322,"sharpe90":1.4178212169661668},{"timestamp":"2024-10-23T23:59:00+00:00","sharpe30":-3.0925174413277836,"sharpe90":-0.4010394466781548},{"timestamp":"2024-11-03T23:59:00+00:00","sharpe30":-1.9423697256234962,"sharpe90":1.0735479973343416},{"timestamp":"2024-11-14T23:59:00+00:00","sharpe30":0.17576147871740636,"sharpe90":0.23003634827154312},{"timestamp":"2024-11-25T23:59:00+00:00","sharpe30":6.069325743908664,"sharpe90":0.2727445481109627},{"timestamp":"2024-12-06T23:59:00+00:00","sharpe30":7.1288267367537195,"sharpe90":-1.0765603280174727},{"timestamp":"2024-12-17T23:59:00+00:00","sharpe30":2.5353445736002636,"sharpe90":-0.5993016625892479},{"timestamp":"2024-12-28T23:59:00+00:00","sharpe30":-1.825219933259109,"sharpe90":-2.601937375361029},{"timestamp":"2025-01-08T23:59:00+00:00","sharpe30":-2.222863873907716,"sharpe90":-3.522526997986312},{"timestamp":"2025-01-18T23:59:00+00:00","sharpe30":-0.0012619618941004775,"sharpe90":-2.673832132375},{"timestamp":"2025-01-29T23:59:00+00:00","sharpe30":-3.9552150927294947,"sharpe90":-3.266610023788261},{"timestamp":"2025-02-09T23:59:00+00:00","sharpe30":-4.445254534989282,"sharpe90":-3.5478107439895177},{"timestamp":"2025-02-20T23:59:00+00:00","sharpe30":-2.2846819794868765,"sharpe90":-2.2714651550213465},{"timestamp":"2025-03-03T23:59:00+00:00","sharpe30":-4.102666696049479,"sharpe90":-1.2355713590322066},{"timestamp":"2025-03-14T23:59:00+00:00","sharpe30":-5.664135727802827,"sharpe90":-0.35160536329892184},{"timestamp":"2025-03-25T23:59:00+00:00","sharpe30":-2.2595768562443688,"sharpe90":-1.0778728543903677},{"timestamp":"2025-04-05T23:59:00+00:00","sharpe30":-4.274645964446291,"sharpe90":-1.0533656720054334},{"timestamp":"2025-04-15T23:59:00+00:00","sharpe30":-1.8808493232086916,"sharpe90":-0.7966614121229358},{"timestamp":"2025-04-26T23:59:00+00:00","sharpe30":0.43231762184647893,"sharpe90":-1.7028420190287306},{"timestamp":"2025-05-07T23:59:00+00:00","sharpe30":4.202240906751164,"sharpe90":0.2966110237339811},{"timestamp":"2025-05-18T23:59:00+00:00","sharpe30":3.889541848857816,"sharpe90":0.7158888227365239},{"timestamp":"2025-05-29T23:59:00+00:00","sharpe30":-2.5638889140033947,"sharpe90":-0.8179617033902852},{"timestamp":"2025-06-09T23:59:00+00:00","sharpe30":-5.1676587280327535,"sharpe90":-1.6058376705684017},{"timestamp":"2025-06-20T23:59:00+00:00","sharpe30":-6.273005009559297,"sharpe90":-1.525398569849179},{"timestamp":"2025-07-01T23:59:00+00:00","sharpe30":-2.8435148288623395,"sharpe90":-0.23153938400395038},{"timestamp":"2025-07-11T23:59:00+00:00","sharpe30":0.8090776210023225,"sharpe90":0.2982396903342692},{"timestamp":"2025-07-22T23:59:00+00:00","sharpe30":7.980362820672733,"sharpe90":0.8811064846079101},{"timestamp":"2025-08-02T23:59:00+00:00","sharpe30":-0.051262217717667646,"sharpe90":-0.13324583021600472},{"timestamp":"2025-08-13T23:59:00+00:00","sharpe30":0.5193320044618607,"sharpe90":-1.7884039744281084},{"timestamp":"2025-08-24T23:59:00+00:00","sharpe30":-1.9308869516813276,"sharpe90":-2.5781491948098614},{"timestamp":"2025-09-04T23:59:00+00:00","sharpe30":-1.1239700866229891,"sharpe90":-2.7584823870106567},{"timestamp":"2025-09-15T23:59:00+00:00","sharpe30":-0.6020306809321352,"sharpe90":-0.0644955138178993},{"timestamp":"2025-09-26T23:59:00+00:00","sharpe30":-2.0400944676319717,"sharpe90":-0.3388682836286808},{"timestamp":"2025-10-07T23:59:00+00:00","sharpe30":-0.9653854333739006,"sharpe90":-0.23617208537259346},{"timestamp":"2025-10-17T23:59:00+00:00","sharpe30":-4.717893299108688,"sharpe90":-0.3729667663287634},{"timestamp":"2025-10-28T23:59:00+00:00","sharpe30":-4.2099023340409865,"sharpe90":-0.23457014977622467},{"timestamp":"2025-11-08T23:59:00+00:00","sharpe30":1.6180374227409349,"sharpe90":-0.14990142200271628},{"timestamp":"2025-11-19T23:59:00+00:00","sharpe30":1.2402682461343715,"sharpe90":0.601516932641625},{"timestamp":"2025-11-30T23:59:00+00:00","sharpe30":1.4577766942455348,"sharpe90":0.6376270563800165},{"timestamp":"2025-12-11T23:59:00+00:00","sharpe30":-5.943989551268174,"sharpe90":-3.561388712482995},{"timestamp":"2025-12-22T23:59:00+00:00","sharpe30":-0.9680953657605752,"sharpe90":-1.7289249453433666},{"timestamp":"2026-01-02T23:59:00+00:00","sharpe30":-0.32562423700057375,"sharpe90":null},{"timestamp":"2026-01-12T23:59:00+00:00","sharpe30":-1.5653198975238996,"sharpe90":null},{"timestamp":"2026-01-23T23:59:00+00:00","sharpe30":0.3881590448151865,"sharpe90":null},{"timestamp":"2026-02-03T23:59:00+00:00","sharpe30":-5.030370998179935,"sharpe90":null},{"timestamp":"2026-02-14T23:59:00+00:00","sharpe30":-3.5725779662368335,"sharpe90":null},{"timestamp":"2026-02-25T23:59:00+00:00","sharpe30":-4.078270662167824,"sharpe90":null}]
Drawdown Recovery Episodes
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: drawdownRecoveryEpisodes(equity)depth).| Stat | Value |
|---|---|
| Shallowest | -0.16% @ 4 |
| Deepest Episode | -25.24% @ 443 |
| Mean | -4.17% |
| Std Dev | 8.06% |
| Last | -25.24% |
| Points | 8 |
| Across 8 points the series ranged from -25.24% (443) to -0.16% (4), averaging -4.17%. 0% of points were positive, 100% negative. The most recent value is -25.24%. | |
| Full series - 8 points. |
[{"start":"2024-04-30T23:59:00+00:00","end":"2024-05-04T23:59:00+00:00","depth":-0.16032098111855428,"durationDays":4},{"start":"2024-05-10T23:59:00+00:00","end":"2024-05-17T23:59:00+00:00","depth":-0.23589050194410358,"durationDays":7},{"start":"2024-06-02T23:59:00+00:00","end":"2024-06-05T23:59:00+00:00","depth":-0.1794462135366686,"durationDays":3},{"start":"2024-06-07T23:59:00+00:00","end":"2024-09-27T23:59:00+00:00","depth":-3.886018884728811,"durationDays":112},{"start":"2024-09-28T23:59:00+00:00","end":"2024-11-11T23:59:00+00:00","depth":-2.3597524444728757,"durationDays":44},{"start":"2024-11-12T23:59:00+00:00","end":"2024-11-22T23:59:00+00:00","depth":-1.1362997646568147,"durationDays":10},{"start":"2024-12-05T23:59:00+00:00","end":"2024-12-06T23:59:00+00:00","depth":-0.19506639343773594,"durationDays":1},{"start":"2024-12-09T23:59:00+00:00","end":"ongoing","depth":-25.238876111377223,"durationDays":443}]
Consecutive Win/Loss Streaks
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: consecutiveStreaks(trades)length).| Stat | Value |
|---|---|
| Longest Streak | 100 trades @ win |
| Shortest Streak | 100 trades @ win |
| Mean | 100 trades |
| Std Dev | 0 trades |
| Last | 100 trades |
| Points | 1 |
| Sum | 100 trades |
| Across 1 points the series ranged from 100 trades (win) to 100 trades (win), averaging 100 trades. The most recent value is 100 trades. | |
| Full series - 1 points. |
[{"type":"win","length":100,"index":0}]
Capital Utilization (% Invested)
GET /backtests/{id}/equity * Fields used: base_value_exit_net, total_value_exit_net * Transform: baseExposure(equity)exposure).| Stat | Value |
|---|---|
| Peak Utilization | 20.77% @ 2025-06-22 23:59:00 UTC |
| Min Utilization | 0.83% @ 2024-05-28 23:59:00 UTC |
| Mean | 12.41% |
| Std Dev | 5.56% |
| Last | 13.13% |
| Points | 673 |
| Across 673 points the series ranged from 0.83% (2024-05-28 23:59:00 UTC) to 20.77% (2025-06-22 23:59:00 UTC), averaging 12.41%. 100% of points were positive, 0% negative. The most recent value is 13.13%. | |
| Showing 60 of 673 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T23:59:00+00:00","exposure":0.8293695133352574},{"timestamp":"2024-05-05T23:59:00+00:00","exposure":1.8204860700897538},{"timestamp":"2024-05-17T23:59:00+00:00","exposure":2.276373943173649},{"timestamp":"2024-05-28T23:59:00+00:00","exposure":0.8259784229125705},{"timestamp":"2024-06-09T23:59:00+00:00","exposure":3.562824772135083},{"timestamp":"2024-06-20T23:59:00+00:00","exposure":6.670908620748198},{"timestamp":"2024-07-01T23:59:00+00:00","exposure":5.874276207425097},{"timestamp":"2024-07-13T23:59:00+00:00","exposure":6.481517784071761},{"timestamp":"2024-07-24T23:59:00+00:00","exposure":6.843752146246658},{"timestamp":"2024-08-05T23:59:00+00:00","exposure":10.541154430188568},{"timestamp":"2024-08-16T23:59:00+00:00","exposure":10.630940614582926},{"timestamp":"2024-08-27T23:59:00+00:00","exposure":9.247768787041979},{"timestamp":"2024-09-08T23:59:00+00:00","exposure":6.70912570815595},{"timestamp":"2024-09-19T23:59:00+00:00","exposure":6.537494548907909},{"timestamp":"2024-09-30T23:59:00+00:00","exposure":7.503663321233535},{"timestamp":"2024-10-12T23:59:00+00:00","exposure":9.060765128401151},{"timestamp":"2024-10-23T23:59:00+00:00","exposure":9.314275007643431},{"timestamp":"2024-11-04T23:59:00+00:00","exposure":9.297853129574381},{"timestamp":"2024-11-15T23:59:00+00:00","exposure":8.30281763071673},{"timestamp":"2024-11-26T23:59:00+00:00","exposure":4.859073788412222},{"timestamp":"2024-12-08T23:59:00+00:00","exposure":3.4940582548702337},{"timestamp":"2024-12-19T23:59:00+00:00","exposure":9.201351511496172},{"timestamp":"2024-12-31T23:59:00+00:00","exposure":9.38158530396606},{"timestamp":"2025-01-11T23:59:00+00:00","exposure":9.524250911067433},{"timestamp":"2025-01-22T23:59:00+00:00","exposure":10.169072654048597},{"timestamp":"2025-02-03T23:59:00+00:00","exposure":11.921258826597942},{"timestamp":"2025-02-14T23:59:00+00:00","exposure":12.364565994552269},{"timestamp":"2025-02-26T23:59:00+00:00","exposure":14.3062243987973},{"timestamp":"2025-03-09T23:59:00+00:00","exposure":16.749388610178592},{"timestamp":"2025-03-20T23:59:00+00:00","exposure":17.188481030664864},{"timestamp":"2025-04-01T23:59:00+00:00","exposure":18.25574539698499},{"timestamp":"2025-04-12T23:59:00+00:00","exposure":18.87159999622278},{"timestamp":"2025-04-23T23:59:00+00:00","exposure":17.907051142759165},{"timestamp":"2025-05-05T23:59:00+00:00","exposure":16.822936894720083},{"timestamp":"2025-05-16T23:59:00+00:00","exposure":17.462320731186924},{"timestamp":"2025-05-28T23:59:00+00:00","exposure":17.579838557842905},{"timestamp":"2025-06-08T23:59:00+00:00","exposure":18.695956243341776},{"timestamp":"2025-06-19T23:59:00+00:00","exposure":19.208161693886815},{"timestamp":"2025-07-01T23:59:00+00:00","exposure":19.99617308586128},{"timestamp":"2025-07-12T23:59:00+00:00","exposure":18.267684776119783},{"timestamp":"2025-07-24T23:59:00+00:00","exposure":18.43759987689743},{"timestamp":"2025-08-04T23:59:00+00:00","exposure":19.4743857823478},{"timestamp":"2025-08-15T23:59:00+00:00","exposure":19.30124997150124},{"timestamp":"2025-08-27T23:59:00+00:00","exposure":19.12613236920255},{"timestamp":"2025-09-07T23:59:00+00:00","exposure":19.65179554707819},{"timestamp":"2025-09-19T23:59:00+00:00","exposure":19.146544289069258},{"timestamp":"2025-09-30T23:59:00+00:00","exposure":19.29666463886047},{"timestamp":"2025-10-11T23:59:00+00:00","exposure":17.51571397192113},{"timestamp":"2025-10-23T23:59:00+00:00","exposure":19.73676401501036},{"timestamp":"2025-11-03T23:59:00+00:00","exposure":20.143719681335558},{"timestamp":"2025-11-14T23:59:00+00:00","exposure":17.77487812702465},{"timestamp":"2025-11-26T23:59:00+00:00","exposure":12.031944363450346},{"timestamp":"2025-12-07T23:59:00+00:00","exposure":11.206693318491576},{"timestamp":"2025-12-19T23:59:00+00:00","exposure":11.131573013367406},{"timestamp":"2025-12-30T23:59:00+00:00","exposure":11.586863839612317},{"timestamp":"2026-01-10T23:59:00+00:00","exposure":11.596091385867982},{"timestamp":"2026-01-22T23:59:00+00:00","exposure":11.527442624036837},{"timestamp":"2026-02-02T23:59:00+00:00","exposure":14.886941745591242},{"timestamp":"2026-02-14T23:59:00+00:00","exposure":11.963910848763557},{"timestamp":"2026-02-25T23:59:00+00:00","exposure":13.128413675137724}]
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.00 @ 2024-06-11 15:09:00 UTC |
| Lowest Price | 0.0649 @ 2026-02-25 23:46:00 UTC |
| Mean | 0.3391 |
| Std Dev | 0.3840 |
| Last | 0.0654 |
| Points | 170 |
| Across 170 points the series ranged from 0.0649 (2026-02-25 23:46:00 UTC) to 1.00 (2024-06-11 15:09:00 UTC), averaging 0.3391. The most recent value is 0.0654. | |
| Showing 60 of 170 points (down-sampled for readability). |
[{"timestamp":"2024-04-24T00:02:00Z","price":0.9903},{"timestamp":"2024-04-24T00:13:00Z","price":0.9896},{"timestamp":"2024-04-24T00:23:00Z","price":0.9832},{"timestamp":"2024-04-24T00:45:00Z","price":0.9887},{"timestamp":"2024-04-24T01:05:00Z","price":0.9917},{"timestamp":"2024-04-24T01:14:00Z","price":0.9928},{"timestamp":"2024-04-24T01:51:00Z","price":0.9919},{"timestamp":"2024-04-24T02:17:00Z","price":0.9914},{"timestamp":"2024-04-24T02:32:00Z","price":0.9805},{"timestamp":"2024-04-24T02:43:00Z","price":0.9836},{"timestamp":"2024-04-24T02:57:00Z","price":0.9861},{"timestamp":"2024-04-24T03:37:00Z","price":0.986},{"timestamp":"2024-04-24T04:02:00Z","price":0.9877},{"timestamp":"2024-04-24T04:29:00Z","price":0.9902},{"timestamp":"2024-04-24T05:16:00Z","price":0.9944},{"timestamp":"2025-02-04T10:09:00Z","price":0.4},{"timestamp":"2025-02-09T09:30:00Z","price":0.401},{"timestamp":"2025-06-13T08:12:00Z","price":0.2},{"timestamp":"2025-07-05T23:18:00Z","price":0.2},{"timestamp":"2025-08-19T23:24:00Z","price":0.2},{"timestamp":"2025-08-21T17:12:00Z","price":0.2005},{"timestamp":"2025-08-26T09:55:00Z","price":0.2},{"timestamp":"2025-08-29T19:26:00Z","price":0.2005},{"timestamp":"2025-09-02T19:14:00Z","price":0.2},{"timestamp":"2025-09-19T15:41:00Z","price":0.2005},{"timestamp":"2025-09-21T09:13:00Z","price":0.2},{"timestamp":"2025-09-21T14:53:00Z","price":0.2},{"timestamp":"2025-10-02T16:31:00Z","price":0.2005},{"timestamp":"2025-11-09T04:32:00Z","price":0.2},{"timestamp":"2026-01-31T17:11:00Z","price":0.0801},{"timestamp":"2026-01-31T21:36:00Z","price":0.0805},{"timestamp":"2026-02-02T03:17:00Z","price":0.0801},{"timestamp":"2026-02-02T04:17:00Z","price":0.0804},{"timestamp":"2026-02-02T05:06:00Z","price":0.0801},{"timestamp":"2026-02-02T06:47:00Z","price":0.0801},{"timestamp":"2026-02-02T07:06:00Z","price":0.0804},{"timestamp":"2026-02-03T17:32:00Z","price":0.0802},{"timestamp":"2026-02-03T19:47:00Z","price":0.0802},{"timestamp":"2026-02-03T20:19:00Z","price":0.0801},{"timestamp":"2026-02-03T23:56:00Z","price":0.0804},{"timestamp":"2026-02-08T18:57:00Z","price":0.0802},{"timestamp":"2026-02-08T19:08:00Z","price":0.0801},{"timestamp":"2026-02-08T20:23:00Z","price":0.08},{"timestamp":"2026-02-08T20:30:00Z","price":0.0805},{"timestamp":"2026-02-08T23:07:00Z","price":0.0802},{"timestamp":"2026-02-21T20:08:00Z","price":0.0666},{"timestamp":"2026-02-21T22:28:00Z","price":0.0663},{"timestamp":"2026-02-25T16:36:00Z","price":0.0654},{"timestamp":"2026-02-25T18:17:00Z","price":0.0655},{"timestamp":"2026-02-25T18:36:00Z","price":0.0661},{"timestamp":"2026-02-25T19:23:00Z","price":0.0657},{"timestamp":"2026-02-25T20:40:00Z","price":0.0665},{"timestamp":"2026-02-25T21:30:00Z","price":0.0661},{"timestamp":"2026-02-25T21:36:00Z","price":0.067},{"timestamp":"2026-02-25T21:40:00Z","price":0.0668},{"timestamp":"2026-02-25T21:57:00Z","price":0.0667},{"timestamp":"2026-02-25T22:08:00Z","price":0.0668},{"timestamp":"2026-02-25T23:15:00Z","price":0.0662},{"timestamp":"2026-02-25T23:39:00Z","price":0.0652},{"timestamp":"2026-02-25T23:58:00Z","price":0.0654}]
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 | 53 trades @ $5.00 |
| Least Populated Bin | 1 trades @ $5.00 |
| Mean | 11 trades |
| Std Dev | 17 trades |
| Last | 6 trades |
| Points | 9 |
| Sum | 100 trades |
| Across 9 points the series ranged from 1 trades (5.00)to∗∗53trades∗∗(5.00), averaging 11 trades. The most recent value is 6 trades. | |
| Full series - 9 points. |
[
{
"bin": "$5.00",
"count": 53,
"from": 5
},
{
"bin": "$5.00",
"count": 26,
"from": 5.001
},
{
"bin": "$5.00",
"count": 3,
"from": 5.002
},
{
"bin": "$5.00",
"count": 1,
"from": 5.003
},
{
"bin": "$5.00",
"count": 3,
"from": 5.004
},
{
"bin": "$5.00",
"count": 2,
"from": 5.005
},
{
"bin": "$5.01",
"count": 4,
"from": 5.007
},
{
"bin": "$5.01",
"count": 2,
"from": 5.008
},
{
"bin": "$5.01",
"count": 6,
"from": 5.009
}
]
Return Distribution by Fill Type
GET /backtests/{id}/trades * Fields used: fill_type, profit_percentage * Transform: returnByFillType(trades)TP).| Stat | Value |
|---|---|
| Largest TP Bin | 50 trades @ 0.1 |
| Smallest TP Bin | 0 trades @ 0.11 |
| Mean | 5 trades |
| Std Dev | 12 trades |
| Last | 25 trades |
| Points | 20 |
| Sum | 100 trades |
| Across 20 points the series ranged from 0 trades (0.11) to 50 trades (0.1), averaging 5 trades. The most recent value is 25 trades. | |
| Full series - 20 points. |
[
{
"bin": 0.1,
"TP": 50,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.11,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.12,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.13,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.14,
"TP": 5,
"SL": 0,
"TSL": 0
},
{
"bin": 0.15,
"TP": 18,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 2,
"SL": 0,
"TSL": 0
},
{
"bin": 0.16,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.17,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.18,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.19,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.19,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.2,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.21,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.21,
"TP": 0,
"SL": 0,
"TSL": 0
},
{
"bin": 0.22,
"TP": 25,
"SL": 0,
"TSL": 0
}
]
Monthly Equity Comparison (YoY)
GET /backtests/{id}/equity * Fields used: timestamp, total_value_exit_net * Transform: monthlyEquityYoY(equity)2025).| Stat | Value |
|---|---|
| Best Indexed Value | 99.56 @ Jan |
| Worst Indexed Value | 78.58 @ Oct |
| Mean | 88.81 |
| Std Dev | 5.16 |
| Last | 84.41 |
| Points | 12 |
| Across 12 points the series ranged from 78.58 (Oct) to 99.56 (Jan), averaging 88.81. The most recent value is 84.41. | |
| Full series - 12 points. |
[
{
"2025": 99.55882477733536,
"2026": 97.04942587049837,
"month": "Jan"
},
{
"2025": 94.43951069524333,
"2026": 95.07916980438321,
"month": "Feb"
},
{
"2025": 89.1968579727348,
"month": "Mar"
},
{
"2024": 99.86622237851141,
"2025": 94.04773025204211,
"month": "Apr"
},
{
"2024": 100.26003073994944,
"2025": 89.37643110016037,
"month": "May"
},
{
"2024": 99.10263265050581,
"2025": 87.00846103024362,
"month": "Jun"
},
{
"2024": 98.93798989164371,
"2025": 88.9039202645827,
"month": "Jul"
},
{
"2024": 98.28285051147192,
"2025": 87.89279604043409,
"month": "Aug"
},
{
"2024": 99.86201330361897,
"2025": 87.02097319861215,
"month": "Sep"
},
{
"2024": 98.4273261190206,
"2025": 78.58065899463539,
"month": "Oct"
},
{
"2024": 102.2024627461646,
"2025": 85.24034513540666,
"month": "Nov"
},
{
"2024": 100.60765421137876,
"2025": 84.41312010615547,
"month": "Dec"
}
]
Profit by Weekday
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByWeekday(trades)profit).| Stat | Value |
|---|---|
| Best Weekday | 111.12 USDT @ Sun |
| Worst Weekday | 71.83 USDT @ Fri |
| Mean | 92.57 USDT |
| Std Dev | 12.15 USDT |
| Last | 111.12 USDT |
| Points | 7 |
| Sum | 648.00 USDT |
| Across 7 points the series ranged from 71.83 USDT (Fri) to 111.12 USDT (Sun), averaging 92.57 USDT. 100% of points were positive, 0% negative. The most recent value is 111.12 USDT. | |
| Full series - 7 points. |
[
{
"day": "Mon",
"profit": 104.629331
},
{
"day": "Tue",
"profit": 93.550016
},
{
"day": "Wed",
"profit": 89.012542
},
{
"day": "Thu",
"profit": 95.013354
},
{
"day": "Fri",
"profit": 71.827581
},
{
"day": "Sat",
"profit": 82.847231
},
{
"day": "Sun",
"profit": 111.115487
}
]
Profit by Hour (UTC)
GET /backtests/{id}/trades * Fields used: sell_time, profit * Transform: profitByHour(trades)profit).| Stat | Value |
|---|---|
| Best Hour (UTC) | 42.17 USDT @ 15:00 |
| Worst Hour (UTC) | 19.33 USDT @ 23:00 |
| Mean | 27.00 USDT |
| Std Dev | 6.14 USDT |
| Last | 19.33 USDT |
| Points | 24 |
| Sum | 648.00 USDT |
| Across 24 points the series ranged from 19.33 USDT (23:00) to 42.17 USDT (15:00), averaging 27.00 USDT. 100% of points were positive, 0% negative. The most recent value is 19.33 USDT. | |
| Full series - 24 points. |
[{"hour":"0:00","profit":28.237274},{"hour":"1:00","profit":26.613123},{"hour":"2:00","profit":22.779318},{"hour":"3:00","profit":20.306994},{"hour":"4:00","profit":19.90172},{"hour":"5:00","profit":21.106947},{"hour":"6:00","profit":22.399473},{"hour":"7:00","profit":24.137278},{"hour":"8:00","profit":25.044594},{"hour":"9:00","profit":25.251707},{"hour":"10:00","profit":23.151042},{"hour":"11:00","profit":23.872112},{"hour":"12:00","profit":28.595219},{"hour":"13:00","profit":34.282809},{"hour":"14:00","profit":40.546523},{"hour":"15:00","profit":42.174533},{"hour":"16:00","profit":37.158291},{"hour":"17:00","profit":32.57271},{"hour":"18:00","profit":28.643341},{"hour":"19:00","profit":27.194498},{"hour":"20:00","profit":27.865879},{"hour":"21:00","profit":24.756213},{"hour":"22:00","profit":22.07269},{"hour":"23:00","profit":19.331251}]
Profit vs. Hold Time
GET /backtests/{id}/trades * Fields used: buy_time, sell_time, profit_percentage * Transform: holdTimes(trades)profitPct).| Stat | Value |
|---|---|
| Best Trade Return | 0.22% @ 0 |
| Worst Trade Return | 0.10% @ 95.2 |
| Mean | 0.14% |
| Std Dev | 0.05% |
| Last | 0.16% |
| Points | 100 |
| Across 100 points the series ranged from 0.10% (95.2) to 0.22% (0), averaging 0.14%. 100% of points were positive, 0% negative. The most recent value is 0.16%. | |
| Showing 60 of 100 points (down-sampled for readability). |
[{"hours":1.2,"profitPct":0.1022594163,"profit":0.0051140087},{"hours":0.05,"profitPct":0.1030771958,"profit":0.0051585982},{"hours":0.38333333333333336,"profitPct":0.1029746835,"profit":0.0051555563},{"hours":0.15,"profitPct":0.1040810618,"profit":0.0052087242},{"hours":0.25,"profitPct":0.1026676444,"profit":0.0051362795},{"hours":0.1,"profitPct":0.1019032974,"profit":0.0051034037},{"hours":3.15,"profitPct":0.100966948,"profit":0.0050552757},{"hours":3.4166666666666665,"profitPct":0.1018525053,"profit":0.0051018888},{"hours":3.2333333333333334,"profitPct":0.1022848919,"profit":0.0051147662},{"hours":1.0833333333333333,"profitPct":0.1036940185,"profit":0.005187061},{"hours":0.05,"profitPct":0.1047807241,"profit":0.0052396125},{"hours":0.08333333333333333,"profitPct":0.1046249108,"profit":0.0052350225},{"hours":0.6333333333333333,"profitPct":0.1033338404,"profit":0.005176393},{"hours":0.1,"profitPct":0.1033595335,"profit":0.005177155},{"hours":0.45,"profitPct":0.1029234585,"profit":0.0051540353},{"hours":95.2,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":51.78333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":3.9833333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":1.2666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.06666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.26666666666666666,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.3333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":1.6666666666666667,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.8333333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.1,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":0.06666666666666667,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.5333333333333333,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.016666666666666666,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":1.6333333333333333,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.13333333333333333,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.1,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":2,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":0.1,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":0.06666666666666667,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.16666666666666666,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.08333333333333333,"profitPct":0.2237842893,"profit":0.0111902662},{"hours":0,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.03333333333333333,"profitPct":0.0998125,"profit":0.004990625},{"hours":0.05,"profitPct":0.2242509363,"profit":0.0112139887},{"hours":0.8333333333333334,"profitPct":0.0998125,"profit":0.004990625},{"hours":97.85,"profitPct":0.1491766467,"profit":0.007459799},{"hours":97.46666666666667,"profitPct":0.1500750751,"profit":0.007504246},{"hours":96.7,"profitPct":0.1509789157,"profit":0.0075498275},{"hours":93.71666666666667,"profitPct":0.1528030303,"profit":0.007640396},{"hours":90.83333333333333,"profitPct":0.153262519,"profit":0.00766287},{"hours":0.25,"profitPct":0.1551145038,"profit":0.007756144},{"hours":0.23333333333333334,"profitPct":0.1555810398,"profit":0.007779805},{"hours":0.03333333333333333,"profitPct":0.1551145038,"profit":0.007756144},{"hours":0.13333333333333333,"profitPct":0.1518882175,"profit":0.0075945415},{"hours":0.016666666666666666,"profitPct":0.1487294469,"profit":0.007435635},{"hours":0.06666666666666667,"profitPct":0.1491766467,"profit":0.007459799},{"hours":0.18333333333333332,"profitPct":0.1500750751,"profit":0.007504246},{"hours":0.4166666666666667,"profitPct":0.1528030303,"profit":0.007640396},{"hours":0.1,"profitPct":0.1555810398,"profit":0.007779805},{"hours":0.1,"profitPct":0.1579352851,"profit":0.007897625}]
Fill Type Breakdown
GET /backtests/{id}/trades * Fields used: fill_type * Transform: computeKPIs(equity, trades).fillTypescount).| Stat | Value |
|---|---|
| Most Frequent Exit | 100 trades @ TP |
| Least Frequent Exit | 0 trades @ SL |
| Mean | 33 trades |
| Std Dev | 47 trades |
| Last | 0 trades |
| Points | 3 |
| Sum | 100 trades |
| Across 3 points the series ranged from 0 trades (SL) to 100 trades (TP), averaging 33 trades. The most recent value is 0 trades. | |
| Full series - 3 points. |
[
{
"type": "TP",
"count": 100
},
{
"type": "SL",
"count": 0
},
{
"type": "TSL",
"count": 0
}
]
Machine-Readable Facts
facts_sha256 in the frontmatter - re-hash it to verify.- JSON
- Flat Table
{
"backtest_id": "799056ec-d9a7-427c-be64-39889b6b81a5",
"symbol": "FLUXUSDT",
"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": 8148.74982665,
"return_pct": -18.5125,
"total_profit_usdt": 647.99554143,
"avg_profit_per_trade_usdt": 0.0058337,
"fulfilled_trades": 111078,
"active_orders": 707,
"win_rate_pct": 100,
"best_trade_usdt": 0.01121399,
"worst_trade_usdt": 0.00499063,
"trades_per_month": 5023.3691444784645,
"max_drawdown_pct": 25.238876111377223,
"max_drawdown_abs_usdt": 2595.464607649399,
"drawdown_duration_days": 331,
"recovery_days": null,
"cagr_pct": -10.530384951832694,
"volatility_annualized_pct": 19.859482175082388,
"sharpe_annualized": -0.46573893904281244,
"sortino_annualized": -0.6098729066712821,
"time_in_market_pct": 100,
"final_cash_usdt": 7078.9482400581,
"final_base_value_usdt": null,
"final_unrealized_pnl_usdt": -2464.322516027,
"median_hold_hours": 0.23333333333333334,
"avg_hold_hours": 10.781541218637996,
"buyhold_return_pct": null,
"outperformance_vs_buyhold_pp": null
}
| Key | Value |
|---|---|
backtest_id | 799056ec-d9a7-427c-be64-39889b6b81a5 |
symbol | FLUXUSDT |
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 | 8148.74982665 |
return_pct | -18.5125 |
total_profit_usdt | 647.99554143 |
avg_profit_per_trade_usdt | 0.0058337 |
fulfilled_trades | 111078 |
active_orders | 707 |
win_rate_pct | 100 |
best_trade_usdt | 0.01121399 |
worst_trade_usdt | 0.00499063 |
trades_per_month | 5023.3691444784645 |
max_drawdown_pct | 25.238876111377223 |
max_drawdown_abs_usdt | 2595.464607649399 |
drawdown_duration_days | 331 |
recovery_days | null |
cagr_pct | -10.530384951832694 |
volatility_annualized_pct | 19.859482175082388 |
sharpe_annualized | -0.46573893904281244 |
sortino_annualized | -0.6098729066712821 |
time_in_market_pct | 100 |
final_cash_usdt | 7078.9482400581 |
final_base_value_usdt | null |
final_unrealized_pnl_usdt | -2464.322516027 |
median_hold_hours | 0.23333333333333334 |
avg_hold_hours | 10.781541218637996 |
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 | FLUXUSDT |
| 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,148.75 USDT |
| Return % | GET /backtests/{id} | $.return_pct | direct API value (cross-check: (final_value/start_balance - 1) * 100) | -18.51% |
| Total profit | GET /backtests/{id} | $.total_profit | direct API value (cross-check: Sum trades[].profit) | +648.00 USDT |
| Win rate % | GET /backtests/{id} | $.win_rate | direct API value (cross-check: 100 * count(trades[].profit > 0) / count(trades)) | 100.0% |
| Trades count | GET /backtests/{id} | $.fulfilled_trades | direct API value (cross-check: count(trades)) | 111,078 |
| Best trade | GET /backtests/{id} | $.max_profit | direct API value (cross-check: max(trades[].profit)) | +0.0112 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.0058 USDT |
| Trades / month | derived | n/a | fulfilled_trades / (durationDays / 30.4375) | 5023.4 |
| Max drawdown % | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity) - running peak vs. trough | -25.24% |
| Max drawdown abs | GET /backtests/{id}/equity | $[*].total_value_* | maxDrawdown(equity).abs | -2,595.46 USDT |
| CAGR % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | (final/start)^(365.25/days) - 1 | -10.53% |
| Volatility (ann.) % | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | std(daily_returns) * sqrt(365) | 19.86% |
| Sharpe ratio (ann.) | GET /backtests/{id}/equity | $[*].timestamp, $[*].total_value_* | mean(daily_returns) / std(daily_returns) * sqrt(365) (rf=0) | -0.47 |
| 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.75 USDT |
| Gross profit (winners) | GET /backtests/{id}/trades | $[?(@.profit>0)].profit | Sum profit where profit > 0 | +0.72 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.0072 USDT |
| Max consecutive wins | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit > 0 | 100 |
| Max consecutive losses | GET /backtests/{id}/trades | $[*].profit (ordered) | longest run where profit < 0 | 0 |
| Avg holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | mean(sell_time - buy_time) / 3600 | 10.8h |
| Median holding (h) | GET /backtests/{id}/trades | $[*].buy_time, $[*].sell_time | median(sell_time - buy_time) / 3600 | 0.2h |
| Total volume (notional) | GET /backtests/{id}/trades | $[*].buy_quantity, $[*].buy_price | Sum (buy_quantity * buy_price) | 1,002 USDT |
Raw API Attachments
/trades. Full trade population: 111,078 closed trades - fetch the complete list via GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/trades. Aggregate KPIs are computed server-side against the full population, not from this sample.GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5 - backtest summary (verbatim)
GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5 - backtest summary (verbatim)
{
"id": "799056ec-d9a7-427c-be64-39889b6b81a5",
"status": "completed",
"error_message": null,
"created_at": "2026-05-08T13:39:10.240791Z",
"started_at": "2026-05-09T15:28:50.021538Z",
"completed_at": "2026-05-09T15:48:18.324115Z",
"mode_name": "3LongTimeLong.json",
"symbol": "FLUXUSDT",
"data_file": "",
"start_balance": 10000,
"final_value": 8148.74982665,
"return_pct": -18.5125,
"total_profit": 647.99554143,
"fulfilled_trades": 111078,
"active_orders": 707,
"win_rate": 100,
"avg_profit": 0.0058337,
"max_profit": 0.01121399,
"min_profit": 0.00499063,
"elapsed_sec": 1009.35,
"max_drawdown": -25.2389,
"profit_factor": null,
"sharpe_ratio": -0.4657,
"total_fees": 834.51975218,
"avg_hold_time_hours": 18.851,
"tp_count": 111078,
"sl_count": 0,
"tsl_count": 0,
"start_price": 0.948,
"end_price": 0.0654,
"gross_profit_quote": 1482.515294,
"gross_loss_quote": 0,
"wins": 111078,
"losses": 0,
"breakeven": 0,
"consecutive_wins_max": 111078,
"consecutive_losses_max": 0,
"holding_minutes_p50": 14,
"holding_minutes_p95": 1483,
"holding_minutes_max": 261131,
"description": "FLUXUSDT | 3LongTimeLong.json | 2024-04-24 - 2026-02-25 | -18.51% | 111078 trades | 100% WR",
"summary_text": "Backtest FLUXUSDT (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,148.75 USDT\nP&L: -1,851.25 USDT (-18.51%)\nResult: LOSS\nCompleted trades: 111078\nOpen orders at end: 707\nWin rate: 100.0%\nAvg. profit/trade: 0.005834 USDT\nBest trade: 0.011214 USDT\nWorst trade: 0.004991 USDT\nTotal profit (trades only): 647.995541 USDT\nMax drawdown: -25.24%\nProfit factor: inf (no losing trades)\nSharpe ratio: -0.47\nTotal fees: 834.52 USDT\nAvg hold time: 18.9h\nTP / SL / TSL: 111078 / 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: 1009.4s",
"share_token": null,
"config_hash": "078e81a5e9502e0b884b54ac04c09f6ef6e44a26aef4b3cbb1aae7d48f87ab66",
"config": {
"to": "2026-02-25 23:59:59",
"from": "2024-04-24 00:00:01",
"canBuy": true,
"symbol": "FLUXUSDT",
"canSell": true,
"canBuyUp": true,
"startBal": 10000,
"stepSize": 0.01,
"stopLoss": false,
"tickSize": 0.0001,
"buySplits": 9,
"buyVolumes": [
20,
15,
10,
10,
10,
10,
5,
5,
5
],
"canBuyDown": false,
"minNotional": 5,
"buyPercentage": 0.1,
"fees_in_quote": true,
"intrabar_mode": "OLHC",
"maker_fee_bps": 7.5,
"taker_fee_bps": 7.5,
"sellPercentages": [
0.25,
0.35,
0.5,
0.75,
1,
2.5,
5,
10,
15
],
"triggerCoolDown": 1,
"investmentPerBuy": 25,
"assumed_spread_bps": 0,
"stopLossPercentage": 5,
"investmentPercentMode": false,
"minInvestmentPerQuote": 25,
"order_latency_seconds": 2,
"trailingStopLossPercentages": [
0,
0,
0,
0,
0,
0,
0,
0,
0
],
"sellCancelDistancePercentage": 1,
"dontBuyBelowQuoteAssetBalance": 1,
"investmentPerFreeQuotePercent": 0.01,
"sellActivateDistancePercentage": 0.1
},
"is_duplicate": false,
"compact": false
}
GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/equity - equity series (verbatim, 673 points)
GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/equity - equity series (verbatim, 673 points)
[
{
"timestamp": "2024-04-24T23:59:00+00:00",
"base_asset_bal": 87.95,
"quote_asset_bal": 9915.9183057888,
"total_value_mid": 9998.9079257888,
"total_value_exit_net": 9998.8456835738,
"total_value": 9998.9079257888,
"base_cost_quote": 85.137589338,
"unrealized_pnl_exit_net": -2.210211553
},
{
"timestamp": "2024-04-25T23:59:00+00:00",
"base_asset_bal": 141.31,
"quote_asset_bal": 9866.8987775255,
"total_value_mid": 9999.4616885255,
"total_value_exit_net": 9999.3622663423,
"total_value": 9999.4616885255,
"base_cost_quote": 135.2223107275,
"unrealized_pnl_exit_net": -2.7588219107
},
{
"timestamp": "2024-04-26T23:59:00+00:00",
"base_asset_bal": 184.52,
"quote_asset_bal": 9827.9010020965,
"total_value_mid": 9996.6814460965,
"total_value_exit_net": 9996.5548607635,
"total_value": 9996.6814460965,
"base_cost_quote": 175.2937888127,
"unrealized_pnl_exit_net": -6.6399301457
},
{
"timestamp": "2024-04-27T23:59:00+00:00",
"base_asset_bal": 173.72,
"quote_asset_bal": 9838.660004903,
"total_value_mid": 9999.090424903,
"total_value_exit_net": 9998.970102088,
"total_value": 9999.090424903,
"base_cost_quote": 165.284622564,
"unrealized_pnl_exit_net": -4.974525379
},
{
"timestamp": "2024-04-28T23:59:00+00:00",
"base_asset_bal": 200.77,
"quote_asset_bal": 9814.1938251123,
"total_value_mid": 9997.7979901123,
"total_value_exit_net": 9997.6602869885,
"total_value": 9997.7979901123,
"base_cost_quote": 190.3140355553,
"unrealized_pnl_exit_net": -6.847573679
},
{
"timestamp": "2024-04-29T23:59:00+00:00",
"base_asset_bal": 279.55,
"quote_asset_bal": 9744.945863854,
"total_value_mid": 9994.584013854,
"total_value_exit_net": 9994.3967852415,
"total_value": 9994.584013854,
"base_cost_quote": 260.4156763833,
"unrealized_pnl_exit_net": -10.9647549957
},
{
"timestamp": "2024-04-30T23:59:00+00:00",
"base_asset_bal": 337.41,
"quote_asset_bal": 9695.9527991173,
"total_value_mid": 9985.6867661173,
"total_value_exit_net": 9985.469465642,
"total_value": 9985.6867661173,
"base_cost_quote": 310.5112378968,
"unrealized_pnl_exit_net": -20.994571372
},
{
"timestamp": "2024-05-01T23:59:00+00:00",
"base_asset_bal": 390.52,
"quote_asset_bal": 9652.1064196833,
"total_value_mid": 9983.5797956833,
"total_value_exit_net": 9983.3311906513,
"total_value": 9983.5797956833,
"base_cost_quote": 355.5687136778,
"unrealized_pnl_exit_net": -24.3439427097
},
{
"timestamp": "2024-05-02T23:59:00+00:00",
"base_asset_bal": 314.27,
"quote_asset_bal": 9718.055714779,
"total_value_mid": 9990.779220779,
"total_value_exit_net": 9990.5746781495,
"total_value": 9990.779220779,
"base_cost_quote": 290.4683139695,
"unrealized_pnl_exit_net": -17.949350599
},
{
"timestamp": "2024-05-03T23:59:00+00:00",
"base_asset_bal": 246.05,
"quote_asset_bal": 9778.8677183558,
"total_value_mid": 9998.1966883558,
"total_value_exit_net": 9998.0321916283,
"total_value": 9998.1966883558,
"base_cost_quote": 230.3725879535,
"unrealized_pnl_exit_net": -11.208114681
},
{
"timestamp": "2024-05-04T23:59:00+00:00",
"base_asset_bal": 234.68,
"quote_asset_bal": 9789.4860672073,
"total_value_mid": 10002.5755072073,
"total_value_exit_net": 10002.4156901273,
"total_value": 10002.5755072073,
"base_cost_quote": 220.3476959192,
"unrealized_pnl_exit_net": -7.4180729992
},
{
"timestamp": "2024-05-05T23:59:00+00:00",
"base_asset_bal": 196.85,
"quote_asset_bal": 9825.3463887293,
"total_value_mid": 10007.6688587293,
"total_value_exit_net": 10007.5321168768,
"total_value": 10007.6688587293,
"base_cost_quote": 185.307868744,
"unrealized_pnl_exit_net": -3.1221405965
},
{
"timestamp": "2024-05-06T23:59:00+00:00",
"base_asset_bal": 169.8,
"quote_asset_bal": 9851.1029823173,
"total_value_mid": 10008.5924823173,
"total_value_exit_net": 10008.4743651923,
"total_value": 10008.5924823173,
"base_cost_quote": 160.2681130015,
"unrealized_pnl_exit_net": -2.8967301265
},
{
"timestamp": "2024-05-07T23:59:00+00:00",
"base_asset_bal": 191.16,
"quote_asset_bal": 9832.0435131865,
"total_value_mid": 10007.8915971865,
"total_value_exit_net": 10007.7597111235,
"total_value": 10007.8915971865,
"base_cost_quote": 180.2859581338,
"unrealized_pnl_exit_net": -4.5697601967
},
{
"timestamp": "2024-05-08T23:59:00+00:00",
"base_asset_bal": 279.65,
"quote_asset_bal": 9752.7302131158,
"total_value_mid": 10002.8771381158,
"total_value_exit_net": 10002.689527922,
"total_value": 10002.8771381158,
"base_cost_quote": 260.4177289215,
"unrealized_pnl_exit_net": -10.4584141152
},
{
"timestamp": "2024-05-09T23:59:00+00:00",
"base_asset_bal": 301.91,
"quote_asset_bal": 9733.3626363745,
"total_value_mid": 10000.7039413745,
"total_value_exit_net": 10000.5034353958,
"total_value": 10000.7039413745,
"base_cost_quote": 280.4579668357,
"unrealized_pnl_exit_net": -13.3171678145
},
{
"timestamp": "2024-05-10T23:59:00+00:00",
"base_asset_bal": 365.09,
"quote_asset_bal": 9679.0345322395,
"total_value_mid": 9993.3770222395,
"total_value_exit_net": 9993.141265372,
"total_value": 9993.3770222395,
"base_cost_quote": 335.5445468077,
"unrealized_pnl_exit_net": -21.4378136752
},
{
"timestamp": "2024-05-11T23:59:00+00:00",
"base_asset_bal": 441.53,
"quote_asset_bal": 9614.390648331,
"total_value_mid": 9985.143389331,
"total_value_exit_net": 9984.8653247753,
"total_value": 9985.143389331,
"base_cost_quote": 400.643109139,
"unrealized_pnl_exit_net": -30.1684326947
},
{
"timestamp": "2024-05-12T23:59:00+00:00",
"base_asset_bal": 279.64,
"quote_asset_bal": 9755.2672109425,
"total_value_mid": 9999.2531109425,
"total_value_exit_net": 9999.0701215175,
"total_value": 9999.2531109425,
"base_cost_quote": 260.4238535115,
"unrealized_pnl_exit_net": -16.6209429365
},
{
"timestamp": "2024-05-13T23:59:00+00:00",
"base_asset_bal": 308.23,
"quote_asset_bal": 9730.9516836153,
"total_value_mid": 9998.5569696153,
"total_value_exit_net": 9998.3562656508,
"total_value": 9998.5569696153,
"base_cost_quote": 285.468316782,
"unrealized_pnl_exit_net": -18.0637347465
},
{
"timestamp": "2024-05-14T23:59:00+00:00",
"base_asset_bal": 402.31,
"quote_asset_bal": 9651.34981469,
"total_value_mid": 9990.17529669,
"total_value_exit_net": 9989.9211775785,
"total_value": 9990.17529669,
"base_cost_quote": 365.5948696593,
"unrealized_pnl_exit_net": -27.0235067707
},
{
"timestamp": "2024-05-15T23:59:00+00:00",
"base_asset_bal": 343.28,
"quote_asset_bal": 9702.293763274,
"total_value_mid": 10001.805563274,
"total_value_exit_net": 10001.580929424,
"total_value": 10001.805563274,
"base_cost_quote": 315.496713201,
"unrealized_pnl_exit_net": -16.209547051
},
{
"timestamp": "2024-05-16T23:59:00+00:00",
"base_asset_bal": 343.24,
"quote_asset_bal": 9703.305115033,
"total_value_mid": 10003.468495033,
"total_value_exit_net": 10003.243372498,
"total_value": 10003.468495033,
"base_cost_quote": 315.4930244365,
"unrealized_pnl_exit_net": -15.5547669715
},
{
"timestamp": "2024-05-17T23:59:00+00:00",
"base_asset_bal": 252.98,
"quote_asset_bal": 9784.3102587845,
"total_value_mid": 10012.3970267845,
"total_value_exit_net": 10012.2259617085,
"total_value": 10012.3970267845,
"base_cost_quote": 235.3744715548,
"unrealized_pnl_exit_net": -7.4587686307
},
{
"timestamp": "2024-05-18T23:59:00+00:00",
"base_asset_bal": 264.21,
"quote_asset_bal": 9774.7134222397,
"total_value_mid": 10011.3398982397,
"total_value_exit_net": 10011.1624283827,
"total_value": 10011.3398982397,
"base_cost_quote": 245.3905800063,
"unrealized_pnl_exit_net": -8.9415738632
},
{
"timestamp": "2024-05-19T23:59:00+00:00",
"base_asset_bal": 337.99,
"quote_asset_bal": 9710.106331611,
"total_value_mid": 10005.746184611,
"total_value_exit_net": 10005.5244547212,
"total_value": 10005.746184611,
"base_cost_quote": 310.5077672958,
"unrealized_pnl_exit_net": -15.0896441855
},
{
"timestamp": "2024-05-20T23:59:00+00:00",
"base_asset_bal": 177.14,
"quote_asset_bal": 9855.9463274317,
"total_value_mid": 10020.8282394317,
"total_value_exit_net": 10020.7045779977,
"total_value": 10020.8282394317,
"base_cost_quote": 165.2673746377,
"unrealized_pnl_exit_net": -0.5091240717
},
{
"timestamp": "2024-05-21T23:59:00+00:00",
"base_asset_bal": 248.54,
"quote_asset_bal": 9791.6113883724,
"total_value_mid": 10015.3222423724,
"total_value_exit_net": 10015.1544592319,
"total_value": 10015.3222423724,
"base_cost_quote": 230.3744613575,
"unrealized_pnl_exit_net": -6.831390498
},
{
"timestamp": "2024-05-22T23:59:00+00:00",
"base_asset_bal": 231.66,
"quote_asset_bal": 9807.4104915272,
"total_value_mid": 10018.3832535272,
"total_value_exit_net": 10018.2250239557,
"total_value": 10018.3832535272,
"base_cost_quote": 215.3617132347,
"unrealized_pnl_exit_net": -4.5471808062
},
{
"timestamp": "2024-05-23T23:59:00+00:00",
"base_asset_bal": 248.78,
"quote_asset_bal": 9793.1749876422,
"total_value_mid": 10017.6989376422,
"total_value_exit_net": 10017.5305446797,
"total_value": 10017.6989376422,
"base_cost_quote": 230.391860397,
"unrealized_pnl_exit_net": -6.0363033595
},
{
"timestamp": "2024-05-24T23:59:00+00:00",
"base_asset_bal": 321.54,
"quote_asset_bal": 9728.6117928092,
"total_value_mid": 10011.4062228092,
"total_value_exit_net": 10011.1941269867,
"total_value": 10011.4062228092,
"base_cost_quote": 295.4908890778,
"unrealized_pnl_exit_net": -12.9085549002
},
{
"timestamp": "2024-05-25T23:59:00+00:00",
"base_asset_bal": 215.47,
"quote_asset_bal": 9824.3307591634,
"total_value_mid": 10022.8432701634,
"total_value_exit_net": 10022.6943857802,
"total_value": 10022.8432701634,
"base_cost_quote": 200.3514489735,
"unrealized_pnl_exit_net": -1.9878223567
},
{
"timestamp": "2024-05-26T23:59:00+00:00",
"base_asset_bal": 198.86,
"quote_asset_bal": 9839.8189293814,
"total_value_mid": 10025.3950813814,
"total_value_exit_net": 10025.2558992674,
"total_value": 10025.3950813814,
"base_cost_quote": 185.3216620813,
"unrealized_pnl_exit_net": 0.1153078048
},
{
"timestamp": "2024-05-27T23:59:00+00:00",
"base_asset_bal": 129.43,
"quote_asset_bal": 9905.6518043922,
"total_value_mid": 10030.1505213922,
"total_value_exit_net": 10030.0571473544,
"total_value": 10030.1505213922,
"base_cost_quote": 120.213660676,
"unrealized_pnl_exit_net": 4.1916822863
},
{
"timestamp": "2024-05-28T23:59:00+00:00",
"base_asset_bal": 83.17,
"quote_asset_bal": 9951.6684730799,
"total_value_mid": 10034.6139140799,
"total_value_exit_net": 10034.5517049992,
"total_value": 10034.6139140799,
"base_cost_quote": 75.1220022773,
"unrealized_pnl_exit_net": 7.761229642
},
{
"timestamp": "2024-05-29T23:59:00+00:00",
"base_asset_bal": 148.08,
"quote_asset_bal": 9887.1513048299,
"total_value_mid": 10033.1433768299,
"total_value_exit_net": 10033.0338827759,
"total_value": 10033.1433768299,
"base_cost_quote": 140.2500096757,
"unrealized_pnl_exit_net": 5.6325682703
},
{
"timestamp": "2024-05-30T23:59:00+00:00",
"base_asset_bal": 183.76,
"quote_asset_bal": 9852.6296246302,
"total_value_mid": 10031.6853686302,
"total_value_exit_net": 10031.5510768222,
"total_value": 10031.6853686302,
"base_cost_quote": 175.3218618518,
"unrealized_pnl_exit_net": 3.5995903403
},
{
"timestamp": "2024-05-31T23:59:00+00:00",
"base_asset_bal": 272.16,
"quote_asset_bal": 9767.9018405672,
"total_value_mid": 10025.0386085672,
"total_value_exit_net": 10024.8457559912,
"total_value": 10025.0386085672,
"base_cost_quote": 260.4543043325,
"unrealized_pnl_exit_net": -3.5103889085
},
{
"timestamp": "2024-06-01T23:59:00+00:00",
"base_asset_bal": 235.33,
"quote_asset_bal": 9803.3049744727,
"total_value_mid": 10024.7505044727,
"total_value_exit_net": 10024.5844203252,
"total_value": 10024.7505044727,
"base_cost_quote": 225.3785652435,
"unrealized_pnl_exit_net": -4.099119391
},
{
"timestamp": "2024-06-02T23:59:00+00:00",
"base_asset_bal": 299.82,
"quote_asset_bal": 9743.5539949072,
"total_value_mid": 10016.7499789072,
"total_value_exit_net": 10016.5450819192,
"total_value": 10016.7499789072,
"base_cost_quote": 285.47638683,
"unrealized_pnl_exit_net": -12.485299818
},
{
"timestamp": "2024-06-03T23:59:00+00:00",
"base_asset_bal": 299.5,
"quote_asset_bal": 9744.0239355257,
"total_value_mid": 10021.2710855257,
"total_value_exit_net": 10021.0631501632,
"total_value": 10021.2710855257,
"base_cost_quote": 285.4805589568,
"unrealized_pnl_exit_net": -8.4413443192
},
{
"timestamp": "2024-06-04T23:59:00+00:00",
"base_asset_bal": 214.78,
"quote_asset_bal": 9824.7354649257,
"total_value_mid": 10033.0505869257,
"total_value_exit_net": 10032.8943505842,
"total_value": 10033.0505869257,
"base_cost_quote": 205.3556963463,
"unrealized_pnl_exit_net": 2.8031893123
},
{
"timestamp": "2024-06-05T23:59:00+00:00",
"base_asset_bal": 123.26,
"quote_asset_bal": 9915.4595164826,
"total_value_mid": 10039.8535084826,
"total_value_exit_net": 10039.7602129886,
"total_value": 10039.8535084826,
"base_cost_quote": 115.1939126865,
"unrealized_pnl_exit_net": 9.1067838195
},
{
"timestamp": "2024-06-06T23:59:00+00:00",
"base_asset_bal": 117.77,
"quote_asset_bal": 9921.0123647971,
"total_value_mid": 10042.1270327971,
"total_value_exit_net": 10042.0361967961,
"total_value": 10042.1270327971,
"base_cost_quote": 110.1774821833,
"unrealized_pnl_exit_net": 10.8463498158
},
{
"timestamp": "2024-06-07T23:59:00+00:00",
"base_asset_bal": 293.92,
"quote_asset_bal": 9746.1810504594,
"total_value_mid": 10021.6722664594,
"total_value_exit_net": 10021.4656480474,
"total_value": 10021.6722664594,
"base_cost_quote": 285.516917205,
"unrealized_pnl_exit_net": -10.232319617
},
{
"timestamp": "2024-06-08T23:59:00+00:00",
"base_asset_bal": 356.94,
"quote_asset_bal": 9686.5071887586,
"total_value_mid": 10018.3900007586,
"total_value_exit_net": 10018.1410886496,
"total_value": 10018.3900007586,
"base_cost_quote": 345.613083551,
"unrealized_pnl_exit_net": -13.97918366
},
{
"timestamp": "2024-06-09T23:59:00+00:00",
"base_asset_bal": 389.35,
"quote_asset_bal": 9656.8100565411,
"total_value_mid": 10013.8440065411,
"total_value_exit_net": 10013.5762310786,
"total_value": 10013.8440065411,
"base_cost_quote": 375.6462425393,
"unrealized_pnl_exit_net": -18.8800680017
},
{
"timestamp": "2024-06-10T23:59:00+00:00",
"base_asset_bal": 444.61,
"quote_asset_bal": 9607.2112070799,
"total_value_mid": 10004.2923980799,
"total_value_exit_net": 10003.9945871866,
"total_value": 10004.2923980799,
"base_cost_quote": 425.743144057,
"unrealized_pnl_exit_net": -28.9597639502
},
{
"timestamp": "2024-06-11T23:59:00+00:00",
"base_asset_bal": 111.26,
"quote_asset_bal": 9929.2085799432,
"total_value_mid": 10025.0701959432,
"total_value_exit_net": 10024.9982997312,
"total_value": 10025.0701959432,
"base_cost_quote": 105.1817251735,
"unrealized_pnl_exit_net": -9.3920053855
},
{
"timestamp": "2024-06-12T23:59:00+00:00",
"base_asset_bal": 176.22,
"quote_asset_bal": 9869.9514488424,
"total_value_mid": 10025.8532828424,
"total_value_exit_net": 10025.7363564669,
"total_value": 10025.8532828424,
"base_cost_quote": 165.26349473,
"unrealized_pnl_exit_net": -9.4785871055
},
{
"timestamp": "2024-06-13T23:59:00+00:00",
"base_asset_bal": 387.44,
"quote_asset_bal": 9690.1441627777,
"total_value_mid": 10010.5570427777,
"total_value_exit_net": 10010.3167331177,
"total_value": 10010.5570427777,
"base_cost_quote": 345.5473322745,
"unrealized_pnl_exit_net": -25.3747619345
},
{
"timestamp": "2024-06-14T23:59:00+00:00",
"base_asset_bal": 510.57,
"quote_asset_bal": 9595.8996623429,
"total_value_mid": 9978.6739913429,
"total_value_exit_net": 9978.3869105962,
"total_value": 9978.6739913429,
"base_cost_quote": 440.6844726552,
"unrealized_pnl_exit_net": -58.197224402
},
{
"timestamp": "2024-06-15T23:59:00+00:00",
"base_asset_bal": 523.59,
"quote_asset_bal": 9586.4178192949,
"total_value_mid": 9979.2150372949,
"total_value_exit_net": 9978.9204393814,
"total_value": 9979.2150372949,
"base_cost_quote": 450.7067897597,
"unrealized_pnl_exit_net": -58.2041696732
},
{
"timestamp": "2024-06-16T23:59:00+00:00",
"base_asset_bal": 638.89,
"quote_asset_bal": 9501.7335127844,
"total_value_mid": 9962.8843147844,
"total_value_exit_net": 9962.5384516829,
"total_value": 9962.8843147844,
"base_cost_quote": 535.8415699925,
"unrealized_pnl_exit_net": -75.036631094
},
{
"timestamp": "2024-06-17T23:59:00+00:00",
"base_asset_bal": 766.74,
"quote_asset_bal": 9412.5836260747,
"total_value_mid": 9941.6342260747,
"total_value_exit_net": 9941.2374381247,
"total_value": 9941.6342260747,
"base_cost_quote": 625.9728427863,
"unrealized_pnl_exit_net": -97.3190307363
},
{
"timestamp": "2024-06-18T23:59:00+00:00",
"base_asset_bal": 1106.93,
"quote_asset_bal": 9193.0539437099,
"total_value_mid": 9874.3693587099,
"total_value_exit_net": 9873.8583721487,
"total_value": 9874.3693587099,
"base_cost_quote": 846.2944061207,
"unrealized_pnl_exit_net": -165.489977682
},
{
"timestamp": "2024-06-19T23:59:00+00:00",
"base_asset_bal": 1067.41,
"quote_asset_bal": 9218.7166505019,
"total_value_mid": 9890.5445045019,
"total_value_exit_net": 9890.0406336114,
"total_value": 9890.5445045019,
"base_cost_quote": 821.2559783735,
"unrealized_pnl_exit_net": -149.931995264
},
{
"timestamp": "2024-06-20T23:59:00+00:00",
"base_asset_bal": 1003.24,
"quote_asset_bal": 9259.4792434377,
"total_value_mid": 9921.8182914377,
"total_value_exit_net": 9921.3215371517,
"total_value": 9921.8182914377,
"base_cost_quote": 781.1903957065,
"unrealized_pnl_exit_net": -119.3481019925
},
{
"timestamp": "2024-06-21T23:59:00+00:00",
"base_asset_bal": 1056.46,
"quote_asset_bal": 9225.0406841414,
"total_value_mid": 9907.9364281414,
"total_value_exit_net": 9907.4242563334,
"total_value": 9907.9364281414,
"base_cost_quote": 816.2444815677,
"unrealized_pnl_exit_net": -133.8609093757
},
{
"timestamp": "2024-06-22T23:59:00+00:00",
"base_asset_bal": 1095.87,
"quote_asset_bal": 9200.2181950212,
"total_value_mid": 9889.7395990212,
"total_value_exit_net": 9889.2224579682,
"total_value": 9889.7395990212,
"base_cost_quote": 841.2817224255,
"unrealized_pnl_exit_net": -152.2774594785
},
{
"timestamp": "2024-06-23T23:59:00+00:00",
"base_asset_bal": 1152.8,
"quote_asset_bal": 9165.5374252132,
"total_value_mid": 9859.6383052132,
"total_value_exit_net": 9859.1177295532,
"total_value": 9859.6383052132,
"base_cost_quote": 876.3205888807,
"unrealized_pnl_exit_net": -182.7402845407
},
{
"timestamp": "2024-06-24T23:59:00+00:00",
"base_asset_bal": 1079.69,
"quote_asset_bal": 9211.4592277631,
"total_value_mid": 9894.9029977631,
"total_value_exit_net": 9894.3904149356,
"total_value": 9894.9029977631,
"base_cost_quote": 831.258284481,
"unrealized_pnl_exit_net": -148.3270973085
},
{
"timestamp": "2024-06-25T23:59:00+00:00",
"base_asset_bal": 993.44,
"quote_asset_bal": 9267.0557403381,
"total_value_mid": 9916.6661563382,
"total_value_exit_net": 9916.1789485262,
"total_value": 9916.6661563382,
"base_cost_quote": 776.1851285695,
"unrealized_pnl_exit_net": -127.0619203815
},
{
"timestamp": "2024-06-26T23:59:00+00:00",
"base_asset_bal": 1030.34,
"quote_asset_bal": 9252.5931650081,
"total_value_mid": 9892.2282370081,
"total_value_exit_net": 9891.7485107041,
"total_value": 9892.2282370081,
"base_cost_quote": 791.204866931,
"unrealized_pnl_exit_net": -152.049521235
},
{
"timestamp": "2024-06-27T23:59:00+00:00",
"base_asset_bal": 802.81,
"quote_asset_bal": 9398.4527297054,
"total_value_mid": 9930.6354787054,
"total_value_exit_net": 9930.2363416436,
"total_value": 9930.6354787054,
"base_cost_quote": 646.0017602165,
"unrealized_pnl_exit_net": -114.2181482782
},
{
"timestamp": "2024-06-28T23:59:00+00:00",
"base_asset_bal": 884.08,
"quote_asset_bal": 9343.9744481731,
"total_value_mid": 9931.7992401731,
"total_value_exit_net": 9931.3583715791,
"total_value": 9931.7992401731,
"base_cost_quote": 701.0813359393,
"unrealized_pnl_exit_net": -113.6974125332
},
{
"timestamp": "2024-06-29T23:59:00+00:00",
"base_asset_bal": 1078.81,
"quote_asset_bal": 9219.0245828079,
"total_value_mid": 9890.6916888079,
"total_value_exit_net": 9890.1879384784,
"total_value": 9890.6916888079,
"base_cost_quote": 826.253833956,
"unrealized_pnl_exit_net": -155.0904782855
},
{
"timestamp": "2024-06-30T23:59:00+00:00",
"base_asset_bal": 1007.29,
"quote_asset_bal": 9264.4339390169,
"total_value_mid": 9909.6031840169,
"total_value_exit_net": 9909.1193070831,
"total_value": 9909.6031840169,
"base_cost_quote": 781.199592599,
"unrealized_pnl_exit_net": -136.5142245327
},
{
"timestamp": "2024-07-01T23:59:00+00:00",
"base_asset_bal": 893.2,
"quote_asset_bal": 9340.2074190478,
"total_value_mid": 9923.5563390478,
"total_value_exit_net": 9923.1188273578,
"total_value": 9923.5563390478,
"base_cost_quote": 706.1058555048,
"unrealized_pnl_exit_net": -123.1944471947
},
{
"timestamp": "2024-07-02T23:59:00+00:00",
"base_asset_bal": 963.78,
"quote_asset_bal": 9295.4396788641,
"total_value_mid": 9905.3196628641,
"total_value_exit_net": 9904.8622528761,
"total_value": 9905.3196628641,
"base_cost_quote": 751.1537340933,
"unrealized_pnl_exit_net": -141.7311600812
},
{
"timestamp": "2024-07-03T23:59:00+00:00",
"base_asset_bal": 910.72,
"quote_asset_bal": 9331.2163957713,
"total_value_mid": 9903.8771317713,
"total_value_exit_net": 9903.4476362193,
"total_value": 9903.8771317713,
"base_cost_quote": 716.111805343,
"unrealized_pnl_exit_net": -143.880564895
},
{
"timestamp": "2024-07-04T23:59:00+00:00",
"base_asset_bal": 1263.41,
"quote_asset_bal": 9121.4644795203,
"total_value_mid": 9841.2291565203,
"total_value_exit_net": 9840.6893330126,
"total_value": 9841.2291565203,
"base_cost_quote": 926.3796510402,
"unrealized_pnl_exit_net": -207.154797548
},
{
"timestamp": "2024-07-05T23:59:00+00:00",
"base_asset_bal": 1561.01,
"quote_asset_bal": 8962.6860955238,
"total_value_mid": 9793.2995165238,
"total_value_exit_net": 9792.6765564581,
"total_value": 9793.2995165238,
"base_cost_quote": 1086.5690570558,
"unrealized_pnl_exit_net": -256.5785961215
},
{
"timestamp": "2024-07-06T23:59:00+00:00",
"base_asset_bal": 1399.93,
"quote_asset_bal": 9053.5488278048,
"total_value_mid": 9858.6485708048,
"total_value_exit_net": 9858.0447459976,
"total_value": 9858.6485708048,
"base_cost_quote": 996.4751542685,
"unrealized_pnl_exit_net": -191.9792360758
},
{
"timestamp": "2024-07-07T23:59:00+00:00",
"base_asset_bal": 1405.12,
"quote_asset_bal": 9054.3042020573,
"total_value_mid": 9801.1254820573,
"total_value_exit_net": 9800.5653660973,
"total_value": 9801.1254820573,
"base_cost_quote": 996.464704437,
"unrealized_pnl_exit_net": -250.203540397
},
{
"timestamp": "2024-07-08T23:59:00+00:00",
"base_asset_bal": 1383.64,
"quote_asset_bal": 9065.379399624,
"total_value_mid": 9813.236819624,
"total_value_exit_net": 9812.675926559,
"total_value": 9813.236819624,
"base_cost_quote": 986.4433880825,
"unrealized_pnl_exit_net": -239.1468611475
},
{
"timestamp": "2024-07-09T23:59:00+00:00",
"base_asset_bal": 1283.56,
"quote_asset_bal": 9121.1183777096,
"total_value_mid": 9832.9807537096,
"total_value_exit_net": 9832.4468569276,
"total_value": 9832.9807537096,
"base_cost_quote": 931.3776527322,
"unrealized_pnl_exit_net": -220.0491735143
},
{
"timestamp": "2024-07-10T23:59:00+00:00",
"base_asset_bal": 1336.45,
"quote_asset_bal": 9092.0179171758,
"total_value_mid": 9840.5635621758,
"total_value_exit_net": 9840.0021529421,
"total_value": 9840.5635621758,
"base_cost_quote": 961.4096858768,
"unrealized_pnl_exit_net": -213.4254501105
},
{
"timestamp": "2024-07-11T23:59:00+00:00",
"base_asset_bal": 1291.33,
"quote_asset_bal": 9118.0448720646,
"total_value_mid": 9856.4273660646,
"total_value_exit_net": 9855.8735791941,
"total_value": 9856.4273660646,
"base_cost_quote": 936.383965653,
"unrealized_pnl_exit_net": -198.5552585235
},
{
"timestamp": "2024-07-12T23:59:00+00:00",
"base_asset_bal": 1155.7,
"quote_asset_bal": 9199.2890070853,
"total_value_mid": 9881.7298570853,
"total_value_exit_net": 9881.2180264478,
"total_value": 9881.7298570853,
"base_cost_quote": 856.2849864405,
"unrealized_pnl_exit_net": -174.355967078
},
{
"timestamp": "2024-07-13T23:59:00+00:00",
"base_asset_bal": 1040.14,
"quote_asset_bal": 9270.7674753218,
"total_value_mid": 9913.7820233218,
"total_value_exit_net": 9913.2997624108,
"total_value": 9913.7820233218,
"base_cost_quote": 786.1819525685,
"unrealized_pnl_exit_net": -143.6496654795
},
{
"timestamp": "2024-07-14T23:59:00+00:00",
"base_asset_bal": 944.9,
"quote_asset_bal": 9332.317899362,
"total_value_mid": 9931.573479362,
"total_value_exit_net": 9931.124037677,
"total_value": 9931.573479362,
"base_cost_quote": 726.0878557735,
"unrealized_pnl_exit_net": -127.2817174585
},
{
"timestamp": "2024-07-15T23:59:00+00:00",
"base_asset_bal": 859.32,
"quote_asset_bal": 9388.9416808403,
"total_value_mid": 9964.9438768403,
"total_value_exit_net": 9964.5118751933,
"total_value": 9964.9438768403,
"base_cost_quote": 671.0205672593,
"unrealized_pnl_exit_net": -95.4503729063
},
{
"timestamp": "2024-07-16T23:59:00+00:00",
"base_asset_bal": 972.44,
"quote_asset_bal": 9315.1160553865,
"total_value_mid": 9951.4807913865,
"total_value_exit_net": 9951.0035178345,
"total_value": 9951.4807913865,
"base_cost_quote": 746.1314131755,
"unrealized_pnl_exit_net": -110.2439507275
},
{
"timestamp": "2024-07-17T23:59:00+00:00",
"base_asset_bal": 1001.68,
"quote_asset_bal": 9295.9184583248,
"total_value_mid": 9950.2158343248,
"total_value_exit_net": 9949.7251112928,
"total_value": 9950.2158343248,
"base_cost_quote": 766.150202015,
"unrealized_pnl_exit_net": -112.343549047
},
{
"timestamp": "2024-07-18T23:59:00+00:00",
"base_asset_bal": 1018.8,
"quote_asset_bal": 9286.726141654,
"total_value_mid": 9946.195381654,
"total_value_exit_net": 9945.700779724,
"total_value": 9946.195381654,
"base_cost_quote": 776.1708098385,
"unrealized_pnl_exit_net": -117.1961717685
},
{
"timestamp": "2024-07-19T23:59:00+00:00",
"base_asset_bal": 896.73,
"quote_asset_bal": 9367.8303385293,
"total_value_mid": 9974.3785105293,
"total_value_exit_net": 9973.9235994003,
"total_value": 9974.3785105293,
"base_cost_quote": 696.0614998838,
"unrealized_pnl_exit_net": -89.9682390128
},
{
"timestamp": "2024-07-20T23:59:00+00:00",
"base_asset_bal": 918.24,
"quote_asset_bal": 9353.4191518613,
"total_value_mid": 9984.6173278613,
"total_value_exit_net": 9984.1439292293,
"total_value": 9984.6173278613,
"base_cost_quote": 711.086078873,
"unrealized_pnl_exit_net": -80.361301505
},
{
"timestamp": "2024-07-21T23:59:00+00:00",
"base_asset_bal": 774.36,
"quote_asset_bal": 9454.4746537183,
"total_value_mid": 10008.6841057183,
"total_value_exit_net": 10008.2684486293,
"total_value": 10008.6841057183,
"base_cost_quote": 610.9381942505,
"unrealized_pnl_exit_net": -57.1443993395
},
{
"timestamp": "2024-07-22T23:59:00+00:00",
"base_asset_bal": 881.75,
"quote_asset_bal": 9380.198922751,
"total_value_mid": 9991.957072751,
"total_value_exit_net": 9991.4982541385,
"total_value": 9991.957072751,
"base_cost_quote": 686.0301800322,
"unrealized_pnl_exit_net": -74.7308486448
},
{
"timestamp": "2024-07-23T23:59:00+00:00",
"base_asset_bal": 1006.85,
"quote_asset_bal": 9296.0017988555,
"total_value_mid": 9970.2892438555,
"total_value_exit_net": 9969.7835282718,
"total_value": 9970.2892438555,
"base_cost_quote": 771.132584001,
"unrealized_pnl_exit_net": -97.3508545848
},
{
"timestamp": "2024-07-24T23:59:00+00:00",
"base_asset_bal": 1029.25,
"quote_asset_bal": 9281.67325965,
"total_value_mid": 9964.06600965,
"total_value_exit_net": 9963.5542150875,
"total_value": 9964.06600965,
"base_cost_quote": 786.1711454692,
"unrealized_pnl_exit_net": -104.2901900318
},
{
"timestamp": "2024-07-25T23:59:00+00:00",
"base_asset_bal": 1021.97,
"quote_asset_bal": 9287.617263932,
"total_value_mid": 9971.110799932,
"total_value_exit_net": 9970.59817978,
"total_value": 9971.110799932,
"base_cost_quote": 781.1564142395,
"unrealized_pnl_exit_net": -98.1754983915
},
{
"timestamp": "2024-07-26T23:59:00+00:00",
"base_asset_bal": 882.88,
"quote_asset_bal": 9383.7224937008,
"total_value_mid": 9997.0592297008,
"total_value_exit_net": 9996.5992271488,
"total_value": 9997.0592297008,
"base_cost_quote": 686.0202425847,
"unrealized_pnl_exit_net": -73.1435091368
},
{
"timestamp": "2024-07-27T23:59:00+00:00",
"base_asset_bal": 854.32,
"quote_asset_bal": 9404.6001631498,
"total_value_mid": 10001.6844111498,
"total_value_exit_net": 10001.2365979638,
"total_value": 10001.6844111498,
"base_cost_quote": 665.9996644042,
"unrealized_pnl_exit_net": -69.3632295903
},
{
"timestamp": "2024-07-28T23:59:00+00:00",
"base_asset_bal": 904.5,
"quote_asset_bal": 9370.272479791,
"total_value_mid": 9995.734229791,
"total_value_exit_net": 9995.2651334785,
"total_value": 9995.734229791,
"base_cost_quote": 701.054664951,
"unrealized_pnl_exit_net": -76.0620112635
},
{
"timestamp": "2024-07-29T23:59:00+00:00",
"base_asset_bal": 868.02,
"quote_asset_bal": 9396.5321409808,
"total_value_mid": 10005.0141609808,
"total_value_exit_net": 10004.5577994658,
"total_value": 10005.0141609808,
"base_cost_quote": 676.0365894565,
"unrealized_pnl_exit_net": -68.0109309715
},
{
"timestamp": "2024-07-30T23:59:00+00:00",
"base_asset_bal": 1106.68,
"quote_asset_bal": 9237.3286075228,
"total_value_mid": 9936.5290315228,
"total_value_exit_net": 9936.0046312048,
"total_value": 9936.5290315228,
"base_cost_quote": 836.2367775525,
"unrealized_pnl_exit_net": -137.5607538705
},
{
"timestamp": "2024-07-31T23:59:00+00:00",
"base_asset_bal": 1272.66,
"quote_asset_bal": 9138.0268850283,
"total_value_mid": 9893.2233290283,
"total_value_exit_net": 9892.6569316953,
"total_value": 9893.2233290283,
"base_cost_quote": 936.3963799567,
"unrealized_pnl_exit_net": -181.7663332898
},
{
"timestamp": "2024-08-01T23:59:00+00:00",
"base_asset_bal": 1257.01,
"quote_asset_bal": 9149.0992956818,
"total_value_mid": 9884.0730426818,
"total_value_exit_net": 9883.5218123715,
"total_value": 9884.0730426818,
"base_cost_quote": 926.3785332025,
"unrealized_pnl_exit_net": -191.9560165128
},
{
"timestamp": "2024-08-02T23:59:00+00:00",
"base_asset_bal": 1506.64,
"quote_asset_bal": 9009.7237456888,
"total_value_mid": 9827.2266096888,
"total_value_exit_net": 9826.6134825408,
"total_value": 9827.2266096888,
"base_cost_quote": 1066.5577177993,
"unrealized_pnl_exit_net": -249.6679809473
},
{
"timestamp": "2024-08-03T23:59:00+00:00",
"base_asset_bal": 1725.43,
"quote_asset_bal": 8895.1472379068,
"total_value_mid": 9771.3205919068,
"total_value_exit_net": 9770.6634618913,
"total_value": 9771.3205919068,
"base_cost_quote": 1181.7047413452,
"unrealized_pnl_exit_net": -306.1885173608
},
{
"timestamp": "2024-08-04T23:59:00+00:00",
"base_asset_bal": 2051.51,
"quote_asset_bal": 8736.029449973,
"total_value_mid": 9707.214283973,
"total_value_exit_net": 9706.4858953475,
"total_value": 9707.214283973,
"base_cost_quote": 1341.904870397,
"unrealized_pnl_exit_net": -371.4484250225
},
{
"timestamp": "2024-08-05T23:59:00+00:00",
"base_asset_bal": 2281.88,
"quote_asset_bal": 8634.3895489193,
"total_value_mid": 9652.5644049193,
"total_value_exit_net": 9651.8007737773,
"total_value": 9652.5644049193,
"base_cost_quote": 1447.0280837195,
"unrealized_pnl_exit_net": -429.6168588615
},
{
"timestamp": "2024-08-06T23:59:00+00:00",
"base_asset_bal": 2011.45,
"quote_asset_bal": 8761.5930252181,
"total_value_mid": 9727.4913152181,
"total_value_exit_net": 9726.7668915006,
"total_value": 9727.4913152181,
"base_cost_quote": 1321.8759129367,
"unrealized_pnl_exit_net": -356.7020466543
},
{
"timestamp": "2024-08-07T23:59:00+00:00",
"base_asset_bal": 2181.72,
"quote_asset_bal": 8683.3296743221,
"total_value_mid": 9690.8479703221,
"total_value_exit_net": 9690.0923316001,
"total_value": 9690.8479703221,
"base_cost_quote": 1401.9601771212,
"unrealized_pnl_exit_net": -395.1975198433
},
{
"timestamp": "2024-08-08T23:59:00+00:00",
"base_asset_bal": 1858.34,
"quote_asset_bal": 8839.6608941089,
"total_value_mid": 9774.5917481089,
"total_value_exit_net": 9773.8905499684,
"total_value": 9774.5917481089,
"base_cost_quote": 1246.7801903545,
"unrealized_pnl_exit_net": -312.550534495
},
{
"timestamp": "2024-08-09T23:59:00+00:00",
"base_asset_bal": 1969.71,
"quote_asset_bal": 8785.2238873141,
"total_value_mid": 9749.0029903141,
"total_value_exit_net": 9748.2801559869,
"total_value": 9749.0029903141,
"base_cost_quote": 1301.8575544197,
"unrealized_pnl_exit_net": -338.801285747
},
{
"timestamp": "2024-08-10T23:59:00+00:00",
"base_asset_bal": 1749.46,
"quote_asset_bal": 8895.8790210886,
"total_value_mid": 9794.7515690886,
"total_value_exit_net": 9794.0774146776,
"total_value": 9794.7515690886,
"base_cost_quote": 1191.710244849,
"unrealized_pnl_exit_net": -293.51185126
},
{
"timestamp": "2024-08-11T23:59:00+00:00",
"base_asset_bal": 1888.97,
"quote_asset_bal": 8826.2537114811,
"total_value_mid": 9763.3717284811,
"total_value_exit_net": 9762.6688899683,
"total_value": 9763.3717284811,
"base_cost_quote": 1261.8047052958,
"unrealized_pnl_exit_net": -325.3895268085
},
{
"timestamp": "2024-08-12T23:59:00+00:00",
"base_asset_bal": 1779.62,
"quote_asset_bal": 8882.0905221878,
"total_value_mid": 9793.7898481878,
"total_value_exit_net": 9793.1060736933,
"total_value": 9793.7898481878,
"base_cost_quote": 1206.7396984915,
"unrealized_pnl_exit_net": -295.724146986
},
{
"timestamp": "2024-08-13T23:59:00+00:00",
"base_asset_bal": 1948.53,
"quote_asset_bal": 8797.5207910403,
"total_value_mid": 9771.5909380403,
"total_value_exit_net": 9770.8603854301,
"total_value": 9771.5909380403,
"base_cost_quote": 1291.8433513963,
"unrealized_pnl_exit_net": -318.5037570065
},
{
"timestamp": "2024-08-14T23:59:00+00:00",
"base_asset_bal": 1899.22,
"quote_asset_bal": 8823.1809691593,
"total_value_mid": 9771.4615151593,
"total_value_exit_net": 9770.7503047498,
"total_value": 9771.4615151593,
"base_cost_quote": 1266.8198958697,
"unrealized_pnl_exit_net": -319.2505602793
},
{
"timestamp": "2024-08-15T23:59:00+00:00",
"base_asset_bal": 2188.38,
"quote_asset_bal": 8683.7973261031,
"total_value_mid": 9704.6765961031,
"total_value_exit_net": 9703.9109366506,
"total_value": 9704.6765961031,
"base_cost_quote": 1406.9870784718,
"unrealized_pnl_exit_net": -386.8734679243
},
{
"timestamp": "2024-08-16T23:59:00+00:00",
"base_asset_bal": 2272.06,
"quote_asset_bal": 8649.6662198823,
"total_value_mid": 9679.3638118823,
"total_value_exit_net": 9678.5915386883,
"total_value": 9679.3638118823,
"base_cost_quote": 1442.0363167,
"unrealized_pnl_exit_net": -413.110997894
},
{
"timestamp": "2024-08-17T23:59:00+00:00",
"base_asset_bal": 2010.67,
"quote_asset_bal": 8770.2957201373,
"total_value_mid": 9718.9298261373,
"total_value_exit_net": 9718.2183505578,
"total_value": 9718.9298261373,
"base_cost_quote": 1321.8915216345,
"unrealized_pnl_exit_net": -373.968891214
},
{
"timestamp": "2024-08-18T23:59:00+00:00",
"base_asset_bal": 1233.61,
"quote_asset_bal": 9237.8398660576,
"total_value_mid": 9940.0106780576,
"total_value_exit_net": 9939.4840499486,
"total_value": 9940.0106780576,
"base_cost_quote": 856.2643059417,
"unrealized_pnl_exit_net": -154.6201220508
},
{
"timestamp": "2024-08-19T23:59:00+00:00",
"base_asset_bal": 1172.67,
"quote_asset_bal": 9270.4144017088,
"total_value_mid": 9963.5796387088,
"total_value_exit_net": 9963.059764781,
"total_value": 9963.5796387088,
"base_cost_quote": 826.2218329732,
"unrealized_pnl_exit_net": -133.576469901
},
{
"timestamp": "2024-08-20T23:59:00+00:00",
"base_asset_bal": 1285.56,
"quote_asset_bal": 9206.7966882458,
"total_value_mid": 9938.5374402458,
"total_value_exit_net": 9937.9886346818,
"total_value": 9938.5374402458,
"base_cost_quote": 891.315089328,
"unrealized_pnl_exit_net": -160.123142892
},
{
"timestamp": "2024-08-21T23:59:00+00:00",
"base_asset_bal": 1250.71,
"quote_asset_bal": 9227.612515715,
"total_value_mid": 9945.520055715,
"total_value_exit_net": 9944.98162506,
"total_value": 9945.520055715,
"base_cost_quote": 871.2883935627,
"unrealized_pnl_exit_net": -153.9192842178
},
{
"timestamp": "2024-08-22T23:59:00+00:00",
"base_asset_bal": 1325.88,
"quote_asset_bal": 9188.1704919793,
"total_value_mid": 9917.5370799793,
"total_value_exit_net": 9916.9900550383,
"total_value": 9917.5370799793,
"base_cost_quote": 911.3382974795,
"unrealized_pnl_exit_net": -182.5187344205
},
{
"timestamp": "2024-08-23T23:59:00+00:00",
"base_asset_bal": 1251.82,
"quote_asset_bal": 9228.8785889711,
"total_value_mid": 9955.184552971,
"total_value_exit_net": 9954.639823498,
"total_value": 9955.184552971,
"base_cost_quote": 871.2918621622,
"unrealized_pnl_exit_net": -145.5306276353
},
{
"timestamp": "2024-08-24T23:59:00+00:00",
"base_asset_bal": 1217.82,
"quote_asset_bal": 9249.7211329698,
"total_value_mid": 9967.5042409698,
"total_value_exit_net": 9966.9659036388,
"total_value": 9967.5042409698,
"base_cost_quote": 851.2597453342,
"unrealized_pnl_exit_net": -134.0149746653
},
{
"timestamp": "2024-08-25T23:59:00+00:00",
"base_asset_bal": 1198.85,
"quote_asset_bal": 9260.6541547988,
"total_value_mid": 9991.8327697988,
"total_value_exit_net": 9991.2843858375,
"total_value": 9991.8327697988,
"base_cost_quote": 841.2459316025,
"unrealized_pnl_exit_net": -110.6157005638
},
{
"timestamp": "2024-08-26T23:59:00+00:00",
"base_asset_bal": 1195.12,
"quote_asset_bal": 9257.8315530013,
"total_value_mid": 10035.3766250013,
"total_value_exit_net": 10034.7934661973,
"total_value": 10035.3766250013,
"base_cost_quote": 846.2599322847,
"unrealized_pnl_exit_net": -69.2980190888
},
{
"timestamp": "2024-08-27T23:59:00+00:00",
"base_asset_bal": 1609.14,
"quote_asset_bal": 9008.414872865,
"total_value_mid": 9927.072898865,
"total_value_exit_net": 9926.3839053455,
"total_value": 9927.072898865,
"base_cost_quote": 1096.5993601452,
"unrealized_pnl_exit_net": -178.6303276648
},
{
"timestamp": "2024-08-28T23:59:00+00:00",
"base_asset_bal": 1671.06,
"quote_asset_bal": 8974.2904273068,
"total_value_mid": 9912.4235113068,
"total_value_exit_net": 9911.7199114938,
"total_value": 9912.4235113068,
"base_cost_quote": 1131.6306299072,
"unrealized_pnl_exit_net": -194.2011457203
},
{
"timestamp": "2024-08-29T23:59:00+00:00",
"base_asset_bal": 1808.45,
"quote_asset_bal": 8900.0586075448,
"total_value_mid": 9868.8452725448,
"total_value_exit_net": 9868.118682546,
"total_value": 9868.8452725448,
"base_cost_quote": 1206.7276494615,
"unrealized_pnl_exit_net": -238.6675744603
},
{
"timestamp": "2024-08-30T23:59:00+00:00",
"base_asset_bal": 1712.45,
"quote_asset_bal": 8950.8657920156,
"total_value_mid": 9835.6887070156,
"total_value_exit_net": 9835.0250898293,
"total_value": 9835.6887070156,
"base_cost_quote": 1156.6701694877,
"unrealized_pnl_exit_net": -272.510871674
},
{
"timestamp": "2024-08-31T23:59:00+00:00",
"base_asset_bal": 1563.91,
"quote_asset_bal": 9031.4048412886,
"total_value_mid": 9827.7478132886,
"total_value_exit_net": 9827.1505560596,
"total_value": 9827.7478132886,
"base_cost_quote": 1076.562240568,
"unrealized_pnl_exit_net": -280.816525797
},
{
"timestamp": "2024-09-01T23:59:00+00:00",
"base_asset_bal": 1653.58,
"quote_asset_bal": 8986.8690610856,
"total_value_mid": 9811.1786910856,
"total_value_exit_net": 9810.5604588631,
"total_value": 9811.1786910856,
"base_cost_quote": 1121.6136337905,
"unrealized_pnl_exit_net": -297.922236013
},
{
"timestamp": "2024-09-02T23:59:00+00:00",
"base_asset_bal": 1498.12,
"quote_asset_bal": 9068.3121983641,
"total_value_mid": 9882.9898543641,
"total_value_exit_net": 9882.3788461221,
"total_value": 9882.9898543641,
"base_cost_quote": 1041.5240145927,
"unrealized_pnl_exit_net": -227.4573668348
},
{
"timestamp": "2024-09-03T23:59:00+00:00",
"base_asset_bal": 1193.46,
"quote_asset_bal": 9256.0778994123,
"total_value_mid": 9981.9402714123,
"total_value_exit_net": 9981.3958746333,
"total_value": 9981.9402714123,
"base_cost_quote": 856.2629929577,
"unrealized_pnl_exit_net": -130.9450177368
},
{
"timestamp": "2024-09-04T23:59:00+00:00",
"base_asset_bal": 1149.59,
"quote_asset_bal": 9282.8813884843,
"total_value_mid": 9956.1962514843,
"total_value_exit_net": 9955.691265337,
"total_value": 9956.1962514843,
"base_cost_quote": 831.2542274405,
"unrealized_pnl_exit_net": -158.4443505878
},
{
"timestamp": "2024-09-05T23:59:00+00:00",
"base_asset_bal": 1417.17,
"quote_asset_bal": 9133.6317419858,
"total_value_mid": 9904.0053539858,
"total_value_exit_net": 9903.4275737768,
"total_value": 9904.0053539858,
"base_cost_quote": 981.4643726195,
"unrealized_pnl_exit_net": -211.6685408285
},
{
"timestamp": "2024-09-06T23:59:00+00:00",
"base_asset_bal": 1483.64,
"quote_asset_bal": 9099.6798881108,
"total_value_mid": 9886.8992721108,
"total_value_exit_net": 9886.3088575728,
"total_value": 9886.8992721108,
"base_cost_quote": 1016.51049151,
"unrealized_pnl_exit_net": -229.881522048
},
{
"timestamp": "2024-09-07T23:59:00+00:00",
"base_asset_bal": 1455.56,
"quote_asset_bal": 9115.2179519606,
"total_value_mid": 9893.5058839606,
"total_value_exit_net": 9892.9221680116,
"total_value": 9893.5058839606,
"base_cost_quote": 1001.4832315115,
"unrealized_pnl_exit_net": -223.7790154605
},
{
"timestamp": "2024-09-08T23:59:00+00:00",
"base_asset_bal": 1151.79,
"quote_asset_bal": 9286.9533706978,
"total_value_mid": 9955.3371076978,
"total_value_exit_net": 9954.8358198951,
"total_value": 9955.3371076978,
"base_cost_quote": 831.2534428525,
"unrealized_pnl_exit_net": -163.3709936553
},
{
"timestamp": "2024-09-09T23:59:00+00:00",
"base_asset_bal": 1134.34,
"quote_asset_bal": 9297.9217604296,
"total_value_mid": 9953.6837144296,
"total_value_exit_net": 9953.1918929641,
"total_value": 9953.6837144296,
"base_cost_quote": 821.2365868407,
"unrealized_pnl_exit_net": -165.9664543063
},
{
"timestamp": "2024-09-10T23:59:00+00:00",
"base_asset_bal": 1204.41,
"quote_asset_bal": 9258.3751084604,
"total_value_mid": 9947.0567464604,
"total_value_exit_net": 9946.5402352319,
"total_value": 9947.0567464604,
"base_cost_quote": 861.2991572502,
"unrealized_pnl_exit_net": -173.1340304788
},
{
"timestamp": "2024-09-11T23:59:00+00:00",
"base_asset_bal": 1083.73,
"quote_asset_bal": 9329.7829381137,
"total_value_mid": 9969.1836381136,
"total_value_exit_net": 9968.7040875886,
"total_value": 9969.1836381136,
"base_cost_quote": 791.1862559833,
"unrealized_pnl_exit_net": -152.2651065083
},
{
"timestamp": "2024-09-12T23:59:00+00:00",
"base_asset_bal": 1050.63,
"quote_asset_bal": 9350.3905683322,
"total_value_mid": 9973.9394733321,
"total_value_exit_net": 9973.4718116534,
"total_value": 9973.9394733321,
"base_cost_quote": 771.1828796945,
"unrealized_pnl_exit_net": -148.1016363733
},
{
"timestamp": "2024-09-13T23:59:00+00:00",
"base_asset_bal": 1017.24,
"quote_asset_bal": 9371.0538112327,
"total_value_mid": 9986.9926312326,
"total_value_exit_net": 9986.5306771176,
"total_value": 9986.9926312326,
"base_cost_quote": 751.1458101547,
"unrealized_pnl_exit_net": -135.6689442698
},
{
"timestamp": "2024-09-14T23:59:00+00:00",
"base_asset_bal": 976.52,
"quote_asset_bal": 9396.8063954736,
"total_value_mid": 10014.9435554736,
"total_value_exit_net": 10014.4799526036,
"total_value": 10014.9435554736,
"base_cost_quote": 726.1093919135,
"unrealized_pnl_exit_net": -108.4358347835
},
{
"timestamp": "2024-09-15T23:59:00+00:00",
"base_asset_bal": 1248.18,
"quote_asset_bal": 9231.9819434859,
"total_value_mid": 9961.9176074858,
"total_value_exit_net": 9961.3701557378,
"total_value": 9961.9176074858,
"base_cost_quote": 891.324260201,
"unrealized_pnl_exit_net": -161.936047949
},
{
"timestamp": "2024-09-16T23:59:00+00:00",
"base_asset_bal": 1353.51,
"quote_asset_bal": 9172.4269402756,
"total_value_mid": 9937.2954412756,
"total_value_exit_net": 9936.7217898999,
"total_value": 9937.2954412756,
"base_cost_quote": 951.4105821692,
"unrealized_pnl_exit_net": -187.115732545
},
{
"timestamp": "2024-09-17T23:59:00+00:00",
"base_asset_bal": 1257.88,
"quote_asset_bal": 9228.0585198581,
"total_value_mid": 9969.5787798581,
"total_value_exit_net": 9969.0226396631,
"total_value": 9969.5787798581,
"base_cost_quote": 896.330480052,
"unrealized_pnl_exit_net": -155.366360247
},
{
"timestamp": "2024-09-18T23:59:00+00:00",
"base_asset_bal": 1066.21,
"quote_asset_bal": 9343.9711474334,
"total_value_mid": 10001.2896124334,
"total_value_exit_net": 10000.7966235846,
"total_value": 10001.2896124334,
"base_cost_quote": 781.1814920337,
"unrealized_pnl_exit_net": -124.3560158825
},
{
"timestamp": "2024-09-19T23:59:00+00:00",
"base_asset_bal": 1058.32,
"quote_asset_bal": 9349.4641467531,
"total_value_mid": 10003.9292347531,
"total_value_exit_net": 10003.4383859371,
"total_value": 10003.9292347531,
"base_cost_quote": 776.1803900182,
"unrealized_pnl_exit_net": -122.2061508343
},
{
"timestamp": "2024-09-20T23:59:00+00:00",
"base_asset_bal": 987.48,
"quote_asset_bal": 9395.1672976171,
"total_value_mid": 10009.5773536171,
"total_value_exit_net": 10009.1165460751,
"total_value": 10009.5773536171,
"base_cost_quote": 731.1163653292,
"unrealized_pnl_exit_net": -117.1671168713
},
{
"timestamp": "2024-09-21T23:59:00+00:00",
"base_asset_bal": 939.67,
"quote_asset_bal": 9425.6336766269,
"total_value_mid": 10030.8751236269,
"total_value_exit_net": 10030.4211925416,
"total_value": 10030.8751236269,
"base_cost_quote": 701.0720709957,
"unrealized_pnl_exit_net": -96.284555081
},
{
"timestamp": "2024-09-22T23:59:00+00:00",
"base_asset_bal": 1140.04,
"quote_asset_bal": 9300.7722074466,
"total_value_mid": 10000.1867474466,
"total_value_exit_net": 9999.6621865416,
"total_value": 10000.1867474466,
"base_cost_quote": 826.2361106735,
"unrealized_pnl_exit_net": -127.3461315785
},
{
"timestamp": "2024-09-23T23:59:00+00:00",
"base_asset_bal": 1018.8,
"quote_asset_bal": 9376.6441264606,
"total_value_mid": 10023.2764864606,
"total_value_exit_net": 10022.7915121906,
"total_value": 10023.2764864606,
"base_cost_quote": 751.1516074995,
"unrealized_pnl_exit_net": -105.0042217695
},
{
"timestamp": "2024-09-24T23:59:00+00:00",
"base_asset_bal": 932.86,
"quote_asset_bal": 9432.2715108873,
"total_value_mid": 10035.3655008873,
"total_value_exit_net": 10034.9131803948,
"total_value": 10035.3655008873,
"base_cost_quote": 696.0650465417,
"unrealized_pnl_exit_net": -93.4233770343
},
{
"timestamp": "2024-09-25T23:59:00+00:00",
"base_asset_bal": 1138.87,
"quote_asset_bal": 9302.6048975303,
"total_value_mid": 9999.5933375303,
"total_value_exit_net": 9999.0705962003,
"total_value": 9999.5933375303,
"base_cost_quote": 826.2492815442,
"unrealized_pnl_exit_net": -129.7835828743
},
{
"timestamp": "2024-09-26T23:59:00+00:00",
"base_asset_bal": 1058.57,
"quote_asset_bal": 9353.4316893814,
"total_value_mid": 10026.4704953813,
"total_value_exit_net": 10025.9657162768,
"total_value": 10026.4704953813,
"base_cost_quote": 776.1696899992,
"unrealized_pnl_exit_net": -103.6356631038
},
{
"timestamp": "2024-09-27T23:59:00+00:00",
"base_asset_bal": 1010.91,
"quote_asset_bal": 9384.1767126731,
"total_value_mid": 10044.3009426731,
"total_value_exit_net": 10043.8058495006,
"total_value": 10044.3009426731,
"base_cost_quote": 746.1328742705,
"unrealized_pnl_exit_net": -86.503737443
},
{
"timestamp": "2024-09-28T23:59:00+00:00",
"base_asset_bal": 1064.75,
"quote_asset_bal": 9349.6230579166,
"total_value_mid": 10023.7162829166,
"total_value_exit_net": 10023.2107129978,
"total_value": 10023.7162829166,
"base_cost_quote": 781.1777392212,
"unrealized_pnl_exit_net": -107.59008414
},
{
"timestamp": "2024-09-29T23:59:00+00:00",
"base_asset_bal": 1041.51,
"quote_asset_bal": 9365.2736773848,
"total_value_mid": 10029.5487553848,
"total_value_exit_net": 10029.0505490763,
"total_value": 10029.5487553848,
"base_cost_quote": 766.162343114,
"unrealized_pnl_exit_net": -102.3854714225
},
{
"timestamp": "2024-09-30T23:59:00+00:00",
"base_asset_bal": 1252.81,
"quote_asset_bal": 9235.8041768276,
"total_value_mid": 9985.6109618276,
"total_value_exit_net": 9985.0486067388,
"total_value": 9985.6109618276,
"base_cost_quote": 896.3454142442,
"unrealized_pnl_exit_net": -147.100984333
},
{
"timestamp": "2024-10-01T23:59:00+00:00",
"base_asset_bal": 1561.45,
"quote_asset_bal": 9061.4727521221,
"total_value_mid": 9903.8750271221,
"total_value_exit_net": 9903.2432254158,
"total_value": 9903.8750271221,
"base_cost_quote": 1071.5719056217,
"unrealized_pnl_exit_net": -229.801432328
},
{
"timestamp": "2024-10-02T23:59:00+00:00",
"base_asset_bal": 1674.78,
"quote_asset_bal": 9002.3032230431,
"total_value_mid": 9884.744805043,
"total_value_exit_net": 9884.0829738565,
"total_value": 9884.744805043,
"base_cost_quote": 1131.6612988918,
"unrealized_pnl_exit_net": -249.8815480783
},
{
"timestamp": "2024-10-03T23:59:00+00:00",
"base_asset_bal": 1609.22,
"quote_asset_bal": 9038.4664950736,
"total_value_mid": 9903.1004010736,
"total_value_exit_net": 9902.4519256441,
"total_value": 9903.1004010736,
"base_cost_quote": 1096.6017479347,
"unrealized_pnl_exit_net": -232.6163173643
},
{
"timestamp": "2024-10-04T23:59:00+00:00",
"base_asset_bal": 1508.68,
"quote_asset_bal": 9094.2370905938,
"total_value_mid": 9914.3555385938,
"total_value_exit_net": 9913.7404497578,
"total_value": 9914.3555385938,
"base_cost_quote": 1041.5444058747,
"unrealized_pnl_exit_net": -222.0410467108
},
{
"timestamp": "2024-10-05T23:59:00+00:00",
"base_asset_bal": 1489.41,
"quote_asset_bal": 9104.7839265036,
"total_value_mid": 9937.8109395036,
"total_value_exit_net": 9937.1861692438,
"total_value": 9937.8109395036,
"base_cost_quote": 1031.5400202087,
"unrealized_pnl_exit_net": -199.1377774685
},
{
"timestamp": "2024-10-06T23:59:00+00:00",
"base_asset_bal": 1462.55,
"quote_asset_bal": 9120.1383603113,
"total_value_mid": 9935.8024953113,
"total_value_exit_net": 9935.1907472101,
"total_value": 9935.8024953113,
"base_cost_quote": 1016.5163228802,
"unrealized_pnl_exit_net": -201.4639359815
},
{
"timestamp": "2024-10-07T23:59:00+00:00",
"base_asset_bal": 1655.12,
"quote_asset_bal": 9015.5805810768,
"total_value_mid": 9899.0836370768,
"total_value_exit_net": 9898.4210097848,
"total_value": 9899.0836370768,
"base_cost_quote": 1121.6812274478,
"unrealized_pnl_exit_net": -238.8407987398
},
{
"timestamp": "2024-10-08T23:59:00+00:00",
"base_asset_bal": 1749.91,
"quote_asset_bal": 8966.0895516064,
"total_value_mid": 9883.2173826063,
"total_value_exit_net": 9882.5295367331,
"total_value": 9883.2173826063,
"base_cost_quote": 1171.7435230305,
"unrealized_pnl_exit_net": -255.3035379038
},
{
"timestamp": "2024-10-09T23:59:00+00:00",
"base_asset_bal": 1886,
"quote_asset_bal": 8896.5193146171,
"total_value_mid": 9853.4757146171,
"total_value_exit_net": 9852.7579973171,
"total_value": 9853.4757146171,
"base_cost_quote": 1241.832340248,
"unrealized_pnl_exit_net": -285.593657548
},
{
"timestamp": "2024-10-10T23:59:00+00:00",
"base_asset_bal": 1876.91,
"quote_asset_bal": 8902.0573597866,
"total_value_mid": 9851.9615107866,
"total_value_exit_net": 9851.2490826733,
"total_value": 9851.9615107866,
"base_cost_quote": 1236.819255252,
"unrealized_pnl_exit_net": -287.6275323653
},
{
"timestamp": "2024-10-11T23:59:00+00:00",
"base_asset_bal": 1741.81,
"quote_asset_bal": 8972.5308367886,
"total_value_mid": 9894.4708697886,
"total_value_exit_net": 9893.7794147639,
"total_value": 9894.4708697886,
"base_cost_quote": 1166.7267002332,
"unrealized_pnl_exit_net": -245.478122258
},
{
"timestamp": "2024-10-12T23:59:00+00:00",
"base_asset_bal": 1685.13,
"quote_asset_bal": 9002.7810285416,
"total_value_mid": 9900.4497795416,
"total_value_exit_net": 9899.7765279783,
"total_value": 9900.4497795416,
"base_cost_quote": 1136.698016599,
"unrealized_pnl_exit_net": -239.7025171623
},
{
"timestamp": "2024-10-13T23:59:00+00:00",
"base_asset_bal": 1751.61,
"quote_asset_bal": 8968.0864260676,
"total_value_mid": 9894.1626330676,
"total_value_exit_net": 9893.4680759123,
"total_value": 9894.1626330676,
"base_cost_quote": 1171.7445487993,
"unrealized_pnl_exit_net": -246.3628989545
},
{
"timestamp": "2024-10-14T23:59:00+00:00",
"base_asset_bal": 1595.31,
"quote_asset_bal": 9053.7691889599,
"total_value_mid": 9940.9210799598,
"total_value_exit_net": 9940.2557160416,
"total_value": 9940.9210799598,
"base_cost_quote": 1086.626955447,
"unrealized_pnl_exit_net": -200.1404283653
},
{
"timestamp": "2024-10-15T23:59:00+00:00",
"base_asset_bal": 1612.35,
"quote_asset_bal": 9044.4268208139,
"total_value_mid": 9929.2845008139,
"total_value_exit_net": 9928.6208575539,
"total_value": 9929.2845008139,
"base_cost_quote": 1096.6377989528,
"unrealized_pnl_exit_net": -212.4437622128
},
{
"timestamp": "2024-10-16T23:59:00+00:00",
"base_asset_bal": 1695.73,
"quote_asset_bal": 8999.8059113621,
"total_value_mid": 9904.3082933621,
"total_value_exit_net": 9903.6299165756,
"total_value": 9904.3082933621,
"base_cost_quote": 1141.6922484658,
"unrealized_pnl_exit_net": -237.8682432523
},
{
"timestamp": "2024-10-17T23:59:00+00:00",
"base_asset_bal": 1752.29,
"quote_asset_bal": 8970.1176810996,
"total_value_mid": 9900.5836710996,
"total_value_exit_net": 9899.8858216071,
"total_value": 9900.5836710996,
"base_cost_quote": 1171.734806498,
"unrealized_pnl_exit_net": -241.9666659905
},
{
"timestamp": "2024-10-18T23:59:00+00:00",
"base_asset_bal": 1676.9,
"quote_asset_bal": 9010.4859954671,
"total_value_mid": 9910.8136054671,
"total_value_exit_net": 9910.1383597596,
"total_value": 9910.8136054671,
"base_cost_quote": 1131.6621034948,
"unrealized_pnl_exit_net": -232.0097392023
},
{
"timestamp": "2024-10-19T23:59:00+00:00",
"base_asset_bal": 1676.9,
"quote_asset_bal": 9010.5740344001,
"total_value_mid": 9909.2247444001,
"total_value_exit_net": 9908.5507563676,
"total_value": 9909.2247444001,
"base_cost_quote": 1131.6641910593,
"unrealized_pnl_exit_net": -233.6874690918
},
{
"timestamp": "2024-10-20T23:59:00+00:00",
"base_asset_bal": 1540.55,
"quote_asset_bal": 9086.0329097389,
"total_value_mid": 9952.5922847389,
"total_value_exit_net": 9951.9423652076,
"total_value": 9952.5922847389,
"base_cost_quote": 1056.5813361205,
"unrealized_pnl_exit_net": -190.6718806518
},
{
"timestamp": "2024-10-21T23:59:00+00:00",
"base_asset_bal": 1731.06,
"quote_asset_bal": 8981.1644321689,
"total_value_mid": 9922.3417541689,
"total_value_exit_net": 9921.6358711774,
"total_value": 9922.3417541689,
"base_cost_quote": 1161.7211038495,
"unrealized_pnl_exit_net": -221.249664841
},
{
"timestamp": "2024-10-22T23:59:00+00:00",
"base_asset_bal": 1575.26,
"quote_asset_bal": 9066.8135048126,
"total_value_mid": 9932.2613488126,
"total_value_exit_net": 9931.6122629296,
"total_value": 9932.2613488126,
"base_cost_quote": 1076.6230441365,
"unrealized_pnl_exit_net": -211.8242860195
},
{
"timestamp": "2024-10-23T23:59:00+00:00",
"base_asset_bal": 1771.14,
"quote_asset_bal": 8961.9759672779,
"total_value_mid": 9883.1458812779,
"total_value_exit_net": 9882.4550038424,
"total_value": 9883.1458812779,
"base_cost_quote": 1181.7664545955,
"unrealized_pnl_exit_net": -261.287418031
},
{
"timestamp": "2024-10-24T23:59:00+00:00",
"base_asset_bal": 1732.39,
"quote_asset_bal": 8982.3406625694,
"total_value_mid": 9906.2242495694,
"total_value_exit_net": 9905.5313368791,
"total_value": 9906.2242495694,
"base_cost_quote": 1161.7271483795,
"unrealized_pnl_exit_net": -238.5364740698
},
{
"timestamp": "2024-10-25T23:59:00+00:00",
"base_asset_bal": 1943.85,
"quote_asset_bal": 8872.6794960104,
"total_value_mid": 9827.4986160104,
"total_value_exit_net": 9826.7825016704,
"total_value": 9827.4986160104,
"base_cost_quote": 1271.8677269058,
"unrealized_pnl_exit_net": -317.7647212458
},
{
"timestamp": "2024-10-26T23:59:00+00:00",
"base_asset_bal": 2044.41,
"quote_asset_bal": 8823.0402608334,
"total_value_mid": 9822.1434278334,
"total_value_exit_net": 9821.3941004581,
"total_value": 9822.1434278334,
"base_cost_quote": 1321.927354489,
"unrealized_pnl_exit_net": -323.5735148643
},
{
"timestamp": "2024-10-27T23:59:00+00:00",
"base_asset_bal": 2105.98,
"quote_asset_bal": 8793.2992810431,
"total_value_mid": 9819.7539330431,
"total_value_exit_net": 9818.9840920541,
"total_value": 9819.7539330431,
"base_cost_quote": 1351.955826965,
"unrealized_pnl_exit_net": -326.271015954
},
{
"timestamp": "2024-10-28T23:59:00+00:00",
"base_asset_bal": 2167.79,
"quote_asset_bal": 8763.7888536126,
"total_value_mid": 9807.5797386126,
"total_value_exit_net": 9806.7968954489,
"total_value": 9807.5797386126,
"base_cost_quote": 1381.9914548035,
"unrealized_pnl_exit_net": -338.9834129673
},
{
"timestamp": "2024-10-29T23:59:00+00:00",
"base_asset_bal": 1708.88,
"quote_asset_bal": 9000.0502649176,
"total_value_mid": 9869.1866329176,
"total_value_exit_net": 9868.5347806416,
"total_value": 9869.1866329176,
"base_cost_quote": 1146.7044748182,
"unrealized_pnl_exit_net": -278.2199590943
},
{
"timestamp": "2024-10-30T23:59:00+00:00",
"base_asset_bal": 1719.24,
"quote_asset_bal": 8995.5091033689,
"total_value_mid": 9868.7110993689,
"total_value_exit_net": 9868.0561978719,
"total_value": 9868.7110993689,
"base_cost_quote": 1151.7107707262,
"unrealized_pnl_exit_net": -279.1636762233
},
{
"timestamp": "2024-10-31T23:59:00+00:00",
"base_asset_bal": 1838.66,
"quote_asset_bal": 8936.0006417444,
"total_value_mid": 9842.2761557443,
"total_value_exit_net": 9841.5964491088,
"total_value": 9842.2761557443,
"base_cost_quote": 1211.7765693135,
"unrealized_pnl_exit_net": -306.180761949
},
{
"timestamp": "2024-11-01T23:59:00+00:00",
"base_asset_bal": 1701.66,
"quote_asset_bal": 9007.0225136606,
"total_value_mid": 9860.5751696606,
"total_value_exit_net": 9859.9350051686,
"total_value": 9860.5751696606,
"base_cost_quote": 1141.7027223152,
"unrealized_pnl_exit_net": -288.7902308073
},
{
"timestamp": "2024-11-02T23:59:00+00:00",
"base_asset_bal": 1760.16,
"quote_asset_bal": 8977.7238988321,
"total_value_mid": 9861.1482028321,
"total_value_exit_net": 9860.4856346041,
"total_value": 9861.1482028321,
"base_cost_quote": 1171.7392728453,
"unrealized_pnl_exit_net": -288.9775370733
},
{
"timestamp": "2024-11-03T23:59:00+00:00",
"base_asset_bal": 1933,
"quote_asset_bal": 8893.6128838046,
"total_value_mid": 9824.3523838046,
"total_value_exit_net": 9823.6543291796,
"total_value": 9824.3523838046,
"base_cost_quote": 1256.8499219933,
"unrealized_pnl_exit_net": -326.8084766183
},
{
"timestamp": "2024-11-04T23:59:00+00:00",
"base_asset_bal": 1881.64,
"quote_asset_bal": 8919.6917932203,
"total_value_mid": 9834.7333252203,
"total_value_exit_net": 9834.0470440713,
"total_value": 9834.7333252203,
"base_cost_quote": 1231.8187817075,
"unrealized_pnl_exit_net": -317.4635308565
},
{
"timestamp": "2024-11-05T23:59:00+00:00",
"base_asset_bal": 1839.96,
"quote_asset_bal": 8940.5039270396,
"total_value_mid": 9846.3162350395,
"total_value_exit_net": 9845.6368758085,
"total_value": 9846.3162350395,
"base_cost_quote": 1211.7992152853,
"unrealized_pnl_exit_net": -306.6662665163
},
{
"timestamp": "2024-11-06T23:59:00+00:00",
"base_asset_bal": 1554.52,
"quote_asset_bal": 9086.7651928111,
"total_value_mid": 9913.9252848111,
"total_value_exit_net": 9913.304914742,
"total_value": 9913.9252848111,
"base_cost_quote": 1066.610270184,
"unrealized_pnl_exit_net": -240.070548253
},
{
"timestamp": "2024-11-07T23:59:00+00:00",
"base_asset_bal": 1563.31,
"quote_asset_bal": 9082.5844201696,
"total_value_mid": 9938.9656381696,
"total_value_exit_net": 9938.3233522561,
"total_value": 9938.9656381696,
"base_cost_quote": 1071.605922115,
"unrealized_pnl_exit_net": -215.8669900285
},
{
"timestamp": "2024-11-08T23:59:00+00:00",
"base_asset_bal": 1609.82,
"quote_asset_bal": 9058.1380182378,
"total_value_mid": 9936.6167922378,
"total_value_exit_net": 9935.9579331573,
"total_value": 9936.6167922378,
"base_cost_quote": 1096.6441397047,
"unrealized_pnl_exit_net": -218.8242247853
},
{
"timestamp": "2024-11-09T23:59:00+00:00",
"base_asset_bal": 1482.57,
"quote_asset_bal": 9128.6919692188,
"total_value_mid": 9960.7102532188,
"total_value_exit_net": 9960.0862395058,
"total_value": 9960.7102532188,
"base_cost_quote": 1026.54989542,
"unrealized_pnl_exit_net": -195.155625133
},
{
"timestamp": "2024-11-10T23:59:00+00:00",
"base_asset_bal": 1137.28,
"quote_asset_bal": 9335.4585807328,
"total_value_mid": 10008.1597007328,
"total_value_exit_net": 10007.6551748928,
"total_value": 10008.1597007328,
"base_cost_quote": 821.262637364,
"unrealized_pnl_exit_net": -149.066043204
},
{
"timestamp": "2024-11-11T23:59:00+00:00",
"base_asset_bal": 1071.39,
"quote_asset_bal": 9376.8164971538,
"total_value_mid": 10052.6493091538,
"total_value_exit_net": 10052.1424345448,
"total_value": 10052.6493091538,
"base_cost_quote": 781.2016011042,
"unrealized_pnl_exit_net": -105.8756637133
},
{
"timestamp": "2024-11-12T23:59:00+00:00",
"base_asset_bal": 1236.21,
"quote_asset_bal": 9278.3679216033,
"total_value_mid": 10012.8002826033,
"total_value_exit_net": 10012.2494583325,
"total_value": 10012.8002826033,
"base_cost_quote": 881.334541527,
"unrealized_pnl_exit_net": -147.4530047978
},
{
"timestamp": "2024-11-13T23:59:00+00:00",
"base_asset_bal": 1295.89,
"quote_asset_bal": 9245.2914459903,
"total_value_mid": 9986.6701149903,
"total_value_exit_net": 9986.1140809886,
"total_value": 9986.6701149903,
"base_cost_quote": 916.3834114792,
"unrealized_pnl_exit_net": -175.560776481
},
{
"timestamp": "2024-11-14T23:59:00+00:00",
"base_asset_bal": 1581.27,
"quote_asset_bal": 9086.4126705204,
"total_value_mid": 9938.5590735204,
"total_value_exit_net": 9937.9199637181,
"total_value": 9938.5590735204,
"base_cost_quote": 1076.5888194873,
"unrealized_pnl_exit_net": -225.0815262895
},
{
"timestamp": "2024-11-15T23:59:00+00:00",
"base_asset_bal": 1490.51,
"quote_asset_bal": 9137.4203972029,
"total_value_mid": 9965.3987022028,
"total_value_exit_net": 9964.7777184741,
"total_value": 9965.3987022028,
"base_cost_quote": 1026.5250137727,
"unrealized_pnl_exit_net": -199.1676925015
},
{
"timestamp": "2024-11-16T23:59:00+00:00",
"base_asset_bal": 1349.24,
"quote_asset_bal": 9218.3261275183,
"total_value_mid": 10001.6948715183,
"total_value_exit_net": 10001.1073449603,
"total_value": 10001.6948715183,
"base_cost_quote": 946.4044984202,
"unrealized_pnl_exit_net": -163.6232809783
},
{
"timestamp": "2024-11-17T23:59:00+00:00",
"base_asset_bal": 1446.57,
"quote_asset_bal": 9164.4114228871,
"total_value_mid": 9987.5097528871,
"total_value_exit_net": 9986.8924291396,
"total_value": 9987.5097528871,
"base_cost_quote": 1001.4613060797,
"unrealized_pnl_exit_net": -178.9802998273
},
{
"timestamp": "2024-11-18T23:59:00+00:00",
"base_asset_bal": 1197.77,
"quote_asset_bal": 9310.7856969374,
"total_value_mid": 10032.4421219373,
"total_value_exit_net": 10031.9008796186,
"total_value": 10032.4421219373,
"base_cost_quote": 856.292614157,
"unrealized_pnl_exit_net": -135.1774314758
},
{
"timestamp": "2024-11-19T23:59:00+00:00",
"base_asset_bal": 1419.41,
"quote_asset_bal": 9181.3785527046,
"total_value_mid": 9995.1263057046,
"total_value_exit_net": 9994.5159948899,
"total_value": 9995.1263057046,
"base_cost_quote": 986.4697678525,
"unrealized_pnl_exit_net": -173.3323256673
},
{
"timestamp": "2024-11-20T23:59:00+00:00",
"base_asset_bal": 1673.85,
"quote_asset_bal": 9042.1743263684,
"total_value_mid": 9940.5296213684,
"total_value_exit_net": 9939.8558548971,
"total_value": 9940.5296213684,
"base_cost_quote": 1126.6536749885,
"unrealized_pnl_exit_net": -228.9721464598
},
{
"timestamp": "2024-11-21T23:59:00+00:00",
"base_asset_bal": 1369.96,
"quote_asset_bal": 9213.5359644367,
"total_value_mid": 10006.8798004366,
"total_value_exit_net": 10006.2847925596,
"total_value": 10006.8798004366,
"base_cost_quote": 956.430769488,
"unrealized_pnl_exit_net": -163.681941365
},
{
"timestamp": "2024-11-22T23:59:00+00:00",
"base_asset_bal": 1159.84,
"quote_asset_bal": 9339.7650521787,
"total_value_mid": 10051.7908281786,
"total_value_exit_net": 10051.2568088466,
"total_value": 10051.7908281786,
"base_cost_quote": 831.2517305692,
"unrealized_pnl_exit_net": -119.7599739013
},
{
"timestamp": "2024-11-23T23:59:00+00:00",
"base_asset_bal": 1008.17,
"quote_asset_bal": 9436.4302979831,
"total_value_mid": 10096.3783799831,
"total_value_exit_net": 10095.8834189216,
"total_value": 10096.3783799831,
"base_cost_quote": 736.1241693675,
"unrealized_pnl_exit_net": -76.671048429
},
{
"timestamp": "2024-11-24T23:59:00+00:00",
"base_asset_bal": 740.57,
"quote_asset_bal": 9624.0707983242,
"total_value_mid": 10164.3166133242,
"total_value_exit_net": 10163.9114289629,
"total_value": 10164.3166133242,
"base_cost_quote": 550.832927084,
"unrealized_pnl_exit_net": -10.9922964453
},
{
"timestamp": "2024-11-25T23:59:00+00:00",
"base_asset_bal": 768.41,
"quote_asset_bal": 9606.0691555009,
"total_value_mid": 10165.4716355009,
"total_value_exit_net": 10165.0520836409,
"total_value": 10165.4716355009,
"base_cost_quote": 570.858214794,
"unrealized_pnl_exit_net": -11.875286654
},
{
"timestamp": "2024-11-26T23:59:00+00:00",
"base_asset_bal": 693.87,
"quote_asset_bal": 9663.2704011079,
"total_value_mid": 10157.1670671079,
"total_value_exit_net": 10156.7966446084,
"total_value": 10157.1670671079,
"base_cost_quote": 515.778195739,
"unrealized_pnl_exit_net": -22.2519522385
},
{
"timestamp": "2024-11-27T23:59:00+00:00",
"base_asset_bal": 781.66,
"quote_asset_bal": 9599.3184027875,
"total_value_mid": 10181.5769367875,
"total_value_exit_net": 10181.140242887,
"total_value": 10181.5769367875,
"base_cost_quote": 580.8825293955,
"unrealized_pnl_exit_net": 0.939310704
},
{
"timestamp": "2024-11-28T23:59:00+00:00",
"base_asset_bal": 675.03,
"quote_asset_bal": 9680.8661389702,
"total_value_mid": 10206.9845209702,
"total_value_exit_net": 10206.5899321837,
"total_value": 10206.9845209702,
"base_cost_quote": 500.7804088287,
"unrealized_pnl_exit_net": 24.9433843847
},
{
"timestamp": "2024-11-29T23:59:00+00:00",
"base_asset_bal": 699.84,
"quote_asset_bal": 9661.7337714022,
"total_value_mid": 10215.3771954022,
"total_value_exit_net": 10214.9619628342,
"total_value": 10215.3771954022,
"base_cost_quote": 520.7991086015,
"unrealized_pnl_exit_net": 32.4290828305
},
{
"timestamp": "2024-11-30T23:59:00+00:00",
"base_asset_bal": 681.16,
"quote_asset_bal": 9677.610151886,
"total_value_mid": 10219.472931886,
"total_value_exit_net": 10219.066534801,
"total_value": 10219.472931886,
"base_cost_quote": 505.7858931285,
"unrealized_pnl_exit_net": 35.6704897865
},
{
"timestamp": "2024-12-01T23:59:00+00:00",
"base_asset_bal": 780.99,
"quote_asset_bal": 9598.3938802888,
"total_value_mid": 10213.3454062887,
"total_value_exit_net": 10212.8841926442,
"total_value": 10213.3454062887,
"base_cost_quote": 585.9215578345,
"unrealized_pnl_exit_net": 28.568754521
},
{
"timestamp": "2024-12-02T23:59:00+00:00",
"base_asset_bal": 736.06,
"quote_asset_bal": 9635.2559588402,
"total_value_mid": 10222.6318388402,
"total_value_exit_net": 10222.1913069302,
"total_value": 10222.6318388402,
"base_cost_quote": 550.8567219167,
"unrealized_pnl_exit_net": 36.0786261732
},
{
"timestamp": "2024-12-03T23:59:00+00:00",
"base_asset_bal": 411.5,
"quote_asset_bal": 9907.8963743843,
"total_value_mid": 10268.9876243842,
"total_value_exit_net": 10268.7168059467,
"total_value": 10268.9876243842,
"base_cost_quote": 280.4283376305,
"unrealized_pnl_exit_net": 80.392093932
},
{
"timestamp": "2024-12-04T23:59:00+00:00",
"base_asset_bal": 417.07,
"quote_asset_bal": 9904.5658233613,
"total_value_mid": 10271.7542513612,
"total_value_exit_net": 10271.4788600402,
"total_value": 10271.7542513612,
"base_cost_quote": 285.4461461665,
"unrealized_pnl_exit_net": 81.4668905125
},
{
"timestamp": "2024-12-05T23:59:00+00:00",
"base_asset_bal": 562.77,
"quote_asset_bal": 9780.9261499195,
"total_value_mid": 10251.7958089195,
"total_value_exit_net": 10251.4426566752,
"total_value": 10251.7958089195,
"base_cost_quote": 410.630410001,
"unrealized_pnl_exit_net": 59.8860967547
},
{
"timestamp": "2024-12-06T23:59:00+00:00",
"base_asset_bal": 405.33,
"quote_asset_bal": 9917.572502757,
"total_value_mid": 10280.261786757,
"total_value_exit_net": 10279.989769794,
"total_value": 10280.261786757,
"base_cost_quote": 275.4194958145,
"unrealized_pnl_exit_net": 86.9977712225
},
{
"timestamp": "2024-12-07T23:59:00+00:00",
"base_asset_bal": 456.15,
"quote_asset_bal": 9873.395145771,
"total_value_mid": 10273.210620771,
"total_value_exit_net": 10272.9107591647,
"total_value": 10273.210620771,
"base_cost_quote": 320.4954924757,
"unrealized_pnl_exit_net": 79.020120918
},
{
"timestamp": "2024-12-08T23:59:00+00:00",
"base_asset_bal": 400.25,
"quote_asset_bal": 9924.283281158,
"total_value_mid": 10283.867881158,
"total_value_exit_net": 10283.598192708,
"total_value": 10283.867881158,
"base_cost_quote": 270.4218954233,
"unrealized_pnl_exit_net": 88.8930161267
},
{
"timestamp": "2024-12-09T23:59:00+00:00",
"base_asset_bal": 869.45,
"quote_asset_bal": 9545.477252922,
"total_value_mid": 10162.786752922,
"total_value_exit_net": 10162.323770797,
"total_value": 10162.786752922,
"base_cost_quote": 650.9869122785,
"unrealized_pnl_exit_net": -34.1403944035
},
{
"timestamp": "2024-12-10T23:59:00+00:00",
"base_asset_bal": 953.47,
"quote_asset_bal": 9487.8420201553,
"total_value_mid": 10152.6966511553,
"total_value_exit_net": 10152.198010182,
"total_value": 10152.6966511553,
"base_cost_quote": 711.0616505655,
"unrealized_pnl_exit_net": -46.7056605388
},
{
"timestamp": "2024-12-11T23:59:00+00:00",
"base_asset_bal": 819.48,
"quote_asset_bal": 9584.462403216,
"total_value_mid": 10202.760063216,
"total_value_exit_net": 10202.296339971,
"total_value": 10202.760063216,
"base_cost_quote": 615.9383455535,
"unrealized_pnl_exit_net": 1.8955912015
},
{
"timestamp": "2024-12-12T23:59:00+00:00",
"base_asset_bal": 850.39,
"quote_asset_bal": 9560.9766201885,
"total_value_mid": 10209.9092291885,
"total_value_exit_net": 10209.4225297318,
"total_value": 10209.9092291885,
"base_cost_quote": 640.980278928,
"unrealized_pnl_exit_net": 7.4656306152
},
{
"timestamp": "2024-12-13T23:59:00+00:00",
"base_asset_bal": 741.11,
"quote_asset_bal": 9647.507050932,
"total_value_mid": 10213.566868932,
"total_value_exit_net": 10213.1423240685,
"total_value": 10213.566868932,
"base_cost_quote": 555.8692444912,
"unrealized_pnl_exit_net": 9.7660286452
},
{
"timestamp": "2024-12-14T23:59:00+00:00",
"base_asset_bal": 965.69,
"quote_asset_bal": 9482.8844154135,
"total_value_mid": 10173.6424724135,
"total_value_exit_net": 10173.1244038708,
"total_value": 10173.6424724135,
"base_cost_quote": 721.1123339287,
"unrealized_pnl_exit_net": -30.8723454715
},
{
"timestamp": "2024-12-15T23:59:00+00:00",
"base_asset_bal": 889.57,
"quote_asset_bal": 9538.8349672185,
"total_value_mid": 10190.3560352185,
"total_value_exit_net": 10189.8673944175,
"total_value": 10190.3560352185,
"base_cost_quote": 666.034323379,
"unrealized_pnl_exit_net": -15.00189618
},
{
"timestamp": "2024-12-16T23:59:00+00:00",
"base_asset_bal": 999.73,
"quote_asset_bal": 9459.8479363338,
"total_value_mid": 10168.2566143338,
"total_value_exit_net": 10167.7253078253,
"total_value": 10168.2566143338,
"base_cost_quote": 746.1380991862,
"unrealized_pnl_exit_net": -38.2607276948
},
{
"timestamp": "2024-12-17T23:59:00+00:00",
"base_asset_bal": 1143.87,
"quote_asset_bal": 9360.789503934,
"total_value_mid": 10140.451295934,
"total_value_exit_net": 10139.86654959,
"total_value": 10140.451295934,
"base_cost_quote": 846.2760663762,
"unrealized_pnl_exit_net": -67.1990207203
},
{
"timestamp": "2024-12-18T23:59:00+00:00",
"base_asset_bal": 1405.35,
"quote_asset_bal": 9191.9759962143,
"total_value_mid": 10064.2767412143,
"total_value_exit_net": 10063.6225156555,
"total_value": 10064.2767412143,
"base_cost_quote": 1016.4969323482,
"unrealized_pnl_exit_net": -144.850412907
},
{
"timestamp": "2024-12-19T23:59:00+00:00",
"base_asset_bal": 1548.28,
"quote_asset_bal": 9103.6642511763,
"total_value_mid": 10026.9036151762,
"total_value_exit_net": 10026.2111856532,
"total_value": 10026.9036151762,
"base_cost_quote": 1106.6339384388,
"unrealized_pnl_exit_net": -184.0870039618
},
{
"timestamp": "2024-12-20T23:59:00+00:00",
"base_asset_bal": 1405.46,
"quote_asset_bal": 9190.7387743072,
"total_value_mid": 10070.4161883072,
"total_value_exit_net": 10069.7564302467,
"total_value": 10070.4161883072,
"base_cost_quote": 1021.5213198148,
"unrealized_pnl_exit_net": -142.5036638753
},
{
"timestamp": "2024-12-21T23:59:00+00:00",
"base_asset_bal": 1771.63,
"quote_asset_bal": 8971.5598379435,
"total_value_mid": 9995.2076519435,
"total_value_exit_net": 9994.439916083,
"total_value": 9995.2076519435,
"base_cost_quote": 1241.8071984058,
"unrealized_pnl_exit_net": -218.9271202663
},
{
"timestamp": "2024-12-22T23:59:00+00:00",
"base_asset_bal": 1923.07,
"quote_asset_bal": 8887.6872250358,
"total_value_mid": 9955.3756890358,
"total_value_exit_net": 9954.5749226878,
"total_value": 9955.3756890358,
"base_cost_quote": 1326.914363943,
"unrealized_pnl_exit_net": -260.026666291
},
{
"timestamp": "2024-12-23T23:59:00+00:00",
"base_asset_bal": 1617.77,
"quote_asset_bal": 9064.3700877893,
"total_value_mid": 10036.4880807892,
"total_value_exit_net": 10035.7589922945,
"total_value": 10036.4880807892,
"base_cost_quote": 1151.6938720617,
"unrealized_pnl_exit_net": -180.3049675565
},
{
"timestamp": "2024-12-24T23:59:00+00:00",
"base_asset_bal": 1319.23,
"quote_asset_bal": 9250.8216609958,
"total_value_mid": 10107.2657769957,
"total_value_exit_net": 10106.6234439087,
"total_value": 10107.2657769957,
"base_cost_quote": 966.4268359193,
"unrealized_pnl_exit_net": -110.6250530063
},
{
"timestamp": "2024-12-25T23:59:00+00:00",
"base_asset_bal": 1428.31,
"quote_asset_bal": 9181.3294834433,
"total_value_mid": 10094.4480664432,
"total_value_exit_net": 10093.763227506,
"total_value": 10094.4480664432,
"base_cost_quote": 1036.5436941518,
"unrealized_pnl_exit_net": -124.109950089
},
{
"timestamp": "2024-12-26T23:59:00+00:00",
"base_asset_bal": 1607.19,
"quote_asset_bal": 9071.9063375695,
"total_value_mid": 10046.5063535695,
"total_value_exit_net": 10045.7754035575,
"total_value": 10046.5063535695,
"base_cost_quote": 1146.6818438578,
"unrealized_pnl_exit_net": -172.8127778698
},
{
"timestamp": "2024-12-27T23:59:00+00:00",
"base_asset_bal": 1582.97,
"quote_asset_bal": 9087.4375270412,
"total_value_mid": 10049.2500990412,
"total_value_exit_net": 10048.5287396122,
"total_value": 10049.2500990412,
"base_cost_quote": 1131.685163777,
"unrealized_pnl_exit_net": -170.593951206
},
{
"timestamp": "2024-12-28T23:59:00+00:00",
"base_asset_bal": 1493.51,
"quote_asset_bal": 9143.0006783889,
"total_value_mid": 10084.0613293889,
"total_value_exit_net": 10083.3555339007,
"total_value": 10084.0613293889,
"base_cost_quote": 1076.6130336343,
"unrealized_pnl_exit_net": -136.2581781225
},
{
"timestamp": "2024-12-29T23:59:00+00:00",
"base_asset_bal": 1574.26,
"quote_asset_bal": 9093.3496517244,
"total_value_mid": 10056.0096417244,
"total_value_exit_net": 10055.2876467319,
"total_value": 10056.0096417244,
"base_cost_quote": 1126.6845831523,
"unrealized_pnl_exit_net": -164.7465881448
},
{
"timestamp": "2024-12-30T23:59:00+00:00",
"base_asset_bal": 1454.34,
"quote_asset_bal": 9170.2473146726,
"total_value_mid": 10083.2819666726,
"total_value_exit_net": 10082.5971906836,
"total_value": 10083.2819666726,
"base_cost_quote": 1051.5329846945,
"unrealized_pnl_exit_net": -139.1831086835
},
{
"timestamp": "2024-12-31T23:59:00+00:00",
"base_asset_bal": 1543.99,
"quote_asset_bal": 9115.8537514716,
"total_value_mid": 10060.3124344716,
"total_value_exit_net": 10059.6040904593,
"total_value": 10060.3124344716,
"base_cost_quote": 1106.6157127798,
"unrealized_pnl_exit_net": -162.865373792
},
{
"timestamp": "2025-01-01T23:59:00+00:00",
"base_asset_bal": 1463.1,
"quote_asset_bal": 9166.3806665603,
"total_value_mid": 10076.1362465603,
"total_value_exit_net": 10075.4539298753,
"total_value": 10076.1362465603,
"base_cost_quote": 1056.5549853723,
"unrealized_pnl_exit_net": -147.4817220573
},
{
"timestamp": "2025-01-02T23:59:00+00:00",
"base_asset_bal": 1407.78,
"quote_asset_bal": 9202.1206222633,
"total_value_mid": 10101.2697082633,
"total_value_exit_net": 10100.5953464488,
"total_value": 10101.2697082633,
"base_cost_quote": 1021.5064846968,
"unrealized_pnl_exit_net": -123.0317605113
},
{
"timestamp": "2025-01-03T23:59:00+00:00",
"base_asset_bal": 1223.98,
"quote_asset_bal": 9322.9047554853,
"total_value_mid": 10143.8281414853,
"total_value_exit_net": 10143.2124489458,
"total_value": 10143.8281414853,
"base_cost_quote": 901.353660614,
"unrealized_pnl_exit_net": -81.0459671535
},
{
"timestamp": "2025-01-04T23:59:00+00:00",
"base_asset_bal": 1150.24,
"quote_asset_bal": 9373.5966317318,
"total_value_mid": 10161.7410797318,
"total_value_exit_net": 10161.1499713958,
"total_value": 10161.7410797318,
"base_cost_quote": 851.3001155892,
"unrealized_pnl_exit_net": -63.7467759253
},
{
"timestamp": "2025-01-05T23:59:00+00:00",
"base_asset_bal": 1194.06,
"quote_asset_bal": 9343.9823850573,
"total_value_mid": 10150.8087270573,
"total_value_exit_net": 10150.2036073008,
"total_value": 10150.8087270573,
"base_cost_quote": 881.3452585588,
"unrealized_pnl_exit_net": -75.1240363153
},
{
"timestamp": "2025-01-06T23:59:00+00:00",
"base_asset_bal": 1106.47,
"quote_asset_bal": 9404.7876241876,
"total_value_mid": 10171.3500401875,
"total_value_exit_net": 10170.7751183755,
"total_value": 10171.3500401875,
"base_cost_quote": 821.243799246,
"unrealized_pnl_exit_net": -55.256305058
},
{
"timestamp": "2025-01-07T23:59:00+00:00",
"base_asset_bal": 1362.38,
"quote_asset_bal": 9240.2103350781,
"total_value_mid": 10082.978603078,
"total_value_exit_net": 10082.346526877,
"total_value": 10082.978603078,
"base_cost_quote": 986.4757683495,
"unrealized_pnl_exit_net": -144.3395765505
},
{
"timestamp": "2025-01-08T23:59:00+00:00",
"base_asset_bal": 1606.43,
"quote_asset_bal": 9095.9221531493,
"total_value_mid": 10013.5149691493,
"total_value_exit_net": 10012.8267745373,
"total_value": 10013.5149691493,
"base_cost_quote": 1131.66707422,
"unrealized_pnl_exit_net": -214.762452832
},
{
"timestamp": "2025-01-09T23:59:00+00:00",
"base_asset_bal": 1624.23,
"quote_asset_bal": 9086.9140966846,
"total_value_mid": 10014.6742726845,
"total_value_exit_net": 10013.9784525525,
"total_value": 10014.6742726845,
"base_cost_quote": 1141.678989529,
"unrealized_pnl_exit_net": -214.614633661
},
{
"timestamp": "2025-01-10T23:59:00+00:00",
"base_asset_bal": 1552.92,
"quote_asset_bal": 9127.7818411388,
"total_value_mid": 10041.3646771388,
"total_value_exit_net": 10040.6794900118,
"total_value": 10041.3646771388,
"base_cost_quote": 1101.6460483248,
"unrealized_pnl_exit_net": -188.7483994518
},
{
"timestamp": "2025-01-11T23:59:00+00:00",
"base_asset_bal": 1664.81,
"quote_asset_bal": 9063.0341081786,
"total_value_mid": 10017.8026431786,
"total_value_exit_net": 10017.0865667773,
"total_value": 10017.8026431786,
"base_cost_quote": 1166.7201213027,
"unrealized_pnl_exit_net": -212.667662704
},
{
"timestamp": "2025-01-12T23:59:00+00:00",
"base_asset_bal": 1771.19,
"quote_asset_bal": 9003.2000224101,
"total_value_mid": 9995.5977794101,
"total_value_exit_net": 9994.8534810923,
"total_value": 9995.5977794101,
"base_cost_quote": 1226.813224353,
"unrealized_pnl_exit_net": -235.1597656708
},
{
"timestamp": "2025-01-13T23:59:00+00:00",
"base_asset_bal": 1964.36,
"quote_asset_bal": 8899.0402459611,
"total_value_mid": 9971.1879339611,
"total_value_exit_net": 9970.3838231951,
"total_value": 9971.1879339611,
"base_cost_quote": 1331.9385022228,
"unrealized_pnl_exit_net": -260.5949249888
},
{
"timestamp": "2025-01-14T23:59:00+00:00",
"base_asset_bal": 1828.3,
"quote_asset_bal": 8974.8566387581,
"total_value_mid": 10003.4582187581,
"total_value_exit_net": 10002.6867675731,
"total_value": 10003.4582187581,
"base_cost_quote": 1256.8479925472,
"unrealized_pnl_exit_net": -229.0178637323
},
{
"timestamp": "2025-01-15T23:59:00+00:00",
"base_asset_bal": 1646.67,
"quote_asset_bal": 9080.6584681464,
"total_value_mid": 10053.0171031464,
"total_value_exit_net": 10052.2878341701,
"total_value": 10053.0171031464,
"base_cost_quote": 1151.7071680263,
"unrealized_pnl_exit_net": -180.0778020025
},
{
"timestamp": "2025-01-16T23:59:00+00:00",
"base_asset_bal": 1740.91,
"quote_asset_bal": 9026.3122317904,
"total_value_mid": 10025.2463897904,
"total_value_exit_net": 10024.4971891719,
"total_value": 10025.2463897904,
"base_cost_quote": 1206.782404497,
"unrealized_pnl_exit_net": -208.5974471155
},
{
"timestamp": "2025-01-17T23:59:00+00:00",
"base_asset_bal": 1471.86,
"quote_asset_bal": 9187.2019335014,
"total_value_mid": 10088.4218115014,
"total_value_exit_net": 10087.7458965929,
"total_value": 10088.4218115014,
"base_cost_quote": 1046.5498581505,
"unrealized_pnl_exit_net": -146.005895059
},
{
"timestamp": "2025-01-18T23:59:00+00:00",
"base_asset_bal": 1734.36,
"quote_asset_bal": 9032.9084306456,
"total_value_mid": 10026.8701466456,
"total_value_exit_net": 10026.1246753586,
"total_value": 10026.8701466456,
"base_cost_quote": 1201.7763147435,
"unrealized_pnl_exit_net": -208.5600700305
},
{
"timestamp": "2025-01-19T23:59:00+00:00",
"base_asset_bal": 1717.74,
"quote_asset_bal": 9044.5897205559,
"total_value_mid": 9940.0475825559,
"total_value_exit_net": 9939.3759891594,
"total_value": 9940.0475825559,
"base_cost_quote": 1191.7679611037,
"unrealized_pnl_exit_net": -296.9816925003
},
{
"timestamp": "2025-01-20T23:59:00+00:00",
"base_asset_bal": 2052.79,
"quote_asset_bal": 8865.9894480112,
"total_value_mid": 9911.6806740112,
"total_value_exit_net": 9910.8964055917,
"total_value": 9911.6806740112,
"base_cost_quote": 1372.008711357,
"unrealized_pnl_exit_net": -327.1017537765
},
{
"timestamp": "2025-01-21T23:59:00+00:00",
"base_asset_bal": 1975.2,
"quote_asset_bal": 8907.499099224,
"total_value_mid": 9947.4418992239,
"total_value_exit_net": 9946.6619421239,
"total_value": 9947.4418992239,
"base_cost_quote": 1331.9480493778,
"unrealized_pnl_exit_net": -292.7852064778
},
{
"timestamp": "2025-01-22T23:59:00+00:00",
"base_asset_bal": 1947.78,
"quote_asset_bal": 8923.309360958,
"total_value_mid": 9934.207180958,
"total_value_exit_net": 9933.449007593,
"total_value": 9934.207180958,
"base_cost_quote": 1316.9333618015,
"unrealized_pnl_exit_net": -306.7937151665
},
{
"timestamp": "2025-01-23T23:59:00+00:00",
"base_asset_bal": 2016.08,
"quote_asset_bal": 8889.154164738,
"total_value_mid": 9909.8954687379,
"total_value_exit_net": 9909.1299127599,
"total_value": 9909.8954687379,
"base_cost_quote": 1351.9792345075,
"unrealized_pnl_exit_net": -332.0034864855
},
{
"timestamp": "2025-01-24T23:59:00+00:00",
"base_asset_bal": 2186.29,
"quote_asset_bal": 8804.6016702557,
"total_value_mid": 9873.6974802557,
"total_value_exit_net": 9872.8956583982,
"total_value": 9873.6974802557,
"base_cost_quote": 1437.0729899948,
"unrealized_pnl_exit_net": -368.7790018523
},
{
"timestamp": "2025-01-25T23:59:00+00:00",
"base_asset_bal": 2125.84,
"quote_asset_bal": 8835.1204027767,
"total_value_mid": 9896.9774827767,
"total_value_exit_net": 9896.1810899667,
"total_value": 9896.9774827767,
"base_cost_quote": 1407.036954851,
"unrealized_pnl_exit_net": -345.976267661
},
{
"timestamp": "2025-01-26T23:59:00+00:00",
"base_asset_bal": 2040.05,
"quote_asset_bal": 8880.6307890562,
"total_value_mid": 9890.8635490562,
"total_value_exit_net": 9890.1058744862,
"total_value": 9890.8635490562,
"base_cost_quote": 1361.9891413112,
"unrealized_pnl_exit_net": -352.5140558813
},
{
"timestamp": "2025-01-27T23:59:00+00:00",
"base_asset_bal": 2344.73,
"quote_asset_bal": 8737.0288205717,
"total_value_mid": 9859.4510715717,
"total_value_exit_net": 9858.6092548834,
"total_value": 9859.4510715717,
"base_cost_quote": 1507.172224019,
"unrealized_pnl_exit_net": -385.5917897073
},
{
"timestamp": "2025-01-28T23:59:00+00:00",
"base_asset_bal": 2646.25,
"quote_asset_bal": 8597.7043437912,
"total_value_mid": 9796.7202187912,
"total_value_exit_net": 9795.8209568849,
"total_value": 9796.7202187912,
"base_cost_quote": 1647.3446435458,
"unrealized_pnl_exit_net": -449.228030452
},
{
"timestamp": "2025-01-29T23:59:00+00:00",
"base_asset_bal": 2354.89,
"quote_asset_bal": 8734.0184240845,
"total_value_mid": 9835.4004770844,
"total_value_exit_net": 9834.5744405447,
"total_value": 9835.4004770844,
"base_cost_quote": 1512.1742797492,
"unrealized_pnl_exit_net": -411.618263289
},
{
"timestamp": "2025-01-30T23:59:00+00:00",
"base_asset_bal": 2002.59,
"quote_asset_bal": 8905.248410848,
"total_value_mid": 9956.407901848,
"total_value_exit_net": 9955.6195322297,
"total_value": 9956.407901848,
"base_cost_quote": 1341.9610505005,
"unrealized_pnl_exit_net": -291.5899291188
},
{
"timestamp": "2025-01-31T23:59:00+00:00",
"base_asset_bal": 1720.39,
"quote_asset_bal": 9061.7751084772,
"total_value_mid": 10031.7309904772,
"total_value_exit_net": 10031.0035235657,
"total_value": 10031.7309904772,
"base_cost_quote": 1186.763585635,
"unrealized_pnl_exit_net": -217.5351705465
},
{
"timestamp": "2025-02-01T23:59:00+00:00",
"base_asset_bal": 1982.84,
"quote_asset_bal": 8928.2644537082,
"total_value_mid": 9932.5729137082,
"total_value_exit_net": 9931.8196823632,
"total_value": 9932.5729137082,
"base_cost_quote": 1321.9453179515,
"unrealized_pnl_exit_net": -318.3900892965
},
{
"timestamp": "2025-02-02T23:59:00+00:00",
"base_asset_bal": 2540.18,
"quote_asset_bal": 8664.6048577072,
"total_value_mid": 9791.1746877072,
"total_value_exit_net": 9790.3297603347,
"total_value": 9791.1746877072,
"base_cost_quote": 1587.2585497485,
"unrealized_pnl_exit_net": -461.533647121
},
{
"timestamp": "2025-02-03T23:59:00+00:00",
"base_asset_bal": 2658.91,
"quote_asset_bal": 8617.6985133628,
"total_value_mid": 9784.9600033627,
"total_value_exit_net": 9784.0845572452,
"total_value": 9784.9600033627,
"base_cost_quote": 1637.3215718758,
"unrealized_pnl_exit_net": -470.9355279933
},
{
"timestamp": "2025-02-04T23:59:00+00:00",
"base_asset_bal": 3077.91,
"quote_asset_bal": 8444.3811356391,
"total_value_mid": 9673.698389639,
"total_value_exit_net": 9672.7764016985,
"total_value": 9673.698389639,
"base_cost_quote": 1812.529066016,
"unrealized_pnl_exit_net": -584.1337999565
},
{
"timestamp": "2025-02-05T23:59:00+00:00",
"base_asset_bal": 3346.48,
"quote_asset_bal": 8340.567628863,
"total_value_mid": 9625.615948863,
"total_value_exit_net": 9624.652162623,
"total_value": 9625.615948863,
"base_cost_quote": 1917.6584809863,
"unrealized_pnl_exit_net": -633.5739472263
},
{
"timestamp": "2025-02-06T23:59:00+00:00",
"base_asset_bal": 3232.92,
"quote_asset_bal": 8387.4365250571,
"total_value_mid": 9639.869733057,
"total_value_exit_net": 9638.930408151,
"total_value": 9639.869733057,
"base_cost_quote": 1872.6032618965,
"unrealized_pnl_exit_net": -621.1093788025
},
{
"timestamp": "2025-02-07T23:59:00+00:00",
"base_asset_bal": 3401.42,
"quote_asset_bal": 8324.3476921103,
"total_value_mid": 9612.8055881103,
"total_value_exit_net": 9611.8392446883,
"total_value": 9612.8055881103,
"base_cost_quote": 1937.671728673,
"unrealized_pnl_exit_net": -650.180176095
},
{
"timestamp": "2025-02-08T23:59:00+00:00",
"base_asset_bal": 3285.94,
"quote_asset_bal": 8370.5714692838,
"total_value_mid": 9654.7168212838,
"total_value_exit_net": 9653.7537122698,
"total_value": 9654.7168212838,
"base_cost_quote": 1892.6222729025,
"unrealized_pnl_exit_net": -609.4400299165
},
{
"timestamp": "2025-02-09T23:59:00+00:00",
"base_asset_bal": 3436.59,
"quote_asset_bal": 8311.4506668554,
"total_value_mid": 9648.9714948553,
"total_value_exit_net": 9647.9683542343,
"total_value": 9648.9714948553,
"base_cost_quote": 1952.689423503,
"unrealized_pnl_exit_net": -616.171736124
},
{
"timestamp": "2025-02-10T23:59:00+00:00",
"base_asset_bal": 3295.7,
"quote_asset_bal": 8367.6898556478,
"total_value_mid": 9686.9585656478,
"total_value_exit_net": 9685.9691141153,
"total_value": 9686.9585656478,
"base_cost_quote": 1897.6289170715,
"unrealized_pnl_exit_net": -579.349658604
},
{
"timestamp": "2025-02-11T23:59:00+00:00",
"base_asset_bal": 3061.72,
"quote_asset_bal": 8463.9154125776,
"total_value_mid": 9719.8329565776,
"total_value_exit_net": 9718.8910184196,
"total_value": 9719.8329565776,
"base_cost_quote": 1802.5209705698,
"unrealized_pnl_exit_net": -547.5453647278
},
{
"timestamp": "2025-02-12T23:59:00+00:00",
"base_asset_bal": 2722.19,
"quote_asset_bal": 8610.4064238237,
"total_value_mid": 9820.6920978237,
"total_value_exit_net": 9819.7843835682,
"total_value": 9820.6920978237,
"base_cost_quote": 1657.3426214095,
"unrealized_pnl_exit_net": -447.964661665
},
{
"timestamp": "2025-02-13T23:59:00+00:00",
"base_asset_bal": 2881.32,
"quote_asset_bal": 8541.1384442819,
"total_value_mid": 9781.8348362819,
"total_value_exit_net": 9780.9043139879,
"total_value": 9781.8348362819,
"base_cost_quote": 1727.423945011,
"unrealized_pnl_exit_net": -487.658075305
},
{
"timestamp": "2025-02-14T23:59:00+00:00",
"base_asset_bal": 2711,
"quote_asset_bal": 8617.0256888825,
"total_value_mid": 9833.7224888824,
"total_value_exit_net": 9832.8099662824,
"total_value": 9833.7224888824,
"base_cost_quote": 1652.3406837678,
"unrealized_pnl_exit_net": -436.5564063678
},
{
"timestamp": "2025-02-15T23:59:00+00:00",
"base_asset_bal": 2565.94,
"quote_asset_bal": 8682.7223539782,
"total_value_mid": 9850.4816479782,
"total_value_exit_net": 9849.6058285077,
"total_value": 9850.4816479782,
"base_cost_quote": 1587.2648905005,
"unrealized_pnl_exit_net": -420.381415971
},
{
"timestamp": "2025-02-16T23:59:00+00:00",
"base_asset_bal": 2634.77,
"quote_asset_bal": 8653.7310780865,
"total_value_mid": 9828.0480670865,
"total_value_exit_net": 9827.1673293447,
"total_value": 9828.0480670865,
"base_cost_quote": 1617.2968365798,
"unrealized_pnl_exit_net": -443.8605853215
},
{
"timestamp": "2025-02-17T23:59:00+00:00",
"base_asset_bal": 2736.83,
"quote_asset_bal": 8609.467289868,
"total_value_mid": 9802.451486868,
"total_value_exit_net": 9801.5567487202,
"total_value": 9802.451486868,
"base_cost_quote": 1662.3372886025,
"unrealized_pnl_exit_net": -470.2478297503
},
{
"timestamp": "2025-02-18T23:59:00+00:00",
"base_asset_bal": 2996.8,
"quote_asset_bal": 8500.13351309,
"total_value_mid": 9737.81191309,
"total_value_exit_net": 9736.88365429,
"total_value": 9737.81191309,
"base_cost_quote": 1772.4735438888,
"unrealized_pnl_exit_net": -535.7234026888
},
{
"timestamp": "2025-02-19T23:59:00+00:00",
"base_asset_bal": 2865.9,
"quote_asset_bal": 8555.7710377205,
"total_value_mid": 9789.8275777205,
"total_value_exit_net": 9788.9020353155,
"total_value": 9789.8275777205,
"base_cost_quote": 1717.406553598,
"unrealized_pnl_exit_net": -484.275556003
},
{
"timestamp": "2025-02-20T23:59:00+00:00",
"base_asset_bal": 2936.07,
"quote_asset_bal": 8526.5010447406,
"total_value_mid": 9737.0427057405,
"total_value_exit_net": 9736.1347994948,
"total_value": 9737.0427057405,
"base_cost_quote": 1747.442996047,
"unrealized_pnl_exit_net": -537.8092412928
},
{
"timestamp": "2025-02-21T23:59:00+00:00",
"base_asset_bal": 3170.67,
"quote_asset_bal": 8432.1185974631,
"total_value_mid": 9694.0452574631,
"total_value_exit_net": 9693.0988124681,
"total_value": 9694.0452574631,
"base_cost_quote": 1842.5546183035,
"unrealized_pnl_exit_net": -581.5744032985
},
{
"timestamp": "2025-02-22T23:59:00+00:00",
"base_asset_bal": 2972.45,
"quote_asset_bal": 8512.6313352248,
"total_value_mid": 9740.2531852248,
"total_value_exit_net": 9739.3324688373,
"total_value": 9740.2531852248,
"base_cost_quote": 1762.4588164723,
"unrealized_pnl_exit_net": -535.7576828598
},
{
"timestamp": "2025-02-23T23:59:00+00:00",
"base_asset_bal": 3183.1,
"quote_asset_bal": 8427.9249161216,
"total_value_mid": 9701.4832261216,
"total_value_exit_net": 9700.5280573891,
"total_value": 9701.4832261216,
"base_cost_quote": 1847.5586975503,
"unrealized_pnl_exit_net": -574.9555562828
},
{
"timestamp": "2025-02-24T23:59:00+00:00",
"base_asset_bal": 3703.03,
"quote_asset_bal": 8233.9476730466,
"total_value_mid": 9502.9760540466,
"total_value_exit_net": 9502.0242827608,
"total_value": 9502.9760540466,
"base_cost_quote": 2042.7695479643,
"unrealized_pnl_exit_net": -774.69293825
},
{
"timestamp": "2025-02-25T23:59:00+00:00",
"base_asset_bal": 3674.39,
"quote_asset_bal": 8245.7766445781,
"total_value_mid": 9558.2687525781,
"total_value_exit_net": 9557.2843834971,
"total_value": 9558.2687525781,
"base_cost_quote": 2032.754399232,
"unrealized_pnl_exit_net": -721.246660313
},
{
"timestamp": "2025-02-26T23:59:00+00:00",
"base_asset_bal": 3812.44,
"quote_asset_bal": 8196.6756032486,
"total_value_mid": 9566.1040512486,
"total_value_exit_net": 9565.0769799126,
"total_value": 9566.1040512486,
"base_cost_quote": 2082.8147193343,
"unrealized_pnl_exit_net": -714.4133426703
},
{
"timestamp": "2025-02-27T23:59:00+00:00",
"base_asset_bal": 3798.14,
"quote_asset_bal": 8202.3841800061,
"total_value_mid": 9564.3971840061,
"total_value_exit_net": 9563.3756742531,
"total_value": 9564.3971840061,
"base_cost_quote": 2077.8087216498,
"unrealized_pnl_exit_net": -716.8172274028
},
{
"timestamp": "2025-02-28T23:59:00+00:00",
"base_asset_bal": 4040.85,
"quote_asset_bal": 8118.5276742102,
"total_value_mid": 9516.2576892101,
"total_value_exit_net": 9515.2093916989,
"total_value": 9516.2576892101,
"base_cost_quote": 2162.902405083,
"unrealized_pnl_exit_net": -766.2206875943
},
{
"timestamp": "2025-03-01T23:59:00+00:00",
"base_asset_bal": 4128.97,
"quote_asset_bal": 8089.0291932549,
"total_value_mid": 9512.2851522549,
"total_value_exit_net": 9511.2177102856,
"total_value": 9512.2851522549,
"base_cost_quote": 2192.9389686228,
"unrealized_pnl_exit_net": -770.750451592
},
{
"timestamp": "2025-03-02T23:59:00+00:00",
"base_asset_bal": 3502.68,
"quote_asset_bal": 8315.4698868364,
"total_value_mid": 9653.1433788364,
"total_value_exit_net": 9652.1401237174,
"total_value": 9653.1433788364,
"base_cost_quote": 1967.6837037853,
"unrealized_pnl_exit_net": -631.0134669043
},
{
"timestamp": "2025-03-03T23:59:00+00:00",
"base_asset_bal": 4171.54,
"quote_asset_bal": 8076.6074340087,
"total_value_mid": 9447.7926320087,
"total_value_exit_net": 9446.7642431102,
"total_value": 9447.7926320087,
"base_cost_quote": 2207.945662208,
"unrealized_pnl_exit_net": -837.7888531065
},
{
"timestamp": "2025-03-04T23:59:00+00:00",
"base_asset_bal": 4376.31,
"quote_asset_bal": 8013.0250473499,
"total_value_mid": 9367.9306233499,
"total_value_exit_net": 9366.9144441679,
"total_value": 9367.9306233499,
"base_cost_quote": 2273.0196421162,
"unrealized_pnl_exit_net": -919.1302452983
},
{
"timestamp": "2025-03-05T23:59:00+00:00",
"base_asset_bal": 4326.62,
"quote_asset_bal": 8028.8879475682,
"total_value_mid": 9426.3862075682,
"total_value_exit_net": 9425.3380838732,
"total_value": 9426.3862075682,
"base_cost_quote": 2258.0035224667,
"unrealized_pnl_exit_net": -861.5533861618
},
{
"timestamp": "2025-03-06T23:59:00+00:00",
"base_asset_bal": 4436.18,
"quote_asset_bal": 7994.5000913507,
"total_value_mid": 9402.5436233507,
"total_value_exit_net": 9401.4875907017,
"total_value": 9402.5436233507,
"base_cost_quote": 2293.036300359,
"unrealized_pnl_exit_net": -886.048801008
},
{
"timestamp": "2025-03-07T23:59:00+00:00",
"base_asset_bal": 4596.66,
"quote_asset_bal": 7945.5478948864,
"total_value_mid": 9385.6814728864,
"total_value_exit_net": 9384.6013727029,
"total_value": 9385.6814728864,
"base_cost_quote": 2343.0843532678,
"unrealized_pnl_exit_net": -904.0308754513
},
{
"timestamp": "2025-03-08T23:59:00+00:00",
"base_asset_bal": 4824.33,
"quote_asset_bal": 7876.0787055619,
"total_value_mid": 9329.6493345619,
"total_value_exit_net": 9328.5591565902,
"total_value": 9329.6493345619,
"base_cost_quote": 2413.1604329393,
"unrealized_pnl_exit_net": -960.679981911
},
{
"timestamp": "2025-03-09T23:59:00+00:00",
"base_asset_bal": 5699.91,
"quote_asset_bal": 7626.5517118352,
"total_value_mid": 9162.1074658352,
"total_value_exit_net": 9160.9557990197,
"total_value": 9162.1074658352,
"base_cost_quote": 2663.4222206133,
"unrealized_pnl_exit_net": -1129.0181334288
},
{
"timestamp": "2025-03-10T23:59:00+00:00",
"base_asset_bal": 6312.25,
"quote_asset_bal": 7468.2456828457,
"total_value_mid": 9045.6769578457,
"total_value_exit_net": 9044.4938843894,
"total_value": 9045.6769578457,
"base_cost_quote": 2823.5775190673,
"unrealized_pnl_exit_net": -1247.3293175235
},
{
"timestamp": "2025-03-11T23:59:00+00:00",
"base_asset_bal": 6350.67,
"quote_asset_bal": 7460.1185304884,
"total_value_mid": 9070.0133754884,
"total_value_exit_net": 9068.8059543547,
"total_value": 9070.0133754884,
"base_cost_quote": 2833.5879682775,
"unrealized_pnl_exit_net": -1224.9005444113
},
{
"timestamp": "2025-03-12T23:59:00+00:00",
"base_asset_bal": 6157.19,
"quote_asset_bal": 7511.2482589129,
"total_value_mid": 9130.5892289129,
"total_value_exit_net": 9129.3747231854,
"total_value": 9130.5892289129,
"base_cost_quote": 2783.5340159475,
"unrealized_pnl_exit_net": -1165.407551675
},
{
"timestamp": "2025-03-13T23:59:00+00:00",
"base_asset_bal": 6138.4,
"quote_asset_bal": 7517.1470542922,
"total_value_mid": 9118.0417742922,
"total_value_exit_net": 9116.8411032522,
"total_value": 9118.0417742922,
"base_cost_quote": 2778.5310315213,
"unrealized_pnl_exit_net": -1178.8369825612
},
{
"timestamp": "2025-03-14T23:59:00+00:00",
"base_asset_bal": 6213.04,
"quote_asset_bal": 7497.7144638224,
"total_value_mid": 9145.4126718224,
"total_value_exit_net": 9144.1768981664,
"total_value": 9145.4126718224,
"base_cost_quote": 2798.5465379008,
"unrealized_pnl_exit_net": -1152.0841035568
},
{
"timestamp": "2025-03-15T23:59:00+00:00",
"base_asset_bal": 5695.14,
"quote_asset_bal": 7638.4104187489,
"total_value_mid": 9218.2422547489,
"total_value_exit_net": 9217.0573808719,
"total_value": 9218.2422547489,
"base_cost_quote": 2658.4094668655,
"unrealized_pnl_exit_net": -1079.7625047425
},
{
"timestamp": "2025-03-16T23:59:00+00:00",
"base_asset_bal": 5709.57,
"quote_asset_bal": 7639.2986220624,
"total_value_mid": 9144.3412740624,
"total_value_exit_net": 9143.2124920734,
"total_value": 9144.3412740624,
"base_cost_quote": 2658.412054805,
"unrealized_pnl_exit_net": -1154.498184794
},
{
"timestamp": "2025-03-17T23:59:00+00:00",
"base_asset_bal": 5536.93,
"quote_asset_bal": 7684.9354308789,
"total_value_mid": 9213.1281108789,
"total_value_exit_net": 9211.9819663689,
"total_value": 9213.1281108789,
"base_cost_quote": 2613.3711244238,
"unrealized_pnl_exit_net": -1086.3245889337
},
{
"timestamp": "2025-03-18T23:59:00+00:00",
"base_asset_bal": 5702.54,
"quote_asset_bal": 7640.5008298979,
"total_value_mid": 9180.7568838979,
"total_value_exit_net": 9179.6016918574,
"total_value": 9180.7568838979,
"base_cost_quote": 2658.42024094,
"unrealized_pnl_exit_net": -1119.3193789805
},
{
"timestamp": "2025-03-19T23:59:00+00:00",
"base_asset_bal": 5482.08,
"quote_asset_bal": 7701.2988229964,
"total_value_mid": 9234.0883909964,
"total_value_exit_net": 9232.9387988204,
"total_value": 9234.0883909964,
"base_cost_quote": 2598.3527650958,
"unrealized_pnl_exit_net": -1066.7127892717
},
{
"timestamp": "2025-03-20T23:59:00+00:00",
"base_asset_bal": 5848.1,
"quote_asset_bal": 7601.6166254484,
"total_value_mid": 9180.6036254484,
"total_value_exit_net": 9179.4193851984,
"total_value": 9180.6036254484,
"base_cost_quote": 2698.4581248485,
"unrealized_pnl_exit_net": -1120.6553650985
},
{
"timestamp": "2025-03-21T23:59:00+00:00",
"base_asset_bal": 5999.59,
"quote_asset_bal": 7562.1138205519,
"total_value_mid": 9123.8070975519,
"total_value_exit_net": 9122.6358275942,
"total_value": 9123.8070975519,
"base_cost_quote": 2738.493438831,
"unrealized_pnl_exit_net": -1177.9714317887
},
{
"timestamp": "2025-03-22T23:59:00+00:00",
"base_asset_bal": 5847.78,
"quote_asset_bal": 7602.6910664662,
"total_value_mid": 9166.9722164662,
"total_value_exit_net": 9165.7990056037,
"total_value": 9166.9722164662,
"base_cost_quote": 2698.4485816965,
"unrealized_pnl_exit_net": -1135.340642559
},
{
"timestamp": "2025-03-23T23:59:00+00:00",
"base_asset_bal": 5792.73,
"quote_asset_bal": 7618.1365914494,
"total_value_mid": 9186.2286024494,
"total_value_exit_net": 9185.0525334412,
"total_value": 9186.2286024494,
"base_cost_quote": 2683.4320147118,
"unrealized_pnl_exit_net": -1116.51607272
},
{
"timestamp": "2025-03-24T23:59:00+00:00",
"base_asset_bal": 5107.8500000001,
"quote_asset_bal": 7814.7023041727,
"total_value_mid": 9333.2661091727,
"total_value_exit_net": 9332.1271863189,
"total_value": 9333.2661091727,
"base_cost_quote": 2488.234965641,
"unrealized_pnl_exit_net": -970.8100834947
},
{
"timestamp": "2025-03-25T23:59:00+00:00",
"base_asset_bal": 4925.2100000001,
"quote_asset_bal": 7870.8346048742,
"total_value_mid": 9399.1272678742,
"total_value_exit_net": 9397.9810483769,
"total_value": 9399.1272678742,
"base_cost_quote": 2433.1687639412,
"unrealized_pnl_exit_net": -906.0223204385
},
{
"timestamp": "2025-03-26T23:59:00+00:00",
"base_asset_bal": 5229.6000000001,
"quote_asset_bal": 7781.3976283989,
"total_value_mid": 9294.3209083989,
"total_value_exit_net": 9293.1862159389,
"total_value": 9294.3209083989,
"base_cost_quote": 2523.259254171,
"unrealized_pnl_exit_net": -1011.470666631
},
{
"timestamp": "2025-03-27T23:59:00+00:00",
"base_asset_bal": 4974.2100000001,
"quote_asset_bal": 7857.3853345809,
"total_value_mid": 9374.0219635809,
"total_value_exit_net": 9372.8844861092,
"total_value": 9374.0219635809,
"base_cost_quote": 2448.1932998982,
"unrealized_pnl_exit_net": -932.69414837
},
{
"timestamp": "2025-03-28T23:59:00+00:00",
"base_asset_bal": 6012.7600000001,
"quote_asset_bal": 7562.9233565552,
"total_value_mid": 9149.0894445552,
"total_value_exit_net": 9147.8998199892,
"total_value": 9149.0894445552,
"base_cost_quote": 2743.4899764257,
"unrealized_pnl_exit_net": -1158.5135129917
},
{
"timestamp": "2025-03-29T23:59:00+00:00",
"base_asset_bal": 6584.7200000001,
"quote_asset_bal": 7418.6668845557,
"total_value_mid": 9030.6063405557,
"total_value_exit_net": 9029.3973859637,
"total_value": 9030.6063405557,
"base_cost_quote": 2888.6327769445,
"unrealized_pnl_exit_net": -1277.9022755365
},
{
"timestamp": "2025-03-30T23:59:00+00:00",
"base_asset_bal": 6768.4600000001,
"quote_asset_bal": 7374.2593931914,
"total_value_mid": 9005.4582531915,
"total_value_exit_net": 9004.2348540465,
"total_value": 9005.4582531915,
"base_cost_quote": 2933.6751003697,
"unrealized_pnl_exit_net": -1303.6996395147
},
{
"timestamp": "2025-03-31T23:59:00+00:00",
"base_asset_bal": 6893.0500000001,
"quote_asset_bal": 7345.6064773005,
"total_value_mid": 8988.2202923005,
"total_value_exit_net": 8986.9883319392,
"total_value": 8988.2202923005,
"base_cost_quote": 2963.7078680647,
"unrealized_pnl_exit_net": -1322.326013426
},
{
"timestamp": "2025-04-01T23:59:00+00:00",
"base_asset_bal": 6808.9500000001,
"quote_asset_bal": 7366.6199744405,
"total_value_mid": 9013.0240844405,
"total_value_exit_net": 9011.789281358,
"total_value": 9013.0240844405,
"base_cost_quote": 2943.68430865,
"unrealized_pnl_exit_net": -1298.5150017325
},
{
"timestamp": "2025-04-02T23:59:00+00:00",
"base_asset_bal": 7423.9300000001,
"quote_asset_bal": 7227.640347023,
"total_value_mid": 8859.420161023,
"total_value_exit_net": 8858.1963261625,
"total_value": 8859.420161023,
"base_cost_quote": 3083.8313051238,
"unrealized_pnl_exit_net": -1453.2753259842
},
{
"timestamp": "2025-04-03T23:59:00+00:00",
"base_asset_bal": 7335.7400000001,
"quote_asset_bal": 7248.9755001007,
"total_value_mid": 8889.2469641007,
"total_value_exit_net": 8888.0167605027,
"total_value": 8889.2469641007,
"base_cost_quote": 3063.8091727785,
"unrealized_pnl_exit_net": -1424.7679123765
},
{
"timestamp": "2025-04-04T23:59:00+00:00",
"base_asset_bal": 7537.9300000001,
"quote_asset_bal": 7204.877278318,
"total_value_mid": 8853.422569318,
"total_value_exit_net": 8852.1861603497,
"total_value": 8853.422569318,
"base_cost_quote": 3108.8559455383,
"unrealized_pnl_exit_net": -1461.5470635065
},
{
"timestamp": "2025-04-05T23:59:00+00:00",
"base_asset_bal": 7493.9300000001,
"quote_asset_bal": 7215.288655524,
"total_value_mid": 8850.464181524,
"total_value_exit_net": 8849.2377998795,
"total_value": 8850.464181524,
"base_cost_quote": 3098.8439561738,
"unrealized_pnl_exit_net": -1464.8948118182
},
{
"timestamp": "2025-04-06T23:59:00+00:00",
"base_asset_bal": 8631.4000000001,
"quote_asset_bal": 6981.2436506847,
"total_value_mid": 8691.9871306847,
"total_value_exit_net": 8690.7040730747,
"total_value": 8691.9871306847,
"base_cost_quote": 3334.0690357685,
"unrealized_pnl_exit_net": -1624.6086133785
},
{
"timestamp": "2025-04-07T23:59:00+00:00",
"base_asset_bal": 8234.5900000001,
"quote_asset_bal": 7064.0060625877,
"total_value_mid": 8719.9821115877,
"total_value_exit_net": 8718.740129551,
"total_value": 8719.9821115877,
"base_cost_quote": 3253.9917878422,
"unrealized_pnl_exit_net": -1599.257720879
},
{
"timestamp": "2025-04-08T23:59:00+00:00",
"base_asset_bal": 9123.6800000001,
"quote_asset_bal": 6889.9473216585,
"total_value_mid": 8624.3588896585,
"total_value_exit_net": 8623.0580809825,
"total_value": 8624.3588896585,
"base_cost_quote": 3429.156856187,
"unrealized_pnl_exit_net": -1696.046096863
},
{
"timestamp": "2025-04-09T23:59:00+00:00",
"base_asset_bal": 7854.2300000001,
"quote_asset_bal": 7146.9855240535,
"total_value_mid": 8837.2158200535,
"total_value_exit_net": 8835.9481473315,
"total_value": 8837.2158200535,
"base_cost_quote": 3173.920860653,
"unrealized_pnl_exit_net": -1484.958237375
},
{
"timestamp": "2025-04-10T23:59:00+00:00",
"base_asset_bal": 8211.7900000001,
"quote_asset_bal": 7072.7040764192,
"total_value_mid": 8756.1210264193,
"total_value_exit_net": 8754.8584637068,
"total_value": 8756.1210264193,
"base_cost_quote": 3248.9893448218,
"unrealized_pnl_exit_net": -1566.8349575342
},
{
"timestamp": "2025-04-11T23:59:00+00:00",
"base_asset_bal": 7948.1300000001,
"quote_asset_bal": 7128.2592969332,
"total_value_mid": 8815.6472959333,
"total_value_exit_net": 8814.381754934,
"total_value": 8815.6472959333,
"base_cost_quote": 3193.9361618788,
"unrealized_pnl_exit_net": -1507.813703878
},
{
"timestamp": "2025-04-12T23:59:00+00:00",
"base_asset_bal": 7488.9500000001,
"quote_asset_bal": 7228.7357426047,
"total_value_mid": 8911.5028076048,
"total_value_exit_net": 8910.240732306,
"total_value": 8911.5028076048,
"base_cost_quote": 3093.8361791558,
"unrealized_pnl_exit_net": -1412.3311894545
},
{
"timestamp": "2025-04-13T23:59:00+00:00",
"base_asset_bal": 8039.8000000001,
"quote_asset_bal": 7109.0752374505,
"total_value_mid": 8801.4531374505,
"total_value_exit_net": 8800.1838540255,
"total_value": 8801.4531374505,
"base_cost_quote": 3213.9581160905,
"unrealized_pnl_exit_net": -1522.8494995155
},
{
"timestamp": "2025-04-14T23:59:00+00:00",
"base_asset_bal": 7944.8300000001,
"quote_asset_bal": 7129.9869550788,
"total_value_mid": 8807.9350510788,
"total_value_exit_net": 8806.6765900068,
"total_value": 8807.9350510788,
"base_cost_quote": 3193.9364861218,
"unrealized_pnl_exit_net": -1517.2468511937
},
{
"timestamp": "2025-04-15T23:59:00+00:00",
"base_asset_bal": 7717.7900000001,
"quote_asset_bal": 7181.333721739,
"total_value_mid": 8866.899057739,
"total_value_exit_net": 8865.634883737,
"total_value": 8866.899057739,
"base_cost_quote": 3143.8931307335,
"unrealized_pnl_exit_net": -1459.5919687355
},
{
"timestamp": "2025-04-16T23:59:00+00:00",
"base_asset_bal": 7626.7200000001,
"quote_asset_bal": 7202.6560608698,
"total_value_mid": 8869.0943808698,
"total_value_exit_net": 8867.8445521298,
"total_value": 8869.0943808698,
"base_cost_quote": 3123.8729218298,
"unrealized_pnl_exit_net": -1458.6844305697
},
{
"timestamp": "2025-04-17T23:59:00+00:00",
"base_asset_bal": 7626.4000000001,
"quote_asset_bal": 7203.2005069543,
"total_value_mid": 8887.1096269543,
"total_value_exit_net": 8885.8466951143,
"total_value": 8887.1096269543,
"base_cost_quote": 3123.8744089442,
"unrealized_pnl_exit_net": -1441.2282207842
},
{
"timestamp": "2025-04-18T23:59:00+00:00",
"base_asset_bal": 7184.9200000001,
"quote_asset_bal": 7303.9230309918,
"total_value_mid": 8988.0682789918,
"total_value_exit_net": 8986.8051700558,
"total_value": 8988.0682789918,
"base_cost_quote": 3023.7695505672,
"unrealized_pnl_exit_net": -1340.8874115032
},
{
"timestamp": "2025-04-19T23:59:00+00:00",
"base_asset_bal": 6794.0000000001,
"quote_asset_bal": 7400.0488298798,
"total_value_mid": 9080.8844298798,
"total_value_exit_net": 9079.6238031798,
"total_value": 9080.8844298798,
"base_cost_quote": 2928.6711282033,
"unrealized_pnl_exit_net": -1249.0961549032
},
{
"timestamp": "2025-04-20T23:59:00+00:00",
"base_asset_bal": 6497.1800000001,
"quote_asset_bal": 7476.2109317563,
"total_value_mid": 9141.4381657563,
"total_value_exit_net": 9140.1892453308,
"total_value": 9141.4381657563,
"base_cost_quote": 2853.6074426308,
"unrealized_pnl_exit_net": -1189.6291290562
},
{
"timestamp": "2025-04-21T23:59:00+00:00",
"base_asset_bal": 6675.3700000001,
"quote_asset_bal": 7431.8984774678,
"total_value_mid": 9094.0656074678,
"total_value_exit_net": 9092.8189821203,
"total_value": 9094.0656074678,
"base_cost_quote": 2898.656026748,
"unrealized_pnl_exit_net": -1237.7355220955
},
{
"timestamp": "2025-04-22T23:59:00+00:00",
"base_asset_bal": 6212.2700000001,
"quote_asset_bal": 7553.0081745548,
"total_value_mid": 9207.9569025548,
"total_value_exit_net": 9206.7156910088,
"total_value": 9207.9569025548,
"base_cost_quote": 2778.53137678,
"unrealized_pnl_exit_net": -1124.823860326
},
{
"timestamp": "2025-04-23T23:59:00+00:00",
"base_asset_bal": 6139.4100000001,
"quote_asset_bal": 7573.8888932086,
"total_value_mid": 9227.2320062086,
"total_value_exit_net": 9225.9919988738,
"total_value": 9227.2320062086,
"base_cost_quote": 2758.5156152092,
"unrealized_pnl_exit_net": -1106.412509544
},
{
"timestamp": "2025-04-24T23:59:00+00:00",
"base_asset_bal": 5922.4100000001,
"quote_asset_bal": 7634.8905292713,
"total_value_mid": 9289.6118832713,
"total_value_exit_net": 9288.3708422558,
"total_value": 9289.6118832713,
"base_cost_quote": 2698.4485586793,
"unrealized_pnl_exit_net": -1044.9682456947
},
{
"timestamp": "2025-04-25T23:59:00+00:00",
"base_asset_bal": 5849.5700000001,
"quote_asset_bal": 7656.2092863975,
"total_value_mid": 9353.7545003976,
"total_value_exit_net": 9352.4813414871,
"total_value": 9353.7545003976,
"base_cost_quote": 2678.4298478983,
"unrealized_pnl_exit_net": -982.1577928087
},
{
"timestamp": "2025-04-26T23:59:00+00:00",
"base_asset_bal": 5362.1400000001,
"quote_asset_bal": 7802.4621445935,
"total_value_mid": 9437.3786305936,
"total_value_exit_net": 9436.1524432291,
"total_value": 9437.3786305936,
"base_cost_quote": 2533.2806786065,
"unrealized_pnl_exit_net": -899.590379971
},
{
"timestamp": "2025-04-27T23:59:00+00:00",
"base_asset_bal": 5766.5800000001,
"quote_asset_bal": 7683.2607177596,
"total_value_mid": 9351.5323117596,
"total_value_exit_net": 9350.2811080641,
"total_value": 9351.5323117596,
"base_cost_quote": 2653.4038234465,
"unrealized_pnl_exit_net": -986.383433142
},
{
"timestamp": "2025-04-28T23:59:00+00:00",
"base_asset_bal": 5327.7100000001,
"quote_asset_bal": 7814.7618680663,
"total_value_mid": 9442.9100440664,
"total_value_exit_net": 9441.6889329344,
"total_value": 9442.9100440664,
"base_cost_quote": 2523.2774217865,
"unrealized_pnl_exit_net": -896.3503569185
},
{
"timestamp": "2025-04-29T23:59:00+00:00",
"base_asset_bal": 5005.4800000001,
"quote_asset_bal": 7922.0064276631,
"total_value_mid": 9462.6931716631,
"total_value_exit_net": 9461.5376566051,
"total_value": 9462.6931716631,
"base_cost_quote": 2418.1675514638,
"unrealized_pnl_exit_net": -878.6363225217
},
{
"timestamp": "2025-04-30T23:59:00+00:00",
"base_asset_bal": 4927.1300000001,
"quote_asset_bal": 7947.9939609671,
"total_value_mid": 9476.8823999671,
"total_value_exit_net": 9475.7357336379,
"total_value": 9476.8823999671,
"base_cost_quote": 2393.1423806518,
"unrealized_pnl_exit_net": -865.400607981
},
{
"timestamp": "2025-05-01T23:59:00+00:00",
"base_asset_bal": 4900.5200000001,
"quote_asset_bal": 7958.7018584778,
"total_value_mid": 9471.9824344779,
"total_value_exit_net": 9470.8474740459,
"total_value": 9471.9824344779,
"base_cost_quote": 2383.132513878,
"unrealized_pnl_exit_net": -870.98689831
},
{
"timestamp": "2025-05-02T23:59:00+00:00",
"base_asset_bal": 4965.7500000001,
"quote_asset_bal": 7939.0343836433,
"total_value_mid": 9464.0162086434,
"total_value_exit_net": 9462.8724722746,
"total_value": 9464.0162086434,
"base_cost_quote": 2403.1600893025,
"unrealized_pnl_exit_net": -879.3220006712
},
{
"timestamp": "2025-05-03T23:59:00+00:00",
"base_asset_bal": 5420.5700000001,
"quote_asset_bal": 7804.4094056331,
"total_value_mid": 9361.1971096331,
"total_value_exit_net": 9360.0295188551,
"total_value": 9361.1971096331,
"base_cost_quote": 2538.2964446118,
"unrealized_pnl_exit_net": -982.6763313897
},
{
"timestamp": "2025-05-04T23:59:00+00:00",
"base_asset_bal": 5870.1900000001,
"quote_asset_bal": 7680.0490713921,
"total_value_mid": 9253.2599913921,
"total_value_exit_net": 9252.0800832021,
"total_value": 9253.2599913921,
"base_cost_quote": 2663.4234445305,
"unrealized_pnl_exit_net": -1091.3924327205
},
{
"timestamp": "2025-05-05T23:59:00+00:00",
"base_asset_bal": 5759.1400000002,
"quote_asset_bal": 7710.8605636408,
"total_value_mid": 9271.5875036409,
"total_value_exit_net": 9270.4169584359,
"total_value": 9271.5875036409,
"base_cost_quote": 2633.3917566448,
"unrealized_pnl_exit_net": -1073.8353618497
},
{
"timestamp": "2025-05-06T23:59:00+00:00",
"base_asset_bal": 6138.8800000002,
"quote_asset_bal": 7611.6916887613,
"total_value_mid": 9215.7810327614,
"total_value_exit_net": 9214.5779657534,
"total_value": 9215.7810327614,
"base_cost_quote": 2733.489328561,
"unrealized_pnl_exit_net": -1130.603051569
},
{
"timestamp": "2025-05-07T23:59:00+00:00",
"base_asset_bal": 6044.4200000002,
"quote_asset_bal": 7637.5574713358,
"total_value_mid": 9226.0310473359,
"total_value_exit_net": 9224.8396921539,
"total_value": 9226.0310473359,
"base_cost_quote": 2708.4676733838,
"unrealized_pnl_exit_net": -1121.1854525657
},
{
"timestamp": "2025-05-08T23:59:00+00:00",
"base_asset_bal": 5152.2100000002,
"quote_asset_bal": 7888.9694428116,
"total_value_mid": 9426.9041278116,
"total_value_exit_net": 9425.7506767979,
"total_value": 9426.9041278116,
"base_cost_quote": 2458.212057335,
"unrealized_pnl_exit_net": -921.4308233487
},
{
"timestamp": "2025-05-09T23:59:00+00:00",
"base_asset_bal": 4727.8700000002,
"quote_asset_bal": 8020.3206550341,
"total_value_mid": 9522.8377410341,
"total_value_exit_net": 9521.7108532196,
"total_value": 9522.8377410341,
"base_cost_quote": 2328.0714880573,
"unrealized_pnl_exit_net": -826.6812898717
},
{
"timestamp": "2025-05-10T23:59:00+00:00",
"base_asset_bal": 4690.0200000002,
"quote_asset_bal": 8031.3852695356,
"total_value_mid": 9635.3721095356,
"total_value_exit_net": 9634.1691194056,
"total_value": 9635.3721095356,
"base_cost_quote": 2318.0689677893,
"unrealized_pnl_exit_net": -715.2851179192
},
{
"timestamp": "2025-05-11T23:59:00+00:00",
"base_asset_bal": 4494.9700000002,
"quote_asset_bal": 8103.6027462436,
"total_value_mid": 9672.3472762436,
"total_value_exit_net": 9671.1707178461,
"total_value": 9672.3472762436,
"base_cost_quote": 2247.978548371,
"unrealized_pnl_exit_net": -680.4105767684
},
{
"timestamp": "2025-05-12T23:59:00+00:00",
"base_asset_bal": 4538.9600000002,
"quote_asset_bal": 8090.3194863676,
"total_value_mid": 9623.5801743676,
"total_value_exit_net": 9622.4302288516,
"total_value": 9623.5801743676,
"base_cost_quote": 2263.0071834,
"unrealized_pnl_exit_net": -730.8964409159
},
{
"timestamp": "2025-05-13T23:59:00+00:00",
"base_asset_bal": 4439.4200000002,
"quote_asset_bal": 8126.6419516248,
"total_value_mid": 9682.2147196249,
"total_value_exit_net": 9681.0480400489,
"total_value": 9682.2147196249,
"base_cost_quote": 2227.967191101,
"unrealized_pnl_exit_net": -673.5611026769
},
{
"timestamp": "2025-05-14T23:59:00+00:00",
"base_asset_bal": 4911.4700000002,
"quote_asset_bal": 7967.4520323086,
"total_value_mid": 9577.4318983086,
"total_value_exit_net": 9576.2244134091,
"total_value": 9577.4318983086,
"base_cost_quote": 2388.139234104,
"unrealized_pnl_exit_net": -779.3668530034
},
{
"timestamp": "2025-05-15T23:59:00+00:00",
"base_asset_bal": 5341.8900000002,
"quote_asset_bal": 7833.4708956841,
"total_value_mid": 9468.6234246841,
"total_value_exit_net": 9467.3970602874,
"total_value": 9468.6234246841,
"base_cost_quote": 2523.2801748498,
"unrealized_pnl_exit_net": -889.3540102464
},
{
"timestamp": "2025-05-16T23:59:00+00:00",
"base_asset_bal": 5542.1400000002,
"quote_asset_bal": 7774.2480151308,
"total_value_mid": 9420.2635951309,
"total_value_exit_net": 9419.0290834459,
"total_value": 9420.2635951309,
"base_cost_quote": 2583.3448545985,
"unrealized_pnl_exit_net": -938.5637862834
},
{
"timestamp": "2025-05-17T23:59:00+00:00",
"base_asset_bal": 5595.2400000002,
"quote_asset_bal": 7760.4483494386,
"total_value_mid": 9380.8298534386,
"total_value_exit_net": 9379.6145673106,
"total_value": 9380.8298534386,
"base_cost_quote": 2598.3591158553,
"unrealized_pnl_exit_net": -979.1928979832
},
{
"timestamp": "2025-05-18T23:59:00+00:00",
"base_asset_bal": 5375.8500000002,
"quote_asset_bal": 7826.6252615124,
"total_value_mid": 9461.4212465124,
"total_value_exit_net": 9460.1951495237,
"total_value": 9461.4212465124,
"base_cost_quote": 2533.288926788,
"unrealized_pnl_exit_net": -899.7190387767
},
{
"timestamp": "2025-05-19T23:59:00+00:00",
"base_asset_bal": 5645.7400000002,
"quote_asset_bal": 7747.7680499806,
"total_value_mid": 9388.9846679807,
"total_value_exit_net": 9387.7537555172,
"total_value": 9388.9846679807,
"base_cost_quote": 2613.370542988,
"unrealized_pnl_exit_net": -973.3848374514
},
{
"timestamp": "2025-05-20T23:59:00+00:00",
"base_asset_bal": 5611.1800000002,
"quote_asset_bal": 7758.7523888979,
"total_value_mid": 9415.1727248979,
"total_value_exit_net": 9413.9304096459,
"total_value": 9415.1727248979,
"base_cost_quote": 2603.3625886475,
"unrealized_pnl_exit_net": -948.1845678994
},
{
"timestamp": "2025-05-21T23:59:00+00:00",
"base_asset_bal": 5543.3700000002,
"quote_asset_bal": 7779.8755419649,
"total_value_mid": 9409.0719849649,
"total_value_exit_net": 9407.8500876327,
"total_value": 9409.0719849649,
"base_cost_quote": 2583.3459484183,
"unrealized_pnl_exit_net": -955.3714027504
},
{
"timestamp": "2025-05-22T23:59:00+00:00",
"base_asset_bal": 5197.5000000002,
"quote_asset_bal": 7885.9162130431,
"total_value_mid": 9481.5487130432,
"total_value_exit_net": 9480.3519886682,
"total_value": 9481.5487130432,
"base_cost_quote": 2478.2354095945,
"unrealized_pnl_exit_net": -883.7996339694
},
{
"timestamp": "2025-05-23T23:59:00+00:00",
"base_asset_bal": 5987.3300000002,
"quote_asset_bal": 7661.6318740546,
"total_value_mid": 9287.1919690547,
"total_value_exit_net": 9285.9727989834,
"total_value": 9287.1919690547,
"base_cost_quote": 2703.4647329905,
"unrealized_pnl_exit_net": -1079.1238080617
},
{
"timestamp": "2025-05-24T23:59:00+00:00",
"base_asset_bal": 6210.2800000002,
"quote_asset_bal": 7602.1787997631,
"total_value_mid": 9256.5973917632,
"total_value_exit_net": 9255.3565778192,
"total_value": 9256.5973917632,
"base_cost_quote": 2763.5226636813,
"unrealized_pnl_exit_net": -1110.3448856252
},
{
"timestamp": "2025-05-25T23:59:00+00:00",
"base_asset_bal": 6057.1800000002,
"quote_asset_bal": 7642.9647838201,
"total_value_mid": 9272.3462038202,
"total_value_exit_net": 9271.1241677552,
"total_value": 9272.3462038202,
"base_cost_quote": 2723.4807927848,
"unrealized_pnl_exit_net": -1095.3214088497
},
{
"timestamp": "2025-05-26T23:59:00+00:00",
"base_asset_bal": 6246.5700000002,
"quote_asset_bal": 7593.4021500059,
"total_value_mid": 9229.3788330059,
"total_value_exit_net": 9228.1518504937,
"total_value": 9229.3788330059,
"base_cost_quote": 2773.539443636,
"unrealized_pnl_exit_net": -1138.7897431482
},
{
"timestamp": "2025-05-27T23:59:00+00:00",
"base_asset_bal": 5966.8500000002,
"quote_asset_bal": 7669.1799709651,
"total_value_mid": 9279.0361009652,
"total_value_exit_net": 9277.8287088677,
"total_value": 9279.0361009652,
"base_cost_quote": 2698.460384542,
"unrealized_pnl_exit_net": -1089.8116466394
},
{
"timestamp": "2025-05-28T23:59:00+00:00",
"base_asset_bal": 6156.3000000003,
"quote_asset_bal": 7619.8307274123,
"total_value_mid": 9246.3251874124,
"total_value_exit_net": 9245.1053165674,
"total_value": 9246.3251874124,
"base_cost_quote": 2748.5120811815,
"unrealized_pnl_exit_net": -1123.2374920264
},
{
"timestamp": "2025-05-29T23:59:00+00:00",
"base_asset_bal": 6761.1200000003,
"quote_asset_bal": 7465.3266935163,
"total_value_mid": 9140.7322295164,
"total_value_exit_net": 9139.4756753644,
"total_value": 9140.7322295164,
"base_cost_quote": 2903.6696071153,
"unrealized_pnl_exit_net": -1229.5206252672
},
{
"timestamp": "2025-05-30T23:59:00+00:00",
"base_asset_bal": 7517.0100000003,
"quote_asset_bal": 7291.3872859811,
"total_value_mid": 8944.3777849811,
"total_value_exit_net": 8943.1380421069,
"total_value": 8944.3777849811,
"base_cost_quote": 3078.843870351,
"unrealized_pnl_exit_net": -1427.0931142252
},
{
"timestamp": "2025-05-31T23:59:00+00:00",
"base_asset_bal": 7199.9700000003,
"quote_asset_bal": 7362.5608035266,
"total_value_mid": 9006.3139545266,
"total_value_exit_net": 9005.0811396634,
"total_value": 9006.3139545266,
"base_cost_quote": 3008.772460179,
"unrealized_pnl_exit_net": -1366.2521240422
},
{
"timestamp": "2025-06-01T23:59:00+00:00",
"base_asset_bal": 7267.0400000003,
"quote_asset_bal": 7348.0848761801,
"total_value_mid": 9007.8768121801,
"total_value_exit_net": 9006.6319682282,
"total_value": 9007.8768121801,
"base_cost_quote": 3023.7844006965,
"unrealized_pnl_exit_net": -1365.2373086484
},
{
"timestamp": "2025-06-02T23:59:00+00:00",
"base_asset_bal": 7180.1300000003,
"quote_asset_bal": 7368.7538836026,
"total_value_mid": 9033.1080176027,
"total_value_exit_net": 9031.8597520022,
"total_value": 9033.1080176027,
"base_cost_quote": 3003.7646851625,
"unrealized_pnl_exit_net": -1340.6588167629
},
{
"timestamp": "2025-06-03T23:59:00+00:00",
"base_asset_bal": 7180.3200000003,
"quote_asset_bal": 7369.1694911663,
"total_value_mid": 9037.1578271664,
"total_value_exit_net": 9035.9068359144,
"total_value": 9037.1578271664,
"base_cost_quote": 3003.7642758558,
"unrealized_pnl_exit_net": -1337.0269311077
},
{
"timestamp": "2025-06-04T23:59:00+00:00",
"base_asset_bal": 7376.8600000003,
"quote_asset_bal": 7324.6252600451,
"total_value_mid": 8985.1564460452,
"total_value_exit_net": 8983.9110476557,
"total_value": 8985.1564460452,
"base_cost_quote": 3048.805038111,
"unrealized_pnl_exit_net": -1389.5192505004
},
{
"timestamp": "2025-06-05T23:59:00+00:00",
"base_asset_bal": 8048.9700000003,
"quote_asset_bal": 7180.2903224081,
"total_value_mid": 8857.6956704082,
"total_value_exit_net": 8856.4376163972,
"total_value": 8857.6956704082,
"base_cost_quote": 3193.9519186875,
"unrealized_pnl_exit_net": -1517.8046246984
},
{
"timestamp": "2025-06-06T23:59:00+00:00",
"base_asset_bal": 7976.8200000003,
"quote_asset_bal": 7195.8476861524,
"total_value_mid": 8886.1358441524,
"total_value_exit_net": 8884.8681280339,
"total_value": 8886.1358441524,
"base_cost_quote": 3178.9386241553,
"unrealized_pnl_exit_net": -1489.9181822737
},
{
"timestamp": "2025-06-07T23:59:00+00:00",
"base_asset_bal": 7649.7600000003,
"quote_asset_bal": 7266.2965091971,
"total_value_mid": 8934.7091651972,
"total_value_exit_net": 8933.4578557052,
"total_value": 8934.7091651972,
"base_cost_quote": 3108.8703913645,
"unrealized_pnl_exit_net": -1441.7090448564
},
{
"timestamp": "2025-06-08T23:59:00+00:00",
"base_asset_bal": 7718.5900000003,
"quote_asset_bal": 7251.5739866981,
"total_value_mid": 8920.3331446982,
"total_value_exit_net": 8919.0815753297,
"total_value": 8920.3331446982,
"base_cost_quote": 3123.884369409,
"unrealized_pnl_exit_net": -1456.3767807774
},
{
"timestamp": "2025-06-09T23:59:00+00:00",
"base_asset_bal": 7222.5700000003,
"quote_asset_bal": 7362.2158953814,
"total_value_mid": 9023.4069953814,
"total_value_exit_net": 9022.1611020564,
"total_value": 9023.4069953814,
"base_cost_quote": 3013.7748841853,
"unrealized_pnl_exit_net": -1353.8296775102
},
{
"timestamp": "2025-06-10T23:59:00+00:00",
"base_asset_bal": 6877.6700000003,
"quote_asset_bal": 7442.9835577024,
"total_value_mid": 9081.2445517024,
"total_value_exit_net": 9080.0158559569,
"total_value": 9081.2445517024,
"base_cost_quote": 2933.6949752648,
"unrealized_pnl_exit_net": -1296.6626770102
},
{
"timestamp": "2025-06-11T23:59:00+00:00",
"base_asset_bal": 7350.8900000003,
"quote_asset_bal": 7333.3278035084,
"total_value_mid": 8996.8342105084,
"total_value_exit_net": 8995.5865807032,
"total_value": 8996.8342105084,
"base_cost_quote": 3043.8021597643,
"unrealized_pnl_exit_net": -1381.5433825694
},
{
"timestamp": "2025-06-12T23:59:00+00:00",
"base_asset_bal": 7874.7200000003,
"quote_asset_bal": 7218.9220812824,
"total_value_mid": 8894.6624972824,
"total_value_exit_net": 8893.4056919704,
"total_value": 8894.6624972824,
"base_cost_quote": 3158.9166869563,
"unrealized_pnl_exit_net": -1484.4330762682
},
{
"timestamp": "2025-06-13T23:59:00+00:00",
"base_asset_bal": 8017.7800000003,
"quote_asset_bal": 7190.2610324359,
"total_value_mid": 8838.7166004359,
"total_value_exit_net": 8837.4802587599,
"total_value": 8838.7166004359,
"base_cost_quote": 3188.9461922063,
"unrealized_pnl_exit_net": -1541.7269658822
},
{
"timestamp": "2025-06-14T23:59:00+00:00",
"base_asset_bal": 8139.2800000003,
"quote_asset_bal": 7165.6048619766,
"total_value_mid": 8830.0876219767,
"total_value_exit_net": 8828.8392599067,
"total_value": 8830.0876219767,
"base_cost_quote": 3213.969290465,
"unrealized_pnl_exit_net": -1550.7348925349
},
{
"timestamp": "2025-06-15T23:59:00+00:00",
"base_asset_bal": 8189.1100000003,
"quote_asset_bal": 7156.4333600269,
"total_value_mid": 8773.7825850269,
"total_value_exit_net": 8772.5695731082,
"total_value": 8773.7825850269,
"base_cost_quote": 3223.9786848848,
"unrealized_pnl_exit_net": -1607.8424718035
},
{
"timestamp": "2025-06-16T23:59:00+00:00",
"base_asset_bal": 8112.0300000003,
"quote_asset_bal": 7172.3084649196,
"total_value_mid": 8842.5754419197,
"total_value_exit_net": 8841.3227416869,
"total_value": 8842.5754419197,
"base_cost_quote": 3208.9619958085,
"unrealized_pnl_exit_net": -1539.9477190412
},
{
"timestamp": "2025-06-17T23:59:00+00:00",
"base_asset_bal": 8746.9400000003,
"quote_asset_bal": 7048.2077828594,
"total_value_mid": 8739.8659788594,
"total_value_exit_net": 8738.5972352124,
"total_value": 8739.8659788594,
"base_cost_quote": 3334.080306215,
"unrealized_pnl_exit_net": -1643.690853862
},
{
"timestamp": "2025-06-18T23:59:00+00:00",
"base_asset_bal": 8488.1800000003,
"quote_asset_bal": 7099.4145761544,
"total_value_mid": 8770.7372181544,
"total_value_exit_net": 8769.4837261729,
"total_value": 8770.7372181544,
"base_cost_quote": 3284.0331960128,
"unrealized_pnl_exit_net": -1613.9640459942
},
{
"timestamp": "2025-06-19T23:59:00+00:00",
"base_asset_bal": 8669.4700000003,
"quote_asset_bal": 7065.2283215864,
"total_value_mid": 8746.2385545864,
"total_value_exit_net": 8744.9777969117,
"total_value": 8746.2385545864,
"base_cost_quote": 3319.067298898,
"unrealized_pnl_exit_net": -1639.3178235727
},
{
"timestamp": "2025-06-20T23:59:00+00:00",
"base_asset_bal": 9094.5600000003,
"quote_asset_bal": 6985.9608767739,
"total_value_mid": 8671.1828447739,
"total_value_exit_net": 8669.9189282979,
"total_value": 8671.1828447739,
"base_cost_quote": 3399.1375035458,
"unrealized_pnl_exit_net": -1715.1794520217
},
{
"timestamp": "2025-06-21T23:59:00+00:00",
"base_asset_bal": 9582.9300000003,
"quote_asset_bal": 6896.6913789669,
"total_value_mid": 8633.1182949669,
"total_value_exit_net": 8631.8159747799,
"total_value": 8633.1182949669,
"base_cost_quote": 3489.2208604295,
"unrealized_pnl_exit_net": -1754.0962646165
},
{
"timestamp": "2025-06-22T23:59:00+00:00",
"base_asset_bal": 10260.6200000003,
"quote_asset_bal": 6778.2041506452,
"total_value_mid": 8556.3695966452,
"total_value_exit_net": 8555.0359725607,
"total_value": 8556.3695966452,
"base_cost_quote": 3609.329468375,
"unrealized_pnl_exit_net": -1832.4976464595
},
{
"timestamp": "2025-06-23T23:59:00+00:00",
"base_asset_bal": 8655.1500000003,
"quote_asset_bal": 7074.7615732902,
"total_value_mid": 8750.3986132902,
"total_value_exit_net": 8749.1418855102,
"total_value": 8750.3986132902,
"base_cost_quote": 3314.0626302095,
"unrealized_pnl_exit_net": -1639.6823179895
},
{
"timestamp": "2025-06-24T23:59:00+00:00",
"base_asset_bal": 8551.0000000003,
"quote_asset_bal": 7095.5408617059,
"total_value_mid": 8774.957261706,
"total_value_exit_net": 8773.697699406,
"total_value": 8774.957261706,
"base_cost_quote": 3294.0438944098,
"unrealized_pnl_exit_net": -1615.8870567097
},
{
"timestamp": "2025-06-25T23:59:00+00:00",
"base_asset_bal": 9124.7200000003,
"quote_asset_bal": 6986.0684671547,
"total_value_mid": 8695.1285231547,
"total_value_exit_net": 8693.8467281127,
"total_value": 8695.1285231547,
"base_cost_quote": 3404.1483768843,
"unrealized_pnl_exit_net": -1696.3701159262
},
{
"timestamp": "2025-06-26T23:59:00+00:00",
"base_asset_bal": 8989.4800000003,
"quote_asset_bal": 7012.4644892824,
"total_value_mid": 8737.5457012825,
"total_value_exit_net": 8736.2518903735,
"total_value": 8737.5457012825,
"base_cost_quote": 3379.123631391,
"unrealized_pnl_exit_net": -1655.3362303
},
{
"timestamp": "2025-06-27T23:59:00+00:00",
"base_asset_bal": 9121.1700000003,
"quote_asset_bal": 6988.2014392074,
"total_value_mid": 8714.8389202075,
"total_value_exit_net": 8713.5439420967,
"total_value": 8714.8389202075,
"base_cost_quote": 3404.148025621,
"unrealized_pnl_exit_net": -1678.8055227317
},
{
"timestamp": "2025-06-28T23:59:00+00:00",
"base_asset_bal": 8833.0500000003,
"quote_asset_bal": 7043.6610852097,
"total_value_mid": 8755.5061752097,
"total_value_exit_net": 8754.2222913922,
"total_value": 8755.5061752097,
"base_cost_quote": 3349.0968011458,
"unrealized_pnl_exit_net": -1638.5355949632
},
{
"timestamp": "2025-06-29T23:59:00+00:00",
"base_asset_bal": 8350.3700000003,
"quote_asset_bal": 7139.4357882084,
"total_value_mid": 8812.0148992085,
"total_value_exit_net": 8810.7604648752,
"total_value": 8812.0148992085,
"base_cost_quote": 3254.0063807788,
"unrealized_pnl_exit_net": -1582.6817041119
},
{
"timestamp": "2025-06-30T23:59:00+00:00",
"base_asset_bal": 8627.9400000003,
"quote_asset_bal": 7085.3109424207,
"total_value_mid": 8767.7592424207,
"total_value_exit_net": 8766.4974061957,
"total_value": 8767.7592424207,
"base_cost_quote": 3309.059798898,
"unrealized_pnl_exit_net": -1627.8733351229
},
{
"timestamp": "2025-07-01T23:59:00+00:00",
"base_asset_bal": 9309.3400000003,
"quote_asset_bal": 6956.1065338795,
"total_value_mid": 8696.0221798795,
"total_value_exit_net": 8694.717243145,
"total_value": 8696.0221798795,
"base_cost_quote": 3439.1787759937,
"unrealized_pnl_exit_net": -1700.5680667282
},
{
"timestamp": "2025-07-02T23:59:00+00:00",
"base_asset_bal": 8277.6100000003,
"quote_asset_bal": 7157.2323303627,
"total_value_mid": 8817.7208963628,
"total_value_exit_net": 8816.4755299383,
"total_value": 8817.7208963628,
"base_cost_quote": 3238.992467783,
"unrealized_pnl_exit_net": -1579.7492682074
},
{
"timestamp": "2025-07-03T23:59:00+00:00",
"base_asset_bal": 8128.2400000003,
"quote_asset_bal": 7188.2767152907,
"total_value_mid": 8891.1429952908,
"total_value_exit_net": 8889.8658455808,
"total_value": 8891.1429952908,
"base_cost_quote": 3208.967714094,
"unrealized_pnl_exit_net": -1507.3785838039
},
{
"timestamp": "2025-07-04T23:59:00+00:00",
"base_asset_bal": 8722.2500000003,
"quote_asset_bal": 7068.8638684295,
"total_value_mid": 8782.7859934295,
"total_value_exit_net": 8781.5005518358,
"total_value": 8782.7859934295,
"base_cost_quote": 3329.080250984,
"unrealized_pnl_exit_net": -1616.4435675777
},
{
"timestamp": "2025-07-05T23:59:00+00:00",
"base_asset_bal": 8622.6100000003,
"quote_asset_bal": 7089.4986829865,
"total_value_mid": 8812.2961609865,
"total_value_exit_net": 8811.004062878,
"total_value": 8812.2961609865,
"base_cost_quote": 3309.0598859633,
"unrealized_pnl_exit_net": -1587.5545060717
},
{
"timestamp": "2025-07-06T23:59:00+00:00",
"base_asset_bal": 8422.4700000003,
"quote_asset_bal": 7129.9548189467,
"total_value_mid": 8832.1360059468,
"total_value_exit_net": 8830.8593700565,
"total_value": 8832.1360059468,
"base_cost_quote": 3269.024679061,
"unrealized_pnl_exit_net": -1568.1201279512
},
{
"timestamp": "2025-07-07T23:59:00+00:00",
"base_asset_bal": 8471.0900000003,
"quote_asset_bal": 7120.4504435655,
"total_value_mid": 8840.0817135655,
"total_value_exit_net": 8838.791990113,
"total_value": 8840.0817135655,
"base_cost_quote": 3279.0342055798,
"unrealized_pnl_exit_net": -1560.6926590322
},
{
"timestamp": "2025-07-08T23:59:00+00:00",
"base_asset_bal": 8324.3900000003,
"quote_asset_bal": 7151.1098503845,
"total_value_mid": 8866.7666293845,
"total_value_exit_net": 8865.4798868003,
"total_value": 8866.7666293845,
"base_cost_quote": 3249.0022785148,
"unrealized_pnl_exit_net": -1534.6322420989
},
{
"timestamp": "2025-07-09T23:59:00+00:00",
"base_asset_bal": 8038.3400000003,
"quote_asset_bal": 7211.7056177262,
"total_value_mid": 8932.7142117263,
"total_value_exit_net": 8931.4234552808,
"total_value": 8932.7142117263,
"base_cost_quote": 3188.943331062,
"unrealized_pnl_exit_net": -1469.2254935074
},
{
"timestamp": "2025-07-10T23:59:00+00:00",
"base_asset_bal": 7323.5100000003,
"quote_asset_bal": 7372.7127479892,
"total_value_mid": 9086.4140879893,
"total_value_exit_net": 9085.1288119843,
"total_value": 9086.4140879893,
"base_cost_quote": 3028.788593028,
"unrealized_pnl_exit_net": -1316.3725290329
},
{
"timestamp": "2025-07-11T23:59:00+00:00",
"base_asset_bal": 7124.1900000003,
"quote_asset_bal": 7424.6384343432,
"total_value_mid": 9091.6988943433,
"total_value_exit_net": 9090.4485989983,
"total_value": 9091.6988943433,
"base_cost_quote": 2978.7333607388,
"unrealized_pnl_exit_net": -1312.9231960837
},
{
"timestamp": "2025-07-12T23:59:00+00:00",
"base_asset_bal": 7187.9800000003,
"quote_asset_bal": 7410.5529092067,
"total_value_mid": 9068.1010972068,
"total_value_exit_net": 9066.8579360658,
"total_value": 9068.1010972068,
"base_cost_quote": 2993.7480873443,
"unrealized_pnl_exit_net": -1337.4430604852
},
{
"timestamp": "2025-07-13T23:59:00+00:00",
"base_asset_bal": 7230.1800000003,
"quote_asset_bal": 7401.5383551302,
"total_value_mid": 9074.6020071303,
"total_value_exit_net": 9073.3472093913,
"total_value": 9074.6020071303,
"base_cost_quote": 3003.7549328538,
"unrealized_pnl_exit_net": -1331.9460785927
},
{
"timestamp": "2025-07-14T23:59:00+00:00",
"base_asset_bal": 6973.7900000003,
"quote_asset_bal": 7462.886315225,
"total_value_mid": 9098.240070225,
"total_value_exit_net": 9097.0135549088,
"total_value": 9098.240070225,
"base_cost_quote": 2943.6993138955,
"unrealized_pnl_exit_net": -1309.5720742117
},
{
"timestamp": "2025-07-15T23:59:00+00:00",
"base_asset_bal": 6621.1700000003,
"quote_asset_bal": 7549.6225414792,
"total_value_mid": 9218.1573814793,
"total_value_exit_net": 9216.9059803493,
"total_value": 9218.1573814793,
"base_cost_quote": 2858.613369262,
"unrealized_pnl_exit_net": -1191.3299303919
},
{
"timestamp": "2025-07-16T23:59:00+00:00",
"base_asset_bal": 6292.8900000003,
"quote_asset_bal": 7636.141397689,
"total_value_mid": 9269.1463526891,
"total_value_exit_net": 9267.9215989728,
"total_value": 9269.1463526891,
"base_cost_quote": 2773.5266890773,
"unrealized_pnl_exit_net": -1141.7464877934
},
{
"timestamp": "2025-07-17T23:59:00+00:00",
"base_asset_bal": 6390.7700000003,
"quote_asset_bal": 7612.4634367,
"total_value_mid": 9245.9442487001,
"total_value_exit_net": 9244.7191380911,
"total_value": 9245.9442487001,
"base_cost_quote": 2798.552965718,
"unrealized_pnl_exit_net": -1166.2972643269
},
{
"timestamp": "2025-07-18T23:59:00+00:00",
"base_asset_bal": 6351.3700000003,
"quote_asset_bal": 7623.9799419198,
"total_value_mid": 9262.6334019198,
"total_value_exit_net": 9261.4044118248,
"total_value": 9262.6334019198,
"base_cost_quote": 2788.541098445,
"unrealized_pnl_exit_net": -1151.1166285399
},
{
"timestamp": "2025-07-19T23:59:00+00:00",
"base_asset_bal": 5770.7000000003,
"quote_asset_bal": 7780.7303473885,
"total_value_mid": 9357.8626573886,
"total_value_exit_net": 9356.6798081561,
"total_value": 9357.8626573886,
"base_cost_quote": 2633.3843691083,
"unrealized_pnl_exit_net": -1057.4349083407
},
{
"timestamp": "2025-07-20T23:59:00+00:00",
"base_asset_bal": 5717.5600000003,
"quote_asset_bal": 7796.8651089245,
"total_value_mid": 9401.7842009246,
"total_value_exit_net": 9400.5805116056,
"total_value": 9401.7842009246,
"base_cost_quote": 2618.3591386308,
"unrealized_pnl_exit_net": -1014.6437359497
},
{
"timestamp": "2025-07-21T23:59:00+00:00",
"base_asset_bal": 5788.9200000003,
"quote_asset_bal": 7777.9524800538,
"total_value_mid": 9395.3767280539,
"total_value_exit_net": 9394.1636598679,
"total_value": 9395.3767280539,
"base_cost_quote": 2638.3898644163,
"unrealized_pnl_exit_net": -1022.1786846022
},
{
"timestamp": "2025-07-22T23:59:00+00:00",
"base_asset_bal": 5878.5000000003,
"quote_asset_bal": 7754.2454561345,
"total_value_mid": 9377.2993061346,
"total_value_exit_net": 9376.0820157471,
"total_value": 9377.2993061346,
"base_cost_quote": 2663.4154915703,
"unrealized_pnl_exit_net": -1041.5789319577
},
{
"timestamp": "2025-07-23T23:59:00+00:00",
"base_asset_bal": 6663.5800000004,
"quote_asset_bal": 7550.0725845337,
"total_value_mid": 9235.2919665338,
"total_value_exit_net": 9234.0280519973,
"total_value": 9235.2919665338,
"base_cost_quote": 2868.631557272,
"unrealized_pnl_exit_net": -1184.6760898084
},
{
"timestamp": "2025-07-24T23:59:00+00:00",
"base_asset_bal": 6862.1000000004,
"quote_asset_bal": 7501.3758720933,
"total_value_mid": 9198.3732020933,
"total_value_exit_net": 9197.1004540958,
"total_value": 9198.3732020933,
"base_cost_quote": 2918.6799164103,
"unrealized_pnl_exit_net": -1222.9553344077
},
{
"timestamp": "2025-07-25T23:59:00+00:00",
"base_asset_bal": 6563.1800000004,
"quote_asset_bal": 7577.7892161425,
"total_value_mid": 9250.7437981426,
"total_value_exit_net": 9249.4890822061,
"total_value": 9250.7437981426,
"base_cost_quote": 2843.6055668458,
"unrealized_pnl_exit_net": -1171.9057007822
},
{
"timestamp": "2025-07-26T23:59:00+00:00",
"base_asset_bal": 6662.2400000004,
"quote_asset_bal": 7553.133946217,
"total_value_mid": 9226.6886342171,
"total_value_exit_net": 9225.4334682011,
"total_value": 9226.6886342171,
"base_cost_quote": 2868.6313781378,
"unrealized_pnl_exit_net": -1196.3318561537
},
{
"timestamp": "2025-07-27T23:59:00+00:00",
"base_asset_bal": 6234.2200000004,
"quote_asset_bal": 7663.9046991558,
"total_value_mid": 9303.5045591559,
"total_value_exit_net": 9302.2748592609,
"total_value": 9303.5045591559,
"base_cost_quote": 2758.5159554643,
"unrealized_pnl_exit_net": -1120.1457953592
},
{
"timestamp": "2025-07-28T23:59:00+00:00",
"base_asset_bal": 7049.0800000004,
"quote_asset_bal": 7459.6737283155,
"total_value_mid": 9167.6658123156,
"total_value_exit_net": 9166.3848182526,
"total_value": 9167.6658123156,
"base_cost_quote": 2963.711345671,
"unrealized_pnl_exit_net": -1257.0002557339
},
{
"timestamp": "2025-07-29T23:59:00+00:00",
"base_asset_bal": 7172.8300000004,
"quote_asset_bal": 7430.6431011678,
"total_value_mid": 9142.0803391679,
"total_value_exit_net": 9140.7967612394,
"total_value": 9142.0803391679,
"base_cost_quote": 2993.7443765633,
"unrealized_pnl_exit_net": -1283.5907164917
},
{
"timestamp": "2025-07-30T23:59:00+00:00",
"base_asset_bal": 7256.8100000004,
"quote_asset_bal": 7411.5702369738,
"total_value_mid": 9122.0003539738,
"total_value_exit_net": 9120.7175313861,
"total_value": 9122.0003539738,
"base_cost_quote": 3013.7640340538,
"unrealized_pnl_exit_net": -1304.6167396414
},
{
"timestamp": "2025-07-31T23:59:00+00:00",
"base_asset_bal": 8299.6100000004,
"quote_asset_bal": 7176.8837058113,
"total_value_mid": 8958.8099728113,
"total_value_exit_net": 8957.4735281111,
"total_value": 8958.8099728113,
"base_cost_quote": 3248.9996445407,
"unrealized_pnl_exit_net": -1468.4098222409
},
{
"timestamp": "2025-08-01T23:59:00+00:00",
"base_asset_bal": 8415.6000000004,
"quote_asset_bal": 7153.2930825298,
"total_value_mid": 8934.0340425298,
"total_value_exit_net": 8932.6984868098,
"total_value": 8934.0340425298,
"base_cost_quote": 3274.0254678418,
"unrealized_pnl_exit_net": -1494.6200635617
},
{
"timestamp": "2025-08-02T23:59:00+00:00",
"base_asset_bal": 8749.2800000004,
"quote_asset_bal": 7084.0100167578,
"total_value_mid": 8885.4867687578,
"total_value_exit_net": 8884.1356611938,
"total_value": 8885.4867687578,
"base_cost_quote": 3344.0944682078,
"unrealized_pnl_exit_net": -1543.9688237717
},
{
"timestamp": "2025-08-03T23:59:00+00:00",
"base_asset_bal": 8299.7300000004,
"quote_asset_bal": 7179.525780992,
"total_value_mid": 8970.6075149921,
"total_value_exit_net": 8969.2642036916,
"total_value": 8970.6075149921,
"base_cost_quote": 3249.000264005,
"unrealized_pnl_exit_net": -1459.2618413054
},
{
"timestamp": "2025-08-04T23:59:00+00:00",
"base_asset_bal": 7822.4200000004,
"quote_asset_bal": 7285.1664026145,
"total_value_mid": 9048.3398706146,
"total_value_exit_net": 9047.0174905136,
"total_value": 9048.3398706146,
"base_cost_quote": 3143.894129482,
"unrealized_pnl_exit_net": -1382.0430415829
},
{
"timestamp": "2025-08-05T23:59:00+00:00",
"base_asset_bal": 8326.8600000004,
"quote_asset_bal": 7175.7308482765,
"total_value_mid": 8957.6788882766,
"total_value_exit_net": 8956.3424272466,
"total_value": 8957.6788882766,
"base_cost_quote": 3254.005799343,
"unrealized_pnl_exit_net": -1473.3942203729
},
{
"timestamp": "2025-08-06T23:59:00+00:00",
"base_asset_bal": 8256.0800000004,
"quote_asset_bal": 7191.5266287315,
"total_value_mid": 8972.3630847316,
"total_value_exit_net": 8971.0274573896,
"total_value": 8972.3630847316,
"base_cost_quote": 3238.990878592,
"unrealized_pnl_exit_net": -1459.4900499339
},
{
"timestamp": "2025-08-07T23:59:00+00:00",
"base_asset_bal": 7913.5400000004,
"quote_asset_bal": 7267.1416925675,
"total_value_mid": 9041.3573605676,
"total_value_exit_net": 9040.0266988166,
"total_value": 9041.3573605676,
"base_cost_quote": 3163.9172255495,
"unrealized_pnl_exit_net": -1391.0322193004
},
{
"timestamp": "2025-08-08T23:59:00+00:00",
"base_asset_bal": 7670.8000000004,
"quote_asset_bal": 7322.9507490475,
"total_value_mid": 9074.1943890476,
"total_value_exit_net": 9072.8809563176,
"total_value": 9074.1943890476,
"base_cost_quote": 3108.8606480625,
"unrealized_pnl_exit_net": -1358.9304407924
},
{
"timestamp": "2025-08-09T23:59:00+00:00",
"base_asset_bal": 7325.4700000004,
"quote_asset_bal": 7403.4947099168,
"total_value_mid": 9135.9683649169,
"total_value_exit_net": 9134.6690096756,
"total_value": 9135.9683649169,
"base_cost_quote": 3028.7829798213,
"unrealized_pnl_exit_net": -1297.6086800624
},
{
"timestamp": "2025-08-10T23:59:00+00:00",
"base_asset_bal": 7410.6700000004,
"quote_asset_bal": 7384.1126346251,
"total_value_mid": 9122.6558166251,
"total_value_exit_net": 9121.3519092386,
"total_value": 9122.6558166251,
"base_cost_quote": 3048.799465935,
"unrealized_pnl_exit_net": -1311.5601913214
},
{
"timestamp": "2025-08-11T23:59:00+00:00",
"base_asset_bal": 8214.9300000004,
"quote_asset_bal": 7204.591314101,
"total_value_mid": 8969.9797711011,
"total_value_exit_net": 8968.6557297584,
"total_value": 8969.9797711011,
"base_cost_quote": 3228.9777553778,
"unrealized_pnl_exit_net": -1464.9133397204
},
{
"timestamp": "2025-08-12T23:59:00+00:00",
"base_asset_bal": 7696.0900000004,
"quote_asset_bal": 7320.6460467578,
"total_value_mid": 9077.6633937579,
"total_value_exit_net": 9076.3456307476,
"total_value": 9077.6633937579,
"base_cost_quote": 3113.867718551,
"unrealized_pnl_exit_net": -1358.1681345612
},
{
"timestamp": "2025-08-13T23:59:00+00:00",
"base_asset_bal": 7311.6800000004,
"quote_asset_bal": 7411.5200644661,
"total_value_mid": 9161.9362564661,
"total_value_exit_net": 9160.6234443221,
"total_value": 9161.9362564661,
"base_cost_quote": 3023.7744042048,
"unrealized_pnl_exit_net": -1274.6710243487
},
{
"timestamp": "2025-08-14T23:59:00+00:00",
"base_asset_bal": 7947.5400000004,
"quote_asset_bal": 7267.3013635678,
"total_value_mid": 8979.9962335679,
"total_value_exit_net": 8978.7117124154,
"total_value": 8979.9962335679,
"base_cost_quote": 3168.922502694,
"unrealized_pnl_exit_net": -1457.5121538464
},
{
"timestamp": "2025-08-15T23:59:00+00:00",
"base_asset_bal": 8422.7400000004,
"quote_asset_bal": 7168.0322922558,
"total_value_mid": 8883.7444302559,
"total_value_exit_net": 8882.4576461524,
"total_value": 8883.7444302559,
"base_cost_quote": 3269.025075358,
"unrealized_pnl_exit_net": -1554.5997214614
},
{
"timestamp": "2025-08-16T23:59:00+00:00",
"base_asset_bal": 7803.0900000004,
"quote_asset_bal": 7298.9983699961,
"total_value_mid": 8997.7310629962,
"total_value_exit_net": 8996.4570134764,
"total_value": 8997.7310629962,
"base_cost_quote": 3138.8944135053,
"unrealized_pnl_exit_net": -1441.4357700249
},
{
"timestamp": "2025-08-17T23:59:00+00:00",
"base_asset_bal": 7805.4100000004,
"quote_asset_bal": 7299.4637230688,
"total_value_mid": 8976.8463320689,
"total_value_exit_net": 8975.5882951122,
"total_value": 8976.8463320689,
"base_cost_quote": 3138.893489813,
"unrealized_pnl_exit_net": -1462.7689177697
},
{
"timestamp": "2025-08-18T23:59:00+00:00",
"base_asset_bal": 8161.3900000004,
"quote_asset_bal": 7225.1688113846,
"total_value_mid": 8910.4958463847,
"total_value_exit_net": 8909.2318511084,
"total_value": 8910.4958463847,
"base_cost_quote": 3213.9606850158,
"unrealized_pnl_exit_net": -1529.8976452919
},
{
"timestamp": "2025-08-19T23:59:00+00:00",
"base_asset_bal": 8605.7000000004,
"quote_asset_bal": 7135.8504581381,
"total_value_mid": 8842.3607681382,
"total_value_exit_net": 8841.0808854057,
"total_value": 8842.3607681382,
"base_cost_quote": 3304.0504376927,
"unrealized_pnl_exit_net": -1598.8200104252
},
{
"timestamp": "2025-08-20T23:59:00+00:00",
"base_asset_bal": 8160.1800000004,
"quote_asset_bal": 7226.6875715578,
"total_value_mid": 8924.8210295579,
"total_value_exit_net": 8923.5474294644,
"total_value": 8924.8210295579,
"base_cost_quote": 3213.9646649985,
"unrealized_pnl_exit_net": -1517.1048070919
},
{
"timestamp": "2025-08-21T23:59:00+00:00",
"base_asset_bal": 8354.1700000004,
"quote_asset_bal": 7187.1178270551,
"total_value_mid": 8872.1539160552,
"total_value_exit_net": 8870.8901389884,
"total_value": 8872.1539160552,
"base_cost_quote": 3253.9996797568,
"unrealized_pnl_exit_net": -1570.2273678234
},
{
"timestamp": "2025-08-22T23:59:00+00:00",
"base_asset_bal": 7626.1600000004,
"quote_asset_bal": 7343.2115219886,
"total_value_mid": 9061.3853699887,
"total_value_exit_net": 9060.0967396027,
"total_value": 9061.3853699887,
"base_cost_quote": 3098.8525065818,
"unrealized_pnl_exit_net": -1381.9672889677
},
{
"timestamp": "2025-08-23T23:59:00+00:00",
"base_asset_bal": 7670.5500000004,
"quote_asset_bal": 7333.6166955676,
"total_value_mid": 9041.8481805677,
"total_value_exit_net": 9040.5670069539,
"total_value": 9041.8481805677,
"base_cost_quote": 3108.8642197393,
"unrealized_pnl_exit_net": -1401.9139083529
},
{
"timestamp": "2025-08-24T23:59:00+00:00",
"base_asset_bal": 7947.1900000004,
"quote_asset_bal": 7274.1675617386,
"total_value_mid": 8978.8398167387,
"total_value_exit_net": 8977.5613125474,
"total_value": 8978.8398167387,
"base_cost_quote": 3168.9230961387,
"unrealized_pnl_exit_net": -1465.5293453299
},
{
"timestamp": "2025-08-25T23:59:00+00:00",
"base_asset_bal": 8792.6300000004,
"quote_asset_bal": 7099.8844241066,
"total_value_mid": 8824.9984301067,
"total_value_exit_net": 8823.7045946022,
"total_value": 8824.9984301067,
"base_cost_quote": 3344.0911297058,
"unrealized_pnl_exit_net": -1620.2709592102
},
{
"timestamp": "2025-08-26T23:59:00+00:00",
"base_asset_bal": 8344.5800000004,
"quote_asset_bal": 7190.7688254116,
"total_value_mid": 8902.2421834117,
"total_value_exit_net": 8900.9585783932,
"total_value": 8902.2421834117,
"base_cost_quote": 3254.004510377,
"unrealized_pnl_exit_net": -1543.8147573954
},
{
"timestamp": "2025-08-27T23:59:00+00:00",
"base_asset_bal": 8128.4600000004,
"quote_asset_bal": 7236.4909146296,
"total_value_mid": 8949.1574366297,
"total_value_exit_net": 8947.8729367382,
"total_value": 8949.1574366297,
"base_cost_quote": 3208.9622880275,
"unrealized_pnl_exit_net": -1497.5802659189
},
{
"timestamp": "2025-08-28T23:59:00+00:00",
"base_asset_bal": 7894.4600000004,
"quote_asset_bal": 7287.1275815471,
"total_value_mid": 8988.3837115472,
"total_value_exit_net": 8987.1077694497,
"total_value": 8988.3837115472,
"base_cost_quote": 3158.9120905115,
"unrealized_pnl_exit_net": -1458.9319026089
},
{
"timestamp": "2025-08-29T23:59:00+00:00",
"base_asset_bal": 8347.3800000004,
"quote_asset_bal": 7192.7286110301,
"total_value_mid": 8892.2551790302,
"total_value_exit_net": 8890.9805341042,
"total_value": 8892.2551790302,
"base_cost_quote": 3254.0023557622,
"unrealized_pnl_exit_net": -1555.7504326882
},
{
"timestamp": "2025-08-30T23:59:00+00:00",
"base_asset_bal": 8176.2400000004,
"quote_asset_bal": 7228.2504739701,
"total_value_mid": 8922.3674019702,
"total_value_exit_net": 8921.0968142742,
"total_value": 8922.3674019702,
"base_cost_quote": 3218.9691545527,
"unrealized_pnl_exit_net": -1526.1228142487
},
{
"timestamp": "2025-08-31T23:59:00+00:00",
"base_asset_bal": 8471.8500000004,
"quote_asset_bal": 7168.4247975119,
"total_value_mid": 8856.864502512,
"total_value_exit_net": 8855.5981727332,
"total_value": 8856.864502512,
"base_cost_quote": 3279.0264607755,
"unrealized_pnl_exit_net": -1591.8530855542
},
{
"timestamp": "2025-09-01T23:59:00+00:00",
"base_asset_bal": 8422.6600000004,
"quote_asset_bal": 7179.2622886391,
"total_value_mid": 8848.6335006392,
"total_value_exit_net": 8847.3814722302,
"total_value": 8848.6335006392,
"base_cost_quote": 3269.0123868487,
"unrealized_pnl_exit_net": -1600.8932032577
},
{
"timestamp": "2025-09-02T23:59:00+00:00",
"base_asset_bal": 8496.2400000004,
"quote_asset_bal": 7164.8161963427,
"total_value_mid": 8864.9138203427,
"total_value_exit_net": 8863.6387471247,
"total_value": 8864.9138203427,
"base_cost_quote": 3284.0275237617,
"unrealized_pnl_exit_net": -1585.2049729797
},
{
"timestamp": "2025-09-03T23:59:00+00:00",
"base_asset_bal": 8346.2100000004,
"quote_asset_bal": 7195.2931873899,
"total_value_mid": 8887.06995439,
"total_value_exit_net": 8885.8011218147,
"total_value": 8887.06995439,
"base_cost_quote": 3253.999362519,
"unrealized_pnl_exit_net": -1563.4914280942
},
{
"timestamp": "2025-09-04T23:59:00+00:00",
"base_asset_bal": 9082.1800000004,
"quote_asset_bal": 7050.5706957212,
"total_value_mid": 8806.1560897212,
"total_value_exit_net": 8804.8394006757,
"total_value": 8806.1560897212,
"base_cost_quote": 3399.1381460272,
"unrealized_pnl_exit_net": -1644.8694410727
},
{
"timestamp": "2025-09-05T23:59:00+00:00",
"base_asset_bal": 8672.6500000004,
"quote_asset_bal": 7131.2804535052,
"total_value_mid": 8848.4651535052,
"total_value_exit_net": 8847.1772649802,
"total_value": 8848.4651535052,
"base_cost_quote": 3319.0661710527,
"unrealized_pnl_exit_net": -1603.1693595777
},
{
"timestamp": "2025-09-06T23:59:00+00:00",
"base_asset_bal": 8748.6700000004,
"quote_asset_bal": 7116.6094882494,
"total_value_mid": 8841.8472122495,
"total_value_exit_net": 8840.5532839565,
"total_value": 8841.8472122495,
"base_cost_quote": 3334.079493606,
"unrealized_pnl_exit_net": -1610.1356978989
},
{
"timestamp": "2025-09-07T23:59:00+00:00",
"base_asset_bal": 8824.0000000004,
"quote_asset_bal": 7101.9861551952,
"total_value_mid": 8840.3141551952,
"total_value_exit_net": 8839.0104091952,
"total_value": 8840.3141551952,
"base_cost_quote": 3349.092993292,
"unrealized_pnl_exit_net": -1612.0687392919
},
{
"timestamp": "2025-09-08T23:59:00+00:00",
"base_asset_bal": 8375.0600000004,
"quote_asset_bal": 7192.7959154109,
"total_value_mid": 8909.683215411,
"total_value_exit_net": 8908.395549936,
"total_value": 8909.683215411,
"base_cost_quote": 3259.0049839215,
"unrealized_pnl_exit_net": -1543.4053493964
},
{
"timestamp": "2025-09-09T23:59:00+00:00",
"base_asset_bal": 7560.1200000004,
"quote_asset_bal": 7369.5910124372,
"total_value_mid": 9108.4186124373,
"total_value_exit_net": 9107.1144917373,
"total_value": 9108.4186124373,
"base_cost_quote": 3083.8334147048,
"unrealized_pnl_exit_net": -1346.3099354047
},
{
"timestamp": "2025-09-10T23:59:00+00:00",
"base_asset_bal": 7878.6000000004,
"quote_asset_bal": 7300.5554269157,
"total_value_mid": 9017.3023669158,
"total_value_exit_net": 9016.0148067108,
"total_value": 9017.3023669158,
"base_cost_quote": 3153.9093102383,
"unrealized_pnl_exit_net": -1438.4499304432
},
{
"timestamp": "2025-09-11T23:59:00+00:00",
"base_asset_bal": 7809.9700000004,
"quote_asset_bal": 7316.1006047844,
"total_value_mid": 9028.8270257845,
"total_value_exit_net": 9027.5424809688,
"total_value": 9028.8270257845,
"base_cost_quote": 3138.8930194605,
"unrealized_pnl_exit_net": -1427.4511432762
},
{
"timestamp": "2025-09-12T23:59:00+00:00",
"base_asset_bal": 7628.3900000004,
"quote_asset_bal": 7356.4792560542,
"total_value_mid": 9063.7129380543,
"total_value_exit_net": 9062.4325127928,
"total_value": 9063.7129380543,
"base_cost_quote": 3098.8555448588,
"unrealized_pnl_exit_net": -1392.9022881202
},
{
"timestamp": "2025-09-13T23:59:00+00:00",
"base_asset_bal": 7627.6000000004,
"quote_asset_bal": 7356.8119607657,
"total_value_mid": 9079.8868007658,
"total_value_exit_net": 9078.5944946358,
"total_value": 9079.8868007658,
"base_cost_quote": 3098.8533832388,
"unrealized_pnl_exit_net": -1377.0708493687
},
{
"timestamp": "2025-09-14T23:59:00+00:00",
"base_asset_bal": 7993.4100000004,
"quote_asset_bal": 7277.0930646104,
"total_value_mid": 8982.0874176105,
"total_value_exit_net": 8980.8086718458,
"total_value": 8982.0874176105,
"base_cost_quote": 3178.936739743,
"unrealized_pnl_exit_net": -1475.2211325077
},
{
"timestamp": "2025-09-15T23:59:00+00:00",
"base_asset_bal": 8279.1900000004,
"quote_asset_bal": 7217.5156776972,
"total_value_mid": 8923.8567366973,
"total_value_exit_net": 8922.576980903,
"total_value": 8923.8567366973,
"base_cost_quote": 3238.9917262273,
"unrealized_pnl_exit_net": -1533.9304230214
},
{
"timestamp": "2025-09-16T23:59:00+00:00",
"base_asset_bal": 8156.0100000004,
"quote_asset_bal": 7242.9417861934,
"total_value_mid": 8939.3918661935,
"total_value_exit_net": 8938.1195286335,
"total_value": 8939.3918661935,
"base_cost_quote": 3213.9701851355,
"unrealized_pnl_exit_net": -1518.7924426954
},
{
"timestamp": "2025-09-17T23:59:00+00:00",
"base_asset_bal": 8110.1600000004,
"quote_asset_bal": 7253.5178459124,
"total_value_mid": 8962.3285579125,
"total_value_exit_net": 8961.0469498785,
"total_value": 8962.3285579125,
"base_cost_quote": 3203.957811483,
"unrealized_pnl_exit_net": -1496.4287075169
},
{
"timestamp": "2025-09-18T23:59:00+00:00",
"base_asset_bal": 8038.1600000004,
"quote_asset_bal": 7268.9175407627,
"total_value_mid": 8968.9883807628,
"total_value_exit_net": 8967.7133276328,
"total_value": 8968.9883807628,
"base_cost_quote": 3188.9408482013,
"unrealized_pnl_exit_net": -1490.1450613312
},
{
"timestamp": "2025-09-19T23:59:00+00:00",
"base_asset_bal": 8500.8600000004,
"quote_asset_bal": 7174.2284583054,
"total_value_mid": 8874.4004583055,
"total_value_exit_net": 8873.1253293055,
"total_value": 8874.4004583055,
"base_cost_quote": 3284.038635089,
"unrealized_pnl_exit_net": -1585.1417640889
},
{
"timestamp": "2025-09-20T23:59:00+00:00",
"base_asset_bal": 8425.7400000004,
"quote_asset_bal": 7189.5261937902,
"total_value_mid": 8881.4147857903,
"total_value_exit_net": 8880.1458693463,
"total_value": 8881.4147857903,
"base_cost_quote": 3269.0227876435,
"unrealized_pnl_exit_net": -1578.4031120874
},
{
"timestamp": "2025-09-21T23:59:00+00:00",
"base_asset_bal": 8602.7200000004,
"quote_asset_bal": 7154.9323724232,
"total_value_mid": 8854.8298444233,
"total_value_exit_net": 8853.5549213193,
"total_value": 8854.8298444233,
"base_cost_quote": 3304.0561639843,
"unrealized_pnl_exit_net": -1605.4336150882
},
{
"timestamp": "2025-09-22T23:59:00+00:00",
"base_asset_bal": 8886.0000000004,
"quote_asset_bal": 7100.845607411,
"total_value_mid": 8734.092407411,
"total_value_exit_net": 8732.867472311,
"total_value": 8734.092407411,
"base_cost_quote": 3359.1084012185,
"unrealized_pnl_exit_net": -1727.0865363184
},
{
"timestamp": "2025-09-23T23:59:00+00:00",
"base_asset_bal": 9181.2400000004,
"quote_asset_bal": 7046.4676993477,
"total_value_mid": 8741.3246033478,
"total_value_exit_net": 8740.0534606698,
"total_value": 8741.3246033478,
"base_cost_quote": 3414.1608796335,
"unrealized_pnl_exit_net": -1720.5751183114
},
{
"timestamp": "2025-09-24T23:59:00+00:00",
"base_asset_bal": 9206.5000000004,
"quote_asset_bal": 7041.9887501959,
"total_value_mid": 8759.001000196,
"total_value_exit_net": 8757.7132410085,
"total_value": 8759.001000196,
"base_cost_quote": 3419.1623509258,
"unrealized_pnl_exit_net": -1703.4378601132
},
{
"timestamp": "2025-09-25T23:59:00+00:00",
"base_asset_bal": 9926.1700000004,
"quote_asset_bal": 6912.8620448747,
"total_value_mid": 8662.8458158748,
"total_value_exit_net": 8661.5333280465,
"total_value": 8662.8458158748,
"base_cost_quote": 3549.283976006,
"unrealized_pnl_exit_net": -1800.6126928342
},
{
"timestamp": "2025-09-26T23:59:00+00:00",
"base_asset_bal": 9367.3800000004,
"quote_asset_bal": 7013.7823407907,
"total_value_mid": 8737.3802607908,
"total_value_exit_net": 8736.0875623508,
"total_value": 8737.3802607908,
"base_cost_quote": 3449.1909314828,
"unrealized_pnl_exit_net": -1726.8857099227
},
{
"timestamp": "2025-09-27T23:59:00+00:00",
"base_asset_bal": 9097.4200000004,
"quote_asset_bal": 7064.2713302312,
"total_value_mid": 8757.3011922313,
"total_value_exit_net": 8756.0314198348,
"total_value": 8757.3011922313,
"base_cost_quote": 3399.143975396,
"unrealized_pnl_exit_net": -1707.3838857924
},
{
"timestamp": "2025-09-28T23:59:00+00:00",
"base_asset_bal": 8884.0300000004,
"quote_asset_bal": 7104.7326353127,
"total_value_mid": 8784.7027083128,
"total_value_exit_net": 8783.442730758,
"total_value": 8784.7027083128,
"base_cost_quote": 3359.1102576098,
"unrealized_pnl_exit_net": -1680.4001621644
},
{
"timestamp": "2025-09-29T23:59:00+00:00",
"base_asset_bal": 8910.7200000004,
"quote_asset_bal": 7100.2820000347,
"total_value_mid": 8775.4973600348,
"total_value_exit_net": 8774.2409485148,
"total_value": 8775.4973600348,
"base_cost_quote": 3364.1120481413,
"unrealized_pnl_exit_net": -1690.1530996612
},
{
"timestamp": "2025-09-30T23:59:00+00:00",
"base_asset_bal": 9044.6300000004,
"quote_asset_bal": 7075.8731940072,
"total_value_mid": 8769.0279300073,
"total_value_exit_net": 8767.7580639553,
"total_value": 8769.0279300073,
"base_cost_quote": 3389.1358779483,
"unrealized_pnl_exit_net": -1697.2510080002
},
{
"timestamp": "2025-10-01T23:59:00+00:00",
"base_asset_bal": 8779.9600000004,
"quote_asset_bal": 7126.4745768237,
"total_value_mid": 8843.8347528238,
"total_value_exit_net": 8842.5467326917,
"total_value": 8843.8347528238,
"base_cost_quote": 3339.090517057,
"unrealized_pnl_exit_net": -1623.0183611889
},
{
"timestamp": "2025-10-02T23:59:00+00:00",
"base_asset_bal": 8703.4200000004,
"quote_asset_bal": 7142.0568451574,
"total_value_mid": 8856.6305851575,
"total_value_exit_net": 8855.3446548525,
"total_value": 8856.6305851575,
"base_cost_quote": 3324.0764139188,
"unrealized_pnl_exit_net": -1610.7886042237
},
{
"timestamp": "2025-10-03T23:59:00+00:00",
"base_asset_bal": 8575.8900000004,
"quote_asset_bal": 7167.5956367687,
"total_value_mid": 8872.4825687688,
"total_value_exit_net": 8871.2039035698,
"total_value": 8872.4825687688,
"base_cost_quote": 3299.0497399803,
"unrealized_pnl_exit_net": -1595.4414731792
},
{
"timestamp": "2025-10-04T23:59:00+00:00",
"base_asset_bal": 9008.4500000004,
"quote_asset_bal": 7082.7735533102,
"total_value_mid": 8829.5120083103,
"total_value_exit_net": 8828.201954469,
"total_value": 8829.5120083103,
"base_cost_quote": 3384.131440433,
"unrealized_pnl_exit_net": -1638.7030392742
},
{
"timestamp": "2025-10-05T23:59:00+00:00",
"base_asset_bal": 9268.8900000004,
"quote_asset_bal": 7033.1313123262,
"total_value_mid": 8801.6355243263,
"total_value_exit_net": 8800.3091461673,
"total_value": 8801.6355243263,
"base_cost_quote": 3434.1769174113,
"unrealized_pnl_exit_net": -1666.9990835702
},
{
"timestamp": "2025-10-06T23:59:00+00:00",
"base_asset_bal": 8550.8600000004,
"quote_asset_bal": 7173.8811130745,
"total_value_mid": 8870.3717370745,
"total_value_exit_net": 8869.0993691065,
"total_value": 8870.3717370745,
"base_cost_quote": 3294.0486029385,
"unrealized_pnl_exit_net": -1598.8303469064
},
{
"timestamp": "2025-10-07T23:59:00+00:00",
"base_asset_bal": 9333.1200000004,
"quote_asset_bal": 7024.2876870802,
"total_value_mid": 8736.9152070803,
"total_value_exit_net": 8735.6307364403,
"total_value": 8736.9152070803,
"base_cost_quote": 3444.1910123538,
"unrealized_pnl_exit_net": -1732.8479629937
},
{
"timestamp": "2025-10-08T23:59:00+00:00",
"base_asset_bal": 9170.1100000004,
"quote_asset_bal": 7054.8035795037,
"total_value_mid": 8785.2033365038,
"total_value_exit_net": 8783.905536686,
"total_value": 8785.2033365038,
"base_cost_quote": 3414.1630452565,
"unrealized_pnl_exit_net": -1685.0610880742
},
{
"timestamp": "2025-10-09T23:59:00+00:00",
"base_asset_bal": 9382.3800000004,
"quote_asset_bal": 7015.4013468554,
"total_value_mid": 8753.9563608555,
"total_value_exit_net": 8752.652444595,
"total_value": 8753.9563608555,
"base_cost_quote": 3454.1988536095,
"unrealized_pnl_exit_net": -1716.9477558699
},
{
"timestamp": "2025-10-10T23:59:00+00:00",
"base_asset_bal": 10421.8600000004,
"quote_asset_bal": 6841.5162001619,
"total_value_mid": 8211.990790162,
"total_value_exit_net": 8210.9629342195,
"total_value": 8211.990790162,
"base_cost_quote": 3629.363186403,
"unrealized_pnl_exit_net": -2259.9164523455
},
{
"timestamp": "2025-10-11T23:59:00+00:00",
"base_asset_bal": 11507.5500000004,
"quote_asset_bal": 6703.7999685474,
"total_value_mid": 8128.4346585475,
"total_value_exit_net": 8127.36618253,
"total_value": 8128.4346585475,
"base_cost_quote": 3769.489582438,
"unrealized_pnl_exit_net": -2345.9233684555
},
{
"timestamp": "2025-10-12T23:59:00+00:00",
"base_asset_bal": 10707.0600000004,
"quote_asset_bal": 6805.4236217489,
"total_value_mid": 8294.775667749,
"total_value_exit_net": 8293.6586537145,
"total_value": 8294.775667749,
"base_cost_quote": 3669.4015556753,
"unrealized_pnl_exit_net": -2181.1665237097
},
{
"timestamp": "2025-10-13T23:59:00+00:00",
"base_asset_bal": 10623.0900000004,
"quote_asset_bal": 6816.9885051812,
"total_value_mid": 8377.5204261812,
"total_value_exit_net": 8376.3500272405,
"total_value": 8377.5204261812,
"base_cost_quote": 3659.3907121695,
"unrealized_pnl_exit_net": -2100.0291901102
},
{
"timestamp": "2025-10-14T23:59:00+00:00",
"base_asset_bal": 10932.0200000004,
"quote_asset_bal": 6773.8016181512,
"total_value_mid": 8305.3776201512,
"total_value_exit_net": 8304.2289381497,
"total_value": 8305.3776201512,
"base_cost_quote": 3704.431685583,
"unrealized_pnl_exit_net": -2174.0043655844
},
{
"timestamp": "2025-10-15T23:59:00+00:00",
"base_asset_bal": 11917.1100000004,
"quote_asset_bal": 6639.6492275909,
"total_value_mid": 8222.2414355909,
"total_value_exit_net": 8221.0544914349,
"total_value": 8222.2414355909,
"base_cost_quote": 3839.5519088023,
"unrealized_pnl_exit_net": -2258.1466449582
},
{
"timestamp": "2025-10-16T23:59:00+00:00",
"base_asset_bal": 12537.0500000004,
"quote_asset_bal": 6560.8777487859,
"total_value_mid": 8148.0682787859,
"total_value_exit_net": 8146.8778858884,
"total_value": 8148.0682787859,
"base_cost_quote": 3919.6244602088,
"unrealized_pnl_exit_net": -2333.6243231062
},
{
"timestamp": "2025-10-17T23:59:00+00:00",
"base_asset_bal": 13021.0400000004,
"quote_asset_bal": 6502.2071943699,
"total_value_mid": 8101.1909063699,
"total_value_exit_net": 8099.9916685859,
"total_value": 8101.1909063699,
"base_cost_quote": 3979.6796798678,
"unrealized_pnl_exit_net": -2381.8952056517
},
{
"timestamp": "2025-10-18T23:59:00+00:00",
"base_asset_bal": 12820.8800000004,
"quote_asset_bal": 6527.8976354774,
"total_value_mid": 8106.1479634774,
"total_value_exit_net": 8104.9642757314,
"total_value": 8106.1479634774,
"base_cost_quote": 3954.6575433298,
"unrealized_pnl_exit_net": -2377.5909030757
},
{
"timestamp": "2025-10-19T23:59:00+00:00",
"base_asset_bal": 12460.0100000004,
"quote_asset_bal": 6573.4788021901,
"total_value_mid": 8162.1300771902,
"total_value_exit_net": 8160.9385887339,
"total_value": 8162.1300771902,
"base_cost_quote": 3909.6159204295,
"unrealized_pnl_exit_net": -2322.1561338857
},
{
"timestamp": "2025-10-20T23:59:00+00:00",
"base_asset_bal": 12382.5400000005,
"quote_asset_bal": 6584.1612634798,
"total_value_mid": 8177.7941614799,
"total_value_exit_net": 8176.5989368064,
"total_value": 8177.7941614799,
"base_cost_quote": 3899.6076688663,
"unrealized_pnl_exit_net": -2307.1699955397
},
{
"timestamp": "2025-10-21T23:59:00+00:00",
"base_asset_bal": 13026.1700000005,
"quote_asset_bal": 6504.9335429933,
"total_value_mid": 8095.4288999934,
"total_value_exit_net": 8094.2360284756,
"total_value": 8095.4288999934,
"base_cost_quote": 3979.6779565763,
"unrealized_pnl_exit_net": -2390.3754710939
},
{
"timestamp": "2025-10-22T23:59:00+00:00",
"base_asset_bal": 13401.5600000005,
"quote_asset_bal": 6460.7775405628,
"total_value_mid": 8064.9442725629,
"total_value_exit_net": 8063.7411475139,
"total_value": 8064.9442725629,
"base_cost_quote": 4024.7155574623,
"unrealized_pnl_exit_net": -2421.7519505112
},
{
"timestamp": "2025-10-23T23:59:00+00:00",
"base_asset_bal": 13028.1300000005,
"quote_asset_bal": 6506.5210642783,
"total_value_mid": 8107.6782412784,
"total_value_exit_net": 8106.4773733956,
"total_value": 8107.6782412784,
"base_cost_quote": 3979.6763583785,
"unrealized_pnl_exit_net": -2379.7200492612
},
{
"timestamp": "2025-10-24T23:59:00+00:00",
"base_asset_bal": 12907.5000000005,
"quote_asset_bal": 6522.0035735278,
"total_value_mid": 8125.1150735279,
"total_value_exit_net": 8123.9127399029,
"total_value": 8125.1150735279,
"base_cost_quote": 3964.665034323,
"unrealized_pnl_exit_net": -2362.7558679479
},
{
"timestamp": "2025-10-25T23:59:00+00:00",
"base_asset_bal": 12947.0200000005,
"quote_asset_bal": 6517.2423735586,
"total_value_mid": 8117.4940455586,
"total_value_exit_net": 8116.2938568046,
"total_value": 8117.4940455586,
"base_cost_quote": 3969.668155852,
"unrealized_pnl_exit_net": -2370.6166726059
},
{
"timestamp": "2025-10-26T23:59:00+00:00",
"base_asset_bal": 12545.3700000005,
"quote_asset_bal": 6567.6496286586,
"total_value_mid": 8160.9116186586,
"total_value_exit_net": 8159.7166721661,
"total_value": 8160.9116186586,
"base_cost_quote": 3919.626408669,
"unrealized_pnl_exit_net": -2327.5593651614
},
{
"timestamp": "2025-10-27T23:59:00+00:00",
"base_asset_bal": 12786.3300000005,
"quote_asset_bal": 6538.2164784721,
"total_value_mid": 8109.6564354721,
"total_value_exit_net": 8108.4778555044,
"total_value": 8109.6564354721,
"base_cost_quote": 3949.6518929055,
"unrealized_pnl_exit_net": -2379.3905158732
},
{
"timestamp": "2025-10-28T23:59:00+00:00",
"base_asset_bal": 13667.8700000005,
"quote_asset_bal": 6433.8166203146,
"total_value_mid": 8026.1234753146,
"total_value_exit_net": 8024.9292451734,
"total_value": 8026.1234753146,
"base_cost_quote": 4054.7434404965,
"unrealized_pnl_exit_net": -2463.6308156377
},
{
"timestamp": "2025-10-29T23:59:00+00:00",
"base_asset_bal": 13714.1500000005,
"quote_asset_bal": 6429.5655122906,
"total_value_mid": 7997.0928572906,
"total_value_exit_net": 7995.9172117819,
"total_value": 7997.0928572906,
"base_cost_quote": 4059.7491249463,
"unrealized_pnl_exit_net": -2493.397425455
},
{
"timestamp": "2025-10-30T23:59:00+00:00",
"base_asset_bal": 14670.1700000005,
"quote_asset_bal": 6325.2447764291,
"total_value_mid": 7893.4859494291,
"total_value_exit_net": 7892.3097685494,
"total_value": 7893.4859494291,
"base_cost_quote": 4164.838139639,
"unrealized_pnl_exit_net": -2597.7731475187
},
{
"timestamp": "2025-10-31T23:59:00+00:00",
"base_asset_bal": 14621.6500000005,
"quote_asset_bal": 6330.6378381893,
"total_value_mid": 7918.5490281894,
"total_value_exit_net": 7917.3580947969,
"total_value": 7918.5490281894,
"base_cost_quote": 4159.834581783,
"unrealized_pnl_exit_net": -2573.1143251755
},
{
"timestamp": "2025-11-01T23:59:00+00:00",
"base_asset_bal": 14033.1700000005,
"quote_asset_bal": 6396.0255724468,
"total_value_mid": 7978.9671484469,
"total_value_exit_net": 7977.7799422649,
"total_value": 7978.9671484469,
"base_cost_quote": 4094.7779208543,
"unrealized_pnl_exit_net": -2513.0235510362
},
{
"timestamp": "2025-11-02T23:59:00+00:00",
"base_asset_bal": 14121.3400000005,
"quote_asset_bal": 6386.3688927576,
"total_value_mid": 7979.2560447576,
"total_value_exit_net": 7978.0613793936,
"total_value": 7979.2560447576,
"base_cost_quote": 4104.7873382913,
"unrealized_pnl_exit_net": -2513.0948516552
},
{
"timestamp": "2025-11-03T23:59:00+00:00",
"base_asset_bal": 16303.1700000005,
"quote_asset_bal": 6167.6396749928,
"total_value_mid": 7724.5924099929,
"total_value_exit_net": 7723.4246954416,
"total_value": 7724.5924099929,
"base_cost_quote": 4324.976069076,
"unrealized_pnl_exit_net": -2769.1910486272
},
{
"timestamp": "2025-11-04T23:59:00+00:00",
"base_asset_bal": 16994.2300000005,
"quote_asset_bal": 6105.4592457356,
"total_value_mid": 7689.3214817356,
"total_value_exit_net": 7688.1335850586,
"total_value": 7689.3214817356,
"base_cost_quote": 4390.0312258775,
"unrealized_pnl_exit_net": -2807.3568865545
},
{
"timestamp": "2025-11-05T23:59:00+00:00",
"base_asset_bal": 16056.0500000005,
"quote_asset_bal": 6197.1830101411,
"total_value_mid": 7765.8590951411,
"total_value_exit_net": 7764.6825880774,
"total_value": 7765.8590951411,
"base_cost_quote": 4299.9549152745,
"unrealized_pnl_exit_net": -2732.4553373382
},
{
"timestamp": "2025-11-06T23:59:00+00:00",
"base_asset_bal": 16256.8400000005,
"quote_asset_bal": 6179.1226750565,
"total_value_mid": 7780.4214150566,
"total_value_exit_net": 7779.2204410016,
"total_value": 7780.4214150566,
"base_cost_quote": 4319.9732948073,
"unrealized_pnl_exit_net": -2719.8755288622
},
{
"timestamp": "2025-11-07T23:59:00+00:00",
"base_asset_bal": 8630.1900000005,
"quote_asset_bal": 7529.9754994968,
"total_value_mid": 9289.6712404969,
"total_value_exit_net": 9288.3514686911,
"total_value": 9289.6712404969,
"base_cost_quote": 2973.6780941303,
"unrealized_pnl_exit_net": -1215.3021249359
},
{
"timestamp": "2025-11-08T23:59:00+00:00",
"base_asset_bal": 7975.0300000005,
"quote_asset_bal": 7725.3198271853,
"total_value_mid": 9527.6766071855,
"total_value_exit_net": 9526.3248396005,
"total_value": 9527.6766071855,
"base_cost_quote": 2783.4874450455,
"unrealized_pnl_exit_net": -982.4824326304
},
{
"timestamp": "2025-11-09T23:59:00+00:00",
"base_asset_bal": 8250.4100000005,
"quote_asset_bal": 7674.4133511296,
"total_value_mid": 9260.9671941297,
"total_value_exit_net": 9259.7772787474,
"total_value": 9260.9671941297,
"base_cost_quote": 2838.5412614633,
"unrealized_pnl_exit_net": -1253.1773338454
},
{
"timestamp": "2025-11-10T23:59:00+00:00",
"base_asset_bal": 9547.0900000005,
"quote_asset_bal": 7447.5542512911,
"total_value_mid": 9060.0577522912,
"total_value_exit_net": 9058.8483746655,
"total_value": 9060.0577522912,
"base_cost_quote": 3068.7538935398,
"unrealized_pnl_exit_net": -1457.4597701654
},
{
"timestamp": "2025-11-11T23:59:00+00:00",
"base_asset_bal": 8922.0400000005,
"quote_asset_bal": 7557.2036528472,
"total_value_mid": 9178.3383208472,
"total_value_exit_net": 9177.1224698462,
"total_value": 9178.3383208472,
"base_cost_quote": 2963.6486566895,
"unrealized_pnl_exit_net": -1343.7298396904
},
{
"timestamp": "2025-11-12T23:59:00+00:00",
"base_asset_bal": 8589.4400000005,
"quote_asset_bal": 7625.3929322712,
"total_value_mid": 9173.2100202712,
"total_value_exit_net": 9172.0491574552,
"total_value": 9173.2100202712,
"base_cost_quote": 2898.590137368,
"unrealized_pnl_exit_net": -1351.9339121839
},
{
"timestamp": "2025-11-13T23:59:00+00:00",
"base_asset_bal": 9084.9500000005,
"quote_asset_bal": 7543.1036020942,
"total_value_mid": 9078.4601520943,
"total_value_exit_net": 9077.3086346818,
"total_value": 9078.4601520943,
"base_cost_quote": 2983.6661375488,
"unrealized_pnl_exit_net": -1449.4611049612
},
{
"timestamp": "2025-11-14T23:59:00+00:00",
"base_asset_bal": 10291.8800000005,
"quote_asset_bal": 7350.1338636347,
"total_value_mid": 8940.2293236347,
"total_value_exit_net": 8939.0367520397,
"total_value": 8940.2293236347,
"base_cost_quote": 3178.8429724702,
"unrealized_pnl_exit_net": -1589.9400840652
},
{
"timestamp": "2025-11-15T23:59:00+00:00",
"base_asset_bal": 10448.5200000005,
"quote_asset_bal": 7326.5591586384,
"total_value_mid": 8932.4966826385,
"total_value_exit_net": 8931.2922294955,
"total_value": 8932.4966826385,
"base_cost_quote": 3203.860806784,
"unrealized_pnl_exit_net": -1599.1277359269
},
{
"timestamp": "2025-11-16T23:59:00+00:00",
"base_asset_bal": 10689.1700000005,
"quote_asset_bal": 7287.8683383216,
"total_value_mid": 8849.5560753217,
"total_value_exit_net": 8848.384809519,
"total_value": 8849.5560753217,
"base_cost_quote": 3243.8965771085,
"unrealized_pnl_exit_net": -1683.3801059112
},
{
"timestamp": "2025-11-17T23:59:00+00:00",
"base_asset_bal": 11073.7500000005,
"quote_asset_bal": 7234.1106988884,
"total_value_mid": 8768.9324488885,
"total_value_exit_net": 8767.781332576,
"total_value": 8768.9324488885,
"base_cost_quote": 3298.9440317585,
"unrealized_pnl_exit_net": -1765.2733980709
},
{
"timestamp": "2025-11-18T23:59:00+00:00",
"base_asset_bal": 10998.7100000005,
"quote_asset_bal": 7245.4284927541,
"total_value_mid": 8772.0494407542,
"total_value_exit_net": 8770.9044750432,
"total_value": 8772.0494407542,
"base_cost_quote": 3288.9355780438,
"unrealized_pnl_exit_net": -1763.4595957547
},
{
"timestamp": "2025-11-19T23:59:00+00:00",
"base_asset_bal": 8132.2800000005,
"quote_asset_bal": 7678.0973183139,
"total_value_mid": 8750.7450503139,
"total_value_exit_net": 8749.9405645149,
"total_value": 8750.7450503139,
"base_cost_quote": 2858.551402822,
"unrealized_pnl_exit_net": -1786.7081566209
},
{
"timestamp": "2025-11-20T23:59:00+00:00",
"base_asset_bal": 8997.8600000005,
"quote_asset_bal": 7569.3607802103,
"total_value_mid": 8654.5026962104,
"total_value_exit_net": 8653.6888397734,
"total_value": 8654.5026962104,
"base_cost_quote": 2968.6517792193,
"unrealized_pnl_exit_net": -1884.3237196562
},
{
"timestamp": "2025-11-21T23:59:00+00:00",
"base_asset_bal": 9557.5200000005,
"quote_asset_bal": 7506.0662287613,
"total_value_mid": 8605.1810287614,
"total_value_exit_net": 8604.3566926614,
"total_value": 8605.1810287614,
"base_cost_quote": 3033.7089195073,
"unrealized_pnl_exit_net": -1935.4184556072
},
{
"timestamp": "2025-11-22T23:59:00+00:00",
"base_asset_bal": 9558.3800000005,
"quote_asset_bal": 7506.7651483033,
"total_value_mid": 8590.6854403034,
"total_value_exit_net": 8589.8725000844,
"total_value": 8590.6854403034,
"base_cost_quote": 3033.7103645903,
"unrealized_pnl_exit_net": -1950.6030128092
},
{
"timestamp": "2025-11-23T23:59:00+00:00",
"base_asset_bal": 9102.4900000005,
"quote_asset_bal": 7562.8702099558,
"total_value_mid": 8613.2975559559,
"total_value_exit_net": 8612.5097354464,
"total_value": 8613.2975559559,
"base_cost_quote": 2978.661181645,
"unrealized_pnl_exit_net": -1929.0216561544
},
{
"timestamp": "2025-11-24T23:59:00+00:00",
"base_asset_bal": 8765.9800000005,
"quote_asset_bal": 7604.5701548753,
"total_value_mid": 8648.5983728754,
"total_value_exit_net": 8647.8153517119,
"total_value": 8648.5983728754,
"base_cost_quote": 2938.6278121198,
"unrealized_pnl_exit_net": -1895.3826152832
},
{
"timestamp": "2025-11-25T23:59:00+00:00",
"base_asset_bal": 8723.3100000005,
"quote_asset_bal": 7610.18020229,
"total_value_mid": 8649.9987542901,
"total_value_exit_net": 8649.2188903761,
"total_value": 8649.9987542901,
"base_cost_quote": 2933.623260519,
"unrealized_pnl_exit_net": -1894.5845724329
},
{
"timestamp": "2025-11-26T23:59:00+00:00",
"base_asset_bal": 8642.4000000005,
"quote_asset_bal": 7620.8772751865,
"total_value_mid": 8664.0149551866,
"total_value_exit_net": 8663.2326019266,
"total_value": 8664.0149551866,
"base_cost_quote": 2923.6138610955,
"unrealized_pnl_exit_net": -1881.2585343554
},
{
"timestamp": "2025-11-27T23:59:00+00:00",
"base_asset_bal": 8728.4700000005,
"quote_asset_bal": 7611.3376087508,
"total_value_mid": 8650.8983857508,
"total_value_exit_net": 8650.1187151681,
"total_value": 8650.8983857508,
"base_cost_quote": 2933.6240951445,
"unrealized_pnl_exit_net": -1894.8429887272
},
{
"timestamp": "2025-11-28T23:59:00+00:00",
"base_asset_bal": 8899.6400000005,
"quote_asset_bal": 7591.777684124,
"total_value_mid": 8633.9255281241,
"total_value_exit_net": 8633.1439172411,
"total_value": 8633.9255281241,
"base_cost_quote": 2953.638744882,
"unrealized_pnl_exit_net": -1912.2725117649
},
{
"timestamp": "2025-11-29T23:59:00+00:00",
"base_asset_bal": 9206.0000000005,
"quote_asset_bal": 7557.0915030833,
"total_value_mid": 8608.4167030833,
"total_value_exit_net": 8607.6282091833,
"total_value": 8608.4167030833,
"base_cost_quote": 2988.6710444158,
"unrealized_pnl_exit_net": -1938.1343383157
},
{
"timestamp": "2025-11-30T23:59:00+00:00",
"base_asset_bal": 9293.3200000005,
"quote_asset_bal": 7547.3518676635,
"total_value_mid": 8589.1330396636,
"total_value_exit_net": 8588.3517037846,
"total_value": 8589.1330396636,
"base_cost_quote": 2998.680112591,
"unrealized_pnl_exit_net": -1957.6802764699
},
{
"timestamp": "2025-12-01T23:59:00+00:00",
"base_asset_bal": 9660.5400000005,
"quote_asset_bal": 7508.1732040793,
"total_value_mid": 8537.0207140793,
"total_value_exit_net": 8536.2490784468,
"total_value": 8537.0207140793,
"base_cost_quote": 3038.7136942752,
"unrealized_pnl_exit_net": -2010.6378199077
},
{
"timestamp": "2025-12-02T23:59:00+00:00",
"base_asset_bal": 9568.3100000005,
"quote_asset_bal": 7518.7673931345,
"total_value_mid": 8580.8498031346,
"total_value_exit_net": 8580.0532413271,
"total_value": 8580.8498031346,
"base_cost_quote": 3028.7066185933,
"unrealized_pnl_exit_net": -1967.4207704007
},
{
"timestamp": "2025-12-03T23:59:00+00:00",
"base_asset_bal": 9387.1500000005,
"quote_asset_bal": 7539.2307364468,
"total_value_mid": 8608.4271214468,
"total_value_exit_net": 8607.6252241581,
"total_value": 8608.4271214468,
"base_cost_quote": 3008.6900003805,
"unrealized_pnl_exit_net": -1940.2955126692
},
{
"timestamp": "2025-12-04T23:59:00+00:00",
"base_asset_bal": 9347.6500000005,
"quote_asset_bal": 7545.1037618395,
"total_value_mid": 8594.8448568396,
"total_value_exit_net": 8594.0575510183,
"total_value": 8594.8448568396,
"base_cost_quote": 3003.682737748,
"unrealized_pnl_exit_net": -1954.7289485692
},
{
"timestamp": "2025-12-05T23:59:00+00:00",
"base_asset_bal": 7568.0800000005,
"quote_asset_bal": 7768.6821421345,
"total_value_mid": 8738.9099981346,
"total_value_exit_net": 8738.1823272426,
"total_value": 8738.9099981346,
"base_cost_quote": 2783.4863772453,
"unrealized_pnl_exit_net": -1813.9861921372
},
{
"timestamp": "2025-12-06T23:59:00+00:00",
"base_asset_bal": 8375.6000000005,
"quote_asset_bal": 7675.4323040162,
"total_value_mid": 8631.0882640163,
"total_value_exit_net": 8630.3715220463,
"total_value": 8631.0882640163,
"base_cost_quote": 2878.5705589368,
"unrealized_pnl_exit_net": -1923.6313409067
},
{
"timestamp": "2025-12-07T23:59:00+00:00",
"base_asset_bal": 8959.0100000005,
"quote_asset_bal": 7610.9109839185,
"total_value_mid": 8572.2127569185,
"total_value_exit_net": 8571.4917805888,
"total_value": 8572.2127569185,
"base_cost_quote": 2943.626317189,
"unrealized_pnl_exit_net": -1983.0455205187
},
{
"timestamp": "2025-12-08T23:59:00+00:00",
"base_asset_bal": 8545.5200000005,
"quote_asset_bal": 7656.8041460822,
"total_value_mid": 8616.4660420823,
"total_value_exit_net": 8615.7462956603,
"total_value": 8616.4660420823,
"base_cost_quote": 2898.5887993653,
"unrealized_pnl_exit_net": -1939.6466497872
},
{
"timestamp": "2025-12-09T23:59:00+00:00",
"base_asset_bal": 8052.2800000005,
"quote_asset_bal": 7712.9521181755,
"total_value_mid": 8663.9263861755,
"total_value_exit_net": 8663.2131554745,
"total_value": 8663.9263861755,
"base_cost_quote": 2843.541161578,
"unrealized_pnl_exit_net": -1893.2801242789
},
{
"timestamp": "2025-12-10T23:59:00+00:00",
"base_asset_bal": 8393.2700000005,
"quote_asset_bal": 7674.0405037172,
"total_value_mid": 8649.3384777173,
"total_value_exit_net": 8648.6070042368,
"total_value": 8649.3384777173,
"base_cost_quote": 2883.5784370305,
"unrealized_pnl_exit_net": -1909.0119365109
},
{
"timestamp": "2025-12-11T23:59:00+00:00",
"base_asset_bal": 8399.7100000005,
"quote_asset_bal": 7674.7773240227,
"total_value_mid": 8655.0234810227,
"total_value_exit_net": 8654.288296405,
"total_value": 8655.0234810227,
"base_cost_quote": 2883.5776054073,
"unrealized_pnl_exit_net": -1904.0666330249
},
{
"timestamp": "2025-12-12T23:59:00+00:00",
"base_asset_bal": 8704.1500000005,
"quote_asset_bal": 7640.3174014162,
"total_value_mid": 8617.7934464162,
"total_value_exit_net": 8617.0603393825,
"total_value": 8617.7934464162,
"base_cost_quote": 2918.6062772223,
"unrealized_pnl_exit_net": -1941.8633392559
},
{
"timestamp": "2025-12-13T23:59:00+00:00",
"base_asset_bal": 8438.5000000005,
"quote_asset_bal": 7670.6868754904,
"total_value_mid": 8652.9282754905,
"total_value_exit_net": 8652.1915944405,
"total_value": 8652.9282754905,
"base_cost_quote": 2888.5798863063,
"unrealized_pnl_exit_net": -1907.0751673562
},
{
"timestamp": "2025-12-14T23:59:00+00:00",
"base_asset_bal": 9103.6000000005,
"quote_asset_bal": 7595.9269172752,
"total_value_mid": 8600.0539972752,
"total_value_exit_net": 8599.3009019652,
"total_value": 8600.0539972752,
"base_cost_quote": 2963.6451940945,
"unrealized_pnl_exit_net": -1960.2712094044
},
{
"timestamp": "2025-12-15T23:59:00+00:00",
"base_asset_bal": 8724.4300000005,
"quote_asset_bal": 7642.2956167399,
"total_value_mid": 8612.45223274,
"total_value_exit_net": 8611.724615278,
"total_value": 8612.45223274,
"base_cost_quote": 2918.6070838268,
"unrealized_pnl_exit_net": -1949.1780852887
},
{
"timestamp": "2025-12-16T23:59:00+00:00",
"base_asset_bal": 8453.8600000005,
"quote_asset_bal": 7673.0889563594,
"total_value_mid": 8635.1382243594,
"total_value_exit_net": 8634.4166874084,
"total_value": 8635.1382243594,
"base_cost_quote": 2888.5806949123,
"unrealized_pnl_exit_net": -1927.2529638632
},
{
"timestamp": "2025-12-17T23:59:00+00:00",
"base_asset_bal": 9426.5400000005,
"quote_asset_bal": 7568.7797067444,
"total_value_mid": 8530.2867867444,
"total_value_exit_net": 8529.5656564344,
"total_value": 8530.2867867444,
"base_cost_quote": 2993.6719452805,
"unrealized_pnl_exit_net": -2032.8859955905
},
{
"timestamp": "2025-12-18T23:59:00+00:00",
"base_asset_bal": 9418.6200000005,
"quote_asset_bal": 7570.1287922834,
"total_value_mid": 8510.1070682834,
"total_value_exit_net": 8509.4020845764,
"total_value": 8510.1070682834,
"base_cost_quote": 2993.6692232405,
"unrealized_pnl_exit_net": -2054.3959309475
},
{
"timestamp": "2025-12-19T23:59:00+00:00",
"base_asset_bal": 9126.3000000005,
"quote_asset_bal": 7600.8182908191,
"total_value_mid": 8553.6040108192,
"total_value_exit_net": 8552.8894215292,
"total_value": 8553.6040108192,
"base_cost_quote": 2963.6453542145,
"unrealized_pnl_exit_net": -2011.5742235045
},
{
"timestamp": "2025-12-20T23:59:00+00:00",
"base_asset_bal": 9073.5500000005,
"quote_asset_bal": 7606.0829832596,
"total_value_mid": 8586.0263832597,
"total_value_exit_net": 8585.2914257097,
"total_value": 8586.0263832597,
"base_cost_quote": 2958.6410397915,
"unrealized_pnl_exit_net": -1979.4325973415
},
{
"timestamp": "2025-12-21T23:59:00+00:00",
"base_asset_bal": 9982.6400000005,
"quote_asset_bal": 7511.4427600646,
"total_value_mid": 8520.6876640647,
"total_value_exit_net": 8519.9307303867,
"total_value": 8520.6876640647,
"base_cost_quote": 3053.7224744243,
"unrealized_pnl_exit_net": -2045.2345041022
},
{
"timestamp": "2025-12-22T23:59:00+00:00",
"base_asset_bal": 10031.2600000005,
"quote_asset_bal": 7507.0491976777,
"total_value_mid": 8515.1908276777,
"total_value_exit_net": 8514.4347214552,
"total_value": 8515.1908276777,
"base_cost_quote": 3058.7244981305,
"unrealized_pnl_exit_net": -2051.338974353
},
{
"timestamp": "2025-12-23T23:59:00+00:00",
"base_asset_bal": 10030.7000000005,
"quote_asset_bal": 7507.6712728314,
"total_value_mid": 8512.7474128315,
"total_value_exit_net": 8511.9936057265,
"total_value": 8512.7474128315,
"base_cost_quote": 3058.724440087,
"unrealized_pnl_exit_net": -2054.402107192
},
{
"timestamp": "2025-12-24T23:59:00+00:00",
"base_asset_bal": 10281.2900000005,
"quote_asset_bal": 7483.1907021267,
"total_value_mid": 8509.2634441267,
"total_value_exit_net": 8508.4938895702,
"total_value": 8509.2634441267,
"base_cost_quote": 3083.74679679,
"unrealized_pnl_exit_net": -2058.4436093465
},
{
"timestamp": "2025-12-25T23:59:00+00:00",
"base_asset_bal": 10233.7000000005,
"quote_asset_bal": 7488.5455511472,
"total_value_mid": 8497.5883711472,
"total_value_exit_net": 8496.8315890322,
"total_value": 8497.5883711472,
"base_cost_quote": 3078.7421631278,
"unrealized_pnl_exit_net": -2070.4561252427
},
{
"timestamp": "2025-12-26T23:59:00+00:00",
"base_asset_bal": 9829.0700000005,
"quote_asset_bal": 7528.9803973184,
"total_value_mid": 8516.8019323185,
"total_value_exit_net": 8516.0610661672,
"total_value": 8516.8019323185,
"base_cost_quote": 3038.7068761655,
"unrealized_pnl_exit_net": -2051.6262073167
},
{
"timestamp": "2025-12-27T23:59:00+00:00",
"base_asset_bal": 9023.2100000005,
"quote_asset_bal": 7614.7141700977,
"total_value_mid": 8579.2953190977,
"total_value_exit_net": 8578.571883236,
"total_value": 8579.2953190977,
"base_cost_quote": 2953.636062872,
"unrealized_pnl_exit_net": -1989.7783497337
},
{
"timestamp": "2025-12-28T23:59:00+00:00",
"base_asset_bal": 9309.2600000005,
"quote_asset_bal": 7584.9641795732,
"total_value_mid": 8556.8509235732,
"total_value_exit_net": 8556.1220085152,
"total_value": 8556.8509235732,
"base_cost_quote": 2983.6603902415,
"unrealized_pnl_exit_net": -2012.5025612995
},
{
"timestamp": "2025-12-29T23:59:00+00:00",
"base_asset_bal": 9794.4700000005,
"quote_asset_bal": 7535.2732587187,
"total_value_mid": 8528.4325167187,
"total_value_exit_net": 8527.6876472752,
"total_value": 8528.4325167187,
"base_cost_quote": 3033.7032902885,
"unrealized_pnl_exit_net": -2041.288901732
},
{
"timestamp": "2025-12-30T23:59:00+00:00",
"base_asset_bal": 9795.0600000005,
"quote_asset_bal": 7535.6950661194,
"total_value_mid": 8524.0166201195,
"total_value_exit_net": 8523.275378954,
"total_value": 8524.0166201195,
"base_cost_quote": 3033.7039307685,
"unrealized_pnl_exit_net": -2046.123617934
},
{
"timestamp": "2025-12-31T23:59:00+00:00",
"base_asset_bal": 10097.5000000005,
"quote_asset_bal": 7506.1022664409,
"total_value_mid": 8505.754766441,
"total_value_exit_net": 8505.005027066,
"total_value": 8505.754766441,
"base_cost_quote": 3063.731264391,
"unrealized_pnl_exit_net": -2064.828503766
},
{
"timestamp": "2026-01-01T23:59:00+00:00",
"base_asset_bal": 9315.4700000005,
"quote_asset_bal": 7586.5823440907,
"total_value_mid": 8571.2275230907,
"total_value_exit_net": 8570.4890392065,
"total_value": 8571.2275230907,
"base_cost_quote": 2983.6638968695,
"unrealized_pnl_exit_net": -1999.7572017537
},
{
"timestamp": "2026-01-02T23:59:00+00:00",
"base_asset_bal": 9220.0100000005,
"quote_asset_bal": 7597.0556338822,
"total_value_mid": 8582.6747028822,
"total_value_exit_net": 8581.9354885805,
"total_value": 8582.6747028822,
"base_cost_quote": 2973.6553360745,
"unrealized_pnl_exit_net": -1988.7754813762
},
{
"timestamp": "2026-01-03T23:59:00+00:00",
"base_asset_bal": 8805.0600000005,
"quote_asset_bal": 7642.4454650847,
"total_value_mid": 8602.1970050847,
"total_value_exit_net": 8601.4771914297,
"total_value": 8602.1970050847,
"base_cost_quote": 2928.615987879,
"unrealized_pnl_exit_net": -1969.584261534
},
{
"timestamp": "2026-01-04T23:59:00+00:00",
"base_asset_bal": 8759.6200000005,
"quote_asset_bal": 7647.8116345959,
"total_value_mid": 8613.997720596,
"total_value_exit_net": 8613.2730810315,
"total_value": 8613.997720596,
"base_cost_quote": 2923.6107907945,
"unrealized_pnl_exit_net": -1958.1493443589
},
{
"timestamp": "2026-01-05T23:59:00+00:00",
"base_asset_bal": 8221.6500000005,
"quote_asset_bal": 7708.6486416969,
"total_value_mid": 8653.316226697,
"total_value_exit_net": 8652.6077260082,
"total_value": 8653.316226697,
"base_cost_quote": 2863.558891624,
"unrealized_pnl_exit_net": -1919.5998073127
},
{
"timestamp": "2026-01-06T23:59:00+00:00",
"base_asset_bal": 8262.3200000005,
"quote_asset_bal": 7704.3377310517,
"total_value_mid": 8671.8554030517,
"total_value_exit_net": 8671.1297647977,
"total_value": 8671.8554030517,
"base_cost_quote": 2868.5631570103,
"unrealized_pnl_exit_net": -1901.7711232642
},
{
"timestamp": "2026-01-07T23:59:00+00:00",
"base_asset_bal": 8744.2900000005,
"quote_asset_bal": 7649.7178968274,
"total_value_mid": 8622.9573738275,
"total_value_exit_net": 8622.2274442197,
"total_value": 8622.9573738275,
"base_cost_quote": 2923.6097630243,
"unrealized_pnl_exit_net": -1951.1002156319
},
{
"timestamp": "2026-01-08T23:59:00+00:00",
"base_asset_bal": 8928.2900000005,
"quote_asset_bal": 7630.3026096464,
"total_value_mid": 8608.8431936465,
"total_value_exit_net": 8608.1092882085,
"total_value": 8608.8431936465,
"base_cost_quote": 2943.6259819378,
"unrealized_pnl_exit_net": -1965.8193033757
},
{
"timestamp": "2026-01-09T23:59:00+00:00",
"base_asset_bal": 9157.3200000005,
"quote_asset_bal": 7605.7809978332,
"total_value_mid": 8608.5075378332,
"total_value_exit_net": 8607.7554929282,
"total_value": 8608.5075378332,
"base_cost_quote": 2968.6481314855,
"unrealized_pnl_exit_net": -1966.6736363904
},
{
"timestamp": "2026-01-10T23:59:00+00:00",
"base_asset_bal": 9249.6800000005,
"quote_asset_bal": 7595.9039370607,
"total_value_mid": 8593.0194410607,
"total_value_exit_net": 8592.2716044327,
"total_value": 8593.0194410607,
"base_cost_quote": 2978.6573277568,
"unrealized_pnl_exit_net": -1982.2896603847
},
{
"timestamp": "2026-01-11T23:59:00+00:00",
"base_asset_bal": 9249.3200000005,
"quote_asset_bal": 7596.0787238724,
"total_value_mid": 8578.3565078725,
"total_value_exit_net": 8577.6197995345,
"total_value": 8578.3565078725,
"base_cost_quote": 2978.6561228538,
"unrealized_pnl_exit_net": -1997.1150471917
},
{
"timestamp": "2026-01-12T23:59:00+00:00",
"base_asset_bal": 9531.3700000005,
"quote_asset_bal": 7566.5790415687,
"total_value_mid": 8565.4666175687,
"total_value_exit_net": 8564.7174518867,
"total_value": 8565.4666175687,
"base_cost_quote": 3008.682724928,
"unrealized_pnl_exit_net": -2010.54431461
},
{
"timestamp": "2026-01-13T23:59:00+00:00",
"base_asset_bal": 8662.7600000005,
"quote_asset_bal": 7662.5056137002,
"total_value_mid": 8643.1300457002,
"total_value_exit_net": 8642.3945773762,
"total_value": 8643.1300457002,
"base_cost_quote": 2913.6011061573,
"unrealized_pnl_exit_net": -1933.7121424812
},
{
"timestamp": "2026-01-14T23:59:00+00:00",
"base_asset_bal": 8840.7000000005,
"quote_asset_bal": 7643.0562104531,
"total_value_mid": 8628.7942604532,
"total_value_exit_net": 8628.0549569157,
"total_value": 8628.7942604532,
"base_cost_quote": 2933.6172109853,
"unrealized_pnl_exit_net": -1948.6184645227
},
{
"timestamp": "2026-01-15T23:59:00+00:00",
"base_asset_bal": 9074.6400000005,
"quote_asset_bal": 7618.6667495411,
"total_value_mid": 8599.6353335412,
"total_value_exit_net": 8598.8996071032,
"total_value": 8599.6353335412,
"base_cost_quote": 2958.6389262075,
"unrealized_pnl_exit_net": -1978.4060686454
},
{
"timestamp": "2026-01-16T23:59:00+00:00",
"base_asset_bal": 8843.1300000005,
"quote_asset_bal": 7644.1935256254,
"total_value_mid": 8619.5907646255,
"total_value_exit_net": 8618.8592166962,
"total_value": 8619.5907646255,
"base_cost_quote": 2933.6170168398,
"unrealized_pnl_exit_net": -1958.9513257689
},
{
"timestamp": "2026-01-17T23:59:00+00:00",
"base_asset_bal": 7987.8300000005,
"quote_asset_bal": 7745.6250509446,
"total_value_mid": 8688.9877739447,
"total_value_exit_net": 8688.2802519025,
"total_value": 8688.9877739447,
"base_cost_quote": 2833.53311717,
"unrealized_pnl_exit_net": -1890.8779162122
},
{
"timestamp": "2026-01-18T23:59:00+00:00",
"base_asset_bal": 8671.8300000005,
"quote_asset_bal": 7661.7072642816,
"total_value_mid": 8670.2410932817,
"total_value_exit_net": 8669.4846929099,
"total_value": 8670.2410932817,
"base_cost_quote": 2918.6076502513,
"unrealized_pnl_exit_net": -1910.8302216229
},
{
"timestamp": "2026-01-19T23:59:00+00:00",
"base_asset_bal": 8753.9000000005,
"quote_asset_bal": 7652.6478343136,
"total_value_mid": 8621.7045643137,
"total_value_exit_net": 8620.9777717662,
"total_value": 8621.7045643137,
"base_cost_quote": 2928.6165492998,
"unrealized_pnl_exit_net": -1960.2866118472
},
{
"timestamp": "2026-01-20T23:59:00+00:00",
"base_asset_bal": 9881.0500000005,
"quote_asset_bal": 7533.1595129876,
"total_value_mid": 8530.1574579877,
"total_value_exit_net": 8529.4097095289,
"total_value": 8530.1574579877,
"base_cost_quote": 3048.7175465415,
"unrealized_pnl_exit_net": -2052.4673500002
},
{
"timestamp": "2026-01-21T23:59:00+00:00",
"base_asset_bal": 9250.0100000005,
"quote_asset_bal": 7599.0057100644,
"total_value_mid": 8566.5567560644,
"total_value_exit_net": 8565.8310927799,
"total_value": 8566.5567560644,
"base_cost_quote": 2983.662221614,
"unrealized_pnl_exit_net": -2016.8368388985
},
{
"timestamp": "2026-01-22T23:59:00+00:00",
"base_asset_bal": 9635.1500000005,
"quote_asset_bal": 7559.3400588351,
"total_value_mid": 8545.0159038352,
"total_value_exit_net": 8544.2766469514,
"total_value": 8545.0159038352,
"base_cost_quote": 3023.6956862105,
"unrealized_pnl_exit_net": -2038.7590980942
},
{
"timestamp": "2026-01-23T23:59:00+00:00",
"base_asset_bal": 9783.5500000005,
"quote_asset_bal": 7544.7344765424,
"total_value_mid": 8531.8946715424,
"total_value_exit_net": 8531.1543013962,
"total_value": 8531.8946715424,
"base_cost_quote": 3038.708211166,
"unrealized_pnl_exit_net": -2052.2883863122
},
{
"timestamp": "2026-01-24T23:59:00+00:00",
"base_asset_bal": 9786.1900000005,
"quote_asset_bal": 7544.9431465279,
"total_value_mid": 8526.4980035279,
"total_value_exit_net": 8525.7618373852,
"total_value": 8526.4980035279,
"base_cost_quote": 3038.7106149675,
"unrealized_pnl_exit_net": -2057.8919241102
},
{
"timestamp": "2026-01-25T23:59:00+00:00",
"base_asset_bal": 10957.9600000005,
"quote_asset_bal": 7430.7538859696,
"total_value_mid": 8469.5684939697,
"total_value_exit_net": 8468.7893830137,
"total_value": 8469.5684939697,
"base_cost_quote": 3153.8090651107,
"unrealized_pnl_exit_net": -2115.7735680667
},
{
"timestamp": "2026-01-26T23:59:00+00:00",
"base_asset_bal": 9821.1300000005,
"quote_asset_bal": 7541.8225604206,
"total_value_mid": 8525.8997864207,
"total_value_exit_net": 8525.1617285012,
"total_value": 8525.8997864207,
"base_cost_quote": 3043.7157209838,
"unrealized_pnl_exit_net": -2060.3765529032
},
{
"timestamp": "2026-01-27T23:59:00+00:00",
"base_asset_bal": 9821.5200000005,
"quote_asset_bal": 7542.2297700416,
"total_value_mid": 8526.3460740417,
"total_value_exit_net": 8525.6079868137,
"total_value": 8526.3460740417,
"base_cost_quote": 3043.7152966658,
"unrealized_pnl_exit_net": -2060.3370798937
},
{
"timestamp": "2026-01-28T23:59:00+00:00",
"base_asset_bal": 10479.4700000005,
"quote_asset_bal": 7477.8266496934,
"total_value_mid": 8498.5270276934,
"total_value_exit_net": 8497.7615024099,
"total_value": 8498.5270276934,
"base_cost_quote": 3108.7707246705,
"unrealized_pnl_exit_net": -2088.835871954
},
{
"timestamp": "2026-01-29T23:59:00+00:00",
"base_asset_bal": 11862.2800000005,
"quote_asset_bal": 7348.3115423524,
"total_value_mid": 8439.6413023524,
"total_value_exit_net": 8438.8228050324,
"total_value": 8439.6413023524,
"base_cost_quote": 3238.8815296418,
"unrealized_pnl_exit_net": -2148.3702669617
},
{
"timestamp": "2026-01-30T23:59:00+00:00",
"base_asset_bal": 12244.6700000005,
"quote_asset_bal": 7314.4732110341,
"total_value_mid": 8421.3913790342,
"total_value_exit_net": 8420.5611904082,
"total_value": 8421.3913790342,
"base_cost_quote": 3273.911569482,
"unrealized_pnl_exit_net": -2167.823590108
},
{
"timestamp": "2026-01-31T23:59:00+00:00",
"base_asset_bal": 15049.3600000005,
"quote_asset_bal": 7075.4655786959,
"total_value_mid": 8318.5427146959,
"total_value_exit_net": 8317.6104068439,
"total_value": 8318.5427146959,
"base_cost_quote": 3514.111744602,
"unrealized_pnl_exit_net": -2271.966916454
},
{
"timestamp": "2026-02-01T23:59:00+00:00",
"base_asset_bal": 15408.9200000005,
"quote_asset_bal": 7047.3583534021,
"total_value_mid": 8297.0217654022,
"total_value_exit_net": 8296.0845178432,
"total_value": 8297.0217654022,
"base_cost_quote": 3544.1367654913,
"unrealized_pnl_exit_net": -2295.4106010502
},
{
"timestamp": "2026-02-02T23:59:00+00:00",
"base_asset_bal": 15164.2300000005,
"quote_asset_bal": 7069.2832850616,
"total_value_mid": 8306.6844530617,
"total_value_exit_net": 8305.7564021857,
"total_value": 8306.6844530617,
"base_cost_quote": 3524.1201993175,
"unrealized_pnl_exit_net": -2287.6470821935
},
{
"timestamp": "2026-02-03T23:59:00+00:00",
"base_asset_bal": 15403.2600000005,
"quote_asset_bal": 7050.6272892376,
"total_value_mid": 8293.6703712377,
"total_value_exit_net": 8292.7380889262,
"total_value": 8293.6703712377,
"base_cost_quote": 3544.1353144038,
"unrealized_pnl_exit_net": -2302.0245147152
},
{
"timestamp": "2026-02-04T23:59:00+00:00",
"base_asset_bal": 16402.4300000005,
"quote_asset_bal": 6971.6760588564,
"total_value_mid": 8259.2668138564,
"total_value_exit_net": 8258.3011207902,
"total_value": 8259.2668138564,
"base_cost_quote": 3624.2029291105,
"unrealized_pnl_exit_net": -2337.5778671767
},
{
"timestamp": "2026-02-05T23:59:00+00:00",
"base_asset_bal": 19899.7900000006,
"quote_asset_bal": 6718.4648497406,
"total_value_mid": 8057.7207167406,
"total_value_exit_net": 8056.7162748404,
"total_value": 8057.7207167406,
"base_cost_quote": 3879.413207371,
"unrealized_pnl_exit_net": -2541.1617822712
},
{
"timestamp": "2026-02-06T23:59:00+00:00",
"base_asset_bal": 18276.4600000006,
"quote_asset_bal": 6835.3674928418,
"total_value_mid": 8191.4808248418,
"total_value_exit_net": 8190.4637398428,
"total_value": 8191.4808248418,
"base_cost_quote": 3764.3194887738,
"unrealized_pnl_exit_net": -2409.2232417727
},
{
"timestamp": "2026-02-07T23:59:00+00:00",
"base_asset_bal": 18344.6500000006,
"quote_asset_bal": 6831.0092226345,
"total_value_mid": 8194.0167176346,
"total_value_exit_net": 8192.9944620133,
"total_value": 8194.0167176346,
"base_cost_quote": 3769.3235029718,
"unrealized_pnl_exit_net": -2407.338263593
},
{
"timestamp": "2026-02-08T23:59:00+00:00",
"base_asset_bal": 12472.0700000006,
"quote_asset_bal": 7344.152470388,
"total_value_mid": 8315.7267233881,
"total_value_exit_net": 8314.9980426983,
"total_value": 8315.7267233881,
"base_cost_quote": 3258.8982119025,
"unrealized_pnl_exit_net": -2288.0526395922
},
{
"timestamp": "2026-02-09T23:59:00+00:00",
"base_asset_bal": 12918.4800000006,
"quote_asset_bal": 7310.4927466973,
"total_value_mid": 8278.0868986973,
"total_value_exit_net": 8277.3612030833,
"total_value": 8278.0868986973,
"base_cost_quote": 3293.9257068355,
"unrealized_pnl_exit_net": -2327.0572504495
},
{
"timestamp": "2026-02-10T23:59:00+00:00",
"base_asset_bal": 14220.4300000006,
"quote_asset_bal": 7215.914932862,
"total_value_mid": 8231.2536348621,
"total_value_exit_net": 8230.4921308356,
"total_value": 8231.2536348621,
"base_cost_quote": 3389.0042252828,
"unrealized_pnl_exit_net": -2374.4270273092
},
{
"timestamp": "2026-02-11T23:59:00+00:00",
"base_asset_bal": 15004.0300000006,
"quote_asset_bal": 7161.541645137,
"total_value_mid": 8211.8237451371,
"total_value_exit_net": 8211.0360335621,
"total_value": 8211.8237451371,
"base_cost_quote": 3444.0502108318,
"unrealized_pnl_exit_net": -2394.5558224067
},
{
"timestamp": "2026-02-12T23:59:00+00:00",
"base_asset_bal": 14861.8600000006,
"quote_asset_bal": 7172.2251730637,
"total_value_mid": 8215.5277450638,
"total_value_exit_net": 8214.7452681348,
"total_value": 8215.5277450638,
"base_cost_quote": 3434.042061345,
"unrealized_pnl_exit_net": -2391.521966274
},
{
"timestamp": "2026-02-13T23:59:00+00:00",
"base_asset_bal": 13795.8100000006,
"quote_asset_bal": 7247.8488519352,
"total_value_mid": 8238.3880099353,
"total_value_exit_net": 8237.6451055668,
"total_value": 8238.3880099353,
"base_cost_quote": 3358.9796537303,
"unrealized_pnl_exit_net": -2369.1834000987
},
{
"timestamp": "2026-02-14T23:59:00+00:00",
"base_asset_bal": 13587.2600000005,
"quote_asset_bal": 7263.2004021895,
"total_value_mid": 8250.9942041895,
"total_value_exit_net": 8250.253358838,
"total_value": 8250.9942041895,
"base_cost_quote": 3343.96697566,
"unrealized_pnl_exit_net": -2356.9140190115
},
{
"timestamp": "2026-02-15T23:59:00+00:00",
"base_asset_bal": 14503.4800000005,
"quote_asset_bal": 7198.7575645945,
"total_value_mid": 8209.6501205945,
"total_value_exit_net": 8208.8919511775,
"total_value": 8209.6501205945,
"base_cost_quote": 3409.02169013,
"unrealized_pnl_exit_net": -2398.887303547
},
{
"timestamp": "2026-02-16T23:59:00+00:00",
"base_asset_bal": 14074.9800000005,
"quote_asset_bal": 7229.2774878742,
"total_value_mid": 8224.3785738742,
"total_value_exit_net": 8223.6322480597,
"total_value": 8224.3785738742,
"base_cost_quote": 3378.9972786975,
"unrealized_pnl_exit_net": -2384.642518512
},
{
"timestamp": "2026-02-17T23:59:00+00:00",
"base_asset_bal": 14938.6400000005,
"quote_asset_bal": 7169.5954986515,
"total_value_mid": 8192.8923386515,
"total_value_exit_net": 8192.1248660215,
"total_value": 8192.8923386515,
"base_cost_quote": 3439.0471293328,
"unrealized_pnl_exit_net": -2416.5177619627
},
{
"timestamp": "2026-02-18T23:59:00+00:00",
"base_asset_bal": 15829.3600000005,
"quote_asset_bal": 7109.9212950082,
"total_value_mid": 8159.4078630082,
"total_value_exit_net": 8158.6207480822,
"total_value": 8159.4078630082,
"base_cost_quote": 3499.095691002,
"unrealized_pnl_exit_net": -2450.396237928
},
{
"timestamp": "2026-02-19T23:59:00+00:00",
"base_asset_bal": 16285.2500000005,
"quote_asset_bal": 7080.3288552999,
"total_value_mid": 8160.0409303,
"total_value_exit_net": 8159.2311462437,
"total_value": 8160.0409303,
"base_cost_quote": 3529.119271812,
"unrealized_pnl_exit_net": -2450.2169808682
},
{
"timestamp": "2026-02-20T23:59:00+00:00",
"base_asset_bal": 15612.8100000005,
"quote_asset_bal": 7126.1050071324,
"total_value_mid": 8187.7760871325,
"total_value_exit_net": 8186.9798338225,
"total_value": 8187.7760871325,
"base_cost_quote": 3484.0829468823,
"unrealized_pnl_exit_net": -2423.2081201922
},
{
"timestamp": "2026-02-21T23:59:00+00:00",
"base_asset_bal": 16513.3400000005,
"quote_asset_bal": 7066.3013515169,
"total_value_mid": 8152.879123517,
"total_value_exit_net": 8152.064190188,
"total_value": 8152.879123517,
"base_cost_quote": 3544.1320879858,
"unrealized_pnl_exit_net": -2458.3692493147
},
{
"timestamp": "2026-02-22T23:59:00+00:00",
"base_asset_bal": 17692.4400000005,
"quote_asset_bal": 6991.5016904887,
"total_value_mid": 8090.2022144887,
"total_value_exit_net": 8089.3781890957,
"total_value": 8090.2022144887,
"base_cost_quote": 3619.1926312033,
"unrealized_pnl_exit_net": -2521.3161325962
},
{
"timestamp": "2026-02-23T23:59:00+00:00",
"base_asset_bal": 18090.2700000006,
"quote_asset_bal": 6967.4463263019,
"total_value_mid": 8089.043066302,
"total_value_exit_net": 8088.201868747,
"total_value": 8089.043066302,
"base_cost_quote": 3644.212771245,
"unrealized_pnl_exit_net": -2523.4572288
},
{
"timestamp": "2026-02-24T23:59:00+00:00",
"base_asset_bal": 18166.1900000006,
"quote_asset_bal": 6963.1985101164,
"total_value_mid": 8093.1355281164,
"total_value_exit_net": 8092.2880753529,
"total_value": 8093.1355281164,
"base_cost_quote": 3649.217285818,
"unrealized_pnl_exit_net": -2520.1277205815
},
{
"timestamp": "2026-02-25T23:59:00+00:00",
"base_asset_bal": 16370.1000000006,
"quote_asset_bal": 7078.9482400581,
"total_value_mid": 8149.5527800582,
"total_value_exit_net": 8148.7498266532,
"total_value": 8149.5527800582,
"base_cost_quote": 3534.124102622,
"unrealized_pnl_exit_net": -2464.322516027
}
]
trades.json payload is intentionally not embedded in this report (deprecated). The CSV attachment below is a 100-row audit sample of the full ledger, not the complete trade list - fetch the canonical full population (111,078 closed trades) via GET /backtests/799056ec-d9a7-427c-be64-39889b6b81a5/trades (paginate through all pages).100-row audit sample from 111,078 closed trades (RFC 4180 CSV)
100-row audit sample from 111,078 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:02:00Z,2024-04-24T01:14:00Z,0.9903,0.9928,5.05,,,0.0051140087,0.1022594163,0.0037507612,0.00376023,,,TP
,,2024-04-24T00:09:00Z,2024-04-24T00:39:00Z,0.9891,0.9916,5.06,,,0.0051332435,0.1025654636,0.0037536345,0.003763122,,,TP
,,2024-04-24T00:10:00Z,2024-04-24T00:13:00Z,0.9871,0.9896,5.07,,,0.0051585982,0.1030771958,0.0037534478,0.003762954,,,TP
,,2024-04-24T00:16:00Z,2024-04-24T00:39:00Z,0.9875,0.99,5.07,,,0.0051555563,0.1029746835,0.0037549688,0.003764475,,,TP
,,2024-04-24T00:19:00Z,2024-04-24T00:32:00Z,0.9844,0.9869,5.08,,,0.005189347,0.1037713328,0.003750564,0.003760089,,,TP
,,2024-04-24T00:23:00Z,2024-04-24T00:32:00Z,0.9832,0.9857,5.09,,,0.0052087242,0.1040810618,0.003753366,0.0037629098,,,TP
,,2024-04-24T00:32:00Z,2024-04-24T00:39:00Z,0.9865,0.989,5.07,,,0.0051631612,0.1032311201,0.0037511663,0.0037606725,,,TP
,,2024-04-24T00:45:00Z,2024-04-24T01:00:00Z,0.9887,0.9912,5.06,,,0.0051362795,0.1026676444,0.0037521165,0.003761604,,,TP
,,2024-04-24T01:05:00Z,2024-04-24T01:11:00Z,0.9917,0.9942,5.05,,,0.0051034037,0.1019032974,0.0037560638,0.0037655325,,,TP
,,2024-04-24T01:13:00Z,2024-04-24T01:30:00Z,0.9944,0.9969,5.03,,,0.0050628208,0.1012193282,0.003751374,0.0037608053,,,TP
,,2024-04-24T01:39:00Z,2024-04-24T04:48:00Z,0.9954,0.9979,5.03,,,0.0050552757,0.100966948,0.0037551465,0.0037645777,,,TP
,,2024-04-24T01:39:00Z,2024-04-24T05:06:00Z,0.9939,0.9964,5.04,,,0.005076666,0.1013457088,0.003756942,0.003766392,,,TP
,,2024-04-24T01:51:00Z,2024-04-24T05:16:00Z,0.9919,0.9944,5.05,,,0.0051018888,0.1018525053,0.0037568212,0.00376629,,,TP
,,2024-04-24T02:02:00Z,2024-04-24T05:16:00Z,0.9902,0.9927,5.05,,,0.0051147662,0.1022848919,0.0037503825,0.0037598513,,,TP
,,2024-04-24T02:07:00Z,2024-04-24T02:17:00Z,0.9889,0.9914,5.06,,,0.0051347615,0.1026165436,0.0037528755,0.003762363,,,TP
,,2024-04-24T02:30:00Z,2024-04-24T03:35:00Z,0.9847,0.9872,5.08,,,0.005187061,0.1036940185,0.003751707,0.003761232,,,TP
,,2024-04-24T02:31:00Z,2024-04-24T02:45:00Z,0.9821,0.9846,5.1,,,0.0052273725,0.104365645,0.0037565325,0.003766095,,,TP
,,2024-04-24T02:32:00Z,2024-04-24T02:35:00Z,0.9805,0.983,5.1,,,0.0052396125,0.1047807241,0.0037504125,0.003759975,,,TP
,,2024-04-24T02:38:00Z,2024-04-24T02:43:00Z,0.9811,0.9836,5.1,,,0.0052350225,0.1046249108,0.0037527075,0.00376227,,,TP
,,2024-04-24T02:43:00Z,2024-04-24T02:49:00Z,0.9836,0.9861,5.09,,,0.0052056703,0.1039777349,0.003754893,0.0037644368,,,TP
,,2024-04-24T02:57:00Z,2024-04-24T03:35:00Z,0.9861,0.9886,5.08,,,0.005176393,0.1033338404,0.003757041,0.003766566,,,TP
,,2024-04-24T03:04:00Z,2024-04-24T03:43:00Z,0.9875,0.99,5.07,,,0.0051555563,0.1029746835,0.0037549688,0.003764475,,,TP
,,2024-04-24T03:37:00Z,2024-04-24T03:43:00Z,0.986,0.9885,5.08,,,0.005177155,0.1033595335,0.00375666,0.003766185,,,TP
,,2024-04-24T04:02:00Z,2024-04-24T04:29:00Z,0.9877,0.9902,5.07,,,0.0051540353,0.1029234585,0.0037557293,0.0037652355,,,TP
,,2024-04-24T04:03:00Z,2024-04-24T04:05:00Z,0.984,0.9865,5.09,,,0.0052026162,0.1038744919,0.00375642,0.0037659637,,,TP
,,2024-06-07T15:57:00Z,2024-06-11T15:09:00Z,1,1.0025,5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-04T10:09:00Z,2025-02-04T10:18:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-02-09T09:28:00Z,2025-02-09T09:30:00Z,0.4,0.401,12.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-04-07T02:03:00Z,2025-04-07T02:07:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-06-13T08:12:00Z,2025-06-13T08:12:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-06-30T12:32:00Z,2025-07-02T16:19:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-07-05T23:18:00Z,2025-07-06T13:34:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-19T23:24:00Z,2025-08-20T03:23:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-21T17:07:00Z,2025-08-21T17:12:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-26T08:02:00Z,2025-08-26T09:18:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-26T09:55:00Z,2025-08-26T09:59:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-29T17:32:00Z,2025-08-29T19:26:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-08-29T20:16:00Z,2025-08-29T20:19:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-09-02T19:14:00Z,2025-09-02T20:18:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-09-19T15:25:00Z,2025-09-19T15:41:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-09-20T10:43:00Z,2025-09-20T11:03:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-09-21T09:13:00Z,2025-09-21T12:19:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-09-21T14:53:00Z,2025-09-21T16:33:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-10-02T16:28:00Z,2025-10-02T16:31:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-10-06T21:10:00Z,2025-10-06T22:00:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-09T04:32:00Z,2025-11-09T04:32:00Z,0.2,0.2005,25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-14T04:48:00Z,2025-11-14T04:50:00Z,0.16,0.1604,31.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2025-11-14T04:48:00Z,2025-11-14T04:48:00Z,0.16,0.1604,31.25,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-01-31T17:11:00Z,2026-01-31T17:11:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-01-31T21:30:00Z,2026-01-31T21:36:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-01-31T21:33:00Z,2026-01-31T21:37:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T03:14:00Z,2026-02-02T03:49:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-02T03:17:00Z,2026-02-02T03:49:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T04:11:00Z,2026-02-02T04:17:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T04:18:00Z,2026-02-02T04:19:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-02T05:06:00Z,2026-02-02T06:44:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T06:47:00Z,2026-02-02T06:47:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T06:58:00Z,2026-02-02T07:06:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-02T07:00:00Z,2026-02-02T07:06:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-03T03:02:00Z,2026-02-03T03:08:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-03T17:32:00Z,2026-02-03T19:32:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-03T19:22:00Z,2026-02-03T19:32:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-03T19:47:00Z,2026-02-03T19:53:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-03T19:49:00Z,2026-02-03T19:53:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-03T20:19:00Z,2026-02-03T20:23:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-03T23:46:00Z,2026-02-03T23:56:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-04T05:54:00Z,2026-02-04T06:00:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-08T18:57:00Z,2026-02-08T19:02:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-08T19:08:00Z,2026-02-08T19:10:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-08T19:15:00Z,2026-02-08T19:15:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-08T20:23:00Z,2026-02-08T20:25:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-08T20:25:00Z,2026-02-08T20:30:00Z,0.0802,0.0805,62.35,,,0.0111902662,0.2237842893,0.0037503525,0.0037643813,,,TP
,,2026-02-08T20:27:00Z,2026-02-08T20:30:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-08T22:16:00Z,2026-02-08T22:16:00Z,0.0801,0.0804,62.43,,,0.0112139887,0.2242509363,0.0037504823,0.003764529,,,TP
,,2026-02-08T22:17:00Z,2026-02-08T23:07:00Z,0.08,0.0802,62.5,,,0.004990625,0.0998125,0.00375,0.003759375,,,TP
,,2026-02-20T15:35:00Z,2026-02-25T20:50:00Z,0.0661,0.0663,75.65,,,0.007617955,0.1523449319,0.0037503488,0.0037616963,,,TP
,,2026-02-21T19:45:00Z,2026-02-25T21:36:00Z,0.0668,0.067,74.86,,,0.007459799,0.1491766467,0.003750486,0.003761715,,,TP
,,2026-02-21T20:08:00Z,2026-02-25T21:36:00Z,0.0666,0.0668,75.08,,,0.007504246,0.1500750751,0.003750246,0.003761508,,,TP
,,2026-02-21T20:37:00Z,2026-02-25T21:57:00Z,0.0665,0.0667,75.19,,,0.007526519,0.1505263158,0.0037501013,0.0037613798,,,TP
,,2026-02-21T20:53:00Z,2026-02-25T21:35:00Z,0.0664,0.0666,75.31,,,0.0075498275,0.1509789157,0.003750438,0.0037617345,,,TP
,,2026-02-21T22:28:00Z,2026-02-25T20:40:00Z,0.0663,0.0665,75.42,,,0.007572168,0.1514328808,0.0037502595,0.0037615725,,,TP
,,2026-02-21T22:49:00Z,2026-02-25T20:32:00Z,0.066,0.0662,75.76,,,0.007640396,0.1528030303,0.00375012,0.003761484,,,TP
,,2026-02-21T23:46:00Z,2026-02-25T18:36:00Z,0.0659,0.0661,75.88,,,0.00766287,0.153262519,0.003750369,0.0037612553,,,TP
,,2026-02-25T16:36:00Z,2026-02-25T18:16:00Z,0.0654,0.0656,76.46,,,0.007779805,0.1555810398,0.003750363,0.003761832,,,TP
,,2026-02-25T18:17:00Z,2026-02-25T18:32:00Z,0.0655,0.0657,76.34,,,0.007756144,0.1551145038,0.0037502025,0.0037616535,,,TP
,,2026-02-25T18:32:00Z,2026-02-25T18:35:00Z,0.0657,0.0659,76.11,,,0.007709943,0.1541856925,0.0037503202,0.0037617367,,,TP
,,2026-02-25T19:07:00Z,2026-02-25T19:21:00Z,0.0654,0.0656,76.46,,,0.007779805,0.1555810398,0.003750363,0.003761832,,,TP
,,2026-02-25T19:21:00Z,2026-02-25T19:23:00Z,0.0655,0.0657,76.34,,,0.007756144,0.1551145038,0.0037502025,0.0037616535,,,TP
,,2026-02-25T19:23:00Z,2026-02-25T20:04:00Z,0.0656,0.0658,76.22,,,0.007732519,0.1546493902,0.003750024,0.003761457,,,TP
,,2026-02-25T21:23:00Z,2026-02-25T21:31:00Z,0.0662,0.0664,75.53,,,0.0075945415,0.1518882175,0.0037500645,0.003761394,,,TP
,,2026-02-25T21:30:00Z,2026-02-25T22:50:00Z,0.0661,0.0663,75.65,,,0.007617955,0.1523449319,0.0037503488,0.0037616963,,,TP
,,2026-02-25T21:38:00Z,2026-02-25T21:39:00Z,0.0669,0.0671,74.74,,,0.007435635,0.1487294469,0.0037500795,0.0037607873,,,TP
,,2026-02-25T21:40:00Z,2026-02-25T21:44:00Z,0.0668,0.067,74.86,,,0.007459799,0.1491766467,0.003750486,0.003761715,,,TP
,,2026-02-25T21:45:00Z,2026-02-25T22:00:00Z,0.0668,0.067,74.86,,,0.007459799,0.1491766467,0.003750486,0.003761715,,,TP
,,2026-02-25T21:57:00Z,2026-02-25T22:08:00Z,0.0666,0.0668,75.08,,,0.007504246,0.1500750751,0.003750246,0.003761508,,,TP
,,2026-02-25T22:08:00Z,2026-02-25T22:12:00Z,0.0668,0.067,74.86,,,0.007459799,0.1491766467,0.003750486,0.003761715,,,TP
,,2026-02-25T22:50:00Z,2026-02-25T23:15:00Z,0.066,0.0662,75.76,,,0.007640396,0.1528030303,0.00375012,0.003761484,,,TP
,,2026-02-25T23:32:00Z,2026-02-25T23:38:00Z,0.0654,0.0656,76.46,,,0.007779805,0.1555810398,0.003750363,0.003761832,,,TP
,,2026-02-25T23:39:00Z,2026-02-25T23:58:00Z,0.0652,0.0654,76.69,,,0.0078262145,0.1565184049,0.003750141,0.0037616445,,,TP
,,2026-02-25T23:46:00Z,2026-02-25T23:52:00Z,0.0649,0.0651,77.05,,,0.007897625,0.1579352851,0.0037504087,0.0037619663,,,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 FLUXUSDT?
Did it beat Buy & Hold of FLUXUSDT?
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 FLUXUSDT (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,148.75 USDT
P&L: -1,851.25 USDT (-18.51%)
Result: LOSS
Completed trades: 111078
Open orders at end: 707
Win rate: 100.0%
Avg. profit/trade: 0.005834 USDT
Best trade: 0.011214 USDT
Worst trade: 0.004991 USDT
Total profit (trades only): 647.995541 USDT
Max drawdown: -25.24%
Profit factor: inf (no losing trades)
Sharpe ratio: -0.47
Total fees: 834.52 USDT
Avg hold time: 18.9h
TP / SL / TSL: 111078 / 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: 1009.4s
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":"FLUXUSDT","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.01,"stopLoss":false,"tickSize":0.0001,"buySplits":9,"buyVolumes":[20,15,10,10,10,10,5,5,5],"canBuyDown":false,"minNotional":5,"buyPercentage":0.1,"fees_in_quote":true,"intrabar_mode":"OLHC","maker_fee_bps":7.5,"taker_fee_bps":7.5,"sellPercentages":[0.25,0.35,0.5,0.75,1,2.5,5,10,15],"triggerCoolDown":1,"investmentPerBuy":25,"assumed_spread_bps":0,"stopLossPercentage":5,"investmentPercentMode":false,"minInvestmentPerQuote":25,"order_latency_seconds":2,"trailingStopLossPercentages":[0,0,0,0,0,0,0,0,0],"sellCancelDistancePercentage":1,"dontBuyBelowQuoteAssetBalance":1,"investmentPerFreeQuotePercent":0.01,"sellActivateDistancePercentage":0.1}'
Structured Data (JSON-LD)
Dataset markup with 34 PropertyValue KPIs. Every numeric value is finite + range-validated; invalid / null fields are omitted so the JSON stays schema.org-compliant.{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "FLUXUSDT LongTimeLong Backtest",
"alternateName": "FLUXUSDT-3LongTimeLong.json-799056ec-d9a7-427c-be64-39889b6b81a5",
"description": "Backtest of the LongTimeLong strategy on FLUXUSDT: -18.51% return over 2024-04-24 to 2026-02-25.",
"identifier": "799056ec-d9a7-427c-be64-39889b6b81a5",
"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": [
"FLUXUSDT",
"LongTimeLong",
"crypto backtest",
"trading strategy",
"quantitative finance",
"algorithmic trading"
],
"about": [
{
"@type": "Thing",
"name": "FLUXUSDT",
"description": "Trading pair: FLUXUSDT"
},
{
"@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": -18.5125,
"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": 647.99554143,
"unitText": "USDT",
"description": "Total realized profit in quote currency"
},
{
"@type": "PropertyValue",
"name": "Final Portfolio Value",
"value": 8148.74982665,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Initial Capital",
"value": 10000,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Fulfilled Trades",
"value": 111078,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Active Orders",
"value": 707,
"unitText": "orders",
"description": "Open positions still pending exit at end of window",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Best Trade Profit",
"value": 0.01121399,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Worst Trade Profit",
"value": 0.00499063,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Trade Profit",
"value": 0.0058337,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Engine Elapsed Time",
"value": 1009.35,
"unitText": "seconds",
"unitCode": "SEC",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "CAGR",
"value": -10.530384951832694,
"unitText": "%",
"unitCode": "P1",
"description": "Compound Annual Growth Rate"
},
{
"@type": "PropertyValue",
"name": "Max Drawdown",
"value": -25.238876111377223,
"unitText": "%",
"unitCode": "P1",
"description": "Largest peak-to-trough decline of equity (negative)",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Max Drawdown (absolute)",
"value": -2595.464607649399,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Drawdown Duration",
"value": 331,
"unitText": "days",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Sharpe Ratio (annualized)",
"value": -0.46573893904281244,
"description": "Mean / std of daily returns x 365"
},
{
"@type": "PropertyValue",
"name": "Sortino Ratio (annualized)",
"value": -0.6098729066712821,
"description": "Like Sharpe but only penalizes downside volatility"
},
{
"@type": "PropertyValue",
"name": "Volatility (annualized)",
"value": 19.859482175082388,
"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.007244947914000005,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Win",
"value": 0.007244947914000005,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Average Loss",
"value": 0,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Median Trade Profit",
"value": 0.00633762375,
"unitText": "USDT"
},
{
"@type": "PropertyValue",
"name": "Gross Profit",
"value": 0.7244947914000005,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Gross Loss",
"value": 0,
"unitText": "USDT",
"maxValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Fees Paid",
"value": 0.7513352051000002,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Total Volume Traded",
"value": 1001.7816029999997,
"unitText": "USDT",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Winning Streak",
"value": 100,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Longest Losing Streak",
"value": 0,
"unitText": "trades",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Median Holding Time",
"value": 0.23333333333333334,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Mean Holding Time",
"value": 10.781541218637996,
"unitText": "hours",
"minValue": 0
},
{
"@type": "PropertyValue",
"name": "Trades per Month",
"value": 5023.3691444784645,
"unitText": "trades/month",
"minValue": 0
}
],
"dateCreated": "2026-05-08T13:39:10.240Z",
"dateModified": "2026-05-15T13:01:11.111Z",
"temporalCoverage": "2024-04-23T22:00:01.000Z/2026-02-25T22:59:59.000Z"
}
[!] Disclaimer
Backtester: uncoded.ch/backtesting * Generated 2026-05-15 13:01:11 UTC