All
Filter by:
How do I deposit cash into my account?
I need help with account verification
Why can't I access my account?
Are there any crypto withdrawal fees?
I need help signing into my account
Required Legal Notice: Virtual currencies, real risks. The only guarantee in crypto is risk. Read more
Required Legal Notice: Virtual currencies, real risks. The only guarantee in crypto is risk. Read more
Required Legal Notice: Virtual currencies, real risks. The only guarantee in crypto is risk. Warning: The value of your virtual currencies can rise or fall sharply, and your initial investment may be lost completely; virtual currencies are not covered by the guarantee funds that cover bank deposits; there is no legal mechanism on the virtual currencies market to prevent market manipulation or insider dealing; virtual currencies depend entirely on a specific computer technology and infrastructure, which in certain cases may be very recent and not yet adequately tested; if one loses the identification code or password giving access to the virtual wallet in which the virtual currency is stored, the currency held therein will be irretrievably lost; virtual currencies are currently accepted as a means of payment to a limited extent, and in most countries there is no legal obligation to accept them; for more information about the risks associated with an investment in virtual currencies, we advise you to read the Wikifin page What is a cryptocurrency? | Wikifin.
Required Legal Notice: Virtual currencies, real risks. The only guarantee in crypto is risk. Warning: The value of your virtual currencies can rise or fall sharply, and your initial investment may be lost completely; virtual currencies are not covered by the guarantee funds that cover bank deposits; there is no legal mechanism on the virtual currencies market to prevent market manipulation or insider dealing; virtual currencies depend entirely on a specific computer technology and infrastructure, which in certain cases may be very recent and not yet adequately tested; if one loses the identification code or password giving access to the virtual wallet in which the virtual currency is stored, the currency held therein will be irretrievably lost; virtual currencies are currently accepted as a means of payment to a limited extent, and in most countries there is no legal obligation to accept them; for more information about the risks associated with an investment in virtual currencies, we advise you to read the Wikifin page What is a cryptocurrency? | Wikifin.
Our WebSocket API v1 supports a variety of order types, including the following five basic order types:
and the following two advanced order types:
Using the WebSocket API addOrder endpoint and specifying the appropriate order type, it is possible to place stop loss limit and take profit limit orders for buying and selling, with or without the use of margin (depending upon availability), across all of our currency pairs.
A stop loss limit order can be placed by specifying stop-loss-limit as the ordertype parameter, with the stop loss price as the price parameter and the limit price as the price2 parameter:
{"event":"addOrder", "token":"0RQvkF90Xgt0hpkjnieCaeY4jH1MbzI+OQTnjM6z4xk", "pair":"BCH/USD", "type":"buy", "ordertype":"stop-loss-limit", "price":"350", "price2":"300", "volume":"0.25"}
In the above example, a buy stop loss order would be placed at $350 (the price value) and in the event that the market price reached or exceeded $350, this would trigger a buy limit order at $300 (the price2 value).
A take profit limit order can be placed by specifying take-profit-limit as the ordertype parameter, with the take profit price as the price parameter and the limit price as the price2 parameter:
{"event":"addOrder", "token":"v2n3anjRZ\/p6Cbg5UcgQYMFbFUk9RayRt7kdVz53zgU", "pair":"BCH/USD", "type":"sell", "ordertype":"take-profit-limit", "price":"300", "price2":"290", "volume":"0.25"}
In the above example, a sell take profit order would be placed at $300 (the price value),and in the event that the market price reached or exceeded $350, this would trigger a sell limit order at $290 (the price2 value).