Creating a Custom Bot
4
🌐 Step 4: Copy Webhook & Alert Messages
Webhook URL
https://api.primeautomation.ai/webhook/ChartPrime/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Basic Alert Message (for non-ChartPrime users)
{{strategy.order.alert_message}}
Full Indicator Message Templates (Advanced)
{
"ticker": "{{ticker}}",
"action": "buy",
"price": "{{close}}",
"time": "{{timenow}}",
"size": "{{size}}"
}{
"ticker": "{{ticker}}",
"action": "exit_buy",
"price": "{{close}}",
"time": "{{timenow}}",
"size": "{{size}}",
"per": "{{per}}",
"sl": "{{sl}}",
"tp": "{{tp}}"
}{
"ticker": "{{ticker}}",
"action": "sell",
"price": "{{close}}",
"time": "{{timenow}}",
"size": "{{size}}"
}{
"ticker": "{{ticker}}",
"action": "exit_sell",
"price": "{{close}}",
"time": "{{timenow}}",
"size": "{{size}}",
"per": "{{per}}",
"sl": "{{sl}}",
"tp": "{{tp}}"
}Last updated

