Skip to content

Commit

Permalink
createOrder price parameter is str|undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
samgermain committed Jun 15, 2022
1 parent ebcfadf commit c47212b
Show file tree
Hide file tree
Showing 101 changed files with 101 additions and 101 deletions.
2 changes: 1 addition & 1 deletion js/aax.js
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,7 @@ module.exports = class aax extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the aax api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bibox.js
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ module.exports = class bibox extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bibox api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bigone.js
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ module.exports = class bigone extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bigone api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/binance.js
Original file line number Diff line number Diff line change
Expand Up @@ -2785,7 +2785,7 @@ module.exports = class binance extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the binance api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bit2c.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ module.exports = class bit2c extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bit2c api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitbank.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ module.exports = class bitbank extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitbank api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitbns.js
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ module.exports = class bitbns extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitbns api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitfinex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ module.exports = class bitfinex extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitfinex api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitflyer.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ module.exports = class bitflyer extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitflyer api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitforex.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ module.exports = class bitforex extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitforex api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitget.js
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ module.exports = class bitget extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitget api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bithumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ module.exports = class bithumb extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bithumb api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitmart.js
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ module.exports = class bitmart extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitmart api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitmex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ module.exports = class bitmex extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitmex api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitopro.js
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ module.exports = class bitopro extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitopro api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitpanda.js
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,7 @@ module.exports = class bitpanda extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitpanda api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitrue.js
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ module.exports = class bitrue extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitrue api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitso.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ module.exports = class bitso extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitso api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitstamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ module.exports = class bitstamp extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitstamp api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitstamp1.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ module.exports = class bitstamp1 extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitstamp1 api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bittrex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ module.exports = class bittrex extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bittrex api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bitvavo.js
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ module.exports = class bitvavo extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bitvavo api endpoint
* @param {str} params.timeInForce "GTC", "IOC", or "PO"
* @param {float} params.stopPrice The price at which a trigger order is triggered at
Expand Down
2 changes: 1 addition & 1 deletion js/bkex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ module.exports = class bkex extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bkex api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/bl3p.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ module.exports = class bl3p extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the bl3p api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/blockchaincom.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ module.exports = class blockchaincom extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the blockchaincom api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
2 changes: 1 addition & 1 deletion js/btcalpha.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ module.exports = class btcalpha extends Exchange {
* @param {str} type 'market' or 'limit'
* @param {str} side 'buy' or 'sell'
* @param {float} amount how much of currency you want to trade in units of base currency
* @param {float} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {float|undefined} price the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
* @param {dict} params extra parameters specific to the btcalpha api endpoint
* @returns {dict} an [order structure]{@link https://docs.ccxt.com/en/latest/manual.html#order-structure}
*/
Expand Down
Loading

0 comments on commit c47212b

Please sign in to comment.