Overview

Sizing Helpers & Variables

Stop punching numbers into spreadsheets.
Use built‑in helpers or declare variables once and reference them everywhere.

Risk‑Percentage Sizer

1% risk per trade, auto size vs stop distance
IF riskPct percent=1

Fixed Dollar Sizer

always risk $500 regardless of equity
IF fixedDollar dollars=500

Variable Declarations

LET myStop=30 -- define once
IF stopLoss ticks=myStop

Variables are immutable per run; set them at the top of your file for DRY rules.