What statements or interfaces can be used for passive delegation in Bitmex exchange

Author: yzk520025, Created: 2018-11-22 15:56:16, Updated:

A passive commission is not immediately transacted in the market, and if the commission is immediately transacted in the market with an existing commission, the commission is cancelled. How does this phrase work?


More

The Little DreamIf an exchange has a similar interface, you can call it with exchange.IO.

The Little DreamThis is the form of the IO above, directly called the exchange interface, the parameters written in the form of symbol = XXX & order Qty = YYY & price = ZZZ.

yzk520025What I want is a passive assignment of down, down, down, down, empty, empty, is there? How to write in sentences?

The Little DreamWhat's up? # https://testnet.bitmex.com/api/v1 # POST / order What's up? Limit: The default order type. Specify an order Qty and price. Market: A traditional market order. A market order will execute until filled or your bankruptcy price is reached, at which point it will cancel. MarketWithLeftOverAsLimit: A market order that, after eating through the order book as far as allowed by available margin, will become a limit order. The difference between this type and Market only affects the behavior in thin books. Upon reaching the deepest possible price, if there is quantity left over, a Market order will cancel the remaining quantity. When the stopPx is reached, the order will be entered into the book. On sell orders, the order will trigger if the triggering price is lower than the stopPx. On buys, higher. Note: Stop orders do not consume margin until triggered. Be sure that the required margin is available in your account so that it may trigger fully. Close Stops do not require an order Qty. See Execution Instructions below. StopLimit: Like a Stop Market, but enters a Limit order instead of a Market order. Specify an order Qty, stopPx, and price. MarketIfTouched: Similar to a Stop, but triggers are done in the opposite direction. LimitIfTouched: As above; use for Take Profit Limit orders. These are order type parameters, stop loss order, stop order, etc. You see which one you need. What's up? var ret = exchange.IO (("api", "POST", "/api/v1/order/bulk", param); and What's up? The parameters to be given to the interface when accessing the interface are: symbol=XXX&orderQty=YYY&price=ZZZ BITMEX API documentation: https://testnet.bitmex.com/api/explorer/#!/Order/Order_new

yzk520025Thank you.

The Little DreamI'll look at the interface, and if there is one, I'll write an example.

yzk520025Can you write a paragraph for me?

The Little DreamYou need, at a minimum, to call the exchange interface, send orders, and do follow-up. It's actually a simple little trick.

yzk520025Do you need to write a strategy for passive delegation?