Scavenger Bot
Search
⌃K

Trading Companion

Video Tutorial Showing you how to send alerts from Tradingview
This is our webhook strategy for traders looking to use Scavenger Bot with Tradingview, Telegram Signals, Day Trading, and Other Addons. This strategy will allow you to open and close positions via webhook as well as take advantage of other automated settings that Scavenger Bot has to offer.

SETTINGS:

  • Contract Adjustment
  • Stop Loss
  • Take Profit
  • Dollar Cost Average
  • Market Change Protection
  • Smart Channel Protection

Available Inputs:

apiKey

This is your scavenger webhook API, it can be found under bot account settings

botName

The name of the bot you want to send your alerts to.

type

Here is the order type you wish to submit.
market & limit

side

The direction you wish the order to be placed.
long & short

amount

The order amount or size that you wish to place. This can be in base currency as a number or as a percent.
Examples: "amount" : 20 , or "amount" : 5%,

price

This allows you to set the EXACT price of the order OR set the offset in base currency pips from the last price if "offsetPrice": true
Example Values:
"price": 0 or "price": -0.5

params

cancelDelay
Delay is an option that allows you to the cancel the order after a set amount of time if still on the books.

offsetPrice

This allows you to offset the price of the order based on last price, and can be a positive or negative integer. This is useful when placing limit orders when you do not want them to fill instantly or when creating laddered or DCA orders.

Sample Alerts

Long Market Order

[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "market",
"side": "buy",
"amount": 100,
"price": 0,
"params": {
"cancelDelay": 180
}
}

Short Market Order

[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "market",
"side": "sell",
"amount": 100,
"price": 0,
"params": {
"cancelDelay": 180
}
}

Limit Buy Order

[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "limit",
"side": "buy",
"amount": 1000,
"price": -0.5,
"params": {
"cancelDelay": 180,
"offsetPrice": true
}
}

Limit Sell Order

[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "limit",
"side": "sell",
"amount": 1000,
"price": 0.5,
"params": {
"cancelDelay": 180,
"offsetPrice": true
}
}

Full Post Man API Docs Can be found below