Mandate staged trader — backtest report   qwen3-coder:480b-cloud

Variant comparison across BTC + WETH on identical window.

window: 2026-02-01T00:00:00Z → 2026-03-01T00:00:00Z tick: 1h initial vault: $10,000 model: qwen3-coder:480b-cloud generated: 2026-05-11 08:10:55 UTC

Variant ranking — aggregate across asset

#VariantTradesΣ PnL ($)Avg PnL %Distribution
1 no-bear-pathB 203 $-2757.53 -13.79%
2 full-plus-sizing 209 $-2950.20 -14.75%
3 base 344 $-5185.10 -25.93%
4 full-counter-trend 463 $-7201.22 -36.01%

Per-asset breakdown

VariantPairTradesFinal $PnL ($)PnL %
base btcusdc 122 $8202.77 $-1797.23 -17.97%
base wethusdc 222 $6612.13 $-3387.87 -33.88%
full-counter-trend btcusdc 137 $7924.54 $-2075.46 -20.75%
full-counter-trend wethusdc 326 $4874.24 $-5125.76 -51.26%
full-plus-sizing btcusdc 52 $9354.00 $-646.00 -6.46%
full-plus-sizing wethusdc 157 $7695.80 $-2304.20 -23.04%
no-bear-pathB btcusdc 46 $9326.31 $-673.69 -6.74%
no-bear-pathB wethusdc 157 $7916.15 $-2083.85 -20.84%

Findings

Prompt variants — what each one changes vs base

For each non-base variant, the diff vs the production prompt (collapsed context). Click to expand the full text.

full-counter-trend overrides 1 stage: 02-decide
02-decide.md  diff vs base
You are the **decide** stage of the trading workflow.
… 16 unchanged lines …
Test exits in priority order. First match wins.
+ **Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.
+
**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.
… 4 unchanged lines …
**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.
- **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` → `sell`, `path: "reversal"`.
+ **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.
If none fire → `hold`.
… 42 unchanged lines …
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
+ - `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)
Size: 65% aggressive / 50% moderate / 30% conservative.
… 29 unchanged lines …
show full prompt (variant)
You are the **decide** stage of the trading workflow.

Apply the strict v30 rules to research's output and pick exactly one action. **NO arithmetic.** Compare values directly with the listed thresholds. Do not derive flags, do not recompute MACD/RSI/EMA, do not interpolate.

## Previous stage output

```json
{{previous}}
```

## Decision rules

**Default = HOLD.** Only emit `buy` / `sell` when an explicit rule fires below.

Risk thresholds come from `strategy.config` in the system prompt: `entryRsiThreshold`, `fullAlignmentBars`, `spotEntryPct`, `maxExposurePct`, `scalpRsiThreshold`. Defaults below assume the aggressive tier; moderate / conservative override via the config knobs.

### Position-already-open path (`previous.vault_position_token_amount > 0`)

Test exits in priority order. First match wins.

**Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.

**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.

**Full take-profit:** `previous.price >= previous.open_position_tp_target_usd` → `sell`, `path: "tp"`, full close.

**Quick scalp (33%):** `previous.price >= previous.open_position_scalp_target_usd` AND (`previous.rsi_1h >= scalpRsiThreshold` OR `previous.rsi_15m >= scalpRsiThreshold + 5`) → `sell`, `path: "scalp"`, `scalp_pct: 33`.

**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.

**Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.

If none fire → `hold`.

### No-position path (`previous.vault_position_token_amount == 0`)

**HARD GUARD — read before everything else in this section.** When `previous.vault_position_token_amount == 0` you hold zero of the trading token, so you have NOTHING to sell. Exits (`stop`, `tp`, `scalp`, `trailing`, `reversal`) are FORBIDDEN here regardless of how bearish the timeframes look — they exist ONLY in the Position-already-open path above. The only valid emissions when position is 0 are: `hold`, or `buy` with one of the entry paths A / B / C / D / E. Emitting `{"decision":"sell", ...}` with `vault_position_token_amount == 0` is a hard contract violation: there is no inventory to dispose of and the orchestrator will reject it.

Test in priority order. First match wins. Use `config.entryRsiThreshold` (default 45 aggressive / 42 moderate / 40 conservative) where shown.

#### Path A — Short-timeframe mean-reversion

LONG fires when ALL hold:
- `previous.rsi_1h < config.entryRsiThreshold`
- `previous.rsi_15m_crossed_up_from_below_35 == true` (15m oversold reversal confirmed)
- `previous.macd_15m_flipped_positive == true` (15m momentum flipped within the last 2 bars)
- `previous.tf_daily ∉ {SELL, STRONG_SELL}` (1d not bearish — daily-flat-or-better)

Size: `config.spotEntryPct.A` (default 50% aggressive / 35% moderate / 20% conservative).

#### Path E — Capitulation oversold (BYPASS HTF wall, SPOT-ONLY)

LONG fires when ALL hold:
- `previous.rsi_1h < 22` (aggressive), `< 27` (moderate), `< 18` (conservative). DO NOT relax — this is the extreme-tail entry.
- `previous.rsi_15m > 30` (some recovery from the bottom)
- `previous.macd_15m_flipped_positive == true` (early momentum flip confirmed)
- `previous.close_above_low_12_pct >= 0.3` (proof the local bottom is in)

No HTF filter. Size: 30% aggressive / 20% moderate / 12% conservative. 60-min anti-wash window after this entry's exit (no Path A re-entry inside that window).

#### Path C — Trend continuation pullback

LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (3-of-4 timeframes BUY or STRONG_BUY)
- `previous.rsi_1h < 60` (not yet overbought — leaves room)
- `previous.macd_15m_histogram > 0` (15m is going up)
- `previous.atr_pct >= 1.0` (enough volatility for a meaningful continuation)
- `previous.regime != "bear"`

Catches the **mid-trend pullback** that Path A (oversold) and Path D (4/4 + breakout) both miss. Size: 35% aggressive / 25% moderate / 15% conservative. 30-min anti-wash window.

#### Path B — Deep-value counter-trend

LONG fires when ALL hold:
- `previous.rsi_daily < 30` AND `previous.rsi_weekly < 35`
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
- `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)

Size: 65% aggressive / 50% moderate / 30% conservative.

#### Path D — Confirmed momentum

LONG fires when ALL hold:
- `previous.tf_buy_count >= config.fullAlignmentBars` (default 4 = strict, 3 = looser)
- `previous.breakout_last_24_periods == true` (15m close above the 24-bar high)
- `previous.volume_confirm_15m == true` (15m vol_ratio ≥ 1.3)
- `previous.atr_pct >= 1.5`

Size: 65% aggressive / 50% moderate / 30% conservative.

### Default

If no path fires → `hold`.

## Anti-wash trade rule

After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal. The runtime SELL GUARD + 2h BUY cooldown back this up at the code level — your job is to not even propose a forbidden re-entry.

## Output schema (your last message MUST be a single-line JSON object — no markdown fences, just one line)

```json
{"decision":"<buy|sell|hold>","path":"<A|B|C|D|E|stop|tp|scalp|trailing|reversal|null>","size_pct":<number 0-100 or null>,"scalp_pct":<33|null>,"reasoning":"<one short sentence>"}
```

The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose. The skip_condition `previous.decision == "hold"` requires a parseable JSON; if you wrap the line in markdown the orchestrator falls back to a string and execute spawns wastefully.

If `previous.unavailable == true` → `{"decision":"hold","path":null,"size_pct":null,"scalp_pct":null,"reasoning":"indicators unavailable"}`.
full-plus-sizing overrides 1 stage: 02-decide
02-decide.md  diff vs base
You are the **decide** stage of the trading workflow.
… 10 unchanged lines …
**Default = HOLD.** Only emit `buy` / `sell` when an explicit rule fires below.
- Risk thresholds come from `strategy.config` in the system prompt: `entryRsiThreshold`, `fullAlignmentBars`, `spotEntryPct`, `maxExposurePct`, `scalpRsiThreshold`. Defaults below assume the aggressive tier; moderate / conservative override via the config knobs.
+ **Tier override = MODERATE.** Use the moderate tier values everywhere a tier is mentioned (`entryRsiThreshold = 42`, sizing as listed below). This caps the exposure on counter-trend entries vs the aggressive default.
### Position-already-open path (`previous.vault_position_token_amount > 0`)
Test exits in priority order. First match wins.
+ **Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.
+
**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.
… 4 unchanged lines …
**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.
- **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` → `sell`, `path: "reversal"`.
+ **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.
If none fire → `hold`.
… 3 unchanged lines …
**HARD GUARD — read before everything else in this section.** When `previous.vault_position_token_amount == 0` you hold zero of the trading token, so you have NOTHING to sell. Exits (`stop`, `tp`, `scalp`, `trailing`, `reversal`) are FORBIDDEN here regardless of how bearish the timeframes look — they exist ONLY in the Position-already-open path above. The only valid emissions when position is 0 are: `hold`, or `buy` with one of the entry paths A / B / C / D / E. Emitting `{"decision":"sell", ...}` with `vault_position_token_amount == 0` is a hard contract violation: there is no inventory to dispose of and the orchestrator will reject it.
- Test in priority order. First match wins. Use `config.entryRsiThreshold` (default 45 aggressive / 42 moderate / 40 conservative) where shown.
+ Test in priority order. First match wins. Use **moderate tier**: `entryRsiThreshold = 42`.
#### Path A — Short-timeframe mean-reversion
LONG fires when ALL hold:
- - `previous.rsi_1h < config.entryRsiThreshold`
+ - `previous.rsi_1h < 42` (moderate threshold)
- `previous.rsi_15m_crossed_up_from_below_35 == true` (15m oversold reversal confirmed)
- `previous.macd_15m_flipped_positive == true` (15m momentum flipped within the last 2 bars)
- `previous.tf_daily ∉ {SELL, STRONG_SELL}` (1d not bearish — daily-flat-or-better)
- Size: `config.spotEntryPct.A` (default 50% aggressive / 35% moderate / 20% conservative).
+ Size: **35%** (moderate).
#### Path E — Capitulation oversold (BYPASS HTF wall, SPOT-ONLY)
LONG fires when ALL hold:
- - `previous.rsi_1h < 22` (aggressive), `< 27` (moderate), `< 18` (conservative). DO NOT relax — this is the extreme-tail entry.
+ - `previous.rsi_1h < 27` (moderate threshold). DO NOT relax — this is the extreme-tail entry.
- `previous.rsi_15m > 30` (some recovery from the bottom)
- `previous.macd_15m_flipped_positive == true` (early momentum flip confirmed)
- `previous.close_above_low_12_pct >= 0.3` (proof the local bottom is in)
- No HTF filter. Size: 30% aggressive / 20% moderate / 12% conservative. 60-min anti-wash window after this entry's exit (no Path A re-entry inside that window).
+ No HTF filter. Size: **20%** (moderate). 60-min anti-wash window after this entry's exit.
#### Path C — Trend continuation pullback
LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (3-of-4 timeframes BUY or STRONG_BUY)
- - `previous.rsi_1h < 60` (not yet overbought — leaves room)
+ - `previous.rsi_1h < 60` (not yet overbought)
- `previous.macd_15m_histogram > 0` (15m is going up)
- - `previous.atr_pct >= 1.0` (enough volatility for a meaningful continuation)
+ - `previous.atr_pct >= 1.0`
- `previous.regime != "bear"`
- Catches the **mid-trend pullback** that Path A (oversold) and Path D (4/4 + breakout) both miss. Size: 35% aggressive / 25% moderate / 15% conservative. 30-min anti-wash window.
+ Size: **25%** (moderate). 30-min anti-wash window.
#### Path B — Deep-value counter-trend
… 3 unchanged lines …
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
+ - `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)
- Size: 65% aggressive / 50% moderate / 30% conservative.
+ Size: **50%** (moderate, down from 65% aggressive).
#### Path D — Confirmed momentum
LONG fires when ALL hold:
- - `previous.tf_buy_count >= config.fullAlignmentBars` (default 4 = strict, 3 = looser)
- - `previous.breakout_last_24_periods == true` (15m close above the 24-bar high)
- - `previous.volume_confirm_15m == true` (15m vol_ratio ≥ 1.3)
+ - `previous.tf_buy_count >= 3` (moderate alignment, looser than aggressive 4/4)
+ - `previous.breakout_last_24_periods == true`
+ - `previous.volume_confirm_15m == true`
- `previous.atr_pct >= 1.5`
- Size: 65% aggressive / 50% moderate / 30% conservative.
+ Size: **50%** (moderate).
### Default
… 3 unchanged lines …
## Anti-wash trade rule
- After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal. The runtime SELL GUARD + 2h BUY cooldown back this up at the code level — your job is to not even propose a forbidden re-entry.
+ After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal.
## Output schema (your last message MUST be a single-line JSON object — no markdown fences, just one line)
… 3 unchanged lines …
```
- The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose. The skip_condition `previous.decision == "hold"` requires a parseable JSON; if you wrap the line in markdown the orchestrator falls back to a string and execute spawns wastefully.
+ The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose.
If `previous.unavailable == true` → `{"decision":"hold","path":null,"size_pct":null,"scalp_pct":null,"reasoning":"indicators unavailable"}`.
show full prompt (variant)
You are the **decide** stage of the trading workflow.

Apply the strict v30 rules to research's output and pick exactly one action. **NO arithmetic.** Compare values directly with the listed thresholds. Do not derive flags, do not recompute MACD/RSI/EMA, do not interpolate.

## Previous stage output

```json
{{previous}}
```

## Decision rules

**Default = HOLD.** Only emit `buy` / `sell` when an explicit rule fires below.

**Tier override = MODERATE.** Use the moderate tier values everywhere a tier is mentioned (`entryRsiThreshold = 42`, sizing as listed below). This caps the exposure on counter-trend entries vs the aggressive default.

### Position-already-open path (`previous.vault_position_token_amount > 0`)

Test exits in priority order. First match wins.

**Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.

**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.

**Full take-profit:** `previous.price >= previous.open_position_tp_target_usd` → `sell`, `path: "tp"`, full close.

**Quick scalp (33%):** `previous.price >= previous.open_position_scalp_target_usd` AND (`previous.rsi_1h >= scalpRsiThreshold` OR `previous.rsi_15m >= scalpRsiThreshold + 5`) → `sell`, `path: "scalp"`, `scalp_pct: 33`.

**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.

**Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.

If none fire → `hold`.

### No-position path (`previous.vault_position_token_amount == 0`)

**HARD GUARD — read before everything else in this section.** When `previous.vault_position_token_amount == 0` you hold zero of the trading token, so you have NOTHING to sell. Exits (`stop`, `tp`, `scalp`, `trailing`, `reversal`) are FORBIDDEN here regardless of how bearish the timeframes look — they exist ONLY in the Position-already-open path above. The only valid emissions when position is 0 are: `hold`, or `buy` with one of the entry paths A / B / C / D / E. Emitting `{"decision":"sell", ...}` with `vault_position_token_amount == 0` is a hard contract violation: there is no inventory to dispose of and the orchestrator will reject it.

Test in priority order. First match wins. Use **moderate tier**: `entryRsiThreshold = 42`.

#### Path A — Short-timeframe mean-reversion

LONG fires when ALL hold:
- `previous.rsi_1h < 42` (moderate threshold)
- `previous.rsi_15m_crossed_up_from_below_35 == true` (15m oversold reversal confirmed)
- `previous.macd_15m_flipped_positive == true` (15m momentum flipped within the last 2 bars)
- `previous.tf_daily ∉ {SELL, STRONG_SELL}` (1d not bearish — daily-flat-or-better)

Size: **35%** (moderate).

#### Path E — Capitulation oversold (BYPASS HTF wall, SPOT-ONLY)

LONG fires when ALL hold:
- `previous.rsi_1h < 27` (moderate threshold). DO NOT relax — this is the extreme-tail entry.
- `previous.rsi_15m > 30` (some recovery from the bottom)
- `previous.macd_15m_flipped_positive == true` (early momentum flip confirmed)
- `previous.close_above_low_12_pct >= 0.3` (proof the local bottom is in)

No HTF filter. Size: **20%** (moderate). 60-min anti-wash window after this entry's exit.

#### Path C — Trend continuation pullback

LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (3-of-4 timeframes BUY or STRONG_BUY)
- `previous.rsi_1h < 60` (not yet overbought)
- `previous.macd_15m_histogram > 0` (15m is going up)
- `previous.atr_pct >= 1.0`
- `previous.regime != "bear"`

Size: **25%** (moderate). 30-min anti-wash window.

#### Path B — Deep-value counter-trend

LONG fires when ALL hold:
- `previous.rsi_daily < 30` AND `previous.rsi_weekly < 35`
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
- `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)

Size: **50%** (moderate, down from 65% aggressive).

#### Path D — Confirmed momentum

LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (moderate alignment, looser than aggressive 4/4)
- `previous.breakout_last_24_periods == true`
- `previous.volume_confirm_15m == true`
- `previous.atr_pct >= 1.5`

Size: **50%** (moderate).

### Default

If no path fires → `hold`.

## Anti-wash trade rule

After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal.

## Output schema (your last message MUST be a single-line JSON object — no markdown fences, just one line)

```json
{"decision":"<buy|sell|hold>","path":"<A|B|C|D|E|stop|tp|scalp|trailing|reversal|null>","size_pct":<number 0-100 or null>,"scalp_pct":<33|null>,"reasoning":"<one short sentence>"}
```

The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose.

If `previous.unavailable == true` → `{"decision":"hold","path":null,"size_pct":null,"scalp_pct":null,"reasoning":"indicators unavailable"}`.
no-bear-pathB overrides 1 stage: 02-decide
02-decide.md  diff vs base
You are the **decide** stage of the trading workflow.
… 10 unchanged lines …
**Default = HOLD.** Only emit `buy` / `sell` when an explicit rule fires below.
- Risk thresholds come from `strategy.config` in the system prompt: `entryRsiThreshold`, `fullAlignmentBars`, `spotEntryPct`, `maxExposurePct`, `scalpRsiThreshold`. Defaults below assume the aggressive tier; moderate / conservative override via the config knobs.
+ **Tier override = MODERATE.** Use the moderate tier values everywhere a tier is mentioned (`entryRsiThreshold = 42`, sizing as listed below). This caps the exposure on counter-trend entries vs the aggressive default.
### Position-already-open path (`previous.vault_position_token_amount > 0`)
Test exits in priority order. First match wins.
+ **Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.
+
**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.
… 4 unchanged lines …
**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.
- **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` → `sell`, `path: "reversal"`.
+ **Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.
If none fire → `hold`.
… 3 unchanged lines …
**HARD GUARD — read before everything else in this section.** When `previous.vault_position_token_amount == 0` you hold zero of the trading token, so you have NOTHING to sell. Exits (`stop`, `tp`, `scalp`, `trailing`, `reversal`) are FORBIDDEN here regardless of how bearish the timeframes look — they exist ONLY in the Position-already-open path above. The only valid emissions when position is 0 are: `hold`, or `buy` with one of the entry paths A / B / C / D / E. Emitting `{"decision":"sell", ...}` with `vault_position_token_amount == 0` is a hard contract violation: there is no inventory to dispose of and the orchestrator will reject it.
- Test in priority order. First match wins. Use `config.entryRsiThreshold` (default 45 aggressive / 42 moderate / 40 conservative) where shown.
+ Test in priority order. First match wins. Use **moderate tier**: `entryRsiThreshold = 42`.
#### Path A — Short-timeframe mean-reversion
LONG fires when ALL hold:
- - `previous.rsi_1h < config.entryRsiThreshold`
+ - `previous.rsi_1h < 42` (moderate threshold)
- `previous.rsi_15m_crossed_up_from_below_35 == true` (15m oversold reversal confirmed)
- `previous.macd_15m_flipped_positive == true` (15m momentum flipped within the last 2 bars)
- `previous.tf_daily ∉ {SELL, STRONG_SELL}` (1d not bearish — daily-flat-or-better)
- Size: `config.spotEntryPct.A` (default 50% aggressive / 35% moderate / 20% conservative).
+ Size: **35%** (moderate).
#### Path E — Capitulation oversold (BYPASS HTF wall, SPOT-ONLY)
LONG fires when ALL hold:
- - `previous.rsi_1h < 22` (aggressive), `< 27` (moderate), `< 18` (conservative). DO NOT relax — this is the extreme-tail entry.
+ - `previous.rsi_1h < 27` (moderate threshold). DO NOT relax — this is the extreme-tail entry.
- `previous.rsi_15m > 30` (some recovery from the bottom)
- `previous.macd_15m_flipped_positive == true` (early momentum flip confirmed)
- `previous.close_above_low_12_pct >= 0.3` (proof the local bottom is in)
- No HTF filter. Size: 30% aggressive / 20% moderate / 12% conservative. 60-min anti-wash window after this entry's exit (no Path A re-entry inside that window).
+ No HTF filter. Size: **20%** (moderate). 60-min anti-wash window after this entry's exit.
#### Path C — Trend continuation pullback
LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (3-of-4 timeframes BUY or STRONG_BUY)
- - `previous.rsi_1h < 60` (not yet overbought — leaves room)
+ - `previous.rsi_1h < 60` (not yet overbought)
- `previous.macd_15m_histogram > 0` (15m is going up)
- - `previous.atr_pct >= 1.0` (enough volatility for a meaningful continuation)
+ - `previous.atr_pct >= 1.0`
- `previous.regime != "bear"`
- Catches the **mid-trend pullback** that Path A (oversold) and Path D (4/4 + breakout) both miss. Size: 35% aggressive / 25% moderate / 15% conservative. 30-min anti-wash window.
+ Size: **25%** (moderate). 30-min anti-wash window.
#### Path B — Deep-value counter-trend
… 3 unchanged lines …
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
+ - `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)
+ - `previous.regime != "bear"` (DO NOT fire Path B inside a bear regime — historical evidence shows Path B + bear → reversal exit loop with net negative expectation)
- Size: 65% aggressive / 50% moderate / 30% conservative.
+ Size: **50%** (moderate, down from 65% aggressive).
#### Path D — Confirmed momentum
LONG fires when ALL hold:
- - `previous.tf_buy_count >= config.fullAlignmentBars` (default 4 = strict, 3 = looser)
- - `previous.breakout_last_24_periods == true` (15m close above the 24-bar high)
- - `previous.volume_confirm_15m == true` (15m vol_ratio ≥ 1.3)
+ - `previous.tf_buy_count >= 3` (moderate alignment, looser than aggressive 4/4)
+ - `previous.breakout_last_24_periods == true`
+ - `previous.volume_confirm_15m == true`
- `previous.atr_pct >= 1.5`
- Size: 65% aggressive / 50% moderate / 30% conservative.
+ Size: **50%** (moderate).
### Default
… 3 unchanged lines …
## Anti-wash trade rule
- After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal. The runtime SELL GUARD + 2h BUY cooldown back this up at the code level — your job is to not even propose a forbidden re-entry.
+ After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal.
## Output schema (your last message MUST be a single-line JSON object — no markdown fences, just one line)
… 3 unchanged lines …
```
- The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose. The skip_condition `previous.decision == "hold"` requires a parseable JSON; if you wrap the line in markdown the orchestrator falls back to a string and execute spawns wastefully.
+ The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose.
If `previous.unavailable == true` → `{"decision":"hold","path":null,"size_pct":null,"scalp_pct":null,"reasoning":"indicators unavailable"}`.
show full prompt (variant)
You are the **decide** stage of the trading workflow.

Apply the strict v30 rules to research's output and pick exactly one action. **NO arithmetic.** Compare values directly with the listed thresholds. Do not derive flags, do not recompute MACD/RSI/EMA, do not interpolate.

## Previous stage output

```json
{{previous}}
```

## Decision rules

**Default = HOLD.** Only emit `buy` / `sell` when an explicit rule fires below.

**Tier override = MODERATE.** Use the moderate tier values everywhere a tier is mentioned (`entryRsiThreshold = 42`, sizing as listed below). This caps the exposure on counter-trend entries vs the aggressive default.

### Position-already-open path (`previous.vault_position_token_amount > 0`)

Test exits in priority order. First match wins.

**Min-hold protection (counter-trend):** When `previous.open_position_entry_path ∈ {"B", "E"}` AND `previous.open_position_ticks_since_buy < 2`, the only exits allowed are `stop` (safety) and `tp` (full take-profit). Skip `scalp`, `trailing`, and `reversal` — counter-trend entries need at least 2 tick bars to let the rebound develop. If neither stop nor tp fires within this window → `hold`.

**Stop-loss:** `previous.price <= previous.open_position_stop_loss_usd` → `sell`, `path: "stop"`, full close.

**Full take-profit:** `previous.price >= previous.open_position_tp_target_usd` → `sell`, `path: "tp"`, full close.

**Quick scalp (33%):** `previous.price >= previous.open_position_scalp_target_usd` AND (`previous.rsi_1h >= scalpRsiThreshold` OR `previous.rsi_15m >= scalpRsiThreshold + 5`) → `sell`, `path: "scalp"`, `scalp_pct: 33`.

**Trailing exit:** the orchestrator does not have a way to compute "NET PnL" without arithmetic, so this path requires `previous.tf_15m` flipping to `SELL` AND `previous.macd_15m_histogram < 0` AND `previous.price > previous.open_position_cost_basis_usd / previous.vault_position_token_amount`. (The position is up vs cost basis AND momentum is rolling over.) → `sell`, `path: "trailing"`.

**Trend reversal:** `previous.tf_4h ∈ {SELL, STRONG_SELL}` AND `previous.tf_daily ∈ {SELL, STRONG_SELL}` AND `previous.open_position_entry_path ∉ {"B", "E"}` → `sell`, `path: "reversal"`. **Excluded for B/E entries**: those paths enter deliberately counter-trend, so a still-bearish HTF is the entry premise, not a reversal — let stop/tp/scalp/trailing handle the exit.

If none fire → `hold`.

### No-position path (`previous.vault_position_token_amount == 0`)

**HARD GUARD — read before everything else in this section.** When `previous.vault_position_token_amount == 0` you hold zero of the trading token, so you have NOTHING to sell. Exits (`stop`, `tp`, `scalp`, `trailing`, `reversal`) are FORBIDDEN here regardless of how bearish the timeframes look — they exist ONLY in the Position-already-open path above. The only valid emissions when position is 0 are: `hold`, or `buy` with one of the entry paths A / B / C / D / E. Emitting `{"decision":"sell", ...}` with `vault_position_token_amount == 0` is a hard contract violation: there is no inventory to dispose of and the orchestrator will reject it.

Test in priority order. First match wins. Use **moderate tier**: `entryRsiThreshold = 42`.

#### Path A — Short-timeframe mean-reversion

LONG fires when ALL hold:
- `previous.rsi_1h < 42` (moderate threshold)
- `previous.rsi_15m_crossed_up_from_below_35 == true` (15m oversold reversal confirmed)
- `previous.macd_15m_flipped_positive == true` (15m momentum flipped within the last 2 bars)
- `previous.tf_daily ∉ {SELL, STRONG_SELL}` (1d not bearish — daily-flat-or-better)

Size: **35%** (moderate).

#### Path E — Capitulation oversold (BYPASS HTF wall, SPOT-ONLY)

LONG fires when ALL hold:
- `previous.rsi_1h < 27` (moderate threshold). DO NOT relax — this is the extreme-tail entry.
- `previous.rsi_15m > 30` (some recovery from the bottom)
- `previous.macd_15m_flipped_positive == true` (early momentum flip confirmed)
- `previous.close_above_low_12_pct >= 0.3` (proof the local bottom is in)

No HTF filter. Size: **20%** (moderate). 60-min anti-wash window after this entry's exit.

#### Path C — Trend continuation pullback

LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (3-of-4 timeframes BUY or STRONG_BUY)
- `previous.rsi_1h < 60` (not yet overbought)
- `previous.macd_15m_histogram > 0` (15m is going up)
- `previous.atr_pct >= 1.0`
- `previous.regime != "bear"`

Size: **25%** (moderate). 30-min anti-wash window.

#### Path B — Deep-value counter-trend

LONG fires when ALL hold:
- `previous.rsi_daily < 30` AND `previous.rsi_weekly < 35`
- `previous.tf_4h ∈ {BUY, STRONG_BUY, NEUTRAL}` (4h reversing up)
- `previous.tf_1h ∈ {BUY, STRONG_BUY}` AND `previous.rsi_15m >= 50`
- `previous.macd_15m_flipped_positive == true` (15m momentum confirms — required to avoid catching a falling knife)
- `previous.regime != "bear"` (DO NOT fire Path B inside a bear regime — historical evidence shows Path B + bear → reversal exit loop with net negative expectation)

Size: **50%** (moderate, down from 65% aggressive).

#### Path D — Confirmed momentum

LONG fires when ALL hold:
- `previous.tf_buy_count >= 3` (moderate alignment, looser than aggressive 4/4)
- `previous.breakout_last_24_periods == true`
- `previous.volume_confirm_15m == true`
- `previous.atr_pct >= 1.5`

Size: **50%** (moderate).

### Default

If no path fires → `hold`.

## Anti-wash trade rule

After a full take-profit / final scalp / stop / trailing / reversal exit, the next 30 min ONLY allows Path A (oversold dip) or Path E (capitulation). Path B / Path C / Path D are forbidden in that window regardless of signal.

## Output schema (your last message MUST be a single-line JSON object — no markdown fences, just one line)

```json
{"decision":"<buy|sell|hold>","path":"<A|B|C|D|E|stop|tp|scalp|trailing|reversal|null>","size_pct":<number 0-100 or null>,"scalp_pct":<33|null>,"reasoning":"<one short sentence>"}
```

The orchestrator parses your LAST line as JSON. Emit it on a single line, no code fence, no trailing prose.

If `previous.unavailable == true` → `{"decision":"hold","path":null,"size_pct":null,"scalp_pct":null,"reasoning":"indicators unavailable"}`.

Trade-by-trade detail

Click any run to expand its trade list.

base  btcusdc 2026-05-08_base_btcusdc_qwen3-coder-480b-cloud_d43f2134   open ↗ 63 BUY · 62 SELL   -17.97%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 06:00:00 BUY E $3000.00 $78620.91 0.53%
2026-02-01 07:00:00 SELL stop $2956.18 $78300.00 0.53% $-43.82 -1.46%
2026-02-01 11:00:00 BUY E $2986.85 $78279.73 0.53%
2026-02-01 12:00:00 SELL stop $2972.79 $78743.56 0.53% $-14.06 -0.47%
2026-02-01 14:00:00 BUY E $2982.64 $78317.51 0.53%
2026-02-01 15:00:00 SELL stop $2947.11 $78211.12 0.53% $-35.52 -1.19%
2026-02-01 16:00:00 BUY A $4953.30 $77593.40 0.55%
2026-02-01 17:00:00 SELL stop $4892.80 $77494.77 0.55% $-60.50 -1.22%
2026-02-01 20:00:00 BUY E $2953.83 $77174.78 0.53%
2026-02-01 21:00:00 SELL stop $2919.92 $77103.04 0.53% $-33.91 -1.15%
2026-02-01 22:00:00 BUY E $2943.65 $76526.03 0.53%
2026-02-01 23:00:00 SELL stop $2940.09 $77249.31 0.53% $-3.56 -0.12%
2026-02-02 04:00:00 BUY E $2942.59 $76292.98 0.53%
2026-02-02 05:00:00 SELL stop $2896.30 $75894.15 0.53% $-46.29 -1.57%
2026-02-02 20:00:00 BUY E $2928.70 $78341.50 0.53%
2026-02-02 21:00:00 SELL stop $2885.47 $78008.59 0.53% $-43.23 -1.48%
2026-02-03 03:00:00 BUY E $2915.73 $77808.01 0.53%
2026-02-03 04:00:00 SELL stop $2920.00 $78753.32 0.53% +$4.27 +0.15%
2026-02-03 17:00:00 BUY E $2917.01 $76488.08 0.53%
2026-02-03 18:00:00 SELL stop $2826.91 $74915.79 0.53% $-90.10 -3.09%
2026-02-03 19:00:00 BUY E $2889.98 $73139.13 0.53%
2026-02-03 20:00:00 SELL reversal $2929.69 $74935.00 0.53% +$39.71 +1.37%
2026-02-03 23:00:00 BUY E $2901.89 $75708.83 0.53%
2026-02-04 00:00:00 SELL stop $2873.60 $75770.21 0.53% $-28.29 -0.97%
2026-02-04 08:00:00 BUY E $2893.41 $76514.30 0.53%
2026-02-04 09:00:00 SELL stop $2865.61 $76587.26 0.53% $-27.79 -0.96%
2026-02-04 11:00:00 BUY E $2885.07 $76302.10 0.53%
2026-02-04 12:00:00 SELL stop $2843.98 $76017.25 0.53% $-41.08 -1.42%
2026-02-04 13:00:00 BUY E $2872.74 $76180.85 0.53%
2026-02-04 14:00:00 SELL stop $2793.44 $74867.00 0.53% $-79.30 -2.76%
2026-02-04 15:00:00 BUY E $2848.95 $74359.53 0.53%
2026-02-04 16:00:00 SELL stop $2810.47 $74136.36 0.53% $-38.49 -1.35%
2026-02-05 03:00:00 BUY E $2837.41 $71454.44 0.53%
2026-02-05 04:00:00 SELL stop $2798.42 $71223.25 0.53% $-38.98 -1.37%
2026-02-05 06:00:00 BUY E $2825.71 $70732.72 0.53%
2026-02-05 07:00:00 SELL stop $2804.59 $70951.51 0.53% $-21.13 -0.75%
2026-02-05 13:00:00 BUY A $4698.96 $69563.57 0.55%
2026-02-05 14:00:00 SELL stop $4656.08 $69688.94 0.55% $-42.88 -0.91%
2026-02-05 16:00:00 BUY E $2806.51 $67489.07 0.53%
2026-02-05 17:00:00 SELL stop $2810.11 $68295.15 0.53% +$3.60 +0.13%
2026-02-05 19:00:00 BUY A $4679.32 $66347.00 0.55%
2026-02-05 20:00:00 SELL stop $4552.90 $65265.65 0.55% $-126.42 -2.70%
2026-02-05 21:00:00 BUY E $2769.66 $63775.67 0.53%
2026-02-05 22:00:00 SELL stop $2716.36 $63213.34 0.53% $-53.31 -1.92%
2026-02-06 01:00:00 BUY A $4589.45 $63509.39 0.55%
2026-02-06 02:00:00 SELL stop $4697.07 $65714.96 0.55% +$107.61 +2.34%
2026-02-06 04:00:00 BUY E $2785.96 $64168.33 0.53%
2026-02-06 12:00:00 SELL tp $2862.40 $66631.32 0.53% +$76.45 +2.74%
2026-02-07 07:00:00 BUY E $2808.89 $68769.65 0.53%
2026-02-07 08:00:00 SELL stop $2751.73 $68087.14 0.53% $-57.16 -2.04%
2026-02-07 11:00:00 BUY A $4652.90 $67987.00 0.55%
2026-02-07 12:00:00 SELL stop $4601.23 $67972.65 0.55% $-51.68 -1.11%
2026-02-08 00:00:00 BUY A $4627.07 $69289.38 0.55%
2026-02-08 04:00:00 SELL stop $4564.16 $69099.99 0.55% $-62.91 -1.36%
2026-02-08 07:00:00 BUY E $2757.37 $69361.18 0.53%
2026-02-08 08:00:00 SELL tp $2742.10 $69710.69 0.53% $-15.27 -0.55%
2026-02-08 09:00:00 BUY A $4587.98 $70665.59 0.55%
2026-02-08 10:00:00 SELL stop $4502.19 $70107.19 0.55% $-85.78 -1.87%
2026-02-08 11:00:00 BUY A $4545.08 $70266.41 0.55%
2026-02-08 12:00:00 SELL tp $4542.56 $70999.98 0.55% $-2.52 -0.06%
2026-02-12 13:00:00 BUY E $2726.29 $67365.56 0.53%
2026-02-12 14:00:00 SELL stop $2697.62 $67365.56 0.53% $-28.67 -1.05%
2026-02-12 19:00:00 BUY E $2717.69 $67365.56 0.53%
2026-02-12 20:00:00 SELL stop $2689.12 $67365.56 0.53% $-28.57 -1.05%
2026-02-12 22:00:00 BUY E $2709.12 $67365.56 0.53%
2026-02-13 14:00:00 SELL tp $2680.64 $67365.56 0.53% $-28.48 -1.05%
2026-02-13 18:00:00 BUY E $2700.58 $67365.56 0.53%
2026-02-13 19:00:00 SELL stop $2672.19 $67365.56 0.53% $-28.39 -1.05%
2026-02-15 01:00:00 BUY E $2692.06 $67365.56 0.53%
2026-02-15 02:00:00 SELL tp $2663.77 $67365.56 0.53% $-28.29 -1.05%
2026-02-15 03:00:00 BUY E $2683.57 $67365.56 0.53%
2026-02-15 05:00:00 SELL tp $2655.38 $67365.56 0.53% $-28.20 -1.05%
2026-02-16 07:00:00 BUY E $2675.11 $67365.56 0.53%
2026-02-16 08:00:00 SELL reversal $2647.01 $67365.56 0.53% $-28.10 -1.05%
2026-02-17 12:00:00 BUY E $2666.68 $67365.56 0.53%
2026-02-17 13:00:00 SELL stop $2638.67 $67365.56 0.53% $-28.01 -1.05%
2026-02-19 11:00:00 BUY E $2658.28 $67365.56 0.53%
2026-02-19 12:00:00 SELL stop $2630.36 $67365.56 0.53% $-27.92 -1.05%
2026-02-19 16:00:00 BUY E $2649.90 $67365.56 0.53%
2026-02-19 17:00:00 SELL stop $2622.08 $67365.56 0.53% $-27.83 -1.05%
2026-02-19 18:00:00 BUY E $2641.56 $67365.56 0.53%
2026-02-19 19:00:00 SELL stop $2613.82 $67365.56 0.53% $-27.73 -1.05%
2026-02-21 05:00:00 BUY E $2633.24 $67365.56 0.53%
2026-02-21 06:00:00 SELL stop $2605.59 $67365.56 0.53% $-27.64 -1.05%
2026-02-21 13:00:00 BUY E $2624.94 $67365.56 0.53%
2026-02-21 14:00:00 SELL stop $2597.39 $67365.56 0.53% $-27.55 -1.05%
2026-02-21 21:00:00 BUY E $2616.68 $67365.56 0.53%
2026-02-21 22:00:00 SELL stop $2589.22 $67365.56 0.53% $-27.46 -1.05%
2026-02-22 07:00:00 BUY E $2608.44 $67365.56 0.53%
2026-02-22 08:00:00 SELL stop $2581.07 $67365.56 0.53% $-27.37 -1.05%
2026-02-22 09:00:00 BUY E $2600.23 $67365.56 0.53%
2026-02-22 10:00:00 SELL stop $2572.95 $67365.56 0.53% $-27.28 -1.05%
2026-02-22 22:00:00 BUY E $2592.04 $67365.56 0.53%
2026-02-22 23:00:00 SELL stop $2564.86 $67365.56 0.53% $-27.19 -1.05%
2026-02-24 14:00:00 BUY E $2583.89 $67365.56 0.53%
2026-02-24 15:00:00 SELL stop $2556.79 $67365.56 0.53% $-27.10 -1.05%
2026-02-25 01:00:00 BUY E $2575.76 $67365.56 0.53%
2026-02-25 02:00:00 SELL stop $2548.75 $67365.56 0.53% $-27.01 -1.05%
2026-02-25 08:00:00 BUY E $2567.65 $67365.56 0.53%
2026-02-25 09:00:00 SELL stop $2540.73 $67365.56 0.53% $-26.92 -1.05%
2026-02-25 15:00:00 BUY E $2560.78 $67365.56 0.53%
2026-02-25 16:00:00 SELL stop $2533.93 $67365.56 0.53% $-26.85 -1.05%
2026-02-25 18:00:00 BUY E $2551.53 $67365.56 0.53%
2026-02-25 19:00:00 SELL stop $2524.78 $67365.56 0.53% $-26.74 -1.05%
2026-02-25 21:00:00 BUY E $2543.50 $67365.56 0.53%
2026-02-25 22:00:00 SELL stop $2516.85 $67365.56 0.53% $-26.66 -1.05%
2026-02-26 01:00:00 BUY E $2535.51 $67365.56 0.53%
2026-02-26 02:00:00 SELL stop $2508.94 $67365.56 0.53% $-26.57 -1.05%
2026-02-26 11:00:00 BUY E $2527.53 $67365.56 0.53%
2026-02-26 12:00:00 SELL stop $2501.06 $67365.56 0.53% $-26.48 -1.05%
2026-02-26 13:00:00 BUY E $2519.59 $67365.56 0.53%
2026-02-26 14:00:00 SELL stop $2493.20 $67365.56 0.53% $-26.39 -1.05%
2026-02-26 21:00:00 BUY E $2511.67 $67365.56 0.53%
2026-02-26 22:00:00 SELL stop $2485.37 $67365.56 0.53% $-26.31 -1.05%
2026-02-27 00:00:00 BUY E $2503.78 $67365.56 0.53%
2026-02-27 01:00:00 SELL stop $2477.56 $67365.56 0.52% $-26.22 -1.05%
2026-02-27 19:00:00 BUY E $2495.92 $67365.56 0.53%
2026-02-27 20:00:00 SELL stop $2469.78 $67365.56 0.52% $-26.13 -1.05%
2026-02-27 23:00:00 BUY E $2488.08 $67365.56 0.52%
2026-02-28 00:00:00 SELL reversal $2462.03 $67365.56 0.52% $-26.05 -1.05%
2026-02-28 17:00:00 BUY E $2480.26 $67365.56 0.52%
2026-02-28 18:00:00 SELL stop $2454.30 $67365.56 0.52% $-25.96 -1.05%
2026-02-28 22:00:00 BUY E $2472.47 $67365.56 0.52%
2026-02-28 23:00:00 SELL stop $2446.60 $67365.56 0.52% $-25.88 -1.05%
2026-03-01 00:00:00 BUY E $2464.71 $67365.56 0.52%
base  wethusdc 2026-05-08_base_wethusdc_qwen3-coder-480b-cloud_b7e5498e   open ↗ 112 BUY · 112 SELL   -33.88%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 05:00:00 BUY E $3000.00 $2448.23 0.53%
2026-02-01 06:00:00 SELL stop $2946.81 $2430.51 0.53% $-53.19 -1.77%
2026-02-01 07:00:00 BUY E $2984.04 $2418.65 0.53%
2026-02-01 08:00:00 SELL stop $2943.44 $2411.22 0.53% $-40.60 -1.36%
2026-02-01 14:00:00 BUY E $2971.86 $2381.13 0.53%
2026-02-01 15:00:00 SELL stop $2930.52 $2373.07 0.53% $-41.35 -1.39%
2026-02-01 17:00:00 BUY E $2959.46 $2304.06 0.53%
2026-02-01 18:00:00 SELL stop $2940.78 $2313.96 0.53% $-18.68 -0.63%
2026-02-01 21:00:00 BUY E $2953.85 $2316.36 0.53%
2026-02-01 22:00:00 SELL stop $2890.14 $2290.58 0.53% $-63.71 -2.16%
2026-02-02 00:00:00 BUY E $2934.74 $2270.15 0.53%
2026-02-02 01:00:00 SELL stop $2933.23 $2293.20 0.53% $-1.51 -0.05%
2026-02-02 02:00:00 BUY E $2934.29 $2291.29 0.53%
2026-02-02 04:00:00 SELL stop $2837.10 $2239.02 0.53% $-97.19 -3.31%
2026-02-02 05:00:00 BUY E $2905.13 $2240.54 0.53%
2026-02-02 06:00:00 SELL stop $2819.94 $2198.02 0.53% $-85.19 -2.93%
2026-02-02 08:00:00 BUY E $2879.57 $2228.93 0.53%
2026-02-02 09:00:00 SELL tp $2875.27 $2249.33 0.53% $-4.30 -0.15%
2026-02-02 10:00:00 BUY E $2878.28 $2291.57 0.53%
2026-02-02 11:00:00 SELL stop $2830.82 $2277.80 0.53% $-47.46 -1.65%
2026-02-02 13:00:00 BUY E $2864.05 $2311.66 0.53%
2026-02-02 14:00:00 SELL tp $2853.79 $2327.93 0.53% $-10.26 -0.36%
2026-02-02 21:00:00 BUY E $2860.97 $2322.07 0.53%
2026-02-02 22:00:00 SELL tp $2855.14 $2342.04 0.53% $-5.82 -0.20%
2026-02-03 03:00:00 BUY E $2859.22 $2298.72 0.53%
2026-02-03 04:00:00 SELL tp $2884.83 $2344.03 0.53% +$25.60 +0.90%
2026-02-03 10:00:00 BUY E $2866.90 $2292.06 0.53%
2026-02-03 11:00:00 SELL stop $2823.97 $2281.79 0.53% $-42.94 -1.50%
2026-02-03 13:00:00 BUY E $2854.02 $2301.32 0.53%
2026-02-03 15:00:00 SELL stop $2769.81 $2257.20 0.53% $-84.21 -2.95%
2026-02-03 18:00:00 BUY E $2828.76 $2195.11 0.53%
2026-02-03 19:00:00 SELL stop $2704.04 $2120.65 0.53% $-124.72 -4.41%
2026-02-03 23:00:00 BUY E $2791.34 $2236.38 0.53%
2026-02-04 00:00:00 SELL stop $2758.67 $2233.72 0.53% $-32.67 -1.17%
2026-02-04 06:00:00 BUY E $2781.54 $2265.40 0.53%
2026-02-04 07:00:00 SELL stop $2767.00 $2277.54 0.53% $-14.54 -0.52%
2026-02-04 10:00:00 BUY E $2777.18 $2260.65 0.53%
2026-02-04 11:00:00 SELL stop $2748.06 $2260.74 0.53% $-29.12 -1.05%
2026-02-04 13:00:00 BUY E $2768.44 $2243.92 0.53%
2026-02-04 14:00:00 SELL stop $2684.03 $2198.63 0.53% $-84.41 -3.05%
2026-02-04 15:00:00 BUY E $2743.12 $2171.87 0.53%
2026-02-04 16:00:00 SELL stop $2689.23 $2151.83 0.53% $-53.89 -1.96%
2026-02-04 17:00:00 BUY E $2726.95 $2135.05 0.53%
2026-02-04 22:00:00 SELL tp $2691.64 $2129.80 0.53% $-35.31 -1.29%
2026-02-05 03:00:00 BUY E $2716.36 $2124.31 0.53%
2026-02-05 04:00:00 SELL stop $2669.70 $2110.00 0.53% $-46.66 -1.72%
2026-02-05 07:00:00 BUY E $2702.36 $2087.57 0.53%
2026-02-05 08:00:00 SELL stop $2678.86 $2091.40 0.53% $-23.50 -0.87%
2026-02-05 12:00:00 BUY E $2695.31 $2079.98 0.53%
2026-02-05 13:00:00 SELL stop $2646.49 $2063.99 0.53% $-48.82 -1.81%
2026-02-05 16:00:00 BUY E $2680.66 $1961.12 0.53%
2026-02-05 17:00:00 SELL stop $2703.28 $1998.68 0.53% +$22.62 +0.84%
2026-02-05 19:00:00 BUY E $2687.45 $1950.30 0.53%
2026-02-05 20:00:00 SELL stop $2629.85 $1928.76 0.53% $-57.60 -2.14%
2026-02-05 21:00:00 BUY E $2670.17 $1869.59 0.53%
2026-02-05 22:00:00 SELL stop $2615.12 $1850.48 0.53% $-55.05 -2.06%
2026-02-06 00:00:00 BUY E $2653.65 $1826.83 0.53%
2026-02-06 01:00:00 SELL stop $2688.70 $1870.61 0.53% +$35.04 +1.32%
2026-02-06 03:00:00 BUY E $2664.17 $1907.49 0.53%
2026-02-06 04:00:00 SELL stop $2614.53 $1891.82 0.53% $-49.63 -1.86%
2026-02-06 09:00:00 BUY E $2649.28 $1874.46 0.53%
2026-02-06 10:00:00 SELL stop $2683.73 $1919.00 0.53% +$34.45 +1.30%
2026-02-06 13:00:00 BUY E $2659.61 $1920.91 0.53%
2026-02-07 06:00:00 SELL stop $2854.76 $2083.79 0.53% +$195.15 +7.34%
2026-02-07 07:00:00 BUY E $2718.16 $2047.73 0.53%
2026-02-07 08:00:00 SELL stop $2662.49 $2027.10 0.53% $-55.67 -2.05%
2026-02-07 10:00:00 BUY A $4502.43 $2014.45 0.55%
2026-02-07 11:00:00 SELL stop $4445.16 $2010.68 0.54% $-57.26 -1.27%
2026-02-07 12:00:00 BUY A $4473.79 $2018.77 0.54%
2026-02-07 13:00:00 SELL stop $4474.63 $2041.33 0.55% +$0.83 +0.02%
2026-02-07 17:00:00 BUY E $2684.53 $2050.30 0.53%
2026-02-07 18:00:00 SELL stop $2670.38 $2061.16 0.53% $-14.14 -0.53%
2026-02-07 20:00:00 BUY E $2680.28 $2091.29 0.53%
2026-02-07 21:00:00 SELL tp $2669.91 $2105.32 0.53% $-10.37 -0.39%
2026-02-08 01:00:00 BUY A $4461.95 $2084.58 0.54%
2026-02-08 02:00:00 SELL stop $4438.40 $2096.35 0.54% $-23.55 -0.53%
2026-02-08 07:00:00 BUY E $2670.11 $2079.30 0.53%
2026-02-08 08:00:00 SELL stop $2648.55 $2084.41 0.53% $-21.56 -0.81%
2026-02-08 15:00:00 BUY E $2663.64 $2128.62 0.53%
2026-02-08 16:00:00 SELL stop $2610.93 $2108.64 0.53% $-52.71 -1.98%
2026-02-09 01:00:00 BUY A $4413.04 $2084.48 0.54%
2026-02-09 23:00:00 SELL tp $4429.50 $2115.22 0.54% +$16.46 +0.37%
2026-02-10 00:00:00 BUY E $2652.76 $2105.02 0.53%
2026-02-10 01:00:00 SELL stop $2614.56 $2096.72 0.53% $-38.20 -1.44%
2026-02-10 04:00:00 BUY E $2641.30 $2064.96 0.53%
2026-02-10 05:00:00 SELL tp $2620.51 $2070.44 0.53% $-20.80 -0.79%
2026-02-10 07:00:00 BUY E $2635.06 $2008.79 0.53%
2026-02-10 08:00:00 SELL stop $2605.69 $2007.47 0.53% $-29.38 -1.11%
2026-02-10 19:00:00 BUY E $2626.25 $2009.44 0.53%
2026-02-10 20:00:00 SELL stop $2609.69 $2017.95 0.53% $-16.56 -0.63%
2026-02-11 01:00:00 BUY E $2621.28 $2025.41 0.53%
2026-02-11 02:00:00 SELL stop $2592.54 $2024.45 0.53% $-28.74 -1.10%
2026-02-11 04:00:00 BUY E $2612.66 $2009.59 0.53%
2026-02-11 05:00:00 SELL stop $2536.11 $1971.39 0.53% $-76.55 -2.93%
2026-02-11 06:00:00 BUY E $2589.70 $1974.45 0.53%
2026-02-11 12:00:00 SELL reversal $2535.56 $1953.66 0.53% $-54.14 -2.09%
2026-02-11 18:00:00 BUY E $2573.45 $1929.88 0.53%
2026-02-11 19:00:00 SELL stop $2565.14 $1944.03 0.53% $-8.32 -0.32%
2026-02-11 23:00:00 BUY E $2570.96 $1951.47 0.53%
2026-02-12 00:00:00 SELL stop $2530.59 $1941.18 0.53% $-40.37 -1.57%
2026-02-13 21:00:00 BUY E $2558.85 $2045.61 0.53%
2026-02-14 00:00:00 SELL tp $2535.87 $2048.72 0.53% $-22.98 -0.90%
2026-02-14 04:00:00 BUY A $4253.26 $2054.37 0.54%
2026-02-14 05:00:00 SELL stop $4205.61 $2053.57 0.54% $-47.65 -1.12%
2026-02-14 13:00:00 BUY A $4229.43 $2070.97 0.54%
2026-02-14 14:00:00 SELL tp $4184.85 $2071.54 0.54% $-44.59 -1.05%
2026-02-14 20:00:00 BUY A $4207.14 $2088.52 0.54%
2026-02-14 22:00:00 SELL tp $4156.38 $2085.87 0.54% $-50.76 -1.21%
2026-02-15 18:00:00 BUY E $2509.06 $1971.30 0.53%
2026-02-15 19:00:00 SELL stop $2467.59 $1959.24 0.52% $-41.46 -1.65%
2026-02-15 20:00:00 BUY E $2496.62 $1942.23 0.53%
2026-02-15 21:00:00 SELL stop $2480.50 $1950.11 0.52% $-16.12 -0.65%
2026-02-16 04:00:00 BUY E $2491.78 $1958.78 0.52%
2026-02-16 05:00:00 SELL tp $2483.67 $1973.06 0.53% $-8.12 -0.33%
2026-02-16 06:00:00 BUY E $2489.35 $1958.00 0.52%
2026-02-16 07:00:00 SELL tp $2474.22 $1966.69 0.52% $-15.13 -0.61%
2026-02-16 22:00:00 BUY D $5383.75 $1999.14 0.55%
2026-02-16 23:00:00 SELL stop $5300.47 $1990.19 0.55% $-83.28 -1.55%
2026-02-17 06:00:00 BUY A $4099.71 $1975.68 0.54%
2026-02-17 07:00:00 SELL stop $4066.44 $1981.02 0.54% $-33.27 -0.81%
2026-02-18 02:00:00 BUY E $2449.84 $1978.07 0.52%
2026-02-18 03:00:00 SELL stop $2435.90 $1987.61 0.52% $-13.94 -0.57%
2026-02-18 20:00:00 BUY E $2445.66 $1941.03 0.52%
2026-02-18 21:00:00 SELL stop $2418.38 $1939.67 0.52% $-27.28 -1.12%
2026-02-19 09:00:00 BUY E $2437.48 $1970.50 0.52%
2026-02-19 10:00:00 SELL stop $2403.77 $1963.79 0.52% $-33.70 -1.38%
2026-02-19 14:00:00 BUY E $2427.37 $1921.40 0.52%
2026-02-19 15:00:00 SELL stop $2421.32 $1936.87 0.52% $-6.05 -0.25%
2026-02-19 18:00:00 BUY E $2425.55 $1920.72 0.52%
2026-02-19 19:00:00 SELL stop $2424.26 $1939.99 0.52% $-1.29 -0.05%
2026-02-20 11:00:00 BUY E $2425.17 $1957.54 0.52%
2026-02-20 12:00:00 SELL stop $2383.19 $1943.98 0.52% $-41.98 -1.73%
2026-02-20 14:00:00 BUY A $4020.95 $1934.11 0.54%
2026-02-20 15:00:00 SELL stop $3997.35 $1943.70 0.54% $-23.60 -0.59%
2026-02-20 17:00:00 BUY A $4009.15 $1968.62 0.54%
2026-02-20 18:00:00 SELL tp $3961.84 $1966.57 0.54% $-47.31 -1.18%
2026-02-20 19:00:00 BUY A $3985.50 $1975.56 0.54%
2026-02-20 20:00:00 SELL stop $3918.91 $1963.69 0.54% $-66.59 -1.67%
2026-02-21 03:00:00 BUY E $2371.32 $1965.69 0.52%
2026-02-21 04:00:00 SELL tp $2338.60 $1959.03 0.52% $-32.72 -1.38%
2026-02-21 05:00:00 BUY E $2361.51 $1962.40 0.52%
2026-02-21 06:00:00 SELL tp $2337.39 $1962.86 0.52% $-24.12 -1.02%
2026-02-21 08:00:00 BUY A $3923.79 $1962.71 0.54%
2026-02-21 09:00:00 SELL tp $3894.03 $1969.00 0.54% $-29.76 -0.76%
2026-02-21 21:00:00 BUY E $2345.35 $1974.14 0.52%
2026-02-21 22:00:00 SELL stop $2330.14 $1982.04 0.52% $-15.20 -0.65%
2026-02-21 23:00:00 BUY E $2340.78 $1974.40 0.52%
2026-02-22 00:00:00 SELL stop $2315.12 $1973.35 0.52% $-25.67 -1.10%
2026-02-22 01:00:00 BUY A $3888.47 $1972.87 0.54%
2026-02-22 02:00:00 SELL stop $3855.46 $1977.37 0.54% $-33.02 -0.85%
2026-02-22 03:00:00 BUY E $2323.18 $1972.23 0.52%
2026-02-22 04:00:00 SELL stop $2301.82 $1974.71 0.52% $-21.35 -0.92%
2026-02-22 09:00:00 BUY E $2316.77 $1973.39 0.52%
2026-02-22 10:00:00 SELL tp $2295.43 $1975.83 0.52% $-21.34 -0.92%
2026-02-22 11:00:00 BUY E $2310.37 $1977.50 0.52%
2026-02-22 13:00:00 SELL tp $2273.40 $1966.37 0.52% $-36.97 -1.60%
2026-02-22 14:00:00 BUY E $2299.28 $1950.95 0.52%
2026-02-22 15:00:00 SELL tp $2274.93 $1950.64 0.52% $-24.35 -1.06%
2026-02-22 17:00:00 BUY A $3819.96 $1952.53 0.54%
2026-02-22 18:00:00 SELL stop $3755.24 $1940.27 0.54% $-64.72 -1.69%
2026-02-22 19:00:00 BUY A $3787.60 $1942.95 0.54%
2026-02-23 10:00:00 SELL reversal $3698.87 $1918.00 0.54% $-88.73 -2.34%
2026-02-23 18:00:00 BUY A $3743.24 $1863.92 0.54%
2026-02-23 19:00:00 SELL stop $3690.86 $1857.75 0.54% $-52.37 -1.40%
2026-02-24 00:00:00 BUY E $2230.23 $1856.30 0.52%
2026-02-24 01:00:00 SELL stop $2220.86 $1867.96 0.52% $-9.37 -0.42%
2026-02-24 02:00:00 BUY E $2227.42 $1840.95 0.52%
2026-02-24 03:00:00 SELL stop $2207.32 $1843.54 0.52% $-20.10 -0.90%
2026-02-24 04:00:00 BUY E $2221.39 $1832.03 0.52%
2026-02-24 05:00:00 SELL stop $2196.79 $1830.81 0.52% $-24.60 -1.11%
2026-02-24 06:00:00 BUY E $2214.01 $1826.26 0.52%
2026-02-24 07:00:00 SELL stop $2184.47 $1820.86 0.52% $-29.53 -1.33%
2026-02-24 08:00:00 BUY E $2205.15 $1825.70 0.52%
2026-02-24 09:00:00 SELL stop $2189.20 $1831.57 0.52% $-15.95 -0.72%
2026-02-24 10:00:00 BUY E $2200.36 $1827.14 0.52%
2026-02-24 12:00:00 SELL stop $2176.99 $1826.75 0.52% $-23.37 -1.06%
2026-02-24 13:00:00 BUY E $2193.35 $1823.92 0.52%
2026-02-24 14:00:00 SELL stop $2160.77 $1815.73 0.52% $-32.58 -1.49%
2026-02-25 00:00:00 BUY E $2183.58 $1851.94 0.52%
2026-02-25 01:00:00 SELL stop $2160.90 $1851.98 0.52% $-22.68 -1.04%
2026-02-25 06:00:00 BUY E $2176.77 $1887.98 0.52%
2026-02-25 07:00:00 SELL stop $2150.78 $1885.05 0.52% $-26.00 -1.19%
2026-02-25 08:00:00 BUY E $2168.97 $1893.31 0.52%
2026-02-25 09:00:00 SELL tp $2165.65 $1910.29 0.52% $-3.32 -0.15%
2026-02-25 13:00:00 BUY A $3613.30 $1953.43 0.54%
2026-02-25 14:00:00 SELL stop $3595.04 $1964.57 0.54% $-18.26 -0.51%
2026-02-26 08:00:00 BUY E $2162.50 $2053.37 0.52%
2026-02-26 09:00:00 SELL stop $2141.11 $2054.43 0.52% $-21.39 -0.99%
2026-02-26 10:00:00 BUY A $3593.47 $2074.94 0.54%
2026-02-26 11:00:00 SELL tp $3538.57 $2065.31 0.54% $-54.90 -1.53%
2026-02-26 13:00:00 BUY A $3566.02 $2070.00 0.54%
2026-02-26 14:00:00 SELL stop $3519.80 $2065.23 0.54% $-46.22 -1.30%
2026-02-26 15:00:00 BUY A $3542.91 $2051.19 0.54%
2026-02-26 16:00:00 SELL tp $3474.59 $2033.34 0.53% $-68.32 -1.93%
2026-02-26 17:00:00 BUY E $2105.25 $1983.80 0.52%
2026-02-26 18:00:00 SELL tp $2088.23 $1988.43 0.52% $-17.02 -0.81%
2026-02-26 19:00:00 BUY A $3500.24 $2004.23 0.54%
2026-02-26 20:00:00 SELL tp $3507.64 $2030.14 0.54% +$7.41 +0.21%
2026-02-26 22:00:00 BUY A $3503.94 $2030.36 0.54%
2026-02-26 23:00:00 SELL tp $3471.55 $2033.29 0.53% $-32.39 -0.92%
2026-02-27 00:00:00 BUY A $3487.75 $2027.68 0.53%
2026-02-27 01:00:00 SELL tp $3428.62 $2014.79 0.53% $-59.13 -1.70%
2026-02-27 03:00:00 BUY A $3458.18 $2026.00 0.53%
2026-02-27 04:00:00 SELL tp $3454.05 $2045.39 0.53% $-4.14 -0.12%
2026-02-27 10:00:00 BUY E $2073.67 $2010.01 0.52%
2026-02-27 11:00:00 SELL stop $2022.31 $1980.80 0.52% $-51.35 -2.48%
2026-02-27 12:00:00 BUY E $2058.26 $1962.08 0.52%
2026-02-27 13:00:00 SELL stop $2034.65 $1959.92 0.52% $-23.61 -1.15%
2026-02-27 15:00:00 BUY E $2051.18 $1942.95 0.52%
2026-02-27 16:00:00 SELL stop $2035.77 $1948.59 0.52% $-15.40 -0.75%
2026-02-27 17:00:00 BUY E $2046.56 $1927.15 0.52%
2026-02-27 18:00:00 SELL stop $2030.78 $1932.35 0.52% $-15.78 -0.77%
2026-02-27 19:00:00 BUY E $2041.82 $1918.02 0.52%
2026-02-27 20:00:00 SELL tp $2023.87 $1921.10 0.52% $-17.95 -0.88%
2026-02-27 22:00:00 BUY E $2036.44 $1921.26 0.52%
2026-02-27 23:00:00 SELL stop $2015.45 $1921.40 0.52% $-20.99 -1.03%
2026-02-28 02:00:00 BUY E $2030.14 $1924.61 0.52%
2026-02-28 03:00:00 SELL tp $2015.07 $1930.36 0.52% $-15.07 -0.74%
2026-02-28 04:00:00 BUY E $2025.62 $1924.49 0.52%
2026-02-28 05:00:00 SELL stop $2005.26 $1925.12 0.52% $-20.36 -1.01%
2026-02-28 06:00:00 BUY E $2019.51 $1919.94 0.52%
2026-02-28 07:00:00 SELL stop $1917.91 $1842.45 0.52% $-101.60 -5.03%
2026-02-28 09:00:00 BUY E $1989.03 $1852.48 0.52%
2026-02-28 10:00:00 SELL tp $1971.06 $1854.98 0.52% $-17.97 -0.90%
full-counter-trend  btcusdc 2026-05-08_full-counter-trend_btcusdc_qwen3-coder-480b-cloud   open ↗ 70 BUY · 70 SELL   -20.75%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 21:00:00 BUY E $3000.00 $77103.04 0.53%
2026-02-01 22:00:00 SELL stop $2946.08 $76526.03 0.53% $-53.92 -1.80%
2026-02-02 03:00:00 BUY E $2983.82 $76491.17 0.53%
2026-02-02 04:00:00 SELL stop $2944.65 $76292.98 0.53% $-39.18 -1.31%
2026-02-02 05:00:00 BUY E $2972.07 $75894.15 0.53%
2026-02-02 06:00:00 SELL stop $2925.49 $75502.10 0.53% $-46.59 -1.57%
2026-02-02 16:00:00 BUY E $2958.10 $78850.06 0.53%
2026-02-02 17:00:00 SELL stop $2918.86 $78634.76 0.53% $-39.23 -1.33%
2026-02-03 01:00:00 BUY A $4910.54 $79065.24 0.55%
2026-02-03 02:00:00 SELL tp $4853.85 $79017.63 0.55% $-56.69 -1.15%
2026-02-04 05:00:00 BUY E $2929.32 $76479.75 0.53%
2026-02-04 07:00:00 SELL stop $2904.95 $76652.68 0.53% $-24.37 -0.83%
2026-02-04 08:00:00 BUY E $2922.01 $76514.30 0.53%
2026-02-04 09:00:00 SELL stop $2893.92 $76587.26 0.53% $-28.09 -0.96%
2026-02-04 11:00:00 BUY E $2913.58 $76302.10 0.53%
2026-02-04 12:00:00 SELL stop $2872.07 $76017.25 0.53% $-41.51 -1.42%
2026-02-04 13:00:00 BUY E $2901.13 $76180.85 0.53%
2026-02-04 14:00:00 SELL stop $2821.03 $74867.00 0.53% $-80.10 -2.76%
2026-02-04 17:00:00 BUY E $2877.10 $73636.01 0.53%
2026-02-04 18:00:00 SELL stop $2805.79 $72576.08 0.53% $-71.31 -2.48%
2026-02-05 03:00:00 BUY E $2855.71 $71454.44 0.53%
2026-02-05 04:00:00 SELL stop $2816.46 $71223.25 0.53% $-39.24 -1.37%
2026-02-05 06:00:00 BUY E $2843.93 $70732.72 0.53%
2026-02-05 07:00:00 SELL tp $2822.66 $70951.51 0.53% $-21.27 -0.75%
2026-02-05 23:00:00 BUY E $2837.55 $63907.86 0.53%
2026-02-06 00:00:00 SELL stop $2763.82 $62909.86 0.53% $-73.74 -2.60%
2026-02-06 01:00:00 BUY A $4692.39 $63509.39 0.55%
2026-02-06 02:00:00 SELL stop $4802.31 $65714.96 0.55% +$109.93 +2.34%
2026-02-06 19:00:00 BUY E $2848.41 $69776.68 0.53%
2026-02-06 20:00:00 SELL tp $2856.94 $70731.46 0.53% +$8.53 +0.30%
2026-02-06 21:00:00 BUY E $2850.97 $70000.13 0.53%
2026-02-06 22:00:00 SELL tp $2835.35 $70358.43 0.53% $-15.62 -0.55%
2026-02-07 01:00:00 BUY A $4743.81 $69958.00 0.55%
2026-02-07 02:00:00 SELL stop $4726.45 $70471.49 0.55% $-17.36 -0.37%
2026-02-07 05:00:00 BUY A $4735.13 $70768.13 0.55%
2026-02-07 06:00:00 SELL stop $4643.32 $70161.50 0.55% $-91.81 -1.94%
2026-02-07 09:00:00 BUY A $4689.22 $68495.01 0.55%
2026-02-07 10:00:00 SELL stop $4613.93 $68138.20 0.55% $-75.29 -1.61%
2026-02-07 11:00:00 BUY A $4651.58 $67987.00 0.55%
2026-02-07 12:00:00 SELL stop $4599.92 $67972.65 0.55% $-51.66 -1.11%
2026-02-07 21:00:00 BUY A $4625.75 $69631.18 0.55%
2026-02-07 22:00:00 SELL stop $4566.61 $69497.99 0.55% $-59.13 -1.28%
2026-02-07 23:00:00 BUY E $2757.71 $69399.34 0.53%
2026-02-08 00:00:00 SELL stop $2724.37 $69289.38 0.53% $-33.34 -1.21%
2026-02-08 01:00:00 BUY E $2747.71 $69133.79 0.53%
2026-02-08 02:00:00 SELL stop $2728.46 $69379.57 0.53% $-19.24 -0.70%
2026-02-08 06:00:00 BUY E $2741.93 $69220.52 0.53%
2026-02-08 08:00:00 SELL tp $2732.30 $69710.69 0.53% $-9.64 -0.35%
2026-02-08 10:00:00 BUY E $2739.04 $70107.19 0.53%
2026-02-08 12:00:00 SELL tp $2744.74 $70999.98 0.53% +$5.69 +0.21%
2026-02-09 08:00:00 BUY E $2740.75 $70422.59 0.53%
2026-02-09 10:00:00 SELL stop $2681.42 $69630.35 0.53% $-59.33 -2.16%
2026-02-09 11:00:00 BUY E $2722.95 $68727.88 0.53%
2026-02-09 12:00:00 SELL stop $2702.19 $68928.72 0.53% $-20.76 -0.76%
2026-02-09 19:00:00 BUY E $2716.72 $70418.68 0.53%
2026-02-09 20:00:00 SELL tp $2708.70 $70957.01 0.53% $-8.02 -0.30%
2026-02-09 23:00:00 BUY E $2714.32 $70372.96 0.53%
2026-02-10 00:00:00 SELL stop $2676.81 $70138.00 0.53% $-37.50 -1.38%
2026-02-10 01:00:00 BUY A $4505.11 $69827.33 0.55%
2026-02-10 02:00:00 SELL tp $4498.21 $70486.82 0.55% $-6.90 -0.15%
2026-02-10 04:00:00 BUY A $4501.66 $69511.83 0.55%
2026-02-10 05:00:00 SELL stop $4473.21 $69831.62 0.55% $-28.45 -0.63%
2026-02-10 06:00:00 BUY E $2692.46 $69447.64 0.53%
2026-02-10 11:00:00 SELL stop $2643.99 $68921.68 0.53% $-48.47 -1.80%
2026-02-10 15:00:00 BUY A $4463.20 $68460.40 0.54%
2026-02-10 19:00:00 SELL stop $4442.70 $68894.36 0.54% $-20.50 -0.46%
2026-02-10 22:00:00 BUY E $2671.77 $68656.21 0.53%
2026-02-11 02:00:00 SELL tp $2656.24 $68982.00 0.53% $-15.53 -0.58%
2026-02-11 04:00:00 BUY E $2667.11 $68187.99 0.53%
2026-02-11 05:00:00 SELL stop $2615.74 $67584.46 0.53% $-51.37 -1.93%
2026-02-11 07:00:00 BUY E $2651.70 $66820.32 0.53%
2026-02-11 08:00:00 SELL stop $2632.19 $67032.72 0.53% $-19.51 -0.74%
2026-02-12 01:00:00 BUY E $2645.85 $67365.56 0.53%
2026-02-12 02:00:00 SELL tp $2618.07 $67365.56 0.53% $-27.78 -1.05%
2026-02-12 03:00:00 BUY E $2637.52 $67365.56 0.53%
2026-02-12 04:00:00 SELL stop $2609.83 $67365.56 0.53% $-27.69 -1.05%
2026-02-12 05:00:00 BUY E $2629.21 $67365.56 0.53%
2026-02-12 07:00:00 SELL tp $2601.61 $67365.56 0.53% $-27.60 -1.05%
2026-02-12 08:00:00 BUY E $2620.93 $67365.56 0.53%
2026-02-12 09:00:00 SELL stop $2593.42 $67365.56 0.53% $-27.51 -1.05%
2026-02-12 10:00:00 BUY E $2612.68 $67365.56 0.53%
2026-02-12 11:00:00 SELL tp $2585.26 $67365.56 0.53% $-27.42 -1.05%
2026-02-12 14:00:00 BUY E $2604.45 $67365.56 0.53%
2026-02-12 18:00:00 SELL tp $2577.13 $67365.56 0.53% $-27.33 -1.05%
2026-02-12 23:00:00 BUY E $2596.25 $67365.56 0.53%
2026-02-13 00:00:00 SELL stop $2569.02 $67365.56 0.53% $-27.24 -1.05%
2026-02-13 07:00:00 BUY E $2588.08 $67365.56 0.53%
2026-02-13 08:00:00 SELL tp $2560.94 $67365.56 0.53% $-27.15 -1.05%
2026-02-13 15:00:00 BUY E $2579.94 $67365.56 0.53%
2026-02-13 16:00:00 SELL stop $2552.88 $67365.56 0.53% $-27.06 -1.05%
2026-02-14 04:00:00 BUY E $2571.82 $67365.56 0.53%
2026-02-14 06:00:00 SELL tp $2544.86 $67365.56 0.53% $-26.97 -1.05%
2026-02-16 02:00:00 BUY E $2563.73 $67365.56 0.53%
2026-02-16 04:00:00 SELL tp $2536.86 $67365.56 0.53% $-26.88 -1.05%
2026-02-16 06:00:00 BUY E $2555.67 $67365.56 0.53%
2026-02-16 10:00:00 SELL tp $2528.88 $67365.56 0.53% $-26.79 -1.05%
2026-02-16 14:00:00 BUY E $2547.63 $67365.56 0.53%
2026-02-16 16:00:00 SELL stop $2520.93 $67365.56 0.53% $-26.70 -1.05%
2026-02-16 17:00:00 BUY E $2539.62 $67365.56 0.53%
2026-02-16 18:00:00 SELL stop $2513.01 $67365.56 0.53% $-26.61 -1.05%
2026-02-16 20:00:00 BUY E $2531.64 $67365.56 0.53%
2026-02-17 01:00:00 SELL tp $2505.11 $67365.56 0.53% $-26.52 -1.05%
2026-02-17 04:00:00 BUY E $2523.68 $67365.56 0.53%
2026-02-17 05:00:00 SELL stop $2497.24 $67365.56 0.53% $-26.44 -1.05%
2026-02-17 17:00:00 BUY E $2515.75 $67365.56 0.53%
2026-02-17 18:00:00 SELL stop $2489.40 $67365.56 0.53% $-26.35 -1.05%
2026-02-17 23:00:00 BUY E $2507.85 $67365.56 0.53%
2026-02-18 01:00:00 SELL tp $2481.58 $67365.56 0.52% $-26.26 -1.05%
2026-02-18 04:00:00 BUY E $2499.97 $67365.56 0.53%
2026-02-18 05:00:00 SELL tp $2473.79 $67365.56 0.52% $-26.18 -1.05%
2026-02-18 13:00:00 BUY E $2492.11 $67365.56 0.52%
2026-02-18 14:00:00 SELL tp $2466.02 $67365.56 0.52% $-26.09 -1.05%
2026-02-18 16:00:00 BUY E $2484.29 $67365.56 0.52%
2026-02-18 17:00:00 SELL stop $2458.28 $67365.56 0.52% $-26.01 -1.05%
2026-02-18 20:00:00 BUY E $2476.48 $67365.56 0.52%
2026-02-18 22:00:00 SELL tp $2450.56 $67365.56 0.52% $-25.92 -1.05%
2026-02-19 01:00:00 BUY E $2468.71 $67365.56 0.52%
2026-02-19 07:00:00 SELL stop $2442.87 $67365.56 0.52% $-25.83 -1.05%
2026-02-19 11:00:00 BUY E $2460.96 $67365.56 0.52%
2026-02-19 12:00:00 SELL stop $2435.21 $67365.56 0.52% $-25.75 -1.05%
2026-02-20 04:00:00 BUY E $2453.23 $67365.56 0.52%
2026-02-20 05:00:00 SELL stop $2427.57 $67365.56 0.52% $-25.67 -1.05%
2026-02-20 06:00:00 BUY E $2445.53 $67365.56 0.52%
2026-02-20 07:00:00 SELL stop $2419.95 $67365.56 0.52% $-25.58 -1.05%
2026-02-20 10:00:00 BUY E $2437.86 $67365.56 0.52%
2026-02-20 11:00:00 SELL tp $2412.36 $67365.56 0.52% $-25.50 -1.05%
2026-02-20 15:00:00 BUY E $2430.21 $67365.56 0.52%
2026-02-20 16:00:00 SELL tp $2404.80 $67365.56 0.52% $-25.41 -1.05%
2026-02-20 23:00:00 BUY E $2422.58 $67365.56 0.52%
2026-02-21 00:00:00 SELL stop $2397.25 $67365.56 0.52% $-25.33 -1.05%
2026-02-21 20:00:00 BUY E $2414.99 $67365.56 0.52%
2026-02-21 21:00:00 SELL stop $2389.74 $67365.56 0.52% $-25.25 -1.05%
2026-02-22 09:00:00 BUY E $2407.41 $67365.56 0.52%
2026-02-22 10:00:00 SELL tp $2382.25 $67365.56 0.52% $-25.16 -1.05%
2026-02-22 13:00:00 BUY E $2399.86 $67365.56 0.52%
2026-02-22 15:00:00 SELL tp $2374.78 $67365.56 0.52% $-25.08 -1.05%
2026-02-23 00:00:00 BUY E $2392.34 $67365.56 0.52%
2026-02-23 01:00:00 SELL stop $2367.34 $67365.56 0.52% $-25.00 -1.04%
2026-02-28 15:00:00 BUY E $2384.84 $67365.56 0.52%
2026-02-28 16:00:00 SELL tp $2359.92 $67365.56 0.52% $-24.92 -1.04%
full-counter-trend  wethusdc 2026-05-08_full-counter-trend_wethusdc_qwen3-coder-480b-clou   open ↗ 163 BUY · 163 SELL   -51.26%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 06:00:00 BUY E $3000.00 $2430.51 0.53%
2026-02-01 07:00:00 SELL stop $2953.81 $2418.65 0.53% $-46.19 -1.54%
2026-02-01 09:00:00 BUY E $2986.14 $2412.95 0.53%
2026-02-01 10:00:00 SELL stop $2978.19 $2432.23 0.53% $-7.96 -0.27%
2026-02-01 13:00:00 BUY E $2983.76 $2396.02 0.53%
2026-02-01 14:00:00 SELL stop $2933.89 $2381.13 0.53% $-49.87 -1.67%
2026-02-01 15:00:00 BUY E $2968.79 $2373.07 0.53%
2026-02-01 16:00:00 SELL stop $2866.06 $2315.39 0.53% $-102.74 -3.46%
2026-02-01 18:00:00 BUY A $4896.62 $2313.96 0.55%
2026-02-01 19:00:00 SELL stop $4920.44 $2350.97 0.55% +$23.82 +0.49%
2026-02-01 20:00:00 BUY E $2945.12 $2320.35 0.53%
2026-02-01 21:00:00 SELL stop $2909.01 $2316.36 0.53% $-36.11 -1.23%
2026-02-02 00:00:00 BUY E $2934.29 $2270.15 0.53%
2026-02-02 01:00:00 SELL stop $2932.78 $2293.20 0.53% $-1.51 -0.05%
2026-02-02 02:00:00 BUY E $2933.83 $2291.29 0.53%
2026-02-02 03:00:00 SELL stop $2866.11 $2262.27 0.53% $-67.73 -2.31%
2026-02-02 04:00:00 BUY E $2913.52 $2239.02 0.53%
2026-02-02 06:00:00 SELL stop $2830.00 $2198.02 0.53% $-83.52 -2.87%
2026-02-02 08:00:00 BUY E $2888.46 $2228.93 0.53%
2026-02-02 09:00:00 SELL stop $2884.14 $2249.33 0.53% $-4.32 -0.15%
2026-02-02 15:00:00 BUY E $2887.16 $2328.94 0.53%
2026-02-02 16:00:00 SELL stop $2910.38 $2372.71 0.53% +$23.22 +0.80%
2026-02-02 21:00:00 BUY E $2894.13 $2322.07 0.53%
2026-02-02 22:00:00 SELL stop $2888.22 $2342.04 0.53% $-5.91 -0.20%
2026-02-02 23:00:00 BUY E $2892.36 $2351.29 0.53%
2026-02-03 00:00:00 SELL stop $2856.65 $2347.02 0.53% $-35.71 -1.23%
2026-02-03 03:00:00 BUY E $2881.64 $2298.72 0.53%
2026-02-03 04:00:00 SELL stop $2907.44 $2344.03 0.53% +$25.79 +0.90%
2026-02-03 10:00:00 BUY E $2889.38 $2292.06 0.53%
2026-02-03 11:00:00 SELL stop $2846.10 $2281.79 0.53% $-43.28 -1.50%
2026-02-03 18:00:00 BUY E $2876.40 $2195.11 0.53%
2026-02-03 19:00:00 SELL stop $2749.55 $2120.65 0.53% $-126.85 -4.41%
2026-02-03 23:00:00 BUY E $2838.34 $2236.38 0.53%
2026-02-04 00:00:00 SELL stop $2805.09 $2233.72 0.53% $-33.25 -1.17%
2026-02-04 11:00:00 BUY E $2828.37 $2260.74 0.53%
2026-02-04 12:00:00 SELL stop $2791.29 $2254.86 0.53% $-37.08 -1.31%
2026-02-04 13:00:00 BUY E $2817.24 $2243.92 0.53%
2026-02-04 14:00:00 SELL stop $2731.32 $2198.63 0.53% $-85.92 -3.05%
2026-02-04 15:00:00 BUY E $2791.47 $2171.87 0.53%
2026-02-04 16:00:00 SELL stop $2736.60 $2151.83 0.53% $-54.87 -1.97%
2026-02-04 17:00:00 BUY E $2775.01 $2135.05 0.53%
2026-02-05 15:00:00 SELL stop $2632.08 $2046.60 0.53% $-142.93 -5.15%
2026-02-05 16:00:00 BUY E $2732.13 $1961.12 0.53%
2026-02-05 17:00:00 SELL stop $2755.16 $1998.68 0.53% +$23.03 +0.84%
2026-02-05 19:00:00 BUY A $4565.06 $1950.30 0.55%
2026-02-05 20:00:00 SELL stop $4465.54 $1928.76 0.54% $-99.52 -2.18%
2026-02-05 21:00:00 BUY E $2709.18 $1869.59 0.53%
2026-02-05 22:00:00 SELL stop $2653.31 $1850.48 0.53% $-55.87 -2.06%
2026-02-06 00:00:00 BUY E $2692.42 $1826.83 0.53%
2026-02-06 01:00:00 SELL stop $2727.95 $1870.61 0.53% +$35.53 +1.32%
2026-02-06 03:00:00 BUY E $2703.08 $1907.49 0.53%
2026-02-06 04:00:00 SELL stop $2652.70 $1891.82 0.53% $-50.38 -1.86%
2026-02-06 10:00:00 BUY E $2687.96 $1919.00 0.53%
2026-02-06 11:00:00 SELL tp $2670.72 $1926.94 0.53% $-17.24 -0.64%
2026-02-06 15:00:00 BUY E $2682.79 $1978.88 0.53%
2026-02-06 16:00:00 SELL stop $2657.19 $1980.81 0.53% $-25.60 -0.95%
2026-02-06 17:00:00 BUY A $4458.52 $2036.17 0.54%
2026-02-06 18:00:00 SELL reversal $4476.86 $2067.01 0.55% +$18.35 +0.41%
2026-02-06 20:00:00 BUY E $2680.61 $2065.63 0.53%
2026-02-06 21:00:00 SELL stop $2637.81 $2054.23 0.53% $-42.80 -1.60%
2026-02-06 22:00:00 BUY E $2667.77 $2053.97 0.53%
2026-02-06 23:00:00 SELL tp $2666.90 $2075.10 0.53% $-0.87 -0.03%
2026-02-07 00:00:00 BUY E $2667.51 $2063.38 0.53%
2026-02-07 01:00:00 SELL stop $2614.07 $2043.50 0.53% $-53.44 -2.00%
2026-02-07 02:00:00 BUY A $4419.13 $2061.94 0.54%
2026-02-07 04:00:00 SELL tp $4411.16 $2080.81 0.54% $-7.97 -0.18%
2026-02-07 05:00:00 BUY A $4415.15 $2087.40 0.54%
2026-02-07 07:00:00 SELL stop $4284.28 $2047.73 0.54% $-130.87 -2.96%
2026-02-07 08:00:00 BUY A $4349.71 $2027.10 0.54%
2026-02-07 09:00:00 SELL stop $4285.43 $2019.02 0.54% $-64.28 -1.48%
2026-02-07 10:00:00 BUY A $4317.57 $2014.45 0.54%
2026-02-07 11:00:00 SELL stop $4262.81 $2010.68 0.54% $-54.76 -1.27%
2026-02-07 12:00:00 BUY A $4290.19 $2018.77 0.54%
2026-02-07 13:00:00 SELL stop $4291.15 $2041.33 0.54% +$0.96 +0.02%
2026-02-07 18:00:00 BUY E $2574.40 $2061.16 0.53%
2026-02-07 19:00:00 SELL stop $2591.81 $2097.10 0.53% +$17.41 +0.68%
2026-02-08 00:00:00 BUY E $2579.62 $2087.08 0.53%
2026-02-08 01:00:00 SELL stop $2549.52 $2084.58 0.53% $-30.11 -1.17%
2026-02-08 12:00:00 BUY A $4284.32 $2132.35 0.54%
2026-02-08 13:00:00 SELL stop $4236.11 $2131.43 0.54% $-48.21 -1.13%
2026-02-08 14:00:00 BUY A $4260.22 $2126.59 0.54%
2026-02-08 15:00:00 SELL tp $4218.14 $2128.62 0.54% $-42.08 -0.99%
2026-02-08 16:00:00 BUY E $2543.51 $2108.64 0.53%
2026-02-08 17:00:00 SELL stop $2483.83 $2080.97 0.53% $-59.67 -2.35%
2026-02-09 01:00:00 BUY E $2525.61 $2084.48 0.53%
2026-02-09 02:00:00 SELL stop $2482.86 $2070.89 0.53% $-42.75 -1.69%
2026-02-09 10:00:00 BUY E $2512.78 $2042.27 0.53%
2026-02-09 12:00:00 SELL stop $2469.37 $2028.23 0.52% $-43.41 -1.73%
2026-02-09 17:00:00 BUY A $4166.26 $2091.21 0.54%
2026-02-09 18:00:00 SELL stop $4192.42 $2127.33 0.54% +$26.15 +0.63%
2026-02-09 19:00:00 BUY A $4179.34 $2130.67 0.54%
2026-02-09 21:00:00 SELL tp $4122.92 $2124.86 0.54% $-56.42 -1.35%
2026-02-09 23:00:00 BUY E $2490.68 $2115.22 0.52%
2026-02-10 00:00:00 SELL stop $2452.72 $2105.02 0.52% $-37.96 -1.52%
2026-02-10 01:00:00 BUY E $2479.29 $2096.72 0.52%
2026-02-10 02:00:00 SELL stop $2477.47 $2117.35 0.52% $-1.82 -0.07%
2026-02-10 03:00:00 BUY A $4131.24 $2108.18 0.54%
2026-02-10 06:00:00 SELL stop $3979.86 $2053.07 0.54% $-151.38 -3.66%
2026-02-11 03:00:00 BUY E $2433.33 $2017.85 0.52%
2026-02-11 04:00:00 SELL stop $2398.03 $2009.59 0.52% $-35.30 -1.45%
2026-02-11 05:00:00 BUY E $2422.74 $1971.39 0.52%
2026-02-11 07:00:00 SELL stop $2370.42 $1949.19 0.52% $-52.32 -2.16%
2026-02-11 11:00:00 BUY E $2407.04 $1939.30 0.52%
2026-02-11 13:00:00 SELL stop $2397.89 $1952.34 0.52% $-9.15 -0.38%
2026-02-11 17:00:00 BUY E $2404.30 $1915.33 0.52%
2026-02-11 18:00:00 SELL stop $2397.24 $1929.88 0.52% $-7.06 -0.29%
2026-02-11 20:00:00 BUY E $2402.18 $1952.28 0.52%
2026-02-11 21:00:00 SELL stop $2379.45 $1954.23 0.52% $-22.73 -0.95%
2026-02-12 15:00:00 BUY E $2395.36 $1978.50 0.52%
2026-02-12 16:00:00 SELL stop $2334.36 $1948.47 0.52% $-61.00 -2.55%
2026-02-13 13:00:00 BUY A $3961.77 $1960.95 0.54%
2026-02-13 15:00:00 SELL tp $3978.89 $1990.86 0.54% +$17.12 +0.43%
2026-02-13 22:00:00 BUY E $2382.20 $2054.02 0.52%
2026-02-13 23:00:00 SELL tp $2357.51 $2054.20 0.52% $-24.68 -1.04%
2026-02-14 01:00:00 BUY A $3957.99 $2055.20 0.54%
2026-02-14 02:00:00 SELL stop $3913.78 $2054.35 0.54% $-44.21 -1.12%
2026-02-14 03:00:00 BUY E $2361.53 $2050.22 0.52%
2026-02-14 05:00:00 SELL tp $2340.68 $2053.57 0.52% $-20.85 -0.88%
2026-02-14 06:00:00 BUY E $2355.28 $2051.29 0.52%
2026-02-14 07:00:00 SELL stop $2333.40 $2053.68 0.52% $-21.88 -0.93%
2026-02-14 15:00:00 BUY A $3914.52 $2085.09 0.54%
2026-02-14 16:00:00 SELL stop $3876.78 $2087.43 0.54% $-37.74 -0.96%
2026-02-14 17:00:00 BUY A $3895.65 $2082.83 0.54%
2026-02-14 19:00:00 SELL tp $3858.51 $2085.39 0.54% $-37.14 -0.95%
2026-02-14 20:00:00 BUY A $3877.08 $2088.52 0.54%
2026-02-14 21:00:00 SELL tp $3837.81 $2089.82 0.54% $-39.27 -1.01%
2026-02-14 23:00:00 BUY A $3857.44 $2090.47 0.54%
2026-02-15 00:00:00 SELL stop $3808.93 $2086.59 0.54% $-48.51 -1.26%
2026-02-15 01:00:00 BUY A $3833.19 $2080.11 0.54%
2026-02-15 02:00:00 SELL tp $3763.03 $2064.19 0.54% $-70.16 -1.83%
2026-02-15 03:00:00 BUY A $3798.11 $2059.58 0.54%
2026-02-15 04:00:00 SELL stop $3756.19 $2058.94 0.54% $-41.92 -1.10%
2026-02-15 08:00:00 BUY A $3777.15 $2091.41 0.54%
2026-02-15 10:00:00 SELL stop $3696.08 $2068.70 0.54% $-81.07 -2.15%
2026-02-15 11:00:00 BUY A $3736.62 $2061.57 0.54%
2026-02-15 13:00:00 SELL stop $3605.93 $2011.00 0.54% $-130.69 -3.50%
2026-02-15 14:00:00 BUY E $2202.76 $2002.46 0.52%
2026-02-15 15:00:00 SELL stop $2188.38 $2010.32 0.52% $-14.38 -0.65%
2026-02-15 16:00:00 BUY A $3664.08 $2011.29 0.54%
2026-02-15 17:00:00 SELL stop $3615.82 $2006.27 0.54% $-48.26 -1.32%
2026-02-15 18:00:00 BUY E $2183.97 $1971.30 0.52%
2026-02-15 19:00:00 SELL stop $2148.02 $1959.24 0.52% $-35.95 -1.65%
2026-02-15 22:00:00 BUY E $2173.19 $1958.55 0.52%
2026-02-15 23:00:00 SELL stop $2163.44 $1970.27 0.52% $-9.75 -0.45%
2026-02-16 03:00:00 BUY E $2170.26 $1957.00 0.52%
2026-02-16 04:00:00 SELL stop $2149.63 $1958.78 0.52% $-20.63 -0.95%
2026-02-16 06:00:00 BUY A $3606.79 $1958.00 0.54%
2026-02-16 07:00:00 SELL stop $3584.06 $1966.69 0.54% $-22.73 -0.63%
2026-02-16 13:00:00 BUY A $3595.42 $2006.24 0.54%
2026-02-16 14:00:00 SELL stop $3488.69 $1967.70 0.54% $-106.74 -2.97%
2026-02-16 22:00:00 BUY A $3542.06 $1999.14 0.54%
2026-02-16 23:00:00 SELL stop $3488.55 $1990.19 0.54% $-53.50 -1.51%
2026-02-17 00:00:00 BUY A $3515.30 $1998.33 0.54%
2026-02-17 01:00:00 SELL tp $3477.98 $1998.44 0.54% $-37.33 -1.06%
2026-02-17 03:00:00 BUY E $2097.98 $1998.59 0.52%
2026-02-17 04:00:00 SELL stop $2062.80 $1985.70 0.52% $-35.19 -1.68%
2026-02-17 05:00:00 BUY E $2087.43 $1989.44 0.52%
2026-02-17 06:00:00 SELL tp $2051.46 $1975.68 0.52% $-35.97 -1.72%
2026-02-17 09:00:00 BUY E $2076.64 $1977.08 0.52%
2026-02-17 10:00:00 SELL stop $2054.11 $1976.16 0.52% $-22.53 -1.08%
2026-02-17 11:00:00 BUY A $3449.80 $1966.93 0.53%
2026-02-17 13:00:00 SELL stop $3417.93 $1969.76 0.53% $-31.86 -0.92%
2026-02-17 21:00:00 BUY A $3433.87 $1994.71 0.53%
2026-02-17 22:00:00 SELL tp $3405.84 $1999.74 0.53% $-28.03 -0.82%
2026-02-18 00:00:00 BUY E $2051.91 $1991.66 0.52%
2026-02-18 01:00:00 SELL stop $2020.29 $1981.54 0.52% $-31.62 -1.54%
2026-02-18 05:00:00 BUY A $3404.04 $1999.15 0.53%
2026-02-18 06:00:00 SELL stop $3363.31 $1996.49 0.53% $-40.73 -1.20%
2026-02-18 08:00:00 BUY A $3383.67 $2018.07 0.53%
2026-02-18 09:00:00 SELL stop $3352.01 $2020.70 0.53% $-31.66 -0.94%
2026-02-18 10:00:00 BUY A $3367.84 $2016.69 0.53%
2026-02-18 11:00:00 SELL stop $3299.92 $1997.27 0.53% $-67.92 -2.02%
2026-02-18 12:00:00 BUY E $2000.33 $1981.43 0.52%
2026-02-18 13:00:00 SELL stop $1980.62 $1982.47 0.52% $-19.71 -0.99%
2026-02-18 14:00:00 BUY E $1994.42 $1970.68 0.52%
2026-02-18 15:00:00 SELL stop $1977.72 $1974.66 0.52% $-16.70 -0.84%
2026-02-18 19:00:00 BUY E $1989.41 $1952.62 0.52%
2026-02-18 20:00:00 SELL stop $1957.09 $1941.03 0.52% $-32.31 -1.62%
2026-02-18 21:00:00 BUY E $1979.71 $1939.67 0.52%
2026-02-18 22:00:00 SELL stop $1961.54 $1942.00 0.52% $-18.17 -0.92%
2026-02-19 06:00:00 BUY E $1974.26 $1970.33 0.52%
2026-02-19 07:00:00 SELL tp $1966.28 $1982.92 0.52% $-7.99 -0.40%
2026-02-19 09:00:00 BUY E $1971.87 $1970.50 0.52%
2026-02-19 10:00:00 SELL stop $1944.78 $1963.79 0.52% $-27.08 -1.37%
2026-02-19 14:00:00 BUY E $1963.74 $1921.40 0.52%
2026-02-19 15:00:00 SELL stop $1959.03 $1936.87 0.52% $-4.71 -0.24%
2026-02-19 16:00:00 BUY A $3270.55 $1926.30 0.53%
2026-02-19 17:00:00 SELL stop $3228.70 $1922.07 0.53% $-41.85 -1.28%
2026-02-19 21:00:00 BUY D $4224.51 $1950.29 0.54%
2026-02-19 22:00:00 SELL stop $4174.99 $1948.50 0.54% $-49.51 -1.17%
2026-02-20 10:00:00 BUY A $3224.87 $1968.15 0.53%
2026-02-20 11:00:00 SELL stop $3173.44 $1957.54 0.53% $-51.43 -1.59%
2026-02-20 12:00:00 BUY A $3199.15 $1943.98 0.53%
2026-02-20 13:00:00 SELL stop $3174.72 $1949.82 0.53% $-24.44 -0.76%
2026-02-20 14:00:00 BUY A $3186.93 $1934.11 0.53%
2026-02-20 15:00:00 SELL stop $3168.76 $1943.70 0.53% $-18.18 -0.57%
2026-02-20 16:00:00 BUY A $3177.85 $1963.95 0.53%
2026-02-20 18:00:00 SELL tp $3148.34 $1966.57 0.53% $-29.51 -0.93%
2026-02-20 20:00:00 BUY A $3163.09 $1963.69 0.53%
2026-02-20 21:00:00 SELL tp $3141.28 $1971.05 0.53% $-21.81 -0.69%
2026-02-20 23:00:00 BUY A $3152.18 $1971.40 0.53%
2026-02-21 00:00:00 SELL stop $3114.78 $1968.88 0.53% $-37.40 -1.19%
2026-02-21 01:00:00 BUY A $3133.48 $1963.22 0.53%
2026-02-21 02:00:00 SELL stop $3105.05 $1966.24 0.53% $-28.44 -0.91%
2026-02-21 03:00:00 BUY A $3119.27 $1965.69 0.53%
2026-02-21 04:00:00 SELL stop $3075.77 $1959.03 0.53% $-43.50 -1.39%
2026-02-21 05:00:00 BUY E $1858.51 $1962.40 0.52%
2026-02-21 06:00:00 SELL tp $1839.72 $1962.86 0.52% $-18.79 -1.01%
2026-02-21 07:00:00 BUY E $1852.87 $1961.50 0.52%
2026-02-21 09:00:00 SELL tp $1840.72 $1969.00 0.52% $-12.15 -0.66%
2026-02-21 14:00:00 BUY A $3082.04 $1981.18 0.53%
2026-02-21 15:00:00 SELL stop $3059.17 $1987.52 0.53% $-22.87 -0.74%
2026-02-21 16:00:00 BUY E $1842.36 $1988.13 0.52%
2026-02-21 18:00:00 SELL tp $1824.06 $1988.95 0.52% $-18.30 -0.99%
2026-02-21 20:00:00 BUY A $3061.46 $1988.35 0.53%
2026-02-21 21:00:00 SELL stop $3007.42 $1974.14 0.53% $-54.04 -1.77%
2026-02-21 22:00:00 BUY A $3034.44 $1982.04 0.53%
2026-02-21 23:00:00 SELL stop $2990.77 $1974.40 0.53% $-43.67 -1.44%
2026-02-22 01:00:00 BUY A $3012.61 $1972.87 0.53%
2026-02-22 02:00:00 SELL stop $2987.55 $1977.37 0.53% $-25.05 -0.83%
2026-02-22 03:00:00 BUY E $1800.05 $1972.23 0.52%
2026-02-22 04:00:00 SELL tp $1783.69 $1974.71 0.52% $-16.36 -0.91%
2026-02-22 05:00:00 BUY E $1795.14 $1973.62 0.52%
2026-02-22 07:00:00 SELL tp $1778.78 $1976.05 0.52% $-16.36 -0.91%
2026-02-22 08:00:00 BUY E $1790.23 $1975.88 0.52%
2026-02-22 09:00:00 SELL stop $1769.51 $1973.39 0.52% $-20.73 -1.16%
2026-02-22 10:00:00 BUY A $2973.36 $1975.83 0.53%
2026-02-22 11:00:00 SELL stop $2944.43 $1977.50 0.53% $-28.93 -0.97%
2026-02-22 13:00:00 BUY A $2958.89 $1966.37 0.53%
2026-02-22 14:00:00 SELL stop $2904.69 $1950.95 0.53% $-54.20 -1.83%
2026-02-22 15:00:00 BUY E $1759.07 $1950.64 0.52%
2026-02-22 16:00:00 SELL stop $1743.89 $1953.98 0.52% $-15.18 -0.86%
2026-02-22 17:00:00 BUY A $2924.20 $1952.53 0.53%
2026-02-22 18:00:00 SELL stop $2875.17 $1940.27 0.53% $-49.03 -1.68%
2026-02-22 19:00:00 BUY A $2899.69 $1942.95 0.53%
2026-02-22 20:00:00 SELL stop $2870.26 $1943.74 0.53% $-29.43 -1.01%
2026-02-22 21:00:00 BUY E $1730.88 $1940.99 0.52%
2026-02-22 22:00:00 SELL stop $1721.32 $1950.39 0.52% $-9.57 -0.55%
2026-02-23 02:00:00 BUY E $1728.11 $1856.88 0.52%
2026-02-23 03:00:00 SELL stop $1716.14 $1863.24 0.52% $-11.97 -0.69%
2026-02-23 04:00:00 BUY E $1724.52 $1862.87 0.52%
2026-02-23 05:00:00 SELL tp $1704.26 $1860.17 0.52% $-20.27 -1.18%
2026-02-23 06:00:00 BUY E $1718.44 $1866.08 0.52%
2026-02-23 07:00:00 SELL tp $1712.96 $1879.52 0.52% $-5.48 -0.32%
2026-02-23 16:00:00 BUY E $1716.80 $1895.65 0.52%
2026-02-23 17:00:00 SELL stop $1689.29 $1884.72 0.52% $-27.50 -1.60%
2026-02-23 18:00:00 BUY A $2847.58 $1863.92 0.53%
2026-02-23 19:00:00 SELL stop $2808.24 $1857.75 0.53% $-39.34 -1.38%
2026-02-24 00:00:00 BUY E $1696.74 $1856.30 0.52%
2026-02-24 01:00:00 SELL tp $1689.79 $1867.96 0.52% $-6.95 -0.41%
2026-02-24 02:00:00 BUY E $1694.66 $1840.95 0.52%
2026-02-24 03:00:00 SELL stop $1679.54 $1843.54 0.52% $-15.12 -0.89%
2026-02-24 04:00:00 BUY E $1690.13 $1832.03 0.52%
2026-02-24 05:00:00 SELL stop $1671.59 $1830.81 0.52% $-18.54 -1.10%
2026-02-24 06:00:00 BUY E $1684.56 $1826.26 0.52%
2026-02-24 08:00:00 SELL tp $1666.69 $1825.70 0.52% $-17.88 -1.06%
2026-02-24 10:00:00 BUY A $2798.67 $1827.14 0.53%
2026-02-24 11:00:00 SELL stop $2767.29 $1825.88 0.53% $-31.38 -1.12%
2026-02-24 12:00:00 BUY E $1669.79 $1826.75 0.52%
2026-02-24 13:00:00 SELL tp $1650.02 $1823.92 0.52% $-19.77 -1.18%
2026-02-24 15:00:00 BUY D $3605.02 $1834.73 0.54%
2026-02-24 16:00:00 SELL tp $3591.47 $1847.59 0.54% $-13.55 -0.38%
2026-02-24 23:00:00 BUY E $1659.79 $1860.56 0.52%
2026-02-25 00:00:00 SELL stop $1635.08 $1851.94 0.52% $-24.71 -1.49%
2026-02-25 06:00:00 BUY A $2753.96 $1887.98 0.53%
2026-02-25 07:00:00 SELL stop $2720.76 $1885.05 0.53% $-33.20 -1.21%
2026-02-25 08:00:00 BUY A $2737.36 $1893.31 0.53%
2026-02-25 09:00:00 SELL tp $2732.85 $1910.29 0.53% $-4.51 -0.16%
2026-02-25 10:00:00 BUY A $2735.11 $1915.19 0.53%
2026-02-25 11:00:00 SELL stop $2702.69 $1912.61 0.53% $-32.41 -1.19%
2026-02-25 12:00:00 BUY A $2718.90 $1926.48 0.53%
2026-02-25 13:00:00 SELL tp $2727.94 $1953.43 0.53% +$9.04 +0.33%
2026-02-25 14:00:00 BUY E $1634.05 $1964.57 0.52%
2026-02-25 15:00:00 SELL tp $1644.23 $1997.38 0.52% +$10.17 +0.62%
2026-02-25 17:00:00 BUY A $2728.51 $2046.33 0.53%
2026-02-25 18:00:00 SELL stop $2736.18 $2073.90 0.53% +$7.67 +0.28%
2026-02-25 19:00:00 BUY A $2732.34 $2074.12 0.53%
2026-02-25 21:00:00 SELL tp $2704.75 $2075.00 0.53% $-27.59 -1.01%
2026-02-25 23:00:00 BUY E $1631.13 $2083.15 0.52%
2026-02-26 00:00:00 SELL tp $1594.44 $2057.48 0.52% $-36.69 -2.25%
2026-02-26 03:00:00 BUY A $2700.20 $2053.28 0.53%
2026-02-26 04:00:00 SELL stop $2673.47 $2054.55 0.53% $-26.73 -0.99%
2026-02-26 05:00:00 BUY A $2686.84 $2075.01 0.53%
2026-02-26 07:00:00 SELL tp $2642.63 $2062.54 0.53% $-44.21 -1.65%
2026-02-26 08:00:00 BUY A $2664.73 $2053.37 0.53%
2026-02-26 09:00:00 SELL stop $2638.10 $2054.43 0.53% $-26.63 -1.00%
2026-02-26 10:00:00 BUY A $2651.42 $2074.94 0.53%
2026-02-26 12:00:00 SELL tp $2601.73 $2057.66 0.53% $-49.69 -1.87%
2026-02-26 13:00:00 BUY A $2626.58 $2070.00 0.53%
2026-02-26 14:00:00 SELL stop $2593.02 $2065.23 0.53% $-33.56 -1.28%
2026-02-26 15:00:00 BUY A $2609.80 $2051.19 0.53%
2026-02-26 16:00:00 SELL tp $2559.95 $2033.34 0.53% $-49.85 -1.91%
2026-02-26 17:00:00 BUY E $1550.92 $1983.80 0.52%
2026-02-26 18:00:00 SELL tp $1538.56 $1988.43 0.52% $-12.37 -0.80%
2026-02-26 19:00:00 BUY A $2578.69 $2004.23 0.53%
2026-02-26 20:00:00 SELL tp $2584.63 $2030.14 0.53% +$5.94 +0.23%
2026-02-26 22:00:00 BUY A $2581.66 $2030.36 0.53%
2026-02-27 00:00:00 SELL tp $2551.21 $2027.68 0.53% $-30.45 -1.18%
2026-02-27 01:00:00 BUY A $2566.43 $2014.79 0.53%
2026-02-27 02:00:00 SELL stop $2548.49 $2021.90 0.53% $-17.95 -0.70%
2026-02-27 03:00:00 BUY A $2557.46 $2026.00 0.53%
2026-02-27 04:00:00 SELL tp $2554.86 $2045.39 0.53% $-2.60 -0.10%
2026-02-27 06:00:00 BUY A $2556.16 $2041.61 0.53%
2026-02-27 07:00:00 SELL stop $2522.31 $2035.91 0.53% $-33.85 -1.32%
2026-02-27 08:00:00 BUY A $2539.24 $2032.69 0.53%
2026-02-27 09:00:00 SELL stop $2513.48 $2033.38 0.53% $-25.76 -1.01%
2026-02-27 11:00:00 BUY E $1515.81 $1980.80 0.52%
2026-02-27 12:00:00 SELL stop $1486.06 $1962.08 0.51% $-29.75 -1.96%
2026-02-27 13:00:00 BUY E $1506.89 $1959.92 0.52%
2026-02-27 14:00:00 SELL stop $1494.02 $1963.35 0.52% $-12.87 -0.85%
2026-02-27 15:00:00 BUY E $1503.03 $1942.95 0.52%
2026-02-27 17:00:00 SELL stop $1475.49 $1927.15 0.51% $-27.54 -1.83%
2026-02-27 18:00:00 BUY A $2491.28 $1932.35 0.52%
2026-02-27 19:00:00 SELL stop $2446.92 $1918.02 0.52% $-44.36 -1.78%
2026-02-27 20:00:00 BUY A $2469.10 $1921.10 0.52%
2026-02-27 22:00:00 SELL stop $2443.46 $1921.26 0.52% $-25.64 -1.04%
2026-02-27 23:00:00 BUY A $2456.28 $1921.40 0.52%
2026-02-28 00:00:00 SELL stop $2441.25 $1929.84 0.52% $-15.02 -0.61%
2026-02-28 02:00:00 BUY E $1469.26 $1924.61 0.51%
2026-02-28 03:00:00 SELL tp $1458.52 $1930.36 0.51% $-10.74 -0.73%
2026-02-28 04:00:00 BUY E $1466.04 $1924.49 0.51%
2026-02-28 05:00:00 SELL stop $1451.46 $1925.12 0.51% $-14.58 -0.99%
2026-02-28 07:00:00 BUY E $1461.67 $1842.45 0.51%
2026-02-28 08:00:00 SELL stop $1465.72 $1866.73 0.51% +$4.06 +0.28%
2026-02-28 20:00:00 BUY A $2438.14 $1947.02 0.52%
2026-02-28 21:00:00 SELL tp $2436.10 $1965.96 0.52% $-2.04 -0.08%
full-plus-sizing  btcusdc 2026-05-08_full-plus-sizing_btcusdc_qwen3-coder-480b-cloud_b   open ↗ 26 BUY · 26 SELL   -6.46%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 08:00:00 BUY E $2000.00 $78343.00 0.52%
2026-02-01 09:00:00 SELL stop $1985.85 $78604.02 0.52% $-14.15 -0.71%
2026-02-01 13:00:00 BUY E $1997.17 $78459.67 0.52%
2026-02-01 14:00:00 SELL stop $1972.88 $78317.51 0.52% $-24.29 -1.22%
2026-02-02 04:00:00 BUY A $3486.54 $76292.98 0.53%
2026-02-02 05:00:00 SELL stop $3431.33 $75894.15 0.53% $-55.22 -1.58%
2026-02-03 11:00:00 BUY E $1981.27 $78120.36 0.52%
2026-02-03 13:00:00 SELL tp $1965.99 $78330.26 0.52% $-15.28 -0.77%
2026-02-03 17:00:00 BUY E $1978.21 $76488.08 0.52%
2026-02-03 18:00:00 SELL stop $1917.47 $74915.79 0.52% $-60.74 -3.07%
2026-02-04 15:00:00 BUY E $1966.06 $74359.53 0.52%
2026-02-04 16:00:00 SELL stop $1939.85 $74136.36 0.52% $-26.22 -1.33%
2026-02-05 02:00:00 BUY E $1960.82 $72421.26 0.52%
2026-02-05 03:00:00 SELL stop $1914.60 $71454.44 0.52% $-46.22 -2.36%
2026-02-05 06:00:00 BUY E $1951.58 $70732.72 0.52%
2026-02-05 07:00:00 SELL stop $1937.33 $70951.51 0.52% $-14.25 -0.73%
2026-02-05 12:00:00 BUY E $1948.73 $70318.35 0.52%
2026-02-05 13:00:00 SELL tp $1907.84 $69563.57 0.52% $-40.89 -2.10%
2026-02-06 00:00:00 BUY E $1940.55 $62909.86 0.52%
2026-02-06 01:00:00 SELL stop $1938.74 $63509.39 0.52% $-1.81 -0.09%
2026-02-06 07:00:00 BUY E $1940.19 $64988.26 0.52%
2026-02-06 08:00:00 SELL stop $1916.18 $64856.00 0.52% $-24.01 -1.24%
2026-02-07 21:00:00 BUY A $3386.92 $69631.18 0.53%
2026-02-07 22:00:00 SELL tp $3344.46 $69497.99 0.53% $-42.47 -1.25%
2026-02-08 08:00:00 BUY A $3372.06 $69710.69 0.53%
2026-02-08 09:00:00 SELL tp $3381.85 $70665.59 0.53% +$9.79 +0.29%
2026-02-08 12:00:00 BUY A $3375.49 $70999.98 0.53%
2026-02-08 13:00:00 SELL tp $3351.31 $71249.95 0.53% $-24.18 -0.72%
2026-02-08 17:00:00 BUY E $1924.01 $70416.00 0.52%
2026-02-08 20:00:00 SELL tp $1931.31 $71422.97 0.52% +$7.30 +0.38%
2026-02-09 01:00:00 BUY E $1925.47 $70502.38 0.52%
2026-02-09 02:00:00 SELL stop $1901.94 $70369.53 0.52% $-23.53 -1.22%
2026-02-09 09:00:00 BUY A $3361.34 $69873.99 0.53%
2026-02-09 11:00:00 SELL stop $3271.04 $68727.88 0.53% $-90.30 -2.69%
2026-02-10 04:00:00 BUY A $3329.74 $69511.83 0.53%
2026-02-10 05:00:00 SELL stop $3309.47 $69831.62 0.53% $-20.26 -0.61%
2026-02-10 13:00:00 BUY A $3322.64 $68610.12 0.53%
2026-02-10 16:00:00 SELL tp $3320.04 $69293.37 0.53% $-2.61 -0.08%
2026-02-14 12:00:00 BUY E $1898.13 $67365.56 0.52%
2026-02-14 13:00:00 SELL stop $1878.48 $67365.56 0.52% $-19.65 -1.04%
2026-02-16 00:00:00 BUY E $1894.20 $67365.56 0.52%
2026-02-16 01:00:00 SELL tp $1874.60 $67365.56 0.52% $-19.61 -1.04%
2026-02-16 11:00:00 BUY E $1890.28 $67365.56 0.52%
2026-02-16 12:00:00 SELL tp $1870.72 $67365.56 0.52% $-19.56 -1.03%
2026-02-17 01:00:00 BUY E $1886.37 $67365.56 0.52%
2026-02-17 03:00:00 SELL tp $1866.85 $67365.56 0.52% $-19.52 -1.03%
2026-02-17 17:00:00 BUY E $1882.46 $67365.56 0.52%
2026-02-17 19:00:00 SELL stop $1862.98 $67365.56 0.52% $-19.48 -1.03%
2026-02-18 16:00:00 BUY E $1878.57 $67365.56 0.52%
2026-02-18 17:00:00 SELL stop $1859.13 $67365.56 0.52% $-19.44 -1.03%
2026-02-19 04:00:00 BUY E $1874.68 $67365.56 0.52%
2026-02-19 05:00:00 SELL tp $1855.28 $67365.56 0.52% $-19.40 -1.03%
full-plus-sizing  wethusdc 2026-05-08_full-plus-sizing_wethusdc_qwen3-coder-480b-cloud_   open ↗ 79 BUY · 79 SELL   -23.04%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 06:00:00 BUY E $2000.00 $2430.51 0.52%
2026-02-01 08:00:00 SELL stop $1963.55 $2411.22 0.52% $-36.45 -1.82%
2026-02-01 15:00:00 BUY A $3487.24 $2373.07 0.53%
2026-02-01 17:00:00 SELL stop $3349.75 $2304.06 0.53% $-137.49 -3.94%
2026-02-02 02:00:00 BUY E $1965.21 $2291.29 0.52%
2026-02-02 03:00:00 SELL stop $1920.21 $2262.27 0.52% $-45.00 -2.29%
2026-02-02 04:00:00 BUY E $1956.21 $2239.02 0.52%
2026-02-02 05:00:00 SELL stop $1937.25 $2240.54 0.52% $-18.96 -0.97%
2026-02-03 03:00:00 BUY E $1952.42 $2298.72 0.52%
2026-02-03 04:00:00 SELL tp $1970.27 $2344.03 0.52% +$17.85 +0.91%
2026-02-03 10:00:00 BUY A $3422.98 $2292.06 0.53%
2026-02-03 11:00:00 SELL stop $3371.34 $2281.79 0.53% $-51.64 -1.51%
2026-02-03 18:00:00 BUY E $1945.66 $2195.11 0.52%
2026-02-03 19:00:00 SELL stop $1860.20 $2120.65 0.52% $-85.46 -4.39%
2026-02-04 17:00:00 BUY E $1928.57 $2135.05 0.52%
2026-02-04 20:00:00 SELL tp $1956.16 $2188.27 0.52% +$27.59 +1.43%
2026-02-05 17:00:00 BUY E $1934.09 $1998.68 0.52%
2026-02-05 18:00:00 SELL stop $1872.32 $1955.09 0.52% $-61.77 -3.19%
2026-02-07 04:00:00 BUY A $3363.03 $2080.81 0.53%
2026-02-07 05:00:00 SELL stop $3337.78 $2087.40 0.53% $-25.26 -0.75%
2026-02-07 07:00:00 BUY E $1916.68 $2047.73 0.52%
2026-02-07 10:00:00 SELL stop $1866.01 $2014.45 0.52% $-50.67 -2.64%
2026-02-07 11:00:00 BUY A $3336.46 $2010.68 0.53%
2026-02-07 12:00:00 SELL stop $3314.25 $2018.77 0.53% $-22.21 -0.67%
2026-02-07 18:00:00 BUY E $1902.11 $2061.16 0.52%
2026-02-07 19:00:00 SELL stop $1915.23 $2097.10 0.52% +$13.13 +0.69%
2026-02-07 21:00:00 BUY A $3333.28 $2105.32 0.53%
2026-02-07 23:00:00 SELL stop $3271.61 $2088.58 0.53% $-61.67 -1.85%
2026-02-08 00:00:00 BUY E $1892.40 $2087.08 0.52%
2026-02-08 01:00:00 SELL tp $1870.57 $2084.58 0.52% $-21.83 -1.15%
2026-02-08 06:00:00 BUY E $1888.03 $2084.77 0.52%
2026-02-08 07:00:00 SELL stop $1863.59 $2079.30 0.52% $-24.44 -1.29%
2026-02-08 16:00:00 BUY E $1883.14 $2108.64 0.52%
2026-02-08 18:00:00 SELL stop $1849.07 $2092.13 0.52% $-34.08 -1.81%
2026-02-09 09:00:00 BUY E $1876.33 $2050.07 0.52%
2026-02-09 10:00:00 SELL tp $1849.85 $2042.27 0.52% $-26.48 -1.41%
2026-02-09 14:00:00 BUY E $1871.03 $2022.52 0.52%
2026-02-09 15:00:00 SELL tp $1871.06 $2043.70 0.52% +$0.03 +0.00%
2026-02-09 17:00:00 BUY A $3274.31 $2091.21 0.53%
2026-02-09 18:00:00 SELL stop $3295.46 $2127.33 0.53% +$21.15 +0.65%
2026-02-10 03:00:00 BUY A $3281.72 $2108.18 0.53%
2026-02-10 04:00:00 SELL stop $3180.30 $2064.96 0.53% $-101.41 -3.09%
2026-02-10 12:00:00 BUY E $1854.98 $2003.21 0.52%
2026-02-10 13:00:00 SELL stop $1840.33 $2008.16 0.52% $-14.65 -0.79%
2026-02-13 21:00:00 BUY E $1852.05 $2045.61 0.52%
2026-02-13 22:00:00 SELL tp $1840.43 $2054.02 0.52% $-11.62 -0.63%
2026-02-13 23:00:00 BUY A $3237.03 $2054.20 0.53%
2026-02-14 00:00:00 SELL stop $3194.12 $2048.72 0.53% $-42.91 -1.33%
2026-02-14 01:00:00 BUY A $3222.01 $2055.20 0.53%
2026-02-14 02:00:00 SELL stop $3186.49 $2054.35 0.53% $-35.52 -1.10%
2026-02-14 13:00:00 BUY A $3209.58 $2070.97 0.53%
2026-02-14 14:00:00 SELL stop $3176.39 $2071.54 0.53% $-33.19 -1.03%
2026-02-14 15:00:00 BUY A $3197.96 $2085.09 0.53%
2026-02-14 16:00:00 SELL stop $3167.58 $2087.43 0.53% $-30.38 -0.95%
2026-02-14 19:00:00 BUY A $3187.33 $2085.39 0.53%
2026-02-14 20:00:00 SELL tp $3158.25 $2088.52 0.53% $-29.08 -0.91%
2026-02-14 21:00:00 BUY A $3177.15 $2089.82 0.53%
2026-02-14 22:00:00 SELL stop $3137.52 $2085.87 0.53% $-39.63 -1.25%
2026-02-14 23:00:00 BUY A $3163.28 $2090.47 0.53%
2026-02-15 00:00:00 SELL stop $3123.93 $2086.59 0.53% $-39.35 -1.24%
2026-02-15 02:00:00 BUY A $3149.51 $2064.19 0.53%
2026-02-15 14:00:00 SELL stop $3022.96 $2002.46 0.53% $-126.54 -4.02%
2026-02-15 16:00:00 BUY A $3105.22 $2011.29 0.53%
2026-02-15 17:00:00 SELL stop $3064.66 $2006.27 0.53% $-40.55 -1.31%
2026-02-15 18:00:00 BUY E $1766.30 $1971.30 0.52%
2026-02-15 19:00:00 SELL stop $1737.37 $1959.24 0.52% $-28.93 -1.64%
2026-02-15 20:00:00 BUY E $1760.51 $1942.23 0.52%
2026-02-15 22:00:00 SELL tp $1756.97 $1958.55 0.52% $-3.54 -0.20%
2026-02-16 22:00:00 BUY A $3079.66 $1999.14 0.53%
2026-02-17 00:00:00 SELL tp $3045.82 $1998.33 0.53% $-33.84 -1.10%
2026-02-17 01:00:00 BUY E $1753.04 $1998.44 0.52%
2026-02-17 04:00:00 SELL stop $1723.88 $1985.70 0.52% $-29.15 -1.66%
2026-02-17 11:00:00 BUY A $3057.61 $1966.93 0.53%
2026-02-17 12:00:00 SELL stop $3027.63 $1968.47 0.53% $-29.99 -0.98%
2026-02-18 04:00:00 BUY A $3047.12 $1997.07 0.53%
2026-02-18 05:00:00 SELL tp $3018.02 $1999.15 0.53% $-29.10 -0.95%
2026-02-18 06:00:00 BUY A $3036.93 $1996.49 0.53%
2026-02-18 07:00:00 SELL stop $3013.19 $2002.06 0.53% $-23.74 -0.78%
2026-02-18 11:00:00 BUY A $3028.62 $1997.27 0.53%
2026-02-18 12:00:00 SELL stop $2972.83 $1981.43 0.53% $-55.79 -1.84%
2026-02-18 14:00:00 BUY E $1719.48 $1970.68 0.52%
2026-02-18 15:00:00 SELL stop $1705.18 $1974.66 0.52% $-14.30 -0.83%
2026-02-18 21:00:00 BUY A $3004.09 $1939.67 0.53%
2026-02-18 23:00:00 SELL stop $2985.46 $1948.24 0.53% $-18.63 -0.62%
2026-02-19 14:00:00 BUY E $1712.90 $1921.40 0.52%
2026-02-19 15:00:00 SELL stop $1708.88 $1936.87 0.52% $-4.02 -0.23%
2026-02-19 18:00:00 BUY E $1712.09 $1920.72 0.52%
2026-02-19 19:00:00 SELL stop $1711.43 $1939.99 0.52% $-0.66 -0.04%
2026-02-20 09:00:00 BUY A $2995.93 $1960.00 0.53%
2026-02-20 10:00:00 SELL tp $2976.59 $1968.15 0.53% $-19.34 -0.65%
2026-02-20 19:00:00 BUY A $2989.16 $1975.56 0.53%
2026-02-20 20:00:00 SELL stop $2939.81 $1963.69 0.53% $-49.35 -1.65%
2026-02-20 21:00:00 BUY A $2971.89 $1971.05 0.53%
2026-02-20 22:00:00 SELL stop $2945.46 $1974.38 0.53% $-26.43 -0.89%
2026-02-21 00:00:00 BUY A $2962.64 $1968.88 0.53%
2026-02-21 01:00:00 SELL stop $2922.92 $1963.22 0.53% $-39.72 -1.34%
2026-02-21 02:00:00 BUY A $2948.73 $1966.24 0.53%
2026-02-21 03:00:00 SELL stop $2916.78 $1965.69 0.53% $-31.95 -1.08%
2026-02-21 05:00:00 BUY E $1678.60 $1962.40 0.52%
2026-02-21 06:00:00 SELL stop $1661.69 $1962.86 0.52% $-16.91 -1.01%
2026-02-21 20:00:00 BUY A $2931.63 $1988.35 0.53%
2026-02-21 21:00:00 SELL stop $2879.96 $1974.14 0.53% $-51.67 -1.76%
2026-02-22 01:00:00 BUY A $2913.54 $1972.87 0.53%
2026-02-22 02:00:00 SELL stop $2889.37 $1977.37 0.53% $-24.17 -0.83%
2026-02-22 05:00:00 BUY E $1660.05 $1973.62 0.52%
2026-02-22 06:00:00 SELL stop $1644.07 $1974.97 0.52% $-15.98 -0.96%
2026-02-22 18:00:00 BUY E $1656.85 $1940.27 0.52%
2026-02-22 19:00:00 SELL tp $1642.04 $1942.95 0.52% $-14.81 -0.89%
2026-02-22 20:00:00 BUY E $1653.89 $1943.74 0.52%
2026-02-22 21:00:00 SELL stop $1634.53 $1940.99 0.52% $-19.36 -1.17%
2026-02-23 18:00:00 BUY A $2887.53 $1863.92 0.53%
2026-02-23 19:00:00 SELL stop $2847.62 $1857.75 0.53% $-39.91 -1.38%
2026-02-24 04:00:00 BUY E $1642.04 $1832.03 0.52%
2026-02-24 05:00:00 SELL stop $1624.04 $1830.81 0.52% $-18.00 -1.10%
2026-02-24 12:00:00 BUY E $1638.44 $1826.75 0.52%
2026-02-24 13:00:00 SELL tp $1619.05 $1823.92 0.52% $-19.39 -1.18%
2026-02-25 00:00:00 BUY E $1634.56 $1851.94 0.52%
2026-02-25 01:00:00 SELL stop $1617.76 $1851.98 0.52% $-16.80 -1.03%
2026-02-25 05:00:00 BUY E $1631.20 $1906.30 0.52%
2026-02-25 06:00:00 SELL stop $1598.89 $1887.98 0.52% $-32.31 -1.98%
2026-02-25 07:00:00 BUY E $1624.74 $1885.05 0.52%
2026-02-25 08:00:00 SELL tp $1615.05 $1893.31 0.52% $-9.69 -0.60%
2026-02-25 11:00:00 BUY E $1622.80 $1912.61 0.52%
2026-02-25 12:00:00 SELL tp $1617.74 $1926.48 0.52% $-5.06 -0.31%
2026-02-25 19:00:00 BUY E $1621.79 $2074.12 0.52%
2026-02-25 20:00:00 SELL tp $1602.75 $2071.10 0.52% $-19.04 -1.17%
2026-02-26 06:00:00 BUY A $2831.46 $2066.13 0.53%
2026-02-26 07:00:00 SELL stop $2796.76 $2062.54 0.53% $-34.70 -1.23%
2026-02-26 08:00:00 BUY E $1611.04 $2053.37 0.52%
2026-02-26 09:00:00 SELL stop $1595.28 $2054.43 0.52% $-15.76 -0.98%
2026-02-26 12:00:00 BUY A $2813.80 $2057.66 0.53%
2026-02-26 13:00:00 SELL tp $2800.86 $2070.00 0.53% $-12.95 -0.46%
2026-02-26 15:00:00 BUY A $2809.27 $2051.19 0.53%
2026-02-26 18:00:00 SELL tp $2694.66 $1988.43 0.53% $-114.62 -4.08%
2026-02-26 19:00:00 BUY A $2769.16 $2004.23 0.53%
2026-02-26 20:00:00 SELL tp $2775.42 $2030.14 0.53% +$6.27 +0.23%
2026-02-26 22:00:00 BUY A $2771.35 $2030.36 0.53%
2026-02-27 00:00:00 SELL tp $2738.56 $2027.68 0.53% $-32.79 -1.18%
2026-02-27 02:00:00 BUY A $2759.87 $2021.90 0.53%
2026-02-27 03:00:00 SELL stop $2736.37 $2026.00 0.53% $-23.51 -0.85%
2026-02-27 04:00:00 BUY A $2751.65 $2045.39 0.53%
2026-02-27 05:00:00 SELL stop $2719.04 $2042.64 0.53% $-32.61 -1.19%
2026-02-27 10:00:00 BUY E $1565.85 $2010.01 0.52%
2026-02-27 11:00:00 SELL stop $1527.22 $1980.80 0.52% $-38.62 -2.47%
2026-02-27 12:00:00 BUY E $1558.12 $1962.08 0.52%
2026-02-27 13:00:00 SELL stop $1540.40 $1959.92 0.52% $-17.72 -1.14%
2026-02-27 15:00:00 BUY E $1554.58 $1942.95 0.52%
2026-02-27 16:00:00 SELL stop $1543.06 $1948.59 0.52% $-11.52 -0.74%
2026-02-27 17:00:00 BUY E $1552.27 $1927.15 0.52%
2026-02-27 19:00:00 SELL stop $1529.04 $1918.02 0.52% $-23.24 -1.50%
2026-02-27 22:00:00 BUY E $1547.63 $1921.26 0.52%
2026-02-27 23:00:00 SELL stop $1531.83 $1921.40 0.52% $-15.80 -1.02%
2026-02-28 02:00:00 BUY E $1544.47 $1924.61 0.52%
2026-02-28 03:00:00 SELL tp $1533.15 $1930.36 0.52% $-11.31 -0.73%
2026-02-28 04:00:00 BUY E $1542.20 $1924.49 0.52%
2026-02-28 06:00:00 SELL tp $1522.74 $1919.94 0.52% $-19.46 -1.26%
2026-02-28 07:00:00 BUY E $1538.31 $1842.45 0.52%
2026-02-28 08:00:00 SELL stop $1542.56 $1866.73 0.52% +$4.25 +0.28%
no-bear-pathB  btcusdc 2026-05-08_no-bear-pathB_btcusdc_qwen3-coder-480b-cloud_f401   open ↗ 23 BUY · 23 SELL   -6.74%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 15:00:00 BUY E $2000.00 $78211.12 0.52%
2026-02-01 16:00:00 SELL stop $1963.63 $77593.40 0.52% $-36.37 -1.82%
2026-02-01 20:00:00 BUY E $1992.73 $77174.78 0.52%
2026-02-01 21:00:00 SELL stop $1970.23 $77103.04 0.52% $-22.50 -1.13%
2026-02-02 23:00:00 BUY E $1988.23 $78795.20 0.52%
2026-02-03 00:00:00 SELL stop $1966.20 $78738.61 0.52% $-22.03 -1.11%
2026-02-03 04:00:00 BUY A $3471.68 $78753.32 0.53%
2026-02-03 06:00:00 SELL stop $3412.30 $78240.45 0.53% $-59.38 -1.71%
2026-02-03 08:00:00 BUY A $3450.90 $78794.67 0.53%
2026-02-03 10:00:00 SELL stop $3397.02 $78400.01 0.53% $-53.88 -1.56%
2026-02-04 08:00:00 BUY E $1961.17 $76514.30 0.52%
2026-02-04 11:00:00 SELL tp $1935.46 $76302.10 0.52% $-25.71 -1.31%
2026-02-04 18:00:00 BUY E $1956.03 $72576.08 0.52%
2026-02-04 19:00:00 SELL stop $1958.42 $73425.96 0.52% +$2.39 +0.12%
2026-02-05 12:00:00 BUY E $1956.50 $70318.35 0.52%
2026-02-05 13:00:00 SELL stop $1915.45 $69563.57 0.52% $-41.05 -2.10%
2026-02-05 14:00:00 BUY A $3409.51 $69688.94 0.53%
2026-02-05 15:00:00 SELL stop $3359.45 $69404.76 0.53% $-50.07 -1.47%
2026-02-05 19:00:00 BUY A $3391.99 $66347.00 0.53%
2026-02-05 20:00:00 SELL stop $3301.19 $65265.65 0.53% $-90.80 -2.68%
2026-02-10 01:00:00 BUY A $3360.21 $69827.33 0.53%
2026-02-10 02:00:00 SELL tp $3355.84 $70486.82 0.53% $-4.37 -0.13%
2026-02-10 03:00:00 BUY A $3358.68 $70102.89 0.53%
2026-02-10 06:00:00 SELL stop $3291.89 $69447.64 0.53% $-66.79 -1.99%
2026-02-10 12:00:00 BUY E $1905.89 $68535.01 0.52%
2026-02-10 13:00:00 SELL stop $1888.22 $68610.12 0.52% $-17.67 -0.93%
2026-02-10 15:00:00 BUY A $3329.12 $68460.40 0.53%
2026-02-10 16:00:00 SELL stop $3333.78 $69293.37 0.53% +$4.65 +0.14%
2026-02-11 04:00:00 BUY E $1903.29 $68187.99 0.52%
2026-02-11 05:00:00 SELL stop $1866.91 $67584.46 0.52% $-36.37 -1.91%
2026-02-11 07:00:00 BUY E $1896.01 $66820.32 0.52%
2026-02-11 14:00:00 SELL tp $1894.19 $67454.49 0.52% $-1.82 -0.10%
2026-02-20 15:00:00 BUY E $1895.65 $67365.56 0.52%
2026-02-20 16:00:00 SELL stop $1876.03 $67365.56 0.52% $-19.62 -1.04%
2026-02-22 09:00:00 BUY E $1891.72 $67365.56 0.52%
2026-02-22 10:00:00 SELL stop $1872.14 $67365.56 0.52% $-19.58 -1.03%
2026-02-22 16:00:00 BUY E $1887.81 $67365.56 0.52%
2026-02-22 18:00:00 SELL tp $1868.27 $67365.56 0.52% $-19.54 -1.03%
2026-02-23 22:00:00 BUY A $3296.82 $67365.56 0.53%
2026-02-24 00:00:00 SELL stop $3261.78 $67365.56 0.53% $-35.04 -1.06%
2026-02-25 07:00:00 BUY E $1876.89 $67365.56 0.52%
2026-02-25 10:00:00 SELL tp $1857.47 $67365.56 0.52% $-19.42 -1.03%
2026-02-25 19:00:00 BUY E $1873.01 $67365.56 0.52%
2026-02-25 20:00:00 SELL stop $1853.63 $67365.56 0.52% $-19.38 -1.03%
2026-02-26 10:00:00 BUY E $1869.13 $67365.56 0.52%
2026-02-26 11:00:00 SELL stop $1849.79 $67365.56 0.52% $-19.34 -1.03%
no-bear-pathB  wethusdc 2026-05-08_no-bear-pathB_wethusdc_qwen3-coder-480b-cloud_e6e   open ↗ 80 BUY · 80 SELL   -20.84%
sim_tssidepathamount $price $cost %realized $realized %
2026-02-01 05:00:00 BUY E $2000.00 $2448.23 0.52%
2026-02-01 06:00:00 SELL stop $1964.93 $2430.51 0.52% $-35.07 -1.75%
2026-02-01 07:00:00 BUY E $1992.99 $2418.65 0.52%
2026-02-01 08:00:00 SELL stop $1966.26 $2411.22 0.52% $-26.73 -1.34%
2026-02-01 18:00:00 BUY A $3478.37 $2313.96 0.53%
2026-02-01 20:00:00 SELL stop $3450.77 $2320.35 0.53% $-27.60 -0.79%
2026-02-01 21:00:00 BUY E $1982.12 $2316.36 0.52%
2026-02-02 00:00:00 SELL stop $1922.45 $2270.15 0.52% $-59.68 -3.01%
2026-02-02 01:00:00 BUY E $1970.19 $2293.20 0.52%
2026-02-02 02:00:00 SELL stop $1948.14 $2291.29 0.52% $-22.05 -1.12%
2026-02-02 05:00:00 BUY E $1965.78 $2240.54 0.52%
2026-02-02 06:00:00 SELL stop $1908.49 $2198.02 0.52% $-57.29 -2.91%
2026-02-03 19:00:00 BUY E $1954.32 $2120.65 0.52%
2026-02-03 21:00:00 SELL tp $2097.11 $2299.46 0.52% +$142.79 +7.31%
2026-02-03 23:00:00 BUY E $1982.88 $2236.38 0.52%
2026-02-04 00:00:00 SELL stop $1959.98 $2233.72 0.52% $-22.89 -1.15%
2026-02-04 10:00:00 BUY E $1978.30 $2260.65 0.52%
2026-02-04 12:00:00 SELL stop $1952.78 $2254.86 0.52% $-25.52 -1.29%
2026-02-04 15:00:00 BUY E $1973.19 $2171.87 0.52%
2026-02-04 16:00:00 SELL stop $1934.72 $2151.83 0.52% $-38.47 -1.95%
2026-02-05 03:00:00 BUY E $1965.50 $2124.31 0.52%
2026-02-05 04:00:00 SELL stop $1932.03 $2110.00 0.52% $-33.47 -1.70%
2026-02-05 18:00:00 BUY E $1958.81 $1955.09 0.52%
2026-02-05 20:00:00 SELL stop $1912.40 $1928.76 0.52% $-46.40 -2.37%
2026-02-05 21:00:00 BUY E $1949.53 $1869.59 0.52%
2026-02-05 22:00:00 SELL stop $1909.61 $1850.48 0.52% $-39.92 -2.05%
2026-02-06 01:00:00 BUY A $3397.70 $1870.61 0.53%
2026-02-06 03:00:00 SELL stop $3427.77 $1907.49 0.53% +$30.07 +0.89%
2026-02-06 11:00:00 BUY E $1947.56 $1926.94 0.52%
2026-02-06 13:00:00 SELL stop $1921.35 $1920.91 0.52% $-26.21 -1.35%
2026-02-06 14:00:00 BUY E $1942.31 $1950.31 0.52%
2026-02-06 15:00:00 SELL stop $1950.34 $1978.88 0.52% +$8.03 +0.41%
2026-02-08 01:00:00 BUY E $1943.92 $2084.58 0.52%
2026-02-08 02:00:00 SELL tp $1934.64 $2096.35 0.52% $-9.28 -0.48%
2026-02-08 16:00:00 BUY E $1942.06 $2108.64 0.52%
2026-02-08 18:00:00 SELL stop $1906.90 $2092.13 0.52% $-35.17 -1.81%
2026-02-09 23:00:00 BUY E $1935.03 $2115.22 0.52%
2026-02-10 00:00:00 SELL stop $1905.75 $2105.02 0.52% $-29.28 -1.51%
2026-02-10 01:00:00 BUY A $3376.06 $2096.72 0.53%
2026-02-10 02:00:00 SELL stop $3372.97 $2117.35 0.53% $-3.09 -0.09%
2026-02-10 12:00:00 BUY E $1928.56 $2003.21 0.52%
2026-02-10 13:00:00 SELL tp $1913.30 $2008.16 0.52% $-15.26 -0.79%
2026-02-10 15:00:00 BUY E $1925.51 $2009.80 0.52%
2026-02-10 16:00:00 SELL stop $1917.75 $2022.66 0.52% $-7.75 -0.40%
2026-02-11 05:00:00 BUY E $1923.96 $1971.39 0.52%
2026-02-12 00:00:00 SELL stop $1874.86 $1941.18 0.52% $-49.10 -2.55%
2026-02-12 08:00:00 BUY E $1914.14 $1968.07 0.52%
2026-02-12 09:00:00 SELL stop $1891.86 $1965.52 0.52% $-22.27 -1.16%
2026-02-12 16:00:00 BUY E $1909.68 $1948.47 0.52%
2026-02-12 17:00:00 SELL stop $1851.81 $1909.18 0.52% $-57.87 -3.03%
2026-02-13 15:00:00 BUY A $3321.69 $1990.86 0.53%
2026-02-13 16:00:00 SELL stop $3359.08 $2034.93 0.53% +$37.40 +1.13%
2026-02-14 09:00:00 BUY A $3334.78 $2082.35 0.53%
2026-02-14 11:00:00 SELL tp $3291.50 $2077.42 0.53% $-43.28 -1.30%
2026-02-14 12:00:00 BUY E $1896.93 $2099.58 0.52%
2026-02-14 13:00:00 SELL tp $1851.72 $2070.97 0.52% $-45.21 -2.38%
2026-02-14 17:00:00 BUY A $3303.80 $2082.83 0.53%
2026-02-14 18:00:00 SELL stop $3264.60 $2080.23 0.53% $-39.20 -1.19%
2026-02-14 20:00:00 BUY A $3290.08 $2088.52 0.53%
2026-02-14 21:00:00 SELL tp $3257.14 $2089.82 0.53% $-32.94 -1.00%
2026-02-15 00:00:00 BUY E $1873.46 $2086.59 0.52%
2026-02-15 02:00:00 SELL tp $1834.17 $2064.19 0.52% $-39.28 -2.10%
2026-02-15 03:00:00 BUY A $3264.80 $2059.58 0.53%
2026-02-15 04:00:00 SELL stop $3229.12 $2058.94 0.53% $-35.69 -1.09%
2026-02-15 09:00:00 BUY A $3252.31 $2069.20 0.53%
2026-02-15 10:00:00 SELL stop $3217.00 $2068.70 0.53% $-35.32 -1.09%
2026-02-15 11:00:00 BUY A $3239.95 $2061.57 0.53%
2026-02-15 12:00:00 SELL stop $3206.16 $2061.96 0.53% $-33.80 -1.04%
2026-02-15 13:00:00 BUY E $1844.64 $2011.00 0.52%
2026-02-16 00:00:00 SELL tp $1785.25 $1966.58 0.52% $-59.39 -3.22%
2026-02-16 06:00:00 BUY A $3207.34 $1958.00 0.53%
2026-02-16 07:00:00 SELL stop $3187.38 $1966.69 0.53% $-19.96 -0.62%
2026-02-17 01:00:00 BUY A $3200.35 $1998.44 0.53%
2026-02-18 21:00:00 SELL stop $3073.31 $1939.67 0.53% $-127.04 -3.97%
2026-02-19 06:00:00 BUY E $1803.36 $1970.33 0.52%
2026-02-19 07:00:00 SELL tp $1796.13 $1982.92 0.52% $-7.23 -0.40%
2026-02-19 13:00:00 BUY E $1801.92 $1947.30 0.52%
2026-02-19 14:00:00 SELL stop $1759.58 $1921.40 0.52% $-42.33 -2.35%
2026-02-19 15:00:00 BUY A $3138.54 $1936.87 0.53%
2026-02-19 16:00:00 SELL stop $3088.34 $1926.30 0.53% $-50.20 -1.60%
2026-02-20 12:00:00 BUY A $3120.97 $1943.98 0.53%
2026-02-20 13:00:00 SELL stop $3097.18 $1949.82 0.53% $-23.79 -0.76%
2026-02-20 14:00:00 BUY A $3112.64 $1934.11 0.53%
2026-02-20 15:00:00 SELL stop $3094.94 $1943.70 0.53% $-17.71 -0.57%
2026-02-20 16:00:00 BUY A $3106.44 $1963.95 0.53%
2026-02-20 18:00:00 SELL tp $3077.64 $1966.57 0.53% $-28.80 -0.93%
2026-02-20 19:00:00 BUY A $3096.36 $1975.56 0.53%
2026-02-20 20:00:00 SELL stop $3045.17 $1963.69 0.53% $-51.19 -1.65%
2026-02-20 22:00:00 BUY A $3078.45 $1974.38 0.53%
2026-02-20 23:00:00 SELL stop $3041.26 $1971.40 0.53% $-37.18 -1.21%
2026-02-21 00:00:00 BUY A $3065.43 $1968.88 0.53%
2026-02-21 01:00:00 SELL stop $3024.27 $1963.22 0.53% $-41.16 -1.34%
2026-02-21 02:00:00 BUY A $3051.03 $1966.24 0.53%
2026-02-21 03:00:00 SELL stop $3017.90 $1965.69 0.53% $-33.13 -1.09%
2026-02-21 08:00:00 BUY A $3039.43 $1962.71 0.53%
2026-02-21 10:00:00 SELL stop $3018.88 $1970.28 0.53% $-20.56 -0.68%
2026-02-21 21:00:00 BUY E $1732.71 $1974.14 0.52%
2026-02-21 23:00:00 SELL stop $1715.05 $1974.40 0.52% $-17.65 -1.02%
2026-02-22 01:00:00 BUY A $3026.06 $1972.87 0.53%
2026-02-22 03:00:00 SELL stop $2993.09 $1972.23 0.53% $-32.97 -1.09%
2026-02-22 04:00:00 BUY A $3014.52 $1974.71 0.53%
2026-02-22 05:00:00 SELL stop $2981.00 $1973.62 0.53% $-33.52 -1.11%
2026-02-22 06:00:00 BUY E $1715.88 $1974.97 0.52%
2026-02-22 07:00:00 SELL stop $1699.11 $1976.05 0.52% $-16.77 -0.98%
2026-02-22 12:00:00 BUY E $1712.52 $1980.78 0.52%
2026-02-22 13:00:00 SELL tp $1682.53 $1966.37 0.52% $-29.99 -1.75%
2026-02-22 14:00:00 BUY E $1706.53 $1950.95 0.52%
2026-02-22 15:00:00 SELL tp $1688.66 $1950.64 0.52% $-17.87 -1.05%
2026-02-22 19:00:00 BUY A $2980.17 $1942.95 0.53%
2026-02-22 20:00:00 SELL stop $2949.87 $1943.74 0.53% $-30.29 -1.02%
2026-02-23 02:00:00 BUY E $1696.89 $1856.88 0.52%
2026-02-23 03:00:00 SELL stop $1685.15 $1863.24 0.52% $-11.75 -0.69%
2026-02-23 06:00:00 BUY E $1694.54 $1866.08 0.52%
2026-02-23 08:00:00 SELL tp $1694.52 $1885.50 0.52% $-0.02 -0.00%
2026-02-24 00:00:00 BUY E $1694.54 $1856.30 0.52%
2026-02-24 01:00:00 SELL tp $1687.60 $1867.96 0.52% $-6.94 -0.41%
2026-02-24 02:00:00 BUY E $1693.15 $1840.95 0.52%
2026-02-24 03:00:00 SELL stop $1678.05 $1843.54 0.52% $-15.10 -0.89%
2026-02-24 04:00:00 BUY E $1690.13 $1832.03 0.52%
2026-02-24 05:00:00 SELL stop $1671.59 $1830.81 0.52% $-18.54 -1.10%
2026-02-24 10:00:00 BUY E $1686.42 $1827.14 0.52%
2026-02-24 11:00:00 SELL tp $1667.89 $1825.88 0.52% $-18.54 -1.10%
2026-02-24 13:00:00 BUY E $1682.72 $1823.92 0.52%
2026-02-24 15:00:00 SELL tp $1675.24 $1834.73 0.52% $-7.48 -0.44%
2026-02-24 19:00:00 BUY E $1681.22 $1855.08 0.52%
2026-02-24 20:00:00 SELL stop $1661.54 $1852.46 0.52% $-19.68 -1.17%
2026-02-24 22:00:00 BUY A $2935.25 $1854.17 0.53%
2026-02-24 23:00:00 SELL stop $2914.26 $1860.56 0.53% $-20.98 -0.71%
2026-02-25 06:00:00 BUY E $1673.09 $1887.98 0.52%
2026-02-25 08:00:00 SELL tp $1660.52 $1893.31 0.52% $-12.57 -0.75%
2026-02-25 09:00:00 BUY A $2923.50 $1910.29 0.53%
2026-02-25 10:00:00 SELL tp $2900.06 $1915.19 0.53% $-23.44 -0.80%
2026-02-26 06:00:00 BUY A $2915.30 $2066.13 0.53%
2026-02-26 07:00:00 SELL tp $2879.52 $2062.54 0.53% $-35.78 -1.23%
2026-02-26 11:00:00 BUY A $2902.78 $2065.31 0.53%
2026-02-26 12:00:00 SELL stop $2861.51 $2057.66 0.53% $-41.26 -1.42%
2026-02-26 13:00:00 BUY A $2888.34 $2070.00 0.53%
2026-02-26 16:00:00 SELL tp $2807.27 $2033.34 0.53% $-81.07 -2.81%
2026-02-26 17:00:00 BUY E $1634.26 $1983.80 0.52%
2026-02-26 18:00:00 SELL stop $1621.21 $1988.43 0.52% $-13.06 -0.80%
2026-02-26 19:00:00 BUY A $2855.39 $2004.23 0.53%
2026-02-26 20:00:00 SELL tp $2861.81 $2030.14 0.53% +$6.41 +0.22%
2026-02-26 22:00:00 BUY A $2857.64 $2030.36 0.53%
2026-02-27 00:00:00 SELL stop $2823.78 $2027.68 0.53% $-33.86 -1.18%
2026-02-27 01:00:00 BUY A $2845.79 $2014.79 0.53%
2026-02-27 02:00:00 SELL tp $2825.73 $2021.90 0.53% $-20.06 -0.70%
2026-02-27 03:00:00 BUY A $2838.77 $2026.00 0.53%
2026-02-27 04:00:00 SELL tp $2835.72 $2045.39 0.53% $-3.04 -0.11%
2026-02-27 06:00:00 BUY A $2837.70 $2041.61 0.53%
2026-02-27 07:00:00 SELL stop $2799.96 $2035.91 0.53% $-37.74 -1.33%
2026-02-27 16:00:00 BUY E $1614.00 $1948.59 0.52%
2026-02-27 17:00:00 SELL stop $1579.81 $1927.15 0.52% $-34.19 -2.12%
2026-02-27 19:00:00 BUY E $1607.16 $1918.02 0.52%
2026-02-27 20:00:00 SELL tp $1593.17 $1921.10 0.52% $-13.99 -0.87%
2026-02-27 22:00:00 BUY E $1604.36 $1921.26 0.52%
2026-02-28 00:00:00 SELL tp $1594.94 $1929.84 0.52% $-9.42 -0.59%
2026-02-28 02:00:00 BUY E $1602.47 $1924.61 0.52%
2026-02-28 03:00:00 SELL tp $1590.72 $1930.36 0.52% $-11.76 -0.73%
2026-02-28 05:00:00 BUY E $1600.12 $1925.12 0.52%
2026-02-28 07:00:00 SELL stop $1515.66 $1842.45 0.52% $-84.47 -5.28%

Run config

VariantPairRun IDPrompts FPStartedFinished
base btcusdc 2026-05-08_base_btcusdc_qwen3-coder-480b-cloud_d43f2134 5f80dcb4d5d69586 2026-05-08 10:11:47 2026-05-09 00:19:52
base wethusdc 2026-05-08_base_wethusdc_qwen3-coder-480b-cloud_b7e5498e 5f80dcb4d5d69586 2026-05-08 10:11:47 2026-05-09 00:31:38
full-counter-trend btcusdc 2026-05-08_full-counter-trend_btcusdc_qwen3-coder-480b-cloud_756b9e70 7a098dc44f79d94b 2026-05-08 10:11:47 2026-05-09 00:40:08
full-counter-trend wethusdc 2026-05-08_full-counter-trend_wethusdc_qwen3-coder-480b-cloud_d1dad6f9 7a098dc44f79d94b 2026-05-08 10:11:47 2026-05-09 01:03:14
full-plus-sizing btcusdc 2026-05-08_full-plus-sizing_btcusdc_qwen3-coder-480b-cloud_bfe48831 c27d60d41e3a943f 2026-05-08 10:11:47 2026-05-09 00:43:09
full-plus-sizing wethusdc 2026-05-08_full-plus-sizing_wethusdc_qwen3-coder-480b-cloud_db7f68d3 c27d60d41e3a943f 2026-05-08 10:11:47 2026-05-09 00:44:31
no-bear-pathB btcusdc 2026-05-08_no-bear-pathB_btcusdc_qwen3-coder-480b-cloud_f4012f5b 1c4fe6a536c9d03a 2026-05-08 10:11:47 2026-05-09 00:17:23
no-bear-pathB wethusdc 2026-05-08_no-bear-pathB_wethusdc_qwen3-coder-480b-cloud_e6ec4937 1c4fe6a536c9d03a 2026-05-08 10:11:47 2026-05-09 00:33:14

Generated by src/04-build-report.mjs · 8 runs · 2026-05-11 08:10:55 UTC