Test Strat.

READY
{
  "symbol": "GCQ2026",
  "symbolLock": false,
  "alertDelayMode": "Adaptive",
  "maxAlertDelaySec": 30,
  "allowExtendedDelayCap": false,
  "accountNames": [
    "Ninja - DEMO4333640"
  ],
  "readinessReasons": []
}

Webhook URL

https://bridge.handyandynj.com/webhook

TradingView Alerts

Strategy alert must include both order fill events and alert() function calls. Use message: {{strategy.order.alert_message}}. If TradingView cannot combine both, create one alert for strategy order fills with that message and one alert for any alert() function call so invalidation JSON passes through unchanged.

LONG_ENTRY_SIGNAL

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "LONG_ENTRY_SIGNAL",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

SHORT_ENTRY_SIGNAL

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "SHORT_ENTRY_SIGNAL",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

LONG_EXIT_SIGNAL

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "LONG_EXIT_SIGNAL",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

SHORT_EXIT_SIGNAL

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "SHORT_EXIT_SIGNAL",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

LONG_ENTRY

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "LONG_ENTRY",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

LONG_EXIT

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "LONG_EXIT",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

SHORT_ENTRY

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "SHORT_ENTRY",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

SHORT_EXIT

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "SHORT_EXIT",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

LONG_INVALIDATED

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "LONG_INVALIDATED",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}

SHORT_INVALIDATED

{
  "token": "abc123",
  "strategy_name": "Test Strat.",
  "symbol": "GCQ2026",
  "event": "SHORT_INVALIDATED",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}"
}