workflow_run
Run a saved multi-step workflow on Stockbit market data. Returns ordered step outputs; aborts on failure, reporting the exact step, and flags skipped items from fan-outs.
Instructions
Run a saved workflow by name — several tools in one call, the same way every time.
Returns each step's output in order, with the time it took. A step that fails ABORTS the run and the result names which step and why, unless that step is marked optional (its error is recorded and the run continues). A capped fan-out reports how many items it skipped, so a partial sweep never reads as a complete one.
Use workflow_list first to see names and required inputs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Workflow name from workflow_list, e.g. deep_dive | |
| input | No | Inputs for the workflow, e.g. { "symbol": "BBRI" } |