TradeBook

To get characters you need to make a POST call to the following url : https://amapi.algomojo.com/v1/TradeBook

QUERY PARAMETERS

Request ParameterDescriptionMandatory

broker

Broker code

Yes

# Here is a curl example
-X POST https://amapi.algomojo.com/v1/TradeBook

Request example :
{
"api_key":"your_api_key",
"api_secret":"your_api_secret", 
"data":   
{
 "broker":"tc"
}
}

Response example :
[
{
 "status": "success",
 "data": [
     {
         "exchange": "NFO",
         "product": "NRML",
         "symbol": "INFY22NOV1500CE",
         "pricetype": "MARKET",
         "action": "SELL",
         "quantity": 300,
         "exchordid": "2300000001405312",
         "order_id": "221111200149902",
         "exchtime": "2022-11-11 09:18:58",
         "price": 62
     }
 ]
}
]

Last updated