Creating New Bot
This endpoint allows you to create a new bot from scratch.
Create/update new bot
POST
https://api.aitrade.com/api/bots
Request Body
bot_id (only for updating bot)
(integer, optional)
Unique ID of the created bot (only for the update bot API).
user_id
integer
A unique ID to identify the user
exchange_pair_id
integer
A unique ID to identify the pair.
initial_fund
float
Fund allocation for the bot
name
string
A name to identify the bot created
strategy
string
Options are Long
, Short
.
base_order_percentage
integer
Percentage of Fund used for the base order
extra_order_percentage
integer
Remaining Fund not used in base order are used to create extra orders. The number indicates percentage used for the next order.
base_order_type
string
Options static
, dynamic
. Static will always use the same Base Order Limit set, regardless of the bots performance. Dynamic allows the bot to use profits from it’s previous trades for it’s next trade or lowers the base order if it has encountered a loss previously
order_type
string
Options are limit
,market
. Limit order is normally used to ensure price level especially when your take profit level is small. Market order is typically used when you need to ensure immediate Filled condition
frequency
integer
options are, 1,5,15,60,240,1440
profit
float
Take profit percentage
stop_loss
float
Stop loss percentage
bot_indicators
Object
An object containing the indicators.Please refer to Bot Indicator Parameter Sample
indicator_triggers_entry
integer
Number of entry indicators
indicator_triggers_exit
integer
Number of exit indicators
Bot Indicators parameters
RSI and Stock RSI
period_num
Number of candles
2-50
14
value2
Buy Level for Base Order
0-100
30
value3
Sell Level for Base Order
0-100
70
value4
Activate Trailing Flag
0
or 1
1
value5
Buy Level for Extra Order
0-100
25
value6
Sell Level for Extra Order
0-100
75
value7
Average Level for Base Order
0-10
5
value8
Average Level for Extra Order
0-10
5
value9
Entry Reverse Cross Direction Flag
0
or 1
0
value10
Exit Reverse Cross Direction Flag
0
or 1
0
is_compulsory
Whether this indicator must hit in the group or not
0 or 1
0
Bollinger Band
period_num
Number of candles
14-50
20
value2
Lower Band Standard Deviation
2-20
2
value3
Upper Band Standard Deviation
2-20
2
is_compulsory
Whether this indicator must hit in the group or not
0, 1
0
EMA
period_num
Number of candles
10-100
50
value2
Short period
2-20
9
is_compulsory
Whether this indicator must hit in the group or not
0, 1
0
MACD
period_num
Fast Period
2-50
12
value2
Slow period
2-50
26
value3
Signal period
2-50
9
is_compulsory
Whether this indicator must hit in the group or not
0, 1
0
Volume
period_num
Number of candles
0-50
2
value2
Minimum volume
is_compulsory
Whether this indicator must hit in the group or not
0, 1
0
Bot Indicator Parameter Sample in api
Both exit and entry indicators are send together as an array of an object
Responses:
Success (200): Returns the details of the bot created or updated including ID, name, status, and other specific settings.
Failure (401): Unauthenticated, indicating you're not logged in or lack permission to carry out the request.
Last updated