Required parameters

Essential parameters that must be configured for the grid to function correctly.

Responsible for the number of buy orders placed.

Responsible for the number of sell orders placed.

Determines the price of the orders being placed.

Specifies the amount to be placed, denominated in the base token.

An example of a simple grid

The grid will place two sell orders and two buy orders, each with a 0.5% increment from the current market price. The order amount will be 10 divided by the current market price.

{
    "execute_price": "ticker()*(1+0.005*order_pos)",
    "execute_volume": "10/ticker()",
    "buy_orders_count": "2",
    "sell_orders_count": "2"
}

Last updated