DEVELOPER FRAMEWORK
Obsidian Flow values, inside Strategy Builder.

Strategy Series Adapters

Non-visual indicators whose only job is to expose the computed order flow values as plain numeric series. Strategy Builder sees them in its Indicator Value dropdown like any other indicator, so you can build a condition on aggression or on a profile level without writing C#.

Specification
Requires
The aggression adapter adds a 1-tick series; the profile adapter inherits one from the profile indicator.
First rule
Check IsValid on the bar before trusting any other value from a series. It is there because a bar can be mid-build.
Not included
The development probe strategies are internal tooling and place no orders. They are not part of the product.
Access
Invite only, alongside the Developer API.
Built for Strategy Builder

No code required. Code welcome.

Two adapters ship. The aggression series exposes buy pressure, sell pressure, the net histogram, raw volumes, threshold state and flip flags. The profile series exposes POC, value area high and low, the aggression and ROC points of control, and session aggression totals — read from the profile indicator's own computed output, so an adapter cannot drift from what your chart shows. Coded strategies get node-level lookups the plot interface cannot carry.

01

Aggression series — 11 values including threshold state and flip flags.

02

Profile series — 15 values including POC, VAH/VAL and aggression points of control.

03

Reads the indicator's computed output rather than recalculating, so it cannot disagree with your chart.

Developer Early Access only — invite required
Positioning

Where it fits.

The bridge between the suite and your own strategies — with or without C#.

Requires NinjaTrader 8. OF-DEV-ADAPTER-001