Long Strangle
The Long Strangle places two orders which one leg will be call and another will be put, the strike price can be defined by the users for both the call and put leg.
Method :POST
https://connect-go.thefirstock.tech/api/V5/longStrangle
Request details
Parameter | Description | Example |
---|---|---|
userId string |
User Id of the login user | NP2007 |
jKey string |
Key Obtained on login success | abc123 |
callStrikePrice string |
Strike Price of the symbol | 22500 |
putStrikePrice string |
Strike Price of the symbol | 22500 |
expiry string |
Date month year | 27Feb25 |
symbol string |
Trading Symbol | NIFTY |
product string |
C / M / I | C |
quantity string |
Order Quantity | 1 |
exchange string |
Exchange type | NFO |
priceType string |
Type of price | MKT |
retention string |
Retention period | DAY |
remarks string |
User can send remarks for the order | Long Strangle |
Libraries and SDKs
curl --location 'https://connect-go.thefirstock.tech/api/V5/longStrangle' \
--header 'Content-Type: application/json' \
--data '{
"userId": "NP2997",
"jKey": "1478b9b71707210d8851258599b23a6a73d31b19809ac5068560f38dad493d35",
"callStrikePrice": "22500",
"putStrikePrice": "22500",
"expiry": "27FEB25",
"symbol": "NIFTY",
"product": "C",
"quantity": "1",
"exchange": "NFO",
"priceType": "MKT",
"retention": "DAY",
"remarks": "Long Strangle"
}'
Success response details
Parameter | Description | Example |
---|---|---|
status String |
Indicates the success status of the API operation |
success |
data.requestTime String |
Timestamp indicating when the response was received |
17:34:47 16-02-2023 |
data.orderNumber String |
Unique identifier for the order , provided upon successful placement to OMS |
1234567890 |
[
{
"gui_order_id": "(null)",
"handlinst": "(null)",
"norenordno": 25031200006761,
"req_status": "OK"
},
{
"gui_order_id": "(null)",
"handlinst": "(null)",
"norenordno": 25031200006762,
"req_status": "OK"
}
]
Failure response details
Parameter | Description | Example |
---|---|---|
status String |
Indicates the result status of the API operation |
failed |
code String |
HTTP status code associated with the error |
400 |
name String |
Specifies the type or category of the error encountered |
BAD_REQUEST |
error.field String |
Field in the request that triggered the error |
symbol |
error.message String |
Detailed message describing the error |
symbol cannot be undefined or NULL |
{
"status": "failed",
"code": "400",
"name": "BAD_REQUEST",
"error": {
"field": "symbol",
"message": "symbol cannot be undefined or NULL"
}
}