LuxAlgo Walkthrough:
-
Use the LuxAlgo indicator to generate various degrees of buy and sell signals.
-
Set alerts on custom generated buy and sell signals.
Video 1:
Video 2:
Webhook example for opening a long position
{
"symbol": "BTCUSDT",
"side": "buy",
"entryOrderType": "market",
"leverage": 10,
"notifyDiscordChannel": false,
"minimumValue": 0,
"minimumAvailableBalancePercent": 0,
"extraStopLossMovePercent": 0,
"takeProfits": [
{
"percentToSell": 15,
"percentAboveOrBelowMarketPrice": 0.75,
"skipStopLossMove": false
},
{
"percentToSell": 25,
"percentAboveOrBelowMarketPrice": 1.85,
"skipStopLossMove": true
},
{
"percentToSell": 25,
"percentAboveOrBelowMarketPrice": 3,
"skipStopLossMove": false
},
{
"percentToSell": 15,
"percentAboveOrBelowMarketPrice": 5,
"skipStopLossMove": false
},
{
"percentToSell": 20,
"percentAboveOrBelowMarketPrice": 7,
"skipStopLossMove": true
}
],
"label": "LuxAlgoBotLong",
"marketStopLossPercent": 1.5,
"balancePercent": 3,
"maxEntriesPerLabel": 2
}
Webhook example for closing a long position
{
"symbol": "BTCUSDT",
"side": "buy",
"closeOrderType": "market",
"positionPercent": 100,
"label": "LuxAlgoBotLong",
"closeByLabel": true
}
Webhook example for opening a short position
{
"symbol": "BTCUSDT",
"side": "sell",
"entryOrderType": "market",
"leverage": 10,
"notifyDiscordChannel": false,
"minimumValue": 0,
"minimumAvailableBalancePercent": 0,
"extraStopLossMovePercent": 0,
"takeProfits": [
{
"percentToSell": 15,
"percentAboveOrBelowMarketPrice": 0.75,
"skipStopLossMove": false
},
{
"percentToSell": 25,
"percentAboveOrBelowMarketPrice": 1.85,
"skipStopLossMove": true
},
{
"percentToSell": 25,
"percentAboveOrBelowMarketPrice": 3,
"skipStopLossMove": false
},
{
"percentToSell": 15,
"percentAboveOrBelowMarketPrice": 5,
"skipStopLossMove": false
},
{
"percentToSell": 20,
"percentAboveOrBelowMarketPrice": 7,
"skipStopLossMove": true
}
],
"label": "LuxAlgoBotShort",
"marketStopLossPercent": 1.5,
"balancePercent": 3,
"maxEntriesPerLabel": 2
}
Webhook example for closing a short position
{
"symbol": "BTCUSDT",
"side": "sell",
"closeOrderType": "market",
"positionPercent": 100,
"label": "LuxAlgoBotShort",
"closeByLabel": true
}
- Take note that these webhook messages are examples that provide a general framework. Be sure to edit the different parameters for take profits, leverage and all other options you wish to include.