SE100
SE100
Docs
  • Docs
  • Changelog
  • Feature requests
  • Support portal
    • Widgets
    • Domain-Specific Language (DSL)
    • SEIOO DSL Semantics
    • SEIOO DSL: The Definitive Guide to Building High Performance Trading Logic
    • Signal Production 1.0
    • Signal Production 2.0
    • SEIOO - Use Cases
    • Conditional Masking, Regime Gates, and State Machines in SEIOO
    • SEIOO Auto Trade Flow

Signal Production 2.0

Advanced multidimensional signal algorithms for real trading and investment decisions.
Signal Production 2.0

Signal Production 1.0 focused on describing the market. Signal Production 2.0 focuses on interpreting market behavior across dimensions, answering harder questions traders actually struggle with, and producing signals that add decision value, not just information.

This is still pure signal production. No execution. No positions. No trade rules. But the signals produced here are the kind professionals build decisions on top of.


What changes from 1.0 to 2.0?

Signal Production 2.0 introduces three key shifts:

  1. From single-dimension signals to multidimensional inference

  2. From static state signals to dynamic behavior signals

  3. From descriptive scores to decision-weighted confidence surfaces

You are no longer just asking what is happening, but:

  • Why is this happening?

  • How stable is this condition?

  • Is the market transitioning, compressing, expanding, or fragmenting?

  • Which signals matter more right now?


1. Signal Interaction Models

When signals change meaning depending on context

Real-world questions

  • Is momentum meaningful in this volatility regime?

  • Does trend strength matter if participation is weak?

  • When should I trust overbought/oversold signals?

Signal Production 2.0 explicitly models signal interactions, not just signal values.


Conditional momentum quality signal

Question: Is momentum reliable right now?

weighted(
  0.5:normalize(roc(X:BTCUSD.close, 10)),
  0.3:normalize(X:BTCUSD.adx),
  0.2:normalize(X:BTCUSD.volume_surge)
)

This answers:

Momentum exists — but is it supported by structure and participation?

Momentum alone is cheap. Qualified momentum is valuable.


Volatility-aware momentum signal

Question: Is momentum being distorted by chaos?

weighted(
  0.7:normalize(roc(X:BTCUSD.close, 10)),
  0.3:(100 - normalize(zscore(X:BTCUSD.atr)))
)

This downweights momentum when volatility is extreme, producing a behavior-adjusted signal.


2. Regime-Weighted Signal Surfaces

Signals that adapt to the market’s dominant state

Real-world questions

  • Which signals matter most right now?

  • Should I care more about trend or mean reversion in this environment?

Instead of choosing one signal, Signal Production 2.0 weights signals by regime.


Trend-dominant regime score

normalize(X:BTCUSD.adx)

Mean-reversion pressure score

normalize(
  abs(
    (X:BTCUSD.close - sma(X:BTCUSD.close, 50))
    / std(X:BTCUSD.close, 50)
  )
)

Regime-adaptive composite signal

Question: What type of signal should dominate right now?

weighted(
  normalize(X:BTCUSD.adx):normalize(roc(X:BTCUSD.close, 10)),
  (100 - normalize(X:BTCUSD.adx)):normalize(
    abs(
      (X:BTCUSD.close - sma(X:BTCUSD.close, 50))
      / std(X:BTCUSD.close, 50)
    )
  )
)

This produces a context-sensitive signal surface where:

  • Trend signals dominate in strong trends

  • Mean reversion dominates in weak structure

This is a major jump in signal intelligence.


3. Signal Stability and Decay

Detecting when signals are weakening or strengthening

Real-world questions

  • Is this signal improving or decaying?

  • Is this move accelerating or stalling?

Signal Production 2.0 treats signal behavior itself as a signal.


Signal slope (rate of change)

diff(ema(roc(X:BTCUSD.close, 10), 5))

Signal stability score

Question: Is this condition stable or unstable?

100 - normalize(
  std(
    ema(roc(X:BTCUSD.close, 10), 5),
    10
  )
)

High values indicate persistent, orderly behavior. Low values indicate erratic, unreliable conditions.


4. Compression and Expansion Signals

Detecting pressure buildup before resolution

Real-world questions

  • Is the market coiling or releasing?

  • Is volatility contracting or expanding?

These signals are especially valuable for swing traders and investors.


Volatility compression signal

100 - normalize(zscore(X:BTCUSD.atr))

Compression + direction bias

Question: Is pressure building with directional bias?

weighted(
  0.5:(100 - normalize(zscore(X:BTCUSD.atr))),
  0.5:normalize(roc(X:BTCUSD.close, 10))
)

This does not predict direction. It signals asymmetry building, which is actionable information.


5. Cross-Market Influence Signals

When other markets matter more than price itself

Real-world questions

  • Is this asset being driven internally or externally?

  • Is macro pressure overriding technical structure?

Signal Production 2.0 treats cross-market behavior as a first-class signal dimension.


External influence strength

abs(
  rollingCorrelation(X:BTCUSD.close, VIX.close, 30)
)

High values indicate exogenous dominance.


Internal vs external dominance score

weighted(
  0.6:normalize(X:BTCUSD.adx),
  0.4:(100 - abs(rollingCorrelation(X:BTCUSD.close, VIX.close, 30)))
)

This answers:

Is price being driven by its own structure or by outside forces?


6. Signal Consensus and Divergence

When signals agree — or disagree

Real-world questions

  • Do multiple dimensions tell the same story?

  • Is there hidden disagreement beneath the surface?


Consensus score

100 - std(
  normalize(X:BTCUSD.adx),
  normalize(roc(X:BTCUSD.close, 10)),
  normalize(X:BTCUSD.volume_surge)
)

High values = strong agreement Low values = internal conflict


Divergence pressure signal

std(
  normalize(roc(X:BTCUSD.close, 10)),
  normalize(X:BTCUSD.volume_surge)
)

Useful for spotting fragile moves.


7. Decision-Grade Confidence Surfaces

Signals designed to be consumed downstream

Real-world questions

  • How confident should I be right now, overall?

  • How does this opportunity rank against others?

Signal Production 2.0 outputs confidence surfaces, not indicators.


Advanced confidence signal

weighted(
  0.25:normalize(X:BTCUSD.adx),
  0.2:normalize(roc(X:BTCUSD.close, 10)),
  0.15:normalize(X:BTCUSD.volume_surge),
  0.15:(100 - normalize(zscore(X:BTCUSD.atr))),
  0.15:(100 - std(
    normalize(X:BTCUSD.adx),
    normalize(roc(X:BTCUSD.close, 10))
  )),
  0.1:(100 - abs(
    rollingCorrelation(X:BTCUSD.close, X:ETHUSD.close, 30)
  ))
)

This single signal compresses:

  • strength

  • stability

  • risk

  • alignment

  • internal consistency

It is designed to be ranked, compared, and monitored, not eyeballed.


Final perspective

Signal Production 2.0 is where signals become intelligence.

Not:

  • buy/sell rules

  • not indicator collections

  • not chart decorations

But structured representations of market behavior, designed to:

  • reduce cognitive load

  • surface hidden risk

  • prioritize attention

  • and support better downstream decisions

Signal Production 1.0 told you what is happening. Signal Production 2.0 tells you how much it matters, why, and whether it’s stable enough to care.

PrevSignal Production 1.0
NextSEIOO - Use Cases
Was this helpful?