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.
- Contract Adjustment
- Stop Loss
- Take Profit
- Dollar Cost Average
- Market Change Protection
- Smart Channel Protection
This is your scavenger webhook API, it can be found under bot account settings
The name of the bot you want to send your alerts to.
Here is the order type you wish to submit.
market & limit
The direction you wish the order to be placed.
long & short
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%,
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
cancelDelay
Delay is an option that allows you to the cancel the order after a set amount of time if still on the books.
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.
[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "market",
"side": "buy",
"amount": 100,
"price": 0,
"params": {
"cancelDelay": 180
}
}
[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "market",
"side": "sell",
"amount": 100,
"price": 0,
"params": {
"cancelDelay": 180
}
}
[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "limit",
"side": "buy",
"amount": 1000,
"price": -0.5,
"params": {
"cancelDelay": 180,
"offsetPrice": true
}
}
[
{
"apiKey": "APIKEYGOESHERE",
"botName": "BOTNAMEGOESHERE",
"type": "limit",
"side": "sell",
"amount": 1000,
"price": 0.5,
"params": {
"cancelDelay": 180,
"offsetPrice": true
}
}
Last modified 2yr ago