Skip to content
Algo Trade Analytics Docs

Quick Start

This guide provides the technical steps to initialize signal capture. For an overview of the full analytical workflow, see System Onboarding.

  1. Generate Webhook: In Webhook Management, create a new endpoint and record the generated URL and Auth Key.
  2. Payload Integration: Add the following JSON alert signal to your TradingView strategy’s alert_message (or the Alert “Message” box):
{
"auth_key": "YOUR_KEY",
"ticker": "{{ticker}}",
"positionDirection": "entryLong",
"orderType": "market",
"marketPrice": {{close}},
"qty": 1,
"metadata": {
"timestamp": "{{time}}",
"strategy": "My Strategy",
"signal": "Entry Signal"
}
}
  1. Set Alert: Configure a TradingView alert using the Webhook URL and the strategy’s alert_message.
  2. Verify Ingestion: Monitor the Hub Dashboard to confirm successful signal capture after an alert fires.
  • Logic Audit: Reconcile backtesting CSV data with captured signals. All Plans
  • Execution Audit: Connect an Alpaca account to quantify price slippage and latency. Basic & Pro
  • AI Resolution: Utilize the AI editor to mitigate identified discrepancies. Basic & Pro