The shared TREND bundle from market.trend_structure or market.ma_trend (wire its out.trend handle) — carries the regime, trend strength, and an anchor level.
Outputs
Bundle (untagged)
A bundle of is_up / is_down / is_range / aligned BOOL gates plus a strength SCALAR (for ORDER_EXIT confidence) and an anchor SCALAR (for a structural stop) — tap one with from_port.
Trend Interpretor takes the trend reading produced by market.trend_structure or market.ma_trend and turns it into simple yes/no gates and numbers you can wire anywhere — is_up, is_down, is_range, aligned, plus a strength SCALAR and an anchor price for stops.
How it works
It reads the shared TREND bundle (wire either emitter's out.trend handle, which have an identical shape) and splits it into is_up, is_down, is_range, and aligned BOOL gates, plus a strength SCALAR (good for ORDER_EXIT confidence) and an anchor SCALAR (good for ORDER_EXIT stop-loss). It has no mode or config — the regime in the bundle does all the work.
Connects to
Reads from
Feeds into
Examples
Filter: gate long entries on is_up so signals only fire while the trend engine reads bullish.
Wire anchor into an ORDER_EXIT stop-loss so your stop trails the last confirmed structural level.
Common mistakes
Wiring the whole emitter output instead of its out.trend handle — this tool reads the nested TREND bundle, not the raw node.
Expecting a take-profit target here — the measured-move TP lives on market.trend_structure.out.target_price, not in this interpretor.