Strategies Basics

Understand how bands, crosses, and parameters produce signals you can trade manually on closed candles.

← Back to index

First & Second Band

{
  "first_band":  {"type": "ema", "factors": {"length": 21, "offset": 0}},
  "second_band": {"type": "sma", "factors": {"length": 55, "offset": 0}}
}

Cross & Direction

Illustration

Blue is first_band, orange is second_band. The red dashed line marks the next‑bar open where execution takes place after the cross.

Cross Logic and Next‑Open Execution Two bands crossing on a closed bar; execution at the open of the next bar. Price ↑ Time → first_band second_band next‑open

Axes and Timing

Length (window/period)

Offset (shift)

Pairing Recipes

Use higher multipliers/std/scalars and slower baselines to reduce whipsaw; lower to increase trade frequency.

From Idea to Playbook

  1. Frame the hypothesis: Identify if you expect trend continuation, range rotation, or breakout. Choose bands accordingly.
  2. Draft the JSON: Start with clean factor values (length, std, multiplier). Keep offset = 0 unless you have a documented reason.
  3. Replay & annotate: Step through the last 30–50 signals on closed candles. Note false positives and restructure factors if needed.
  4. Codify execution: Write when to enter, add, scale out, and invalidate. Store it alongside the strategy name so the desk can reference it fast.
  5. Review cadence: Schedule a weekly review to see if volatility/volume changes require updating the parameters or retiring the play.