🤖Callout Bot Guide

What is Callout Bot?

The Callout Bot is not designed to be a personal trading journal - it's for tracking the win-rate and profitability of your real-time alerts.

How does the system work?

When an alerter enters an alert into an alert channel, the message is quickly picked up by a bot and parsed.

If the parse is successful, the user's alert is captured along with actual market data about the alert.

Once captured, the alert is tracked until it reaches Stop Loss / Take Profit or until the alerter alerts an exit.

Once an alerter has closed 50+ alerts, the alerter will be eligible for the leaderboard.

Proper Alert Formatting

Syntax
Example

{orderSide} {symbol} @ {pricePaid} {leverage} {stopLoss} {takeProfits}

LONG BTC @ 28000 x10 SL 25000 TP 30000, 31000

Order side

Possible abbreviations for {orderSide} :

Open LONG position = { "LONG", "LONGED", "BUYING", "BOUGHT", "BUY" }
Open SHORT position = { "SHORT", "SHORTED" }
Close LONG position = { "CLOSE", "CLOSED", "SOLD", "SELLING" }
Close SHORT position = { "CLOSE", "CLOSED", "COVER", "COVERED" }

Price paid

For {pricePaid} you can specify a price or use a market price: LONG BTC @ M

LONG BTC @ 30000
OR
LONG BTC @ M

Leverage

You can set {leverage} in a range between 1x and 100x: LONG BTC @ M 50x

Stop Losses

You can include a stop loss by using one of the following keywords: SL, STOP or STOP LOSS with your stop price after it.

Example:

  • LONG BTC @ 25000 SL 24000

The stop price will be captured, and once price crosses below that level (or above it on a short trade), the alert will automatically be closed.

Take Profits

You can include a multiple take profits by using one of the following keywords: PT, TP or TAKE PROFIT with your target price after it.

Example:

  • BTO BTC @ 25000 TP 26000, 26500, 28000

The take profit prices will be captured, and once price crosses above that level (or below it on a short trade), the take profit will be triggered and once it reaches the final take profit the alert will automatically be closed.

For both stop losses and take profits, messages will be automatically dispatched to the "alerts" channel.

Update Position

You can update stop loss and/or take profits for your position .

Examples:

  • UPDATE BTC TP 30000, 35000

  • UPDATE BTC SL 25000

  • UPDATE BTC SL 25000 TP 30000, 35000

Average Position

You can average your position once per trade.

Examples:

  • AVG BTC @ 30000

  • AVERAGE BTC @ M

  • AVERAGE BTC

  • AVG BTC

Partial Close

You can partially close your position once per trade.

Examples:

  • PARTIAL CLOSE BTC @ 30000

  • CLOSE PARTIAL BTC @ M

  • CLOSE PARTIAL BTC

  • PARTIAL CLOSE BTC

Limit order

You can place a limit order to open a trade position. You juts need to specify the price and if it is more than 0.5% away from the market price, then we'll set a limit order. Use @ M for market orders.

Examples:

  • BUY BTC @ 30000

  • LONG ETH @ 1500

Last updated