Bamboo Invest · Schema
NGX place order request
InvestmentsStocksFractional SharesAfricaNigeriaPortfolio ManagementBrokerageFintech
Properties
| Name | Type | Description |
|---|---|---|
| fee | number | Fee from calculate order response |
| order_type | string | Order type options: `MARKET` only for NG Market. |
| order_value | string | Total price debited from the user including fee |
| price | number | Price for order |
| price_per_share | number | Price per share for all order |
| quantity | number | Order quantity in share amounts for all order types. |
| side | string | Order side options: `BUY` or `SELL` |
| source_wallet_id | integer | source_wallet_id |
| symbol | string | Stock symbol to `BUY` or `SELL` |
| total_price | number | Total invested price, without fee |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.investbamboo.com/schemas/lsxngorder",
"title": "NGX place order request",
"required": [
"fee",
"order_type",
"order_value",
"price",
"price_per_share",
"quantity",
"side",
"source_wallet_id",
"symbol",
"total_price"
],
"type": "object",
"properties": {
"fee": {
"type": "number",
"description": "Fee from calculate order response",
"example": 0.01
},
"order_type": {
"type": "string",
"description": "Order type options: `MARKET` only for NG Market.",
"default": "MARKET"
},
"order_value": {
"type": "string",
"description": "Total price debited from the user including fee",
"example": 1.01
},
"price": {
"type": "number",
"description": "Price for order",
"default": 8
},
"price_per_share": {
"type": "number",
"description": "Price per share for all order",
"default": 8.27
},
"quantity": {
"type": "number",
"description": "Order quantity in share amounts for all order types.",
"default": 1.941176
},
"side": {
"type": "string",
"description": "Order side options: `BUY` or `SELL`",
"default": "BUY"
},
"source_wallet_id": {
"type": "integer",
"description": "source_wallet_id",
"example": 0
},
"symbol": {
"type": "string",
"description": "Stock symbol to `BUY` or `SELL`",
"default": "DDD"
},
"total_price": {
"type": "number",
"description": "Total invested price, without fee",
"default": 1
}
}
}