Extending Vantixs3 min read

Extending Vantixs

Extend the workflow, not the hosted stack. Vantixs is a hosted SaaS platform for building, testing, and operating trading workflows without running your own execution infrastructure.

This means extension points are exposed through product surfaces: visual strategy graphs, AI Strategy JSON, webhooks, templates, and reviewed marketplace assets. The hosted exchange connectors, runtime executors, and risk controls remain managed by Vantixs.

Hosted SaaS
No self-hosted runtime required
Workflow-first
Extend strategies, templates, and signal paths
Reviewed surfaces
Marketplace and beta nodes use product controls
Managed execution
Exchange connectors and executors stay internal

Supported Extension Surfaces

SurfaceStatusWhat you can doBoundary
Visual strategiesAvailableBuild and customize node graphs in Strategy BuilderUses supported node types and validation rules
AI Strategy JSONAvailableImport and export strategy pipelines as validated JSONImports must pass schema and graph checks before use
WebhooksAvailableReceive TradingView alerts or external script signalsPayloads are validated and routed through risk controls
TemplatesAvailableStart from strategy and bot templates, then customizeTemplates are starting points, not performance promises
Custom nodesBetaCreate controlled node definitions when the feature is enabledRuns inside Vantixs sandbox/review limits; no arbitrary server access
Marketplace assetsBeta/internal reviewPublish or fork reviewed strategy and node assets where enabledAvailability depends on account access and review policy
Exchange connectorsInternal onlyUse supported exchanges through Vantixs-managed connectorsNo public bring-your-own exchange connector runtime
Runtime executorsInternal onlyRun Signal, Grid, DCA, and Smart Order patterns through VantixsNo public runtime adapter or server-side execution hook
Self-hostingNot supportedN/AVantixs is offered as hosted SaaS, not self-hosted software
Arbitrary server adaptersNot supportedN/AUse webhooks or supported product APIs instead

Product Boundary

Vantixs lets you express trading intent and validation rules. It does not expose the hosted execution stack as a plugin host.

Supported extension work usually falls into one of these paths:

  • Build or import a strategy, validate it, then test it through backtest and paper trading.
  • Connect an external signal source through a webhook, then audit accepted, rejected, and replayed signals.
  • Create or use beta custom nodes only through the controlled node workflow when enabled for your account.
  • Share or consume marketplace assets after review where the marketplace surface is available.

Not supported:

  • Self-hosting the Vantixs runtime.
  • Installing npm packages or plugins into the hosted executor.
  • Adding arbitrary network or filesystem access from a custom node.
  • Bringing your own exchange connector, broker adapter, or runtime executor into production execution.

Next Steps