Job Notes

No notes yet. Click "Edit Notes" to add.

Symbols 12

TZA, PLRZ, BTE, NVDQ, QS, IQ, CYN, AGMH, MSTU, BHAT, SUNE, GNLN

Performance Summary

Total Trades

0

Total P&L

$0.00

Notional: $0.00
Total Return

0%

Weighted by notional
Win Rate

0%

0 W / 0 L
CouldWin Rate

0%

0 could / 0 total
Avg P&L

$0.00

Avg Return: 0%
Best Win

$0.00

Largest Loss

$0.00

Trade Details 0 positions

No closed positions found for this test

Positions will appear here when the backtest completes
Strategy DSL [4f598] [v260113-1005] [bfda4] CreativeExit_VolContractWeakTrend_052626 | EXIT Opt: AdaptChandADX | EXIT Opt: stat_anomaly_zscore
Job Like
CONTEXT:
UNIVERSE: SP500
BASE_TZ: America/New_York
CAPITAL: 1_000_000

PARAMS:
sym="{{sym}}",  // Symbol placeholder for runtime injection
fast_ema=5,      // Fast EMA period for breakout confirmation
slow_ema=6,     // Slow EMA period for trend filter
vol_min=1_000_000, // Minimum volume filter to avoid low-float stocks
atr_period=14,   // ATR period for volatility and risk calculation
atr_mult=2.5,    // ATR multiplier for trailing stop
bb_period=14,    // Bollinger Bands period for volatility contraction
bb_dev=3,      // Bollinger Bands standard deviation multiplier
risk_frac=0.0793   // Risk fraction for position sizing

STRATEGY "Nexus Revert Pulse-381595 + Mut-46cb0d + Mut-996010 + Mut":
TRIGGER:
// Time gate to skip first 5 minutes of trading day (assuming 9:30 AM ET start, convert to UTC)
TIME_UTC_IN("21:40", "20:00") 
AND
// Volume filter to avoid low-float microcaps
LAST(VOL(sym, 1m)) >= vol_min
AND
// Volatility contraction: price within tight Bollinger Bands
LAST(CLOSE(sym, 1m)) > LOWER(BBANDS(CLOSE(sym, 1m), bb_period, bb_dev))
AND
LAST(CLOSE(sym, 1m)) < UPPER(BBANDS(CLOSE(sym, 1m), bb_period, bb_dev))
AND
// Breakout signal: price crosses above fast EMA
CROSSUNDER(CLOSE(sym, 1m), EMA(CLOSE(sym, 1m), fast_ema))
AND
// Higher timeframe trend filter (5m) for confirmation
EMA(CLOSE(sym, 5m), fast_ema) > EMA(CLOSE(sym, 5m), slow_ema)
ENTRY: MARKET  // Market order for immediate execution on breakout
EXIT: 
  ZSCORE(RETURN(CLOSE(sym,1m),5),20) < -1.5 AND ZSCORE(ATR(sym,1m,14),50) > 1.2
RISK: ATR_STOP(atr_mult) // Risk management using ATR-based stop
SIZING: FIXED_FRACTION(risk_frac) // Fixed fraction sizing for consistent risk