Funds¶
Base_URL: https://protrade.jainam.in/
| Type | Apis | Details |
|---|---|---|
| GET | {{BASE_URL}}omt/api-order-rest/v1/limits/ | Get available funds |
Get Limits¶
Get all information of your trading account like balance, margin utilised, collateral, etc.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"tradingLimit": 0,
"openingCashLimit": 52926.40,
"intradayPayin": 0,
"collateralMargin": 47735.39,
"creditForSell": 0,
"adhocMargin": 0.000000,
"utilizedMargin": 69.95,
"blockedForPayout": 0.00,
"utilizedSpanMargin": 0.00,
"utilizedExposureMargin": 0.00
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| tradingLimit | Float | Maximum limit available for trading. |
| openingCashLimit | Float | Cash available at the start of the trading day. |
| intradayPayin | Float | Funds received during the day from intraday trade settlements. |
| collateralMargin | Float | Margin available from pledged securities or collateral. |
| creditForSell | Float | Proceeds receivable from securities sold. |
| adhocMargin | Float | Extra margin added manually (usually by broker). |
| utilizedMargin | Float | Total margin used for current open positions and orders. |
| blockedForPayout | Float | Funds held back, not available for trading or withdrawal. |
| utilizedSpanMargin | Float | SPAN margin used for derivative positions. |
| utilizedExposureMargin | Float | Exposure margin utilized over and above SPAN margin. |