Qkronos Strategy

Q Kronos Strategy

Version: v3.2.1
Session: AM + PM
Instruments: MNQ, MES
Trade Type: Evaluation + Funded
Entry Window: 09:45–11:30 ET and 14:00–16:00 ET


✅ Entry Criteria

  • Price above 20 EMA
  • VWAP upward slope
  • Bullish engulfing candle confirms Tier 1 entry
  • Volume spike above 20-bar avg
  • EMAs aligned (8 > 21 > 50)

❌ Avoid Trades If:

  • Flat VWAP
  • Red news within 30 minutes
  • Overnight drift exceeds 1%

🎯 Risk Management

  • Max trades per session: 3
  • SL: 10 ticks
  • TP: 25–35 ticks (dynamic)
  • Break-even stop after +15 ticks

📈 Backtest Summary (v3.2.1)

MetricValue
Win Rate67.4%
Avg Win$110
Avg Loss-$65
Expectancy0.72
Total Trades138

📜 Pine Script Snippet

//@version=5
strategy("Q Kronos", overlay=true)
vw = ta.vwap
ema = ta.ema(close, 20)
entry = close > ema and close > vw
if entry
    strategy.entry("Long", strategy.long)

🗒️ Notes & Version History

  • v3.2.1: Cleaned up entry filter, tightened SL
  • v3.1.0: Added volume threshold
  • v3.0.0: Initial Kronos template
Scroll to Top