A test mode that records nothing
Every Strategy gets a validation mode that parses and checks an alert completely without storing a Signal. You can fire your Strategy at it as many times as you like while you get the alert configuration right.
An Algo Provider runs a Strategy that produces its own entries and exits, usually a Pine Script Strategy on TradingView, and connects it to Triggon with webhook-supported alerts. Each alert becomes a Signal for your subscribers, recorded permanently.
Sample. A Strategy cannot go live until every market it declared has produced a successful validation.
A Pine Script Strategy on TradingView that you already run. You do not rebuild it.
Configured to fire on the events your Strategy produces: entries, exits and the management in between.
Validates each alert, records it, and turns it into a Signal.
Receive the Signal in Telegram, with your Strategy's record attached.
Places it on the accounts of subscribers who enabled it, inside their own limits.
A full position lifecycle, not just entries. Everything your Strategy does to manage a trade can be expressed.
Sizing and leverage can travel with a Signal too. Both are treated as ceilings on the subscriber's side: a Signal can ask for less than a subscriber allows, never for more.
Every Strategy gets a validation mode that parses and checks an alert completely without storing a Signal. You can fire your Strategy at it as many times as you like while you get the alert configuration right.
A Strategy cannot be published until it has produced a successful validation for each market it declares. An integration that works for one symbol and silently fails for another is caught here rather than by a subscriber.
Each Strategy has its own connection details and its own secret, both issued in the Connection tab of your Provider Hub and rotatable at any time. They are never shown on a public page.
A stop on the wrong side of the price, a target in the wrong direction, an unsupported order type, a stale timestamp: each is rejected at the door, before it can reach a subscriber's account.
You have a Strategy that already runs automatically, you can configure its alerts, and your problem is distribution rather than signal generation.
You trade discretionarily, or your process involves judgement a script does not capture. The Manual route publishes to the same Marketplace and builds the same record.