newOCOOrder in Binance connector

Hi,
Kindly assist the the meaning of the figures in the newOCOOrder API

client.newOCOOrder(‘BNBUSDT’, ‘BUY’, 1, 10, 12, {

I want to know which is price and maybe the quantity, the stop loss, or take profit or…?

with the full API below for clarity…

client.newOCOOrder(‘BNBUSDT’, ‘BUY’, 1, 10, 12, {
listClientOrderId: ‘my_oco_order’,
stopLimitPrice: 13,
stopLimitTimeInForce: ‘GTC’
}).then(response => client.logger.log(response.data))
.catch(error => client.logger.error(error))

Thanks
Juwon

Please refer to the definition of the method.

Thanks million…
It helps