Download OpenAPI specification:Download
Download Postman Collection:Download
Download NodeJS SDK:Download
Download Python SDK:Download
Cloud Rest API allows the developer to create a custom trading application for Web or Mobile communicating with ODIN Order Management System (OMS). This REST based API allows user to develop the following functionalities for Trading Application / Portal.The changes made in the document along with the version no. and release dates.
| Version No. | Description | Revised Date |
| 1.2.0 | User profile version v2 | 07-10-2024 |
| 1.2.1 | Added status for EQSIP and parameter for Set Fingerprint | 05-03-2025 |
| 1.2.2 | Brokerage and Statutory charges | 22-04-2025 |
| 1.2.3 | Added order_identifier key in multileg APIs and EQSIP order details API | 13-10-2025 |
| 10.0.5.0 | API version updated to match with exchange approved version. No changes in the API. | 31-10-2025 |
Cloud Rest API is a set of REST APIs that provide the platform along with required data to build a Trading Platform, the API specifications is used for communicating with ODIN API Gateway. API specifications are based on the REST protocol that covers the functionalities which are need to develop a trading application like Login / Logout, Order Management (Place Order, Modify Order, Cancel order), Reports like Order Book, Trade Book, Position, Holding & Limit, etc. The REST API supports JSON based request and responses along with data compression.
Basic Flow to Implement the APIs:
STEP 1:Make a Login API call using login credential to obtain the access token.
STEP 2: Use access token obtained from Login API in all the subsequent API calls.
STEP 3: Setting obtained access token and content-type is shown below.
Header:
Content-Type: application/json
Authorization: Bearer eyJ1c2VySUQiOiJSVVBFU0giLCJpYXQiOjE1NTIxMjIwOTEsImV4cCI6MTU1MjIwODQ5MX0
All GET and DELETE request parameters go as query parameters, and POST and PUT request parameters as json (application/json) parameters, responses from the API are always JSON. Any non-alphanumeric character should be URL encoded in query string and path parameters.
Successful Request
All responses from the API server are in JSON format with the content-type application/json unless explicitly stated otherwise. A successful 200 OK response always has a JSON response body with a status as success. The data key contains the full response payload.
HTTP/1.1 200 OK
Content-Type: application/json
{
"status": "success",
"code": "",
"message": "",
"data": "{}"
}
HTTP/1.1 500 Server error
Content-Type: application/json
{
"status": "error",
"code": "",
"message": "",
"errors": "[]"
}
The HTTP Status Codes used by the RESTful API.
| HTTP Error Code | Description |
| 400 | Bad Request - Missing or bad request parameters or values. Error message will indicate which one and why. |
| 401 | Unauthorized - The access token provided is expired, revoked, malformed, or invalid. Client should refresh relogin and then try again. |
| 404 | Not Found - Request resource was not found. |
| 405 | Method Not Allowed - Request method (GET, POST etc.) is not allowed on the requested endpoint |
| 500 | Internal Server Error - API is not working as expected. The request is probably valid but needs to be requested again later. |
| 503 | Service Unavailable - The API endpoint is down. |
Kindly use below scrip master API for ODIN Scrip master :
https://odinscripmaster.s3.ap-south-1.amazonaws.com/scripfiles/NSE_EQ.json
replace exchange name, like NSE_FO.json, etc...with the list below.
Another version file is at https://odinscripmaster.s3.ap-south-1.amazonaws.com/scripfiles/v2/NSE_EQ.json
| Exchange Segment | Code |
| NSE Equity | NSE_EQ |
| NSE Derivatives | NSE_FO |
| BSE Equity | BSE_EQ |
| BSE Derivatives | BSE_FO |
| MCX COMMODITY | MCX_FO |
| NCDEX COMMODITY | NCDEX_FO |
| MSE CURRENCY | MSE_CUR |
| NSE CURRENCY | NSE_CUR |
| BSE CURRENCY | BSE_CUR |
| BSE COMMODITY | BSE_COMM |
| NSE COMMODITY | NSE_COMM |
This collection of API's would help in user authentication flow including password/MPIN validation, forget & reset etc.
This call can be used in case if the client has forgotten the password or he wants to register TOTP and OTP is to be sent on the registered mobile number.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}"
}{- "status": "success",
- "code": "s-101",
- "message": "OTP sent to reset Password."
}This API needs to be used for signing-in to the application using login
credentials. A successful sign-in would return an ‘access token’ and a
'broadcast_access_token' in the response.
'access_token' needs to
be included in all subsequent API invocations as part of http header
'Authorization' token.
'broadcast_access_token' would be required
for establishing a connection with the feed endpoint ('broadCastSocket'
received in the response). Kindly refer Price
Feed API for further details.
The response will also
have the details like exchanges allowed, product types allowed and other
key information required for trading.
| login_type | password | second_auth_type | second_auth |
| PASSWORD | password | REGISTER | Not Required |
| TOKEN | register_token | OTP/TOTP/FINGERPRINT | OTP value/TOTP value/Registered UDID |
| PASSWORD | password | OTP/TOTP/FINGERPRINT | OTP value/TOTP value/Registered UDID |
| MPIN | MPIN Registered | OTP/TOTP/FINGERPRINT | OTP value/TOTP value/Registered UDID |
| TP_TOKEN | SSO TOKEN | Not Required | Not Required |
To get second factor authentication details of user, "REGISTER" can be used in second_auth_type field, which validates password field and return register_token that can be used as "TOKEN" login type with second factor after registration.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| login_type | string Default: "PASSWORD" Enum: "PASSWORD" "MPIN" "FINGERPRINT" "TP_TOKEN" Whether user has logged in with password, MPIN, fingerprint or SSO token and respectively need to pass value in "password" field. In case authentication is handled in a separate application, e.g. Super app in which for trading functionality ODIN APIs are used, then TP_TOKEN will be used. In this case the third party token which is shared will be verified using two way authentication. |
| password required | string Password/MPIN/UDID/SSO-Token to validate |
| second_auth_type | string Enum: "OTP" "TOTP" "FINGERPRINT" "REGISTER" This is the secondary type of authorization selected by the User at the time of signing in apart from Password. During the first login attempt "REGISTER" will be used to register the mode of second factor authentication. Developer can give all three (OTP, TOTP and Fingerprint) or any one of the option. |
| second_auth | string User shall enter credentials as per the secondary authentication type selected by them. |
| api_key required | string API key provided by SynapseWave for a particular period. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. "WEBAPI" for Browser Based Applications and "MOBILEAPI" for Mobile Applications. |
| UDID | string Unique Device Id of the device on which the application is being accessed. |
| version | string Application version of the android application to be logged in the system. |
| iosversion | string Application version of the iOS application to be logged in the system. |
| build_version | string Internal build version of the application to be logged in the system. |
object |
{- "user_id": "{{user_id}}",
- "login_type": "PASSWORD",
- "password": "{{password}}",
- "second_auth_type": "REGISTER",
- "second_auth": "",
- "api_key": "{{api_key}}",
- "source": "{{source}}",
- "UDID": "a1b23cd4e5f6g78h",
- "version": "2.0.0",
- "iosversion": "",
- "build_version": "22.11.01",
- "deviceinfo": {
- "UDID": "4ad3f8a8-c90c-4359-9f78-4e8311f77eb2",
- "DeviceModel": "SM-G955U",
- "DeviceSerialNo": "",
- "DeviceManufacturer": "Google Inc.",
- "DevicePlatform": "web",
- "DevicePlatformVer": "Android 8.0.0",
- "Longitude": "",
- "Latitude": "",
- "AppName": "Wave 2.0",
- "AppVersion": "8.2.21",
- "AppVersionCode": "2000000",
- "AppPackageName": "com.wave.dev",
- "FCMRegKey": "172.25.90.82:8100",
- "IP": "",
- "SDKVersion": ""
}
}{- "status": "success",
- "code": "s-101",
- "message": "User logged in Successfully.",
- "data": {
- "register_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJDdXN0b21lcklkIjoiMTQwNCIsInVzZXJJZCI6IkFQSVRFU1QiLCJncm91cElkIjoiSE8iLCJ1ZGlkIjoiYTFiMjNjZDRlNWY2Zzc4aCIsInNvdXJjZSI6Ik1PQklMRUFQSSIsIm9jVG9rZW4iOiIweDAxNDUzOTg0RDlCMzdEQTAyNzVGRDhCOERGM0ZCMiIsImV4cCI6MTY2MzY4NjAyMSwiaWF0IjoxNjYzNjg1MTIxfQ.kNSl7ZNuNetTg0qhcnk24jMGm193P_M8WQtE4kOPnDQ",
- "ptnType": "TOTP_OPT",
- "mpin_enabled": true,
- "fingerprint_enabled": true,
- "totp_enabled": false
}
}This call would logout the user from the system and end the active session.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Successfully Logged out."
}This call will help validate if the session token passed is active in the system or not.
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Session verified.",
- "data": "{\"status\":\"false\",\"message\":\"TRUE\",\"dropped\":\"true\"}"
}This API can be used to retrieve the User ID in case the user forgets it. The user will have to provide his PAN to retrive the ID.
| pan | string Example: pan=ABCDE1234F |
| mobile_no | string Example: mobile_no=9876543210 |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| api_key | string Example: {{api_key}} |
{- "status": "success",
- "code": "s-101",
- "message": "UserId fetched successfully.",
- "data": [
- {
- "user_id": "APITEST",
- "groupId": "HO",
- "dob": "01-06-1990",
- "pan": "ABCDE1234F",
- "mobile_no": "OTk5OTk5OTk5OQ==",
- "email": "YXBpdGVzdEB0ZXN0LmNvbQ=="
}
]
}This call allows User to set MPIN which shall be used to login during the day instead of entering User ID and Password again. This will allow user to quickly login to the system.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| mpin required | integer [ 4 .. 6 ] characters Here the 4 or 6 digit numeric pin which is to be set as MPIN is passed to the system. |
| mobile_udid | string <= 50 characters Mobile UDID is used when User wants to login by using the MPIN. |
{- "mpin": "1234",
- "mobile_udid": "a1b23cd4e5f6g78h"
}{- "status": "success",
- "code": "s-101",
- "message": "MPIN/Fingerprint registered successfully."
}This call would allow the user to change the MPIN, this API will be used to change the MPIN in case of expiry or if the user chooses to change the MPIN. This call will not allow user to change the MPIN if he has forgotten the existing MPIN.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| old_mpin required | integer [ 4 .. 6 ] characters Existing MPIN of the user. |
| new_mpin required | integer [ 4 .. 6 ] characters New MPIN set by the user. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "source": "{{source}}",
- "api_key": "{{api_key}}",
- "old_mpin": "{{mpin}}",
- "new_mpin": "2222"
}{- "status": "success",
- "code": "s-101",
- "message": "MPIN changed successfully."
}This call would allow the user to change the Password, this API will be used to change the Password in case of expiry or if the user chooses to change the Password. This call will not allow user to change the Password if he has forgotten the existing Password.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| old_password required | string Existing password of the user. |
| new_password required | string New password set by the user. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "new_password": "a00000000000",
- "old_password": "{{password}}",
- "source": "{{source}}"
}{- "status": "success",
- "code": "s-101",
- "message": "Password changed successfully."
}This call would return back the mobile and eMail details of the client, which will be used to send an OTP.
| user_id required | string |
| api_key | string Example: {{api_key}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": {
- "mobile": "MTIzNDU2Nzg5MA==",
- "email": "YXBpdGVzdEB0ZXN0LmNvbQ=="
}
}This call would be used to validate the OTP entered by the user in the front end against the one sent to the user in Send OTP call.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| otp required | string Verification of OTP sent to user. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}",
- "otp": "123456"
}{- "status": "success",
- "code": "s-101",
- "message": "OTP verified successfully.",
- "data": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InRlbmFudElkIjoiMTQwNCIsInVzZXJJZCI6IkFQSVRFU1QifSwiZXhwIjoxNjQ2MzkyMzA2LCJpYXQiOjE2NDYzOTIwMDZ9.K4SQ3nj7hBCXhRugKbgIg-JhbWQe7uSE0xRwuohG7_Y"
}On successful validation of OTP, this call would allow the user to set a new password for login.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| new_password required | string New password set by the user. |
| otp required | string Temporary token generated in OTP verify call. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}",
- "otp": "{{forgot_password_token}}",
- "new_password": "a11111111111"
}{- "status": "success",
- "code": "s-101",
- "message": "Password changed successfully."
}This call allows the user to send an OTP on his registered mobile number in case he forgets the MPIN.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}"
}{- "status": "success",
- "code": "s-101",
- "message": "OTP sent to reset MPIN & Fingerprint."
}This call allows the user to set a new MPIN, the pre-requisite in this case would be to call the "Verify OTP" call to ensure that the OTP is validated correctly.
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| mpin required | string New MPIN set by the user. |
| mobile_udid required | string New mobile UDID |
| otp required | string OTP sent to the user in order to set MPIN. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}",
- "otp": "{{forgot_password_token}}",
- "mpin": "1111",
- "mobile_udid": "a1b23cd4e5f6g78h"
}{- "status": "success",
- "code": "s-101",
- "message": "MPIN & Fingerprint reset successfully."
}This call allows User to set Fingerprint to login where the prerequisite shall be to verify OTP to ensure that the OTP has been validated correctly.
| tenantid required | string |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| userId required | string User Id (UCC) provided to the user. |
| groupId required | string Group to which the user belongs to. |
| type required | string Flag to set Fingerprint |
| udid required | string New mobile UDID |
| otp required | string OTP sent to the User in order to set Fingerprint. |
| api_key required | string API key provided by SynapseWave. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "userId": "{{user_id}}",
- "api_key": "{{api_key}}",
- "source": "{{source}}",
- "otp": "{{forgot_password_token}}",
- "type": "fng",
- "udid": "5c340bd7-5bd3-4aaf-9d03-b26626b16858"
}{- "status": true,
- "result": [
- {
- "Valid": null,
- "sMPIN": "GXAvzXx++xw=",
- "nMPINInvalidAttempt": 0,
- "ExpiryDaysRem": 17,
- "nMPINSkipped": 0,
- "sUDID": "5c340bd7-5bd3-4aaf-9d03-b26626b16858"
}
]
}This call will fetch the basic details like user_name, email, mobile_no, pan, address including bank and DP details of the client.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Success Message",
- "data": {
- "user_name": "APITEST",
- "email": "apitest@test.com",
- "mobile_no": "9999999999",
- "pan": "ABCDE1234F",
- "address": "1 2 3",
- "mpin_enabled": true,
- "fingerprint_enabled": true,
- "dob": "01-06-1990",
- "gender": "",
- "productAllowed": 4,
- "bank_details": [
- {
- "bank_name": "Axis Bank",
- "branch_name": "ANDHERI",
- "branch_city": "MUMBAI",
- "account_no": "9874563210",
- "account_type": 2,
- "is_default": false
}
], - "dp_details": [
- {
- "dpId": "12345678",
- "clientBeneficiaryId": "1234567887654410",
- "holdingType": "1",
- "dpType": "CDSL",
- "defaultDP": true,
- "dpName": "TEST"
}
], - "mf_details": { }
}
}Use this API to retrieve User details such as Name, unmasked email, unmasked telephone no. The data will be in encrypted format. The methodology to decrypt the data is as shown below, for the key please get in touch with the support team.
Decryption Logic
decryptWithAEScbc(sKey, str) { const combined = CryptoJS.enc.Base64.parse(str); // Parse the Base64-encoded input. // Extract the IV from the first 16 bytes const extractedIv = CryptoJS.lib.WordArray.create(combined.words.slice(0, 4)); extractedIv.sigBytes = 16; // Extract the ciphertext from the remaining bytes const ciphertext = CryptoJS.lib.WordArray.create(combined.words.slice(4)); ciphertext.sigBytes = combined.sigBytes - 16; const key = CryptoJS.enc.Utf8.parse(sKey); // Parse the key to a WordArray object const decrypted = CryptoJS.AES.decrypt({ ciphertext }, key, { // Decrypt the ciphertext using the extracted IV iv: extractedIv, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7 }); return decrypted.toString(CryptoJS.enc.Utf8); // Return the decrypted result as a UTF-8 string. } | Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "summary": "User Profile v2",
- "status": "success",
- "code": "s-101",
- "message": "Success Message",
- "data": "cjyTd8p7bVtpMMZxiphu3HeoAolTXTir0+78DNVwf5OH1hcBD/WoKTYLOaXsydnC6/u4ONx08qfwtEKRzK0xpn1R716N8UEHEa7FQ6PS0UpWzrK4qbcVNqsDqBv1SUob3FjOuOeT4ARRvkYSvmdBqsjBT8HlYQBQL9RdUeTsm6jsav2am2lD6Pe6gOFjArdUGk7IB1owF/EprVSarPtZwEEjN7CRfYXBC/tgTECSMlN6y2PYZJxwF3w00vdu8Eq0p0mE9Ub7JoHz5CiE2Ki1sx3JnQ0YWG2IRIts0Je19QZ0fowGh5I4yT/wyy25eeKnN/i4JoZ2ajoFiVPjZ4UNV1L7BbPf40Fv5hJPRVDQtVHypGLh6/KmH0hWOgnV2l4GGGIn4gRlT2Gc0t+4D0RRZYoDJzegNiPEI0ouDLbK3YzHLyw+YfngzbDqY9hxQEbVKm9q5M4zGPxdmlNvcjsxUfDzFiGnwRzqkATXwEvvheu/TecFh1V0V3yt63ZXQz2DyuxHX4NLf042xePrWRNfaMbME40HNaslLkfffuIHBmEYR5FypWWejDzgewunMB7Z31zmn392c8p4mqXbm5EdVg=="
}This call would allow the user to fetch the details required to register for TOTP as second factor authentication.
| x-api-key | string Example: {{x-api-key}} |
| user_id required | string User Id (UCC) provided to the user. |
| otp required | string OTP sent to the User in order to Register TOTP. |
| api_key required | string API key provided by SynapseWave. |
| app_name | string Default: "(Registered in system)" App name to be set in the Authenticator apps. |
| source required | string Enum: "WEBAPI" "MOBILEAPI" Application from which the User has logged in. WEBAPI for Browser Based Applications and MOBILEAPI for Mobile Applications. |
{- "user_id": "{{user_id}}",
- "source": "{{source}}",
- "app_name": "Wave2.0",
- "api_key": "{{api_key}}",
- "otp": "{{forgot_password_token}}"
}{- "status": "success",
- "code": "s-101",
- "message": "QR code generated.",
- "data": {
- "qrImg": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMQAAADECAYAAADApo5rAAAAAklEQVR4AewaftIAAAjeSURBVO3BQY4kyZEAQdVA/f/Lug0eHHZyIJBZzeGsidgfrLX+42GtdTystY6HtdbxsNY6HtZax8Na63hYax0Pa63jYa11PKy1joe11vGw1joe1lrHw1rreFhrHT98SOVvqrhRuamYVKaKSeWmYlKZKm5UbireUJkqblSmikllqphUpopJ5W+q+MTDWut4WGsdD2ut44cvq/gmld9U8QmVN1SmikllUvlNFZPKVHFT8UbFN6l808Na63hYax0Pa63jh1+m8kbFGyo3FZPKN1VMKpPKVDGp3FS8ofJNKlPFN6m8UfGbHtZax8Na63hYax0//MtUTCqfqLhRmSreqJhUJpVvUnmj4kZlqvhf9rDWOh7WWsfDWuv44V9GZap4Q2VS+YTKN1V8omJSuVGZKqaKf5OHtdbxsNY6HtZaxw+/rOJvqphUPlExqUwVk8pUMal8QuWm4psqJpWbijcq/kke1lrHw1rreFhrHT98mco/WcWkMlVMKlPFpDJVTCpTxaQyVUwqU8WkcqMyVdxUTCpTxaTyhso/2cNa63hYax0Pa63jhw9V/JuovFFxU/GGyjdVfKLipuKm4n/Jw1rreFhrHQ9rrcP+4AMqU8Wk8k0VNypTxY3KVHGj8kbFN6m8UTGpfFPFjco3Vfymh7XW8bDWOh7WWscPH6qYVKaKG5Wp4kZlqpgqJpWpYqqYVKaKT6hMFd9U8UbFpDJVTCpvqEwVk8pUMam8oTJVfOJhrXU8rLWOh7XWYX/wAZWbijdUPlFxozJVTCpvVNyovFExqUwVk8onKr5JZap4Q+Wm4jc9rLWOh7XW8bDWOn74y1RuKm5UpopJZaqYKiaVm4oblanipmJSmVRuVKaKN1QmlZuKSWWquFG5qbipmFRuKj7xsNY6HtZax8Na6/jhQxVvVEwqNypvVEwqNxWTyhsVk8pU8UbFGyrfVPGJijdUblT+poe11vGw1joe1lqH/cEHVKaK36Ty31QxqUwVk8pUcaMyVUwqU8WkMlXcqNxUTCrfVDGpTBWTylTxTQ9rreNhrXU8rLWOH/5hVN6oeENlqvgmlTdUpoqbikllqrhRmSo+UfGGyqRyozJVTCpTxSce1lrHw1rreFhrHT98mcobFVPFGyo3FVPFjcpU8Zsq3lC5UZkqblT+myomlaliUpkqvulhrXU8rLWOh7XW8cOHKiaVm4o3VG4qblSmiknlN1W8ofJNKm9U/H/2sNY6HtZax8Na67A/+CKVb6qYVG4q3lCZKm5UpooblTcqJpWp4kZlqphUbiomlTcqJpU3KiaVNyo+8bDWOh7WWsfDWuv44csq3lCZKiaVm4oblaliqphUbiomlanijYpJ5Q2VG5Wp4kZlqvgnq/imh7XW8bDWOh7WWof9wS9Suan4hMpUcaNyU3GjMlW8ofJGxRsqU8WNyjdVvKHyRsVvelhrHQ9rreNhrXXYH3xAZaq4UbmpmFRuKm5UpopJZaqYVKaKSWWqmFRuKm5UbipuVKaKG5Wp4g2Vm4pJZaqYVN6o+MTDWut4WGsdD2utw/7gAyo3FZPKTcWNyk3FjcpUMalMFZPKGxWTyhsVk8obFZPKVDGp3FRMKlPFN6m8UfGJh7XW8bDWOh7WWscPX1YxqbyhclNxozJVTBU3FZPKTcUbFZPKb1L5RMWkcqNyUzGpTBU3Fb/pYa11PKy1joe11vHDP0zFGyqfUJkqpooblZuKb6qYVKaKSWWquKm4qZhUbip+k8pU8YmHtdbxsNY6HtZah/3BB1SmihuVm4pJZaqYVN6oeENlqrhReaNiUrmpeEPlExWTyk3FjcpNxaRyU/FND2ut42GtdTystY4fPlRxo/KJipuKG5UblU+oTBWTylTxCZWpYlK5qZhUpoo3Km5Ubiomlanib3pYax0Pa63jYa112B98kcpUcaMyVUwqU8Wk8omKN1Q+UfGGylTxhsobFZPKVHGjMlX8JpWp4hMPa63jYa11PKy1jh8+pPKJipuKNypuVCaVT1TcqNyo3FTcqNxU3KhMKt+kMlVMKjcVk8pU8U0Pa63jYa11PKy1DvuDD6jcVEwqU8Wk8kbFJ1SmiknljYpvUpkqJpWpYlKZKm5UpopJ5abiRmWqmFTeqPimh7XW8bDWOh7WWof9wQdUbip+k8onKj6h8kbFpDJVTCpTxTep3FTcqNxUTCpTxRsqNxWfeFhrHQ9rreNhrXXYH3xAZaqYVN6omFTeqPhNKjcVk8pNxaQyVUwqn6h4Q+Wm4hMqU8UbKlPFJx7WWsfDWut4WGsdP/yyihuVm4pJZaqYVG4q3lCZKiaVSeUNlanipuI3qdxUTCo3Fd+kMlV808Na63hYax0Pa63jh1+mMlVMFTcqU8VNxaRyo3JT8UbFjcqNym+quKm4UXlD5RMqU8WkMlV84mGtdTystY6HtdZhf/A/TGWqeEPlpmJSmSomlaniRuWmYlKZKm5UPlFxozJVvKFyUzGp3FR84mGtdTystY6Htdbxw4dU/qaKqWJS+UTFpDJVfEJlqphUbiomlZuKN1QmlU+oTBU3Ff9ND2ut42GtdTystY4fvqzim1RuVKaKG5VvUrlRuVF5Q+V/ScUbKjcVk8o3Pay1joe11vGw1jp++GUqb1R8QmWq+CaVqeINlW+qmFQmlZuKqeINlUnlmyomlanimx7WWsfDWut4WGsdP/zLVEwqU8WkMqncVNyo3FRMKlPFTcWkMlXcqLyhMlXcVHxC5abiNz2stY6HtdbxsNY6fviXUblRmSreULmpmFRuKiaVqeKmYlK5qXij4g2VT1RMKjcV3/Sw1joe1lrHw1rr+OGXVfymihuVqeJGZap4Q+UTFZ+omFQmlZuKSWWqmCo+ofJP8rDWOh7WWsfDWuv44ctU/iaVm4pJZaq4UZkqfpPKVHGj8omKSWWquFGZKj6hMlX8TQ9rreNhrXU8rLUO+4O11n88rLWOh7XW8bDWOh7WWsfDWut4WGsdD2ut42GtdTystY6HtdbxsNY6HtZax8Na63hYax0Pa63j/wAtzsyOMD5O3AAAAABJRU5ErkJggg==",
- "authSecret": "BERQOP22IIRF23I5",
- "userId": "APITEST"
}
}This call would allow the user to disable TOTP as second factor authentication.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "TOTP disabled successfully.",
- "data": {
- "userId": "APITEST"
}
}This call would be used to enable TOTP after login by verifying the TOTP entered by the user as second factor authentication.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| second_auth | string TOTP value from authenticator app |
{- "second_auth": "684771"
}{- "status": "success",
- "code": "s-101",
- "message": "TOTP verified successfully.",
- "data": {
- "userId": "APITEST"
}
}This section provided to information of API calls to do the order management i.e. place fresh order, modify or cancel already submitted valid orders. Retrieve the order and trade book. Using Order API, various type of orders Intraday, Delivery, Bracket Order, Cover order, etc. can be placed. Order type here is used as Product Type in System. Kindly refer to the respective API call for more detail.
Global Constants
Here are some of the constants enum values used for placing order.
| Params | Values | Description |
| exchange (segment id) | NSE_EQ (1), NSE_FO (2), BSE_EQ (8), BSE_FO (4), MCX_FO (16), NCDEX_FO (64), NSE_CUR (2048), NSE_COMM (32768), BSE_CUR (268435456), BSE_COMM (16384), MSE_CUR (1024), NSE_OTS (536870912) | Exchange segment |
| product_type | INTRADAY | It consists of one leg only. Open orders will be squared off automatically before market close. |
| DELIVERY | Order position will be carried over to next day under holding. | |
| BTST | Buy today sell tomorrow. It will be squared off automatically before next day market close. | |
| COVER | It consists of two legs. MAIN_LEG which is market order and SL_LEG which will be square off stop loss order of MAIN_LEG. Open orders will be squared off automatically before market close. | |
| BRACKET | It consists of three leg order. MAIN_LEG which is placed as Market or Limit, SL_LEG which is square off stop loss order and PROFIT_LEG which is square off order. Open orders will be squared of automatically before market close. | |
| MTF | Margin Trading or Margin Trading Facility (MTF) is a facility provided by brokers to their clients in which the client does not have to pay full amount for carrying overnight positions. | |
| order_type | RL | Regular limit order. |
| RL-MKT | Regular market order. | |
| SL | Stoploss limit order. | |
| SL-MKT | Stoploss market order. | |
| validity | DAY | Order valid for the same day. |
| IOC | Order valid only for immediate execution else cancelled. | |
| GTD | Order valid for specified number of days. | |
| GTC | Order valid until user cancels the order. | |
| EOS | Order valid for the specific session. | |
| EOSESS | Order valid till end of session for BSE. | |
| EOTODY | Order valid till end of day for BSE. | |
| order_status | PENDING | Order is pending or partially executed at exchange. |
| EXECUTED | Order is fully executed at exchange. | |
| CANCELLED | Order is cancelled at exchange. | |
| OMSXMITTED | Order is received by OMS but not submitted to exchange. | |
| OMSREJECT | Order is rejected by OMS. | |
| ORDERERROR | Order is not valid, rejected by exchange. | |
| ADMINREJECT | Order is rejected by OMS Admin. | |
| EXXMITTED | Order is submitted to exchange, but confirmation is not received. | |
| AMOACCEPTED | AMO order is received by OMS. | |
| AMOWITHDRAWN | AMO order is cancelled. |
Lets you place a fresh buy order or sell order.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
required | object Scrip information can be sent in 2 ways. either by sending exchange and scrip token or by sending scrip details i.e. exchange, symbol, series, expiry, strike price & option type. |
| transaction_type required | string Whether it is a Buy Order or a Sell Order. |
| product_type required | string Product type of the order. Kindly refer global constants for enum values. |
| order_type required | string Type of order. Kindly refer global constants for enum values. |
| quantity required | integer Total Quantity for which the order has to be placed. |
| price | number Default: 0 Price at which the order will be placed in rupees. |
| trigger_price | number Price at which order will be triggered, applicable for Stop Loss Limit (SL) or Stop Loss Market order (SL-MKT) type. |
| disclosed_quantity | integer Disclosed Quantity is a part of the actual quantity that User wants to display in the Market at a time. |
| validity | string Default: "DAY" Order validity,the value will be dependant on exchange segments in which the order is being placed. Kindly refer global constants for enum values. |
| validity_days | integer Number of days for which the GTD order needs to be carried forward. |
| is_amo | boolean Default: false Whether order is an AMO order or not? (AMO or After Market Orders are parked in the system and submotted to the exchange during the next trading day) |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| part_code | string Participant Code of the Custodian. |
| algo_id | string Algo id for strategy generated orders |
| strategy_id | string Strategy id for strategy generated orders |
| vender_code | string Vender code for inhouse application |
{- "scrip_info": {
- "exchange": "NCDEX_FO",
- "scrip_token": 54669,
- "symbol": "",
- "series": "",
- "expiry_date": "",
- "strike_price": "",
- "option_type": ""
}, - "transaction_type": "BUY",
- "product_type": "INTRADAY",
- "order_type": "RL-MKT",
- "quantity": 3,
- "price": 0,
- "trigger_price": 0,
- "disclosed_quantity": 0,
- "validity": "DAY",
- "validity_days": 0,
- "is_amo": false,
- "order_identifier": "",
- "part_code": "",
- "algo_id": "",
- "strategy_id": "",
- "vender_code": ""
}{- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00005>3"
}
}Lets you modify an existing pending order
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00005>3 Order id in URI encode form |
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| order_type required | string Type of order. Kindly refer global constants for enum values. |
| quantity required | integer Number of Quantity that the User wants to Modify. |
| traded_quantity required | integer Cumulative traded quantity of the order. Data to be passed in this field is available in order book response. |
| price | number Default: 0 Price at which order will be placed in rupees. |
| trigger_price | number Price set by the User for Stop Loss or Stop Loss Market order type which shall trigger the order and later be placed at Limit Price. |
| disclosed_quantity | integer Disclosed Quantity is a part of the actual quantity that User wants to display in the Market. |
| validity | |
| validity_days | integer Number of days for which the GTD order shall be carried forward. |
{- "order_type": "RL",
- "quantity": 5,
- "traded_quantity": 0,
- "price": 310,
- "trigger_price": 0,
- "disclosed_quantity": 0,
- "validity": "DAY",
- "validity_days": 0
}{- "status": "success",
- "code": "s-101",
- "message": "Order Modification Sent to OMS",
- "data": {
- "orderId": "NWSYF00005>3"
}
}This call can be used to cancel an existing pending order.
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00005>3 Order id in URI encode form |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Order Cancellation Sent to OMS",
- "data": {
- "orderId": "NWSYF00005>3"
}
}Lets you place a cover order. Which means, it allows to place a market order or a limit order along with a stop loss order.
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| Content-Type | string Example: application/json |
required | object Scrip information can be sent in 2 ways. either by sending exchange and scrip token or by sending scrip details i.e. exchange, symbol, series, expiry, strike price & option type. |
| transaction_type required | string Order is BUY or SELL. |
object | |
object | |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| part_code | string Participant Code of the Custodian. |
| algo_id | string Algo id for strategy generated orders |
| strategy_id | string Strategy id for strategy generated orders |
| vender_code | string Vender code for inhouse application |
{- "scrip_info": {
- "exchange": "NSE_EQ",
- "scrip_token": 15124,
- "symbol": "KOLTEPATIL",
- "series": "EQ",
- "expiry_date": "",
- "strike_price": "",
- "option_type": ""
}, - "transaction_type": "BUY",
- "main_leg": {
- "order_type": "RL-MKT",
- "quantity": 3,
- "price": 0
}, - "stoploss_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 300,
- "trigger_price": 300
}
]
}, - "order_identifier": "",
- "part_code": "",
- "algo_id": "",
- "strategy_id": "",
- "vender_code": ""
}{- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00006>3"
}
}Lets you modify an existing cover order which is pending in the order book.
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00006>3 Order id in URI encode form |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
object | |
object |
{- "main_leg": {
- "order_type": "RL-MKT",
- "quantity": 5,
- "traded_quantity": 0,
- "price": 0
}, - "stoploss_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 305,
- "trigger_price": 305
}
]
}
}{- "status": "success",
- "code": "s-101",
- "message": "Order Modification Sent to OMS",
- "data": {
- "orderId": "NWSYF00006>3"
}
}Lets you cancel an existing cover order which is pending in the order book.
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00011D9 Order id in URI encode form |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| Content-Type | string Example: application/json |
{- "status": "success",
- "code": "s-101",
- "message": "Order Cancellation Sent to OMS",
- "data": {
- "orderId": "NWSYF00011D9"
}
}Lets you place a bracket order. which means, you can place a Buy/sell order along with a square off order and a stop loss order.
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
required | object Scrip information can be sent in 2 ways. either by sending exchange and scrip token or by sending scrip details i.e. exchange, symbol, series, expiry, strike price & option type. |
| transaction_type required | string Order is BUY or SELL. |
object | |
object | |
object | |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| part_code | string Participant Code of the Custodian. |
| algo_id | string Algo id for strategy generated orders |
| strategy_id | string Strategy id for strategy generated orders |
| vender_code | string Vender code for inhouse application |
{- "scrip_info": {
- "exchange": "NSE_EQ",
- "scrip_token": 15124,
- "symbol": "KOLTEPATIL",
- "series": "EQ",
- "expiry_date": "",
- "strike_price": "",
- "option_type": ""
}, - "transaction_type": "BUY",
- "main_leg": {
- "order_type": "RL",
- "quantity": 3,
- "price": "300",
- "trigger_price": 0,
- "traded_quantity": 0
}, - "stoploss_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 290,
- "trigger_price": 290
}
], - "trail": {
- "ltp_jump_price": 0.5,
- "stoploss_jump_price": 0.5
}
}, - "profit_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 310
}
]
}, - "order_identifier": "",
- "part_code": "",
- "algo_id": "",
- "strategy_id": "",
- "vender_code": ""
}{- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00014?3"
}
}Lets you modify an existing bracket order which is pending in the order book.
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00028?3 Order id in URI encode form |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
object | |
object | |
object | |
object |
{- "main_leg": {
- "order_type": "RL",
- "quantity": 5,
- "price": "302",
- "trigger_price": 0,
- "traded_quantity": 0
}, - "stoploss_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 290,
- "trigger_price": 290
}
], - "trail": {
- "ltp_jump_price": 0,
- "stoploss_jump_price": 0
}
}, - "profit_leg": {
- "legs": [
- {
- "quantity": 0,
- "price": 310
}
]
}, - "order_identifier": "",
- "fields_modified": {
- "main_leg_price": true,
- "main_leg_qty": true,
- "stoploss_leg_price": true,
- "stoploss_trail_price": true,
- "profit_leg_price": true
}
}{- "status": "success",
- "code": "s-101",
- "message": "Order Modification Sent to OMS",
- "data": {
- "orderId": "NWSYF00028?3"
}
}Lets you cancel an existing bracket order which is pending in the order book.
| exchange required | string Example: NSE_EQ Exchange segment |
| order_id required | string Example: NWSYF00028?3 Order id in URI encode form |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Order Cancellation Sent to OMS",
- "data": {
- "orderId": "NWSYF00028?3"
}
}Lets you place a multileg order/spread order.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| type required | string Enum: "SPREAD" "2L" "3L" Type of multileg order. |
| order_type | string Type of order. Only RL and RL-MKT is supported. |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| validity | |
| algo_id | string Algo id for strategy generated orders |
Array of objects Invidiual leg details |
{- "type": "2L",
- "order_type": "RL-MKT",
- "order_identifier": "1357470777",
- "validity": "IOC",
- "prot_perc": "",
- "algo_id": "",
- "leg_details": [
- {
- "leg_no": 1,
- "scrip_info": {
- "exchange": "NSE_FO",
- "expiry_date": "31MAR2022",
- "instrument_name": "FUTSTK",
- "option_type": "",
- "scrip_token": 57926,
- "series": "XX",
- "strike_price": "",
- "symbol": "ACC"
}, - "transaction_type": "BUY",
- "quantity": 250,
- "price": "2563.40",
- "others": {
- "market_lot": 250,
- "price_tick": 5,
- "decimal_loc": 100
}
}, - {
- "leg_no": 2,
- "scrip_info": {
- "exchange": "NSE_FO",
- "expiry_date": "28APR2022",
- "instrument_name": "FUTSTK",
- "option_type": "",
- "scrip_token": 35871,
- "series": "XX",
- "strike_price": "",
- "symbol": "ACC"
}, - "transaction_type": "SELL",
- "quantity": 250,
- "price": "2574.00",
- "others": {
- "market_lot": 250,
- "price_tick": 5,
- "decimal_loc": 100
}
}
]
}{- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS.",
- "data": {
- "orderId": "NXWAO00024L3",
- "gateway_order_no": "032800024"
}
}Lets you cancel an existing multileg order/spread order from the order book.
| order_flag required | string Example: cancel |
| gateway_order_no required | integer Example: 040900010 |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| Content-Type | string Example: application/json |
| type required | string Enum: "SPREAD" "2L" "3L" Type of multileg order. |
| order_type | string Type of order. Only RL and RL-MKT is supported. |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| validity | |
Array of objects Invidiual leg details |
{- "type": "2L",
- "validity": "IOC",
- "prot_perc": "",
- "order_time": 0,
- "order_identifier": "1357470777",
- "leg_details": [
- {
- "leg_no": 1,
- "scrip_info": {
- "exchange": "NSE_FO",
- "scrip_token": 66672,
- "symbol": "TCS",
- "series": "XX",
- "expiry_date": "28APR2022",
- "strike_price": "",
- "option_type": "XX",
- "instrument_name": "FUTSTK"
}, - "transaction_type": "BUY",
- "quantity": 150,
- "price": "3711.30",
- "others": {
- "market_lot": 150,
- "price_tick": 5,
- "decimal_loc": 100
}
}, - {
- "leg_no": 2,
- "transaction_type": "SELL",
- "scrip_info": {
- "exchange": "NSE_FO",
- "scrip_token": 51694,
- "symbol": "TCS",
- "series": "XX",
- "expiry_date": "26MAY2022",
- "strike_price": "",
- "option_type": "XX",
- "instrument_name": "FUTSTK"
}, - "quantity": 150,
- "price": "3719.05",
- "others": {
- "market_lot": 150,
- "price_tick": 5,
- "decimal_loc": 100
}
}
]
}{- "status": "success",
- "code": "s-101",
- "message": "Order Submitted for cancellation.",
- "data": {
- "orderId": "NXWAD0001094",
- "gateway_order_no": "040900010"
}
}Lets you place an EQSIP order. Once the order is placed it will also allow you to modify the same order.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
object Scrip information can be sent in 2 ways. either by sending exchange and scrip token or by sending scrip details i.e. exchange, symbol, series, expiry, strike price & option type. | |
object Frequency details for SIP. | |
| company_name | string Name of the Company. |
| ltp | string Last Traded Price of scrip. |
| cap_price | string Cap Price. |
| invested_by | string Enum: "QUANTITY" "VALUE" Type of Investment. |
| quantity_or_value | integer Quantity or value to transact. |
| transaction_type | string Whether it is a Buy Order or a Sell Order. |
| status | string Enum: "INITIAL" "PENDING" Status of SIP. |
| basket_name | string Name of the Basket. |
| sip_id | string SIP Id incase of modification. |
{- "scrip_info": {
- "exchange": "NSE_EQ",
- "scrip_token": 3045,
- "symbol": "SBIN",
- "series": "EQ",
- "expiry_date": "",
- "strike_price": "",
- "option_type": ""
}, - "frequency_details": {
- "frequency_type": "MONTHLY",
- "frequency_days": "",
- "frequency_start_date": "09-04-2022",
- "frequency_specific_date": "5",
- "frequency_monthly_option": "DATE",
- "no_of_installments": 1
}, - "company_name": "",
- "ltp": "516.85",
- "cap_price": "516",
- "invested_by": "QUANTITY",
- "quantity_or_value": "1",
- "transaction_type": "BUY",
- "status": "PENDING",
- "basket_name": "",
- "sip_id": ""
}{- "status": "success",
- "code": "s-101",
- "message": "Orders submitted successfully"
}This is Pause EQ SIP Order API call
| sip_id required | string Example: SI2112210002 SIP Id |
| status required | string Enum: "PENDING" "RUNNING" "STOPPED" Current status of SIP. Note :- For Pause(temporary stop) - "STOPPED", For Stop(permanent stop) - "STOPPED" along with "newStatusId" parameter as mentioned below. |
| symbol required | string Example: ZEEL Scrip Symbol |
| transaction_type required | string Example: BUY Transaction type |
| investment_type required | string Example: QUANTITY Investment type |
| qtyOrVal required | integer Example: 1 Quantity or value to transact |
| product_source | string Example: product_source=WAVEAPI |
| newStatusId | string Example: newStatusId=DEACTIVATED To be passed only in case of Stop Order(permanent stop) |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/JSON |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders modified sucessfully"
}This API call is to cancel all orders from Open orders tab
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| orders | Array of strings[ items ] Order Ids with Exchange segment and Order Id. |
| flag | boolean Flag to cancel all or orders specified in parameters. |
{- "orders": [
- [
- "NSE_EQ",
- "NXWAO00026L3"
], - [
- "NSE_EQ",
- "NXWAO00025L3"
]
], - "flag": false
}{- "status": "success",
- "code": "s-101",
- "message": "Order cancelled.",
- "data": [
- {
- "status": "true",
- "message": "Order Cancellation Sent to OMS",
- "order_id": "NXWAO00026L3"
}, - {
- "status": "true",
- "message": "Order Cancellation Sent to OMS",
- "order_id": "NXWAO00025L3"
}
]
}This API call is to square off all open positions.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| type | string Enum: "Daily" "Expiry" Type of Order. |
| exchange | string Exchange segment |
| token | string Scrip token of the scrip available in the exchange scrip master file |
| product_type | string Product type |
| interop | integer Interop, 0 = Exchange wise, 1 = Combined. It will be ignored if exchange is passed. |
{- "type": "expiry",
- "exchange": "",
- "token": "",
- "product_type": "",
- "interop": 1
}{- "status": "success",
- "code": "s-101",
- "message": "Square off successfully",
- "data": [
- {
- "scrip_token": "22",
- "symbol": "ACC",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00025D9"
}
}, - {
- "scrip_token": "4822",
- "symbol": "DODLA",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00027D9"
}
}, - {
- "scrip_token": "15124",
- "symbol": "KOLTEPATIL",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00023D9"
}
}, - {
- "scrip_token": "2277",
- "symbol": "MRF",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00024D9"
}
}, - {
- "scrip_token": "6545",
- "symbol": "NYKAA",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00030D9"
}
}, - {
- "scrip_token": "2885",
- "symbol": "RELIANCE",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00028D9"
}
}, - {
- "scrip_token": "724",
- "symbol": "TATACOFFEE",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00026D9"
}
}, - {
- "scrip_token": "5097",
- "symbol": "ZOMATO",
- "status": "success",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NWSYF00029D9"
}
}
]
}This API call is to place bulk orders.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
required | object Scrip information can be sent in 2 ways. either by sending exchange and scrip token or by sending scrip details i.e. exchange, symbol, series, expiry, strike price & option type. |
| transaction_type required | string Whether it is a Buy Order or a Sell Order. |
| product_type required | string Product type of the order. Kindly refer global constants for enum values. |
| order_type required | string Type of order. Kindly refer global constants for enum values. |
| quantity required | integer Total Quantity for which the order has to be placed. |
| price | number Default: 0 Price at which the order will be placed in rupees. |
| trigger_price | number Price set by the User for Stop Loss or Stop Loss Market order type which shall trigger the order and later be placed at Limit Price. |
| disclosed_quantity | integer Disclosed Quantity is a part of the actual quantity that User wants to display in the Market. |
| validity | |
| is_amo | boolean Default: false Whether order is an AMO order or not? |
| order_identifier | string <= 10 characters An optional field to apply to an order to track it. |
| part_code | string Participant Code of the Custodian. |
| algo_id | string Algo id for strategy generated orders |
| strategy_id | string Strategy id for strategy generated orders |
| vender_code | string Vender code for inhouse application |
[- {
- "scrip_info": {
- "exchange": "NSE_EQ",
- "scrip_token": 1333,
- "symbol": "HDFCBANK",
- "series": "EQ",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": ""
}, - "transaction_type": "SELL",
- "product_type": "DELIVERY",
- "order_type": "RL-MKT",
- "quantity": 1,
- "price": "1444.85",
- "trigger_price": 0,
- "disclosed_quantity": 0,
- "validity": "DAY",
- "is_amo": false,
- "order_identifier": ""
}, - {
- "scrip_info": {
- "exchange": "NSE_EQ",
- "scrip_token": 1594,
- "symbol": "INFY",
- "series": "EQ",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": ""
}, - "transaction_type": "SELL",
- "product_type": "DELIVERY",
- "order_type": "RL-MKT",
- "quantity": 1,
- "price": "1882.70",
- "trigger_price": 0,
- "disclosed_quantity": 0,
- "validity": "DAY",
- "is_amo": false,
- "order_identifier": ""
}
]{- "status": "success",
- "message": "success",
- "data": [
- {
- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NXWAO00007N3"
}
}, - {
- "status": "success",
- "code": "s-101",
- "message": "Order Entry Sent to OMS",
- "data": {
- "orderId": "NXWAO00006N3"
}
}
], - "metadata": ""
}This call displays all the orders placed by the User in a single window.
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=20 Limits the number of items on a page |
| orderStatus | string Example: orderStatus=-1 1 = Pending orders, 2 = Completed orders, -1 = All orders. |
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders fetched successfully",
- "data": [
- {
- "order_id": "NXWAO00001N3",
- "exchange": "NSE_EQ",
- "scrip_token": 1594,
- "exchange_order_no": "21595",
- "status": "EXECUTED",
- "error_reason": "",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "total_quantity": 1,
- "pending_quantity": 0,
- "traded_quantity": 1,
- "disclosed_quantity": 0,
- "order_price": "1885.00",
- "trigger_price": "0.00",
- "validity": "DAY",
- "validity_days": 10,
- "symbol": "INFY",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": " ",
- "market_lot": 1,
- "order_timestamp": "2022-03-30 09:33:52",
- "exchange_timestamp": "2022-03-30 09:33:52",
- "initiated_by": "WAVE_TABLET",
- "modified_by": "WAVE_TABLET",
- "is_amo_order": false,
- "gateway_order_id": "000220220329NX",
- "order_identifier": "1333069117 0",
- "bracket_details": {
- "parent_order_id": "",
- "leg_indicator": "",
- "stoploss_price": "0.00",
- "stoploss_trigger_price": "0.00",
- "profit_price": "0.00",
- "stoploss_jump_price": "0.00",
- "ltp_jump_price": "0.00",
- "bo_order_id": "",
- "bo_order_status": "",
- "bo_modify_flag": ""
}
}, - {
- "order_id": "NXWAO00002N3",
- "exchange": "NSE_EQ",
- "scrip_token": 1333,
- "exchange_order_no": "21594",
- "status": "EXECUTED",
- "error_reason": "",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "total_quantity": 1,
- "pending_quantity": 0,
- "traded_quantity": 1,
- "disclosed_quantity": 0,
- "order_price": "1432.00",
- "trigger_price": "0.00",
- "validity": "DAY",
- "validity_days": 10,
- "symbol": "HDFCBANK",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": " ",
- "market_lot": 1,
- "order_timestamp": "2022-03-30 09:33:52",
- "exchange_timestamp": "2022-03-30 09:33:52",
- "initiated_by": "MOBILE-Ex",
- "modified_by": "MOBILE-Ex",
- "is_amo_order": false,
- "gateway_order_id": "000320220329NX",
- "order_identifier": "1332957355 0",
- "bracket_details": {
- "parent_order_id": "",
- "leg_indicator": "",
- "stoploss_price": "0.00",
- "stoploss_trigger_price": "0.00",
- "profit_price": "0.00",
- "stoploss_jump_price": "0.00",
- "ltp_jump_price": "0.00",
- "bo_order_id": "",
- "bo_order_status": "",
- "bo_modify_flag": ""
}
}
], - "metadata": {
- "total_records": 4,
- "all_records": 2,
- "completed_records": 2,
- "open_records": 0
}
}This call would fetch the entire state wise data for particular order.
| order_id required | string Example: NXVZH0003733 Pass order id to filter records based on order id. It must be URL encoded as it contains special characters. |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Order history data fetched successfully",
- "data": [
- {
- "order_id": "NXVZH0003733",
- "exchange": "NSE_FO",
- "scrip_token": 53784,
- "exchange_order_no": "0",
- "status": "OMSREJECT",
- "error_reason": "Bracket Order Allowed only in Market Hours , Received from OCSMC",
- "transaction_type": "BUY",
- "product_type": "BRACKET",
- "order_type": "RL",
- "total_quantity": 150,
- "pending_quantity": 150,
- "traded_quantity": 0,
- "disclosed_quantity": 0,
- "order_price": "3496.90",
- "trigger_price": "0.00",
- "validity": "DAY",
- "validity_days": 0,
- "symbol": "FINNIFTY",
- "series": "XX",
- "instrument": "OPTIDX",
- "expiry_date": "2022-05-31",
- "strike_price": "13500.00",
- "option_type": "CE",
- "order_timestamp": "1980-01-01 00:00:00",
- "exchange_timestamp": "1900-01-01 00:00:10",
- "initiated_by": "WAVE_MOBILE",
- "modified_by": "WAVE_MOBILE",
- "is_amo_order": false,
- "gateway_order_id": null,
- "order_identifier": "1321034268",
- "sequence_number": 117,
- "bracket_details": {
- "parent_order_id": "",
- "leg_indicator": "Main Leg",
- "stoploss_price": "3200.00",
- "stoploss_trigger_price": "3427.00",
- "profit_price": "3500.00",
- "stoploss_jump_price": "0.00",
- "ltp_jump_price": "0.00",
- "bo_order_id": "0",
- "bo_order_status": "OMS_REJECT"
}
}, - {
- "order_id": "NXVZH0003733",
- "exchange": "NSE_FO",
- "scrip_token": 53784,
- "exchange_order_no": "0",
- "status": "OMSREJECT",
- "error_reason": "Bracket Order Allowed only in Market Hours , Received from OCSMC",
- "transaction_type": "BUY",
- "product_type": "BRACKET",
- "order_type": "RL",
- "total_quantity": 150,
- "pending_quantity": 150,
- "traded_quantity": 0,
- "disclosed_quantity": 0,
- "order_price": "3496.90",
- "trigger_price": "0.00",
- "validity": "DAY",
- "validity_days": 0,
- "symbol": "FINNIFTY",
- "series": "XX",
- "instrument": "OPTIDX",
- "expiry_date": "2022-05-31",
- "strike_price": "13500.00",
- "option_type": "CE",
- "order_timestamp": "1980-01-01 00:00:00",
- "exchange_timestamp": "1900-01-01 00:00:10",
- "initiated_by": "WAVE_MOBILE",
- "modified_by": "WAVE_MOBILE",
- "is_amo_order": false,
- "gateway_order_id": null,
- "order_identifier": "1321034268",
- "sequence_number": 115,
- "bracket_details": {
- "parent_order_id": "",
- "leg_indicator": "Main Leg",
- "stoploss_price": "3200.00",
- "stoploss_trigger_price": "3427.00",
- "profit_price": "3500.00",
- "stoploss_jump_price": "0.00",
- "ltp_jump_price": "0.00",
- "bo_order_id": "0",
- "bo_order_status": "OMS_REJECT"
}
}
], - "metadata": {
- "total_records": 2
}
}This API call represents Multileg order book records
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=20 Limits the number of items on a page |
| orderType | string Example: orderType=multileg Only Multileg and Spread values shall be allowed. |
| orderStatus | string Example: orderStatus=-1 1 = Pending orders, 2 = Completed orders, -1 = All ordres |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders fetched successfully",
- "data": [
- {
- "order_id": "NXWAO00024L3",
- "client_order_no": "0",
- "gateway_order_no": "032800024",
- "segment_id": 2,
- "exchange": "NSE_FO",
- "book_type": 1,
- "leg_indicator": "2L",
- "status": "ADMIN_REJECT",
- "order_timestamp": "2022-03-28 17:29:01",
- "order_modified_timestamp": "2022-03-28 17:29:01",
- "settlement_days": 0,
- "spread_symbol": "ACC-1",
- "error_reason": "NXWAO00024L3|Order failed surveillance for DEMO51 and was rejected by Admin Server000000.00, prev. utilized was 0.00 and current value is 1284350.00 across all securities of (12) of DEMO51",
- "validity": "IOC",
- "spread_token": 1587157926,
- "ordertime": 0,
- "order_identifier": "1357470777",
- "leg_no_1": {
- "transaction_type": "BUY",
- "instrument": "FUTSTK",
- "symbol": "ACC",
- "expiry_date": "2022-03-31",
- "strike_price": -1,
- "option_type": "XX",
- "total_quantity": 250,
- "traded_quantity": 0,
- "pending_quantity": 250,
- "order_price": "2563.40",
- "scrip_token": 57926,
- "exchange_order_no": "0",
- "product_type": "DELIVERY",
- "price_tick": 5,
- "dec_loc": 100,
- "market_lot": 250
}, - "leg_no_2": {
- "transaction_type": "SELL",
- "instrument": "FUTSTK",
- "symbol": "ACC",
- "expiry_date": "2022-04-28",
- "strike_price": -1,
- "option_type": "XX",
- "total_quantity": 250,
- "traded_quantity": 0,
- "pending_quantity": 250,
- "order_price": "2574.00",
- "scrip_token": 35871,
- "exchange_order_no": "0",
- "product_type": "DELIVERY",
- "price_tick": 5,
- "dec_loc": 100,
- "market_lot": 250
}, - "leg_no_3": {
- "transaction_type": "SELL",
- "instrument": "",
- "symbol": "",
- "expiry_date": "",
- "strike_price": null,
- "option_type": " ",
- "total_quantity": null,
- "traded_quantity": null,
- "pending_quantity": null,
- "order_price": "0.00",
- "scrip_token": null,
- "exchange_order_no": "",
- "product_type": "",
- "price_tick": 0,
- "dec_loc": null,
- "market_lot": 0
}
}
], - "metadata": {
- "total_records": 1,
- "all_records": 1,
- "completed_records": 0,
- "open_records": 0
}
}This API call will fetch GTD order Book records.
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=20 Limits the number of items on a page |
| orderStatus | string Example: orderStatus=-1 1 = Pending orders, 2 = Completed orders, -1 = All ordres |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders fetched successfully",
- "data": [
- {
- "order_id": "NXWAO00026L3",
- "exchange": "NSE_EQ",
- "scrip_token": 1333,
- "exchange_order_no": "0",
- "status": "ACTIVE",
- "error_reason": "",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "total_quantity": 1,
- "pending_quantity": 1,
- "traded_quantity": 0,
- "disclosed_quantity": 0,
- "order_price": "1432.00",
- "trigger_price": "0.00",
- "validity": "GTD",
- "validity_days": 1333756800,
- "symbol": "HDFCBANK",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": " ",
- "market_lot": 1,
- "order_timestamp": "2022-03-28 12:30:29",
- "initiated_by": "MOBILE-Ex",
- "modified_by": "MOBILE-Ex",
- "gateway_order_id": "20220328NXWAO0000001",
- "order_identifier": 1332957629
}, - {
- "order_id": "NXWAO00025L3",
- "exchange": "NSE_EQ",
- "scrip_token": 1333,
- "exchange_order_no": "0",
- "status": "ACTIVE",
- "error_reason": "",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "total_quantity": 1,
- "pending_quantity": 1,
- "traded_quantity": 0,
- "disclosed_quantity": 0,
- "order_price": "1432.00",
- "trigger_price": "0.00",
- "validity": "GTD",
- "validity_days": 1333756800,
- "symbol": "HDFCBANK",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": " ",
- "market_lot": 1,
- "order_timestamp": "2022-03-28 12:25:56",
- "initiated_by": "WAVE_TABLET",
- "modified_by": "WAVE_TABLET",
- "gateway_order_id": "20220328NXWAO0000000",
- "order_identifier": 1332957356
}
]
}This API call is to fetch GTD Order history details
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=1000 Limits the number of items on a page |
| gtdOrderId | string Example: gtdOrderId=20220409NXWAD0000000 Pass gtd order id to filter records based on order id. It must be URL encoded as it contains special characters. |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders fetched successfully",
- "data": [ ]
}This API call will fetch Equity SIP order book records.
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=20 Limits the number of items on a page |
| orderStatus | string Example: orderStatus=-1 1 = Pending orders, 2 = Completed orders, -1 = All ordres |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Orders fetched successfully",
- "data": [
- {
- "sip_id": "SI2306220001",
- "symbol": "SBIN",
- "status": "PENDING",
- "transaction_type": "BUY",
- "display_transaction_type": "BUY",
- "frequency_type": "MONTHLY",
- "frequency_details": "",
- "executed_installments": 0,
- "no_of_installments": 1,
- "created_date": "2022-06-23 19:33:27",
- "frequency_start_date": "2022-04-09 00:00:00",
- "created_by": "WEBAPI",
- "modified_by": "WEBAPI",
- "investment_type": "QUANTITY",
- "invested_qty_or_val": 1,
- "assest_type": "Equity",
- "installment_date": "2022-05-05 00:00:00",
- "investment_value": 0,
- "traded_quantity": 0,
- "scrip_token": 3045,
- "exchange": "NSE_EQ",
- "series": "EQ",
- "bDetail": false,
- "bModify": true,
- "bStop": true,
- "bView": true,
- "cap_price": "516.00",
- "updated_status": "PENDING",
- "caa_remark": false
}
], - "metadata": { }
}This API call will fetch installment wise Equity SIP order details.
| sipid required | string Example: SW1911240001 sipid of a particular equity sip order. |
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Order adetails fetched successfully",
- "data": [
- {
- "exchange_name": "NSE_EQ",
- "transaction_date": "2024-11-19 00:00:00",
- "amount": 0,
- "installment_no": 1,
- "order_price": 896.55,
- "order_quantity": 1,
- "traded_quantity": 0,
- "traded_price": 0,
- "symbol": "SHILPAMED",
- "remarks": "Order failed Turnover check where the limit is 1.00, prev. utilized was 0.00 and current value is 896.55 across all securities of NSE Equities (Daily) of DEMO56",
- "trade_status": "REJECTED"
}
]
}This call would return back the entire data of trades from completed orders tab.
| offset | integer Example: offset=1 Specifies the page number of the collection to be displayed |
| limit | integer Example: limit=100 Limits the number of items on a page |
| order_id | string Pass order id to filter records based on order id. It must be URL encoded as it contains special characters. |
| order_ids | string Example: order_ids=NXWAO00001N3,NXWAO00002N3 Comma separated order ids to get trades for multiple orders at once. |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "User trade book data fetched successfully",
- "data": [
- {
- "order_id": "NXWAO00001N3",
- "exchange": "NSE_EQ",
- "scrip_token": 1594,
- "trade_no": "15602",
- "exchange_order_no": "21595",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "trade_quantity": 1,
- "trade_price": "1885.00",
- "symbol": "INFY",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": "",
- "trade_timestamp": "2022-03-30 09:33:52",
- "initiated_by": "WAVE_TABLET",
- "modified_by": "WAVE_TABLET",
- "order_identifier": "1333069117 0"
}, - {
- "order_id": "NXWAO00002N3",
- "exchange": "NSE_EQ",
- "scrip_token": 1333,
- "trade_no": "15601",
- "exchange_order_no": "21594",
- "transaction_type": "BUY",
- "product_type": "DELIVERY",
- "order_type": "RL",
- "trade_quantity": 1,
- "trade_price": "1432.00",
- "symbol": "HDFCBANK",
- "series": "EQ",
- "instrument": "",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": "",
- "trade_timestamp": "2022-03-30 09:33:52",
- "initiated_by": "MOBILE-Ex",
- "modified_by": "MOBILE-Ex",
- "order_identifier": "1332957355 0"
}
], - "metadata": {
- "total_records": 2
}
}This API call is to fetch the required Margin information for a particular order.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| NoOfLegs | integer Number of legs, it should be a positive integer (e.g. 1, 2 , 3 , ... +ve ). |
| Mode required | string Enum: "N" "M" Mode for order margin. N for new order and M for order modification. |
| FETraceId | string Echo-back request id. |
| MessageType | string MessageType should be "FUND_UTIL_CALC_REQ" for span margin info and "FUND_BASKET_UTIL_REQ" for order cart. |
required | Array of objects Order margin request |
{- "NoOfLegs": 1,
- "Mode": "N",
- "FETraceId": "DEMO31_Sa212022190445",
- "LegDetails": [
- {
- "LegNo": 1,
- "BuyOrSell": 1,
- "MarketSegment": "NSE_EQ",
- "Token": 2885,
- "Quantity": 1,
- "Price": 282000,
- "MktFlag": 0,
- "OldPrice": 0,
- "OldQuantity": 0,
- "ProductType": "M",
- "LegIndicator": 0
}
]
}{- "status": "success",
- "code": "s-101",
- "message": "success",
- "data": {
- "status": 200,
- "result": {
- "Status": 1,
- "ClientId": "APITEST",
- "ClientCode": "NWSYF",
- "Token": "100002885",
- "MarketSegmentId": "521",
- "ApproxMargin": "385.78",
- "AvailableMargin": "10000000000.00",
- "RequestTraceId": "NWSYF1929281000",
- "ProductType": "1",
- "ShortFall": "0.00",
- "Brokerage": "0.00"
}
}
}This API call will return the Brokerage and Charges applicable for an order as configured in ODIN ADMIN.
Note: Please refer the correct schema for different order types.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| marketSegmentId | integer Exchange segment ID |
| series | string "EQ" for Equity, for others it can be either blank or "XX" |
| productType | string Product type of the order [ MARGIN, DELIVERY, MTF, PTST, INTRADAY, CARRYFORWARD ] |
| transactionType | integer 1 - Buy, 2 - Sell |
| quantity | integer Quantity of the order |
| price | integer Price of the order |
| brokerage | integer Brokerage value will come in response of "GetOrderMarginInfo" API call |
| legIndicator | integer 1 - Normal |
| instrument | string [ EQUITIES, FUTSTK, OPTSTK ] |
| priceLocator | integer It should be 1 except for commodity segments. It should be calculated for MCX, BSE COMM, NSE COMM as: ((PriceNum / PriceDen) * (nAVMBuyMargin / nAVMSellMargin)) And for NCDEX as: (PriceNum / PriceDen) These values are available with ScripInfo API calls. |
{- "marketSegmentId": 1,
- "series": "EQ",
- "productType": "MARGIN",
- "transactionType": 1,
- "quantity": 1,
- "price": 1941.65,
- "brokerage": 20,
- "legIndicator": 1,
- "instrument": "EQUITIES",
- "priceLocator": 1
}{- "status": "success",
- "code": "s-101",
- "message": "success",
- "data": {
- "orderValue": "1941.65,",
- "totalBrcokerageAndCharges": "217.91,",
- "brokerage": "20,",
- "securitiesTransactionTax": "0,",
- "transactionCharges": "0.07,",
- "gst": "3.61,",
- "stampDuty": "0.06,",
- "sebiCharges": "0,",
- "dpCharges": "0,",
- "clearingCharges": 194.17
}
}As per SEBI circular, displaying of Brokerage and charges. This API call would return the Brokerage and Charges applicable for an order before it is sent to the exchange. These will be approximate values.
Note :- Sample request given below. It needs to be Base64 encrypted before sending. Please ignore space at the end of every parameter, it is just for line break to happen.
http://DOMAIN/newnetnet/BrokerageDetails.aspx?Product=WAVE2&Theme=L&UserId=APITEST &GroupId=HO&MktSegmentId=2&Series=XX &ProductType=CARRYFORWARD&TransactionType=1 &Quantity=250&Price=26.50&Brokerage=20.50 &LegIndicator=1&SessionId=0x011017F506627E18C2FC2952D6937C &Instrument=FUTSTK&PriceLocator=1
Description of fields:
Price = Order price in rupees on which charges are going to calculate,
TransactionType = 1 - Buy, 2 - Sell,
Brokerage = Brokerage value will come in response of "GetOrderMarginInfo" API call,
LegIndicator = 1 - Normal, 4 – Spread, 5 - 2Leg, 6 - 3Leg,
PriceLocator = It should be 1 except for commodity segments. It should be calculated for MCX, BSE COMM, NSE COMM as:
((PriceNum / PriceDen) * (nAVMBuyMargin / nAVMSellMargin))
And for NCDEX as: (PriceNum / PriceDen)
These values are available with ScripInfo API calls.
| type | integer Example: type=1 |
| enct | string Example: enct=UHJvZHVjdD1BRVJPJlRoZW1lPUwmVXNlcklkPU1HTVQwMSZHcm91cElkPUhPJk1hcmtldFNlZ21lbnRJZD04JlNlcmllcz1BJlByb2R1Y3RUeXBlPURFTElWRVJZJlRyYW5zYWN0aW9uVHlwZT0xJlF1YW50aXR5PTEmUHJpY2U9MjUwNC42NSZCcm9rZXJhZ2U9NTAmTGVnSW5kaWNhdG9yPTEmU2Vzc2lvbklkPTB4MDE2QjBBMTU5NzVEMTZGRURDMUJCQ0VEQzAxNDYzJkluc3RydW1lbnQ9RVFVSVRJRVM= |
This API call will fetch dynamic product types as set by the Member.
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "sDefaultProductType": "MARGIN",
- "sDescription": "MARGIN",
- "sRemarks": null,
- "nInstrument"": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "DELIVERY",
- "sDescription": "DELIVERY",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "CARRYFORWARD",
- "sDescription": "CARRYFORWARD",
- "sRemarks": null,
- "nInstrument": 2,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "MTF",
- "sDescription": "MTF",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "PTST",
- "sDescription": "PTST",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "INTRADAY",
- "sDescription": "INTRADAY",
- "sRemarks": null,
- "nInstrument": 2,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType"": "MARGINPLUS",
- "sDescription": "MARGINPLUS",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType"": "BRACKET ORDER",
- "sDescription": "BRACKET ORDER",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}, - {
- "sDefaultProductType": "OFS",
- "sDescription": "OFS",
- "sRemarks": null,
- "nInstrument": 1,
- "nDefaultProductSequence": ""
}
]
}This section provided to information of API calls to fetch open position and holding detail of user as uploaded by member in System.
This call would fetch the entire list of positions.
| type required | string Example: all all, daily, expiry |
| intropStatus | integer Example: intropStatus=1 Flag to indicate interoperability based position. Where, 0 - OFF, 1 - ON |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Positions data fetched successfully",
- "data": [
- {
- "exchange": "EQ Combined",
- "preferred_exchange": "NSE_EQ",
- "scrip_token": 100015124,
- "preferred_scrip_token": 15124,
- "product_type": "INTRADAY",
- "symbol": "KOLTEPATIL",
- "series": "EQ",
- "market_lot": 1,
- "gen_num": 1,
- "gen_den": 1,
- "price_num": 1,
- "price_den": 1,
- "reference_rate": 0,
- "instrument": "EQUITIES",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": "",
- "buy_quantity": 3,
- "avg_buy_price": "271.70",
- "buy_value": "815.10",
- "sell_quantity": 0,
- "avg_sell_price": "0.00",
- "sell_value": "0.00",
- "net_quantity": 3,
- "net_price": "271.70",
- "net_value": "-815.10",
- "cf_buy_value": "815.10",
- "cf_sell_value": "0.00",
- "cf_net_price": "271.70",
- "unsetteled_quantity": "0",
- "multiplier": "1.00",
- "daily_or_expiry": "EXPIRY"
}, - {
- "exchange": "EQ Combined",
- "preferred_exchange": "NSE_EQ",
- "scrip_token": 100015124,
- "preferred_scrip_token": 15124,
- "product_type": "INTRADAY",
- "symbol": "KOLTEPATIL",
- "series": "EQ",
- "market_lot": 1,
- "gen_num": 1,
- "gen_den": 1,
- "price_num": 1,
- "price_den": 1,
- "reference_rate": 0,
- "instrument": "EQUITIES",
- "expiry_date": "",
- "strike_price": "0.00",
- "option_type": "",
- "buy_quantity": 3,
- "avg_buy_price": "271.70",
- "buy_value": "815.10",
- "sell_quantity": 0,
- "avg_sell_price": "0.00",
- "sell_value": "0.00",
- "net_quantity": 3,
- "net_price": "271.70",
- "net_value": "-815.10",
- "cf_buy_value": "0.00",
- "cf_sell_value": "0.00",
- "cf_net_price": "0.00",
- "unsetteled_quantity": "0",
- "multiplier": "1.00",
- "daily_or_expiry": "DAILY"
}
]
}Lets you convert the product type of an existing position.
Ex: Delivery to Intraday or Intraday to Delivery.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| exchange required | string Exchange segment. |
| scrip_token required | integer Exchange token number of the scrip or instrument. |
| transaction_type required | string Whether it is a buy order or a sell order. |
| quantity required | integer Number of quantity to convert. |
| old_product_type required | string Old product type. |
| new_product_type required | string New product type. |
| bo_order_id | string Bracket order id, Bracket order position conversion is allowed individual bracket order wise only. bo_order_id need to pass here. This number is available in order book. |
{- "exchange": "NSE_EQ",
- "scrip_token": 15124,
- "transaction_type": "BUY",
- "quantity": 250,
- "old_product_type": "INTRADAY",
- "new_product_type": "DELIVERY",
- "bo_order_id": ""
}{- "status": "success",
- "code": "s-101",
- "message": "Position Conversion Request Sent to OMS",
- "data": {
- "orderId": "NWSYF00005<4"
}
}Lets you inquire about position convertion status.
| orderId | string Example: orderId=NWSYF00005<4 orderId generated from position conversion response. |
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "error",
- "code": "s-101",
- "message": "NWSYF00005<4|Free Qty not available for Position Conversion of APITEST"
}This call would fetch the entire list of holdings from the portfolio page.
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "Success",
- "code": "s-101",
- "message": "Holdings fetched successfully",
- "data": [
- {
- "isin": "INE040A01034",
- "security_info": [
- {
- "exchange": "NSE_EQ",
- "scrip_token": "1333",
- "symbol": "HDFCBANK"
}, - {
- "exchange": "BSE_EQ",
- "scrip_token": "500180",
- "symbol": "HDFCBANK"
}
], - "total_free": 1,
- "dp_free": 0,
- "pool_free": 0,
- "t1_quantity": 0,
- "average_price": "1432.00",
- "last_price": "1430.90",
- "pnl": "-1.10",
- "current_value": "1430.90",
- "inv_value": "1432.00",
- "product": "DELIVERY",
- "collateral_quantity": 0,
- "collateral_value": "0.00",
- "close_price": 160.65,
- "dppledge_collateral_qty": 0,
- "poolpledge_collateral_qty": 0
}, - {
- "isin": "INE009A01021",
- "security_info": [
- {
- "exchange": "NSE_EQ",
- "scrip_token": "1594",
- "symbol": "INFY"
}, - {
- "exchange": "BSE_EQ",
- "scrip_token": "500209",
- "symbol": "INFY"
}
], - "total_free": 1,
- "dp_free": 0,
- "pool_free": 0,
- "t1_quantity": 0,
- "average_price": "1885.00",
- "last_price": "1876.55",
- "pnl": "-8.45",
- "current_value": "1876.55",
- "inv_value": "1885.00",
- "product": "DELIVERY",
- "collateral_quantity": 0,
- "collateral_value": "0.00",
- "close_price": 160.65,
- "dppledge_collateral_qty": 0,
- "poolpledge_collateral_qty": 0
}
]
}This call will fetch the entire list of holdings from the portfolio page, along with additional data such as pledged, free quantity etc.
| ExchangeAllowed required | number Example: -1 Exchange Segment to be sent as -1 to fetch all holdings |
| ISIN required | string Example: %20 If a valid ISIN is passed then the holding information for only that ISIN will be retrived. Pass %20 for all holdings information. |
| Mode required | string Example: HOLDINGS, ALL All returns complete information including DP, POOL, Pledge qty etc. Holdings returns only the basic holding information. |
| Content-Type | string Example: application/json |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| api_key | string Example: {{api_key}} |
{- "status": true,
- "result": [
- {
- "ISIN": "INE012A01025",
- "sSeries": "EQ",
- "sSymbol": "ACC",
- "nMarketSegmentId": 1,
- "nToken": 22,
- "TOTALFREEQUANTITY": "100",
- "sCurvRecvFree": "0",
- "nBuyAvgPrice": 0,
- "OtherSegmentTokens": "1:22,8:500410,8192:150049,512:101618",
- "nNormal_MarketAllowed": 1,
- "nScripType": 1,
- "nTodayAvgBuyPrice": 0,
- "nUploadedAvgBuyPrice": 0
}, - {
- "ISIN": "INE062A01020",
- "sSeries": "EQ",
- "sSymbol": "SBIN",
- "nMarketSegmentId": 1,
- "nToken": 3045,
- "TOTALFREEQUANTITY": "200",
- "sCurvRecvFree": "0",
- "nBuyAvgPrice": 0,
- "OtherSegmentTokens": "8:500112,8192:151945,512:103200,1:3045",
- "nNormal_MarketAllowed": 1,
- "nScripType": 1,
- "nTodayAvgBuyPrice": 0,
- "nUploadedAvgBuyPrice": 0
}, - {
- "ISIN": "INE467B01029",
- "sSeries": "EQ",
- "sSymbol": "TCS",
- "nMarketSegmentId": 1,
- "nToken": 11536,
- "TOTALFREEQUANTITY": "200",
- "sCurvRecvFree": "0",
- "nBuyAvgPrice": 0,
- "OtherSegmentTokens": "8:532540,512:100379,8192:152161,1:11536",
- "nNormal_MarketAllowed": 1,
- "nScripType": 1,
- "nTodayAvgBuyPrice": 0,
- "nUploadedAvgBuyPrice": 0
}
]
}This set of calls allows the user to fetch the market related information, Scrip wise/Sector wise News, events, Corporate Action & IPO.
The name of the calls are self explanatory and provides in-depth details for fundamental and technical analysis.
This API call will fetch the current market status for all the exchange segments.
| tenantid required | string |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Market status fetched successfully.",
- "data": [
- {
- "exchangeSegment": "NSE_EQ",
- "lastUpdatedTime": "24/06/2022 18:57:13",
- "marketStatus": "Close"
}, - {
- "exchangeSegment": "NSE_FO",
- "lastUpdatedTime": "24/06/2022 18:28:59",
- "marketStatus": "Open"
}, - {
- "exchangeSegment": "BSE_FO",
- "lastUpdatedTime": "24/06/2022 13:10:01",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "BSE_EQ",
- "lastUpdatedTime": "24/06/2022 19:40:00",
- "marketStatus": "Close"
}, - {
- "exchangeSegment": "MCX_FO",
- "lastUpdatedTime": "24/06/2022 13:10:01",
- "marketStatus": "Open"
}, - {
- "exchangeSegment": "NCDEX_FO",
- "lastUpdatedTime": "24/06/2022 19:51:00",
- "marketStatus": "AMO"
}, - {
- "exchangeSegment": "MSE_EQ",
- "lastUpdatedTime": "24/06/2022 13:10:01",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "MSE_CUR",
- "lastUpdatedTime": "24/06/2022 13:10:01",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "NSE_CUR",
- "lastUpdatedTime": "24/06/2022 18:31:00",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "MSE_FO",
- "lastUpdatedTime": "24/06/2022 13:10:01",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "",
- "lastUpdatedTime": "24/06/2022 13:09:26",
- "marketStatus": "Unavailable"
}, - {
- "exchangeSegment": "NSE_EQ",
- "lastUpdatedTime": "24/06/2022 19:44:59",
- "marketStatus": "AMO"
}, - {
- "exchangeSegment": "",
- "lastUpdatedTime": "24/06/2022 14:36:22",
- "marketStatus": "Open"
}, - {
- "exchangeSegment": "BSE_CUR",
- "lastUpdatedTime": "24/06/2022 19:43:59",
- "marketStatus": "Open"
}
]
}This call would return back the data of various Indices in India.
| tenantid required | string |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "nMarketSegmentId": 1,
- "nToken": 26004,
- "sIndex": "MNC",
- "sIndexDesc": "Nifty MNC",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26013,
- "sIndex": "NIFTYNEXT50",
- "sIndexDesc": "Nifty Next 50",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26018,
- "sIndex": "PHARMA",
- "sIndexDesc": "Nifty Pharma",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26020,
- "sIndex": "PSUBANK",
- "sIndexDesc": "Nifty PSU Bank",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26000,
- "sIndex": "NIFTY",
- "sIndexDesc": "Nifty 50",
- "nIsDefaultIndex": 3,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26008,
- "sIndex": "NIFTYIT",
- "sIndexDesc": "Nifty IT",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26009,
- "sIndex": "BANKNIFTY",
- "sIndexDesc": "Nifty Bank",
- "nIsDefaultIndex": 3,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26044,
- "sIndex": "NIFTYMID100",
- "sIndexDesc": "NIFTY MIDCAP 100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26019,
- "sIndex": "INFRA",
- "sIndexDesc": "Nifty Infra",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26024,
- "sIndex": "NIFTYPSE",
- "sIndexDesc": "Nifty PSE",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26067,
- "sIndex": "NIFTYLIQ15",
- "sIndexDesc": "Nifty100 Liq 15",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26002,
- "sIndex": "FMCG",
- "sIndexDesc": "Nifty FMCG",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26068,
- "sIndex": "GROWTH",
- "sIndexDesc": "Nifty GrowSect 15",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26010,
- "sIndex": "SERVICE",
- "sIndexDesc": "Nifty Serv Sector",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26012,
- "sIndex": "NIFTY100",
- "sIndexDesc": "Nifty 100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26026,
- "sIndex": "ENEGRY",
- "sIndexDesc": "Nifty Energy",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26041,
- "sIndex": "NIFTYCPSE",
- "sIndexDesc": "Nifty CPSE",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26021,
- "sIndex": "REALITY",
- "sIndexDesc": "Nifty Realty",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26022,
- "sIndex": "SHARIAH",
- "sIndexDesc": "Nifty Shariah",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26070,
- "sIndex": "VALUE20",
- "sIndexDesc": "Nifty50 Value 20",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26014,
- "sIndex": "NIFTYMID50",
- "sIndexDesc": "Nifty Midcap 50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26016,
- "sIndex": "BeESNAV",
- "sIndexDesc": "HangSeng BeES-NAV",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26017,
- "sIndex": "INDIAVIX",
- "sIndexDesc": "India VIX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26033,
- "sIndex": "AUTO",
- "sIndexDesc": "Nifty Auto",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26034,
- "sIndex": "METAL",
- "sIndexDesc": "Nifty Metal",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26035,
- "sIndex": "CONSUMPTION",
- "sIndexDesc": "Nifty Consumption",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26036,
- "sIndex": "NIFTY200",
- "sIndexDesc": "Nifty 200",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26037,
- "sIndex": "MEDIA",
- "sIndexDesc": "Nifty Media",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 25998,
- "sIndex": "NIFTY500",
- "sIndexDesc": "Nifty 500",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26040,
- "sIndex": "COMMODITIES",
- "sIndexDesc": "Nifty Commodities",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26085,
- "sIndex": "FINSERVICE",
- "sIndexDesc": "Nifty Fin Service",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26042,
- "sIndex": "DIVPOINT",
- "sIndexDesc": "Nifty50 Div Point",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26045,
- "sIndex": "DIVOPPS",
- "sIndexDesc": "Nifty Div Opps 50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26046,
- "sIndex": "NIFTYSMALL",
- "sIndexDesc": "NIFTY SMLCAP 100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26071,
- "sIndex": "NIFTYPR1X",
- "sIndexDesc": "Nifty50 PR 1x Inv",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26072,
- "sIndex": "NIFTYPR2X",
- "sIndexDesc": "Nifty50 PR 2x Lev",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26073,
- "sIndex": "NIFTYTR1X",
- "sIndexDesc": "Nifty50 TR 1x Inv",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26074,
- "sIndex": "NIFTYTR2X",
- "sIndexDesc": "Nifty50 TR 2x Lev",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26075,
- "sIndex": "NIFTYMIDLQ15",
- "sIndexDesc": "Nifty Mid Liq 15",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26076,
- "sIndex": "NIFTYPVTBANK",
- "sIndexDesc": "Nifty Pvt Bank",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26077,
- "sIndex": "NIFTYQTY30",
- "sIndexDesc": "Nifty Quality 30",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26078,
- "sIndex": "NIFTYGS813YR",
- "sIndexDesc": "Nifty GS 8 13Yr",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26079,
- "sIndex": "NIFTYGS10YR",
- "sIndexDesc": "Nifty GS 10Yr",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26080,
- "sIndex": "NIFGS10YRCLN",
- "sIndexDesc": "Nifty GS 10Yr Cln",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26081,
- "sIndex": "NIFTYGS48YR",
- "sIndexDesc": "Nifty GS 4 8Yr",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26082,
- "sIndex": "NIFGS1115YR",
- "sIndexDesc": "Nifty GS 11 15Yr",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26083,
- "sIndex": "NIFGS15YRPLS",
- "sIndexDesc": "Nifty GS 15YrPlus",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26084,
- "sIndex": "NIFGSCOMPS",
- "sIndexDesc": "Nifty GS Compsite",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26086,
- "sIndex": "NIFTY50EQL",
- "sIndexDesc": "NIFTY50 EQL Wgt",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26087,
- "sIndex": "NIFTY100EQL",
- "sIndexDesc": "NIFTY100 EQL Wgt",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26088,
- "sIndex": "NIFTY100LV30",
- "sIndexDesc": "NIFTY100 LowVol30",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26089,
- "sIndex": "NIFTYALPHA50",
- "sIndexDesc": "NIFTY Alpha 50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26095,
- "sIndex": "NIFTYFINS2550",
- "sIndexDesc": "Nifty FinSrv25 50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26096,
- "sIndex": "NIFTYALOWVOL",
- "sIndexDesc": "NIFTY AlphaLowVol",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26097,
- "sIndex": "NIFTY200MTM30",
- "sIndexDesc": "Nifty200Momentm30",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26098,
- "sIndex": "NIFTY100ESGSL",
- "sIndexDesc": "Nifty100ESGSecLdr",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26099,
- "sIndex": "NIFTYCONDUR",
- "sIndexDesc": "NIFTY CONSR DURBL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26100,
- "sIndex": "NIFTYHELCARE",
- "sIndexDesc": "NIFTY HEALTHCARE",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26101,
- "sIndex": "NIFTYLMID250",
- "sIndexDesc": "NIFTY LARGEMID250",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26102,
- "sIndex": "NIFTY500MTCAP",
- "sIndexDesc": "NIFTY500 MULTICAP",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26103,
- "sIndex": "NIFTYOIL&GAS",
- "sIndexDesc": "NIFTY OIL AND GAS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26090,
- "sIndex": "NIFTYMCAP150",
- "sIndexDesc": "NIFTY MIDCAP 150",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26091,
- "sIndex": "NIFTYSCAP50",
- "sIndexDesc": "NIFTY SMLCAP 50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26092,
- "sIndex": "NIFTYSCAP250",
- "sIndexDesc": "NIFTY SMLCAP 250",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26093,
- "sIndex": "NIFTYMDSL400",
- "sIndexDesc": "NIFTY MIDSML 400",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26094,
- "sIndex": "NIFTY200QT30",
- "sIndexDesc": "NIFTY 200 QUALTY 30",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1,
- "nToken": 26104,
- "sIndex": "NIFTYTR2X",
- "sIndexDesc": "Nifty50 TR 2x Lev",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 64,
- "sIndex": "DFRGRI",
- "sIndexDesc": "DFRGRI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 65,
- "sIndex": "LCTMCI",
- "sIndexDesc": "LCTMCI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 66,
- "sIndex": "BSEPBI",
- "sIndexDesc": "BSEPBI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19056,
- "sIndex": "SHA50",
- "sIndexDesc": "SHA50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 36,
- "sIndex": "ALLCAP",
- "sIndexDesc": "ALLCAP",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 37,
- "sIndex": "BASMTR",
- "sIndexDesc": "BASMTR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 38,
- "sIndex": "CDGS",
- "sIndexDesc": "CDGS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 39,
- "sIndex": "ENERGY",
- "sIndexDesc": "ENERGY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 40,
- "sIndex": "FIN",
- "sIndexDesc": "FIN",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 41,
- "sIndex": "INDSTR",
- "sIndexDesc": "INDSTR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 42,
- "sIndex": "LRGCAP",
- "sIndexDesc": "LRGCAP",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 43,
- "sIndex": "MIDSEL",
- "sIndexDesc": "MIDSEL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 44,
- "sIndex": "SMLSEL",
- "sIndexDesc": "SMLSEL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 45,
- "sIndex": "TELCOM",
- "sIndexDesc": "TELCOM",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 46,
- "sIndex": "UTILS",
- "sIndexDesc": "UTILS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 47,
- "sIndex": "SNSX50",
- "sIndexDesc": "SNSX50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 48,
- "sIndex": "SNXT50",
- "sIndexDesc": "SNXT50",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 49,
- "sIndex": "BHRT22",
- "sIndexDesc": "BHRT22",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 50,
- "sIndex": "ESG100",
- "sIndexDesc": "ESG100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19081,
- "sIndex": "GREENX",
- "sIndexDesc": "GREENX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19059,
- "sIndex": "SMEIPO",
- "sIndexDesc": "BSEEQ_ID_INDICES",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19058,
- "sIndex": "CARBON",
- "sIndexDesc": "BSEEQ_ID_INDICES",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19001,
- "sIndex": "BSEPSU",
- "sIndexDesc": "BSEPSU",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19002,
- "sIndex": "BSE100",
- "sIndexDesc": "BSE100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19003,
- "sIndex": "BSE200",
- "sIndexDesc": "BSE200",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19004,
- "sIndex": "BSE500",
- "sIndexDesc": "BSE500",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19005,
- "sIndex": "BSEIT",
- "sIndexDesc": "BSE IT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19006,
- "sIndex": "BSEFMC",
- "sIndexDesc": "BSEFMC",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19007,
- "sIndex": "BSECG",
- "sIndexDesc": "BSE CG",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19008,
- "sIndex": "BSECD",
- "sIndexDesc": "BSE CD",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19009,
- "sIndex": "BSEHC",
- "sIndexDesc": "BSE HC",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19013,
- "sIndex": "AUTO",
- "sIndexDesc": "AUTO",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19018,
- "sIndex": "DOL30",
- "sIndexDesc": "DOL30",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19019,
- "sIndex": "DOL100",
- "sIndexDesc": "DOL100",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19020,
- "sIndex": "DOL200",
- "sIndexDesc": "DOL200",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19051,
- "sIndex": "OILGAS",
- "sIndexDesc": "OILGAS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19052,
- "sIndex": "POWER",
- "sIndexDesc": "POWER",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19053,
- "sIndex": "REALTY",
- "sIndexDesc": "REALTY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19011,
- "sIndex": "BSETECK",
- "sIndexDesc": "TECK",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19054,
- "sIndex": "BSEIPO",
- "sIndexDesc": "BSEIPO",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19083,
- "sIndex": "MFG",
- "sIndexDesc": "MFG",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19060,
- "sIndex": "INFRA",
- "sIndexDesc": "INFRA",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19000,
- "sIndex": "SENSEX",
- "sIndexDesc": "SENSEX",
- "nIsDefaultIndex": 3,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19012,
- "sIndex": "BANKEX",
- "sIndexDesc": "BANKEX",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19016,
- "sIndex": "MIDCAP",
- "sIndexDesc": "MIDCAP",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19017,
- "sIndex": "SMLCAP",
- "sIndexDesc": "SMLCAP",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19014,
- "sIndex": "BSEMETL",
- "sIndexDesc": "METAL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 19084,
- "sIndex": "ESG100",
- "sIndexDesc": "S&P BSE 100 ESG Index",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 55,
- "sIndex": "MID150",
- "sIndexDesc": "MID150",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 56,
- "sIndex": "SML250",
- "sIndexDesc": "SML250",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 57,
- "sIndex": "LMI250",
- "sIndexDesc": "LMI250",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 8,
- "nToken": 58,
- "sIndex": "MSL400",
- "sIndexDesc": "MSL400",
- "nIsDefaultIndex": 1,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 330,
- "sIndex": "MCXSAGRI",
- "sIndexDesc": "MCX SAGRI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 329,
- "sIndex": "MCXSENERGY",
- "sIndexDesc": "MCX SENERGY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 328,
- "sIndex": "MCXSMETAL",
- "sIndexDesc": "MCX SMETAL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 227812,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 228032,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 228685,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 228700,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 229082,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 229227,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 229857,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 230025,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 230452,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 230674,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 231035,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 231668,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 567,
- "sIndex": "MCXCOMPDEX",
- "sIndexDesc": "MCX iCOMDEX COMPOSITE",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 568,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 569,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASE METAL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 572,
- "sIndex": "MCXGOLDEX",
- "sIndexDesc": "MCX iCOMDEX GOLD",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 573,
- "sIndex": "MCXSILVDEX",
- "sIndexDesc": "MCX iCOMDEX SILVER",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 575,
- "sIndex": "MCXCOPRDEX",
- "sIndexDesc": "MCX iCOMDEX COPPER",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 579,
- "sIndex": "MCXCRUDEX",
- "sIndexDesc": "MCX iCOMDEX CRUDE OILá",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 574,
- "sIndex": "MCXALUMDEX",
- "sIndexDesc": "MCX iCOMDEX ALUMINIUM",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 576,
- "sIndex": "MCXLEADEX",
- "sIndexDesc": "MCX iCOMDEX LEAD",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 577,
- "sIndex": "MCXNICKDEX",
- "sIndexDesc": "MCX iCOMDEX NICKEL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 578,
- "sIndex": "MCXZINCDEX",
- "sIndexDesc": "MCX iCOMDEX ZINC",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 224328,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 224329,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 224330,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 224679,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225418,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225419,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225420,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225426,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 570,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 580,
- "sIndex": "MCXNGASDEX",
- "sIndexDesc": "MCX iCOMDEX NATURALGAS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225867,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 225894,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 226464,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 226744,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 227072,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 227084,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 326,
- "sIndex": "MCXAGRI",
- "sIndexDesc": "MCX AGRI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 325,
- "sIndex": "MCXENERGY",
- "sIndexDesc": "MCX ENERGY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 324,
- "sIndex": "MCXMETAL",
- "sIndexDesc": "MCX METAL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 323,
- "sIndex": "MCXCOMDEX",
- "sIndexDesc": "MCXCOMDEX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 211238,
- "sIndex": "MCXIDX",
- "sIndexDesc": "MCXIDX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 331,
- "sIndex": "REFCOCIX",
- "sIndexDesc": "REFCO COMMODITY",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 327,
- "sIndex": "MCXSCOMDEX",
- "sIndexDesc": "MCX SCOMDEX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 232616,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 232758,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233039,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233251,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233788,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233789,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233790,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 233913,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234197,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234356,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234492,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234576,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234635,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 235262,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 235126,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 234871,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 235520,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 235362,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 235946,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 236421,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 236677,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 237306,
- "sIndex": "MCXENRGDEX",
- "sIndexDesc": "MCX iCOMDEX ENERGY FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 239258,
- "sIndex": "MCXMETLDEX",
- "sIndexDesc": "MCX iCOMDEX BASEMETAL FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 32,
- "nToken": 239483,
- "sIndex": "MCXBULLDEX",
- "sIndexDesc": "MCX iCOMDEX BULLION FUT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5002,
- "sIndex": "AGRIDEX",
- "sIndexDesc": "AGRIDEX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 35305,
- "sIndex": "AGRIDEX",
- "sIndexDesc": "AGRIDEX",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5001,
- "sIndex": "DHAANYA",
- "sIndexDesc": "DHAANYA",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5003,
- "sIndex": "GUAREXMID",
- "sIndexDesc": "GUAREXMID",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5004,
- "sIndex": "GUAREXFAR",
- "sIndexDesc": "GUAREXFAR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5005,
- "sIndex": "SOYDEXNEAR",
- "sIndexDesc": "SOYDEXNEAR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5006,
- "sIndex": "SOYDEXMID",
- "sIndexDesc": "SOYDEXMID",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 128,
- "nToken": 5007,
- "sIndex": "SOYDEXFAR",
- "sIndexDesc": "SOYDEXFAR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 2048,
- "nToken": 225,
- "sIndex": "MSX7N10YIR",
- "sIndexDesc": "MSX7N10YIR",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26057,
- "sIndex": "BANKS",
- "sIndexDesc": "BANKS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26058,
- "sIndex": "CSTAPLES",
- "sIndexDesc": "CSTAPLES",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26059,
- "sIndex": "DFMGI",
- "sIndexDesc": "DFMGI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26060,
- "sIndex": "F-INVEST",
- "sIndexDesc": "F-INVEST",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26061,
- "sIndex": "INDUSTRIALS",
- "sIndexDesc": "INDUSTRIALS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26062,
- "sIndex": "INSURANC",
- "sIndexDesc": "INSURANC",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26063,
- "sIndex": "REAL-EST",
- "sIndexDesc": "REAL-EST",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26064,
- "sIndex": "SERVICES",
- "sIndexDesc": "SERVICES",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26065,
- "sIndex": "TELECOM",
- "sIndexDesc": "TELECOM",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 524288,
- "nToken": 26066,
- "sIndex": "TRANS",
- "sIndexDesc": "TRANS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26047,
- "sIndex": "ADI",
- "sIndexDesc": "ADI",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26048,
- "sIndex": "ADBF",
- "sIndexDesc": "ADBF",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26049,
- "sIndex": "ADRE",
- "sIndexDesc": "ADRE",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26050,
- "sIndex": "ADCM",
- "sIndexDesc": "ADCM",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26051,
- "sIndex": "ADCT",
- "sIndexDesc": "ADCT",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26052,
- "sIndex": "ADID",
- "sIndexDesc": "ADID",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26053,
- "sIndex": "ADTL",
- "sIndexDesc": "ADTL",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26054,
- "sIndex": "ADFS",
- "sIndexDesc": "ADFS",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26055,
- "sIndex": "ADEG",
- "sIndexDesc": "ADFG",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}, - {
- "nMarketSegmentId": 1048576,
- "nToken": 26056,
- "sIndex": "ADII",
- "sIndexDesc": "ADII",
- "nIsDefaultIndex": 16,
- "cIsIndex": "Y"
}
]
}This call would return the list of holidays for all exchanges - segment wise.
| tenantid required | string |
| exchange | string Example: exchange=NSE_EQ Exchange Segment (Optional) |
| year | integer Example: year=2022 Year (Optional) |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Holiday master fetched successfully",
- "data": {
- "NSE_EQ": [
- "2022-01-01",
- "2022-01-02",
- "2022-01-08",
- "2022-01-09",
- "2022-01-15",
- "2022-01-16",
- "2022-01-22",
- "2022-01-23",
- "2022-01-29",
- "2022-01-30",
- "2022-02-05",
- "2022-02-06",
- "2022-02-12",
- "2022-02-13",
- "2022-02-19",
- "2022-02-20",
- "2022-02-26",
- "2022-02-27",
- "2022-03-05",
- "2022-03-06",
- "2022-03-12",
- "2022-03-13",
- "2022-03-19",
- "2022-03-20",
- "2022-03-26",
- "2022-03-27",
- "2022-04-02",
- "2022-04-03",
- "2022-04-09",
- "2022-04-10",
- "2022-04-16",
- "2022-04-17",
- "2022-04-23",
- "2022-04-24",
- "2022-04-30",
- "2022-05-01",
- "2022-05-07",
- "2022-05-08",
- "2022-05-14",
- "2022-05-15",
- "2022-05-21",
- "2022-05-22",
- "2022-05-28",
- "2022-05-29",
- "2022-06-04",
- "2022-06-05",
- "2022-06-11",
- "2022-06-12",
- "2022-06-18",
- "2022-06-19",
- "2022-06-25",
- "2022-06-26",
- "2022-07-02",
- "2022-07-03",
- "2022-07-09",
- "2022-07-10",
- "2022-07-16",
- "2022-07-17",
- "2022-07-23",
- "2022-07-24",
- "2022-07-30",
- "2022-07-31",
- "2022-08-06",
- "2022-08-07",
- "2022-08-13",
- "2022-08-14",
- "2022-08-20",
- "2022-08-21",
- "2022-08-27",
- "2022-08-28",
- "2022-09-03",
- "2022-09-04",
- "2022-09-10",
- "2022-09-11",
- "2022-09-17",
- "2022-09-18",
- "2022-09-24",
- "2022-09-25",
- "2022-10-01",
- "2022-10-02",
- "2022-10-08",
- "2022-10-09",
- "2022-10-15",
- "2022-10-16",
- "2022-10-22",
- "2022-10-23",
- "2022-10-29",
- "2022-10-30",
- "2022-11-05",
- "2022-11-06",
- "2022-11-12",
- "2022-11-13",
- "2022-11-19",
- "2022-11-20",
- "2022-11-26",
- "2022-11-27",
- "2022-12-03",
- "2022-12-04",
- "2022-12-10",
- "2022-12-11",
- "2022-12-17",
- "2022-12-18",
- "2022-12-24",
- "2022-12-25",
- "2022-12-31"
], - "NSE_FO": [
- "2022-01-01",
- "2022-01-02",
- "2022-01-08",
- "2022-01-09",
- "2022-01-15",
- "2022-01-16",
- "2022-01-22",
- "2022-01-23",
- "2022-01-29",
- "2022-01-30",
- "2022-02-05",
- "2022-02-06",
- "2022-02-12",
- "2022-02-13",
- "2022-02-19",
- "2022-02-20",
- "2022-02-26",
- "2022-02-27",
- "2022-03-05",
- "2022-03-06",
- "2022-03-12",
- "2022-03-13",
- "2022-03-19",
- "2022-03-20",
- "2022-03-26",
- "2022-03-27",
- "2022-04-02",
- "2022-04-03",
- "2022-04-09",
- "2022-04-10",
- "2022-04-16",
- "2022-04-17",
- "2022-04-23",
- "2022-04-24",
- "2022-04-30",
- "2022-05-01",
- "2022-05-07",
- "2022-05-08",
- "2022-05-14",
- "2022-05-15",
- "2022-05-21",
- "2022-05-22",
- "2022-05-28",
- "2022-05-29",
- "2022-06-04",
- "2022-06-05",
- "2022-06-11",
- "2022-06-12",
- "2022-06-18",
- "2022-06-19",
- "2022-06-25",
- "2022-06-26",
- "2022-07-02",
- "2022-07-03",
- "2022-07-09",
- "2022-07-10",
- "2022-07-16",
- "2022-07-17",
- "2022-07-23",
- "2022-07-24",
- "2022-07-30",
- "2022-07-31",
- "2022-08-06",
- "2022-08-07",
- "2022-08-13",
- "2022-08-14",
- "2022-08-20",
- "2022-08-21",
- "2022-08-27",
- "2022-08-28",
- "2022-09-03",
- "2022-09-04",
- "2022-09-10",
- "2022-09-11",
- "2022-09-17",
- "2022-09-18",
- "2022-09-24",
- "2022-09-25",
- "2022-10-01",
- "2022-10-02",
- "2022-10-08",
- "2022-10-09",
- "2022-10-15",
- "2022-10-16",
- "2022-10-22",
- "2022-10-23",
- "2022-10-29",
- "2022-10-30",
- "2022-11-05",
- "2022-11-06",
- "2022-11-12",
- "2022-11-13",
- "2022-11-19",
- "2022-11-20",
- "2022-11-26",
- "2022-11-27",
- "2022-12-03",
- "2022-12-04",
- "2022-12-10",
- "2022-12-11",
- "2022-12-17",
- "2022-12-18",
- "2022-12-24",
- "2022-12-25",
- "2022-12-31"
], - "BSE_EQ": [
- "2022-01-01",
- "2022-01-02",
- "2022-01-08",
- "2022-01-09",
- "2022-01-15",
- "2022-01-16",
- "2022-01-22",
- "2022-01-23",
- "2022-01-29",
- "2022-01-30",
- "2022-02-05",
- "2022-02-06",
- "2022-02-12",
- "2022-02-13",
- "2022-02-19",
- "2022-02-20",
- "2022-02-26",
- "2022-02-27",
- "2022-03-05",
- "2022-03-06",
- "2022-03-12",
- "2022-03-13",
- "2022-03-19",
- "2022-03-20",
- "2022-03-26",
- "2022-03-27",
- "2022-04-02",
- "2022-04-03",
- "2022-04-09",
- "2022-04-10",
- "2022-04-16",
- "2022-04-17",
- "2022-04-23",
- "2022-04-24",
- "2022-04-30",
- "2022-05-01",
- "2022-05-07",
- "2022-05-08",
- "2022-05-14",
- "2022-05-15",
- "2022-05-21",
- "2022-05-22",
- "2022-05-28",
- "2022-05-29",
- "2022-06-04",
- "2022-06-05",
- "2022-06-11",
- "2022-06-12",
- "2022-06-18",
- "2022-06-19",
- "2022-06-25",
- "2022-06-26",
- "2022-07-02",
- "2022-07-03",
- "2022-07-09",
- "2022-07-10",
- "2022-07-16",
- "2022-07-17",
- "2022-07-23",
- "2022-07-24",
- "2022-07-30",
- "2022-07-31",
- "2022-08-06",
- "2022-08-07",
- "2022-08-13",
- "2022-08-14",
- "2022-08-20",
- "2022-08-21",
- "2022-08-27",
- "2022-08-28",
- "2022-09-03",
- "2022-09-04",
- "2022-09-10",
- "2022-09-11",
- "2022-09-17",
- "2022-09-18",
- "2022-09-24",
- "2022-09-25",
- "2022-10-01",
- "2022-10-02",
- "2022-10-08",
- "2022-10-09",
- "2022-10-15",
- "2022-10-16",
- "2022-10-22",
- "2022-10-23",
- "2022-10-29",
- "2022-10-30",
- "2022-11-05",
- "2022-11-06",
- "2022-11-12",
- "2022-11-13",
- "2022-11-19",
- "2022-11-20",
- "2022-11-26",
- "2022-11-27",
- "2022-12-03",
- "2022-12-04",
- "2022-12-10",
- "2022-12-11",
- "2022-12-17",
- "2022-12-18",
- "2022-12-24",
- "2022-12-25",
- "2022-12-31"
]
}
}This call would return the list of scrips that are banned in FnO for a given day.
| tenantid required | string |
| exchange | string Example: exchange=NSE_FO Exchange Segment (Optional) |
| token | integer Example: token=53751 Token number recieved in Exchange Scrip master (Optional) |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Banned scrip(s) fetched successfully",
- "data": [
- {
- "exchange": "NSE_FO",
- "token": 341,
- "symbol": "BALRAMCHIN"
}, - {
- "exchange": "NSE_FO",
- "token": 1174,
- "symbol": "GNFC"
}, - {
- "exchange": "NSE_FO",
- "token": 13404,
- "symbol": "SUNTV"
}, - {
- "exchange": "NSE_FO",
- "token": 15044,
- "symbol": "DELTACORP"
}, - {
- "exchange": "NSE_FO",
- "token": 30125,
- "symbol": "IBULHSGFIN"
}
]
}This call will return Equity SIP setting details.
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "EQSIP setting fetched successfully",
- "data": {
- "allowed_transaction_type": [
- "BUY",
- "SELL"
], - "frequency_details": {
- "MONTHLY": {
- "installment_min": "1,",
- "installment_max": "12,",
- "specific_dates": [
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15",
- "16",
- "17",
- "18",
- "19",
- "20",
- "21",
- "22",
- "23",
- "24",
- "25",
- "26",
- "27",
- "28",
- "29",
- "30"
]
}, - "FORTHNIGHTLY": {
- "installment_min": "1,",
- "installment_max": "24,",
- "specific_dates": [
- 15,
- 30
]
}, - "WEEKLY"": {
- "installment_min": "1,",
- "installment_max": "52,",
- "specific_week_days": [
- "MONDAY",
- "TUESDAY",
- "WEDNESDAY",
- "THURSDAY",
- "FRIDAY"
]
}, - "DAILY"": {
- "installment_min": 1,
- "installment_max": 365
}
}, - "eqsip_min_amount": 0
}
}EDIS - Electronic Delivery instruction slip.
This section would allow to fetch the complete information on EDIS requests made.
This call would return back the DP details and Beneficiary account details used for EDIS purpose.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "Success",
- "code": "s-101",
- "message": "DP Gateway fetched successfully",
- "data": {
- "sClientId": "DEMO31",
- "sGroupId": "HO",
- "sClientCode": "NXWAD",
- "nBeneficiaryAccountNumber": "00000202",
- "sDPId": "12092200",
- "sDepository": "CDSL",
- "nBeneficiaryStatus": 1,
- "nPriority": 1,
- "sDPBankId": ""
}
}This call would return back the EDIS summary for the day.
| mktSegID | string Example: mktSegID=NSE_EQ Market Segment ID |
| token | string Example: token=-1 Scrip token number |
| productType | string Example: productType=D D - Delivery, MF - MTF |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "Success",
- "code": "s-101",
- "message": "Summary fetched successfully",
- "data": {
- "edis_summary": [
- {
- "sDealerCode": "NWSYF",
- "sISINCode": "INE117A01022",
- "sSecurityDesc": "ABB INDIA LIMITED",
- "TotalFreeQty": 3000,
- "TodayFreeQty": 0,
- "ApprovedQuantity": 0,
- "ClosePrice": 4320.3,
- "eDISDPQty": 3000,
- "eDISCheckQty": 0,
- "eDISRequestQty": 3000,
- "nSettlementType": 1
}, - {
- "sDealerCode": "NWSYF",
- "sISINCode": "INE012A01025",
- "sSecurityDesc": "ACC LIMITED",
- "TotalFreeQty": 1,
- "TodayFreeQty": 1,
- "ApprovedQuantity": 0,
- "ClosePrice": 2006.7,
- "eDISDPQty": 0,
- "eDISCheckQty": 1,
- "eDISRequestQty": 0,
- "nSettlementType": 1
}
], - "edis_config": [
- {
- "DPCheck": 1,
- "MaxTranCount": 30,
- "Singletrans": 25000000,
- "UserTranCount": 0,
- "ValueUtilized": 0,
- "PerDayTransactionvalue": 25000000
}
]
}
}Below URL should be formed with all scrips required for EDIS approval. Open below URL in browser pop-up which will be forwarded to the relevant Depository for approval. Once approved, browser will send message to parent window to take further action.
Note :- Sample request given below. It needs to be Base64 encrypted before sending. Please ignore space at the end of every parameter, it is just for line break to happen.
CDSL Request:
https://demo.synapsewave.com/edis/newnetnet/EDISGatewayRequest.aspx?userCode=AAABV &managerIP=10.0.0.15 &sessionID=0x0134AECDAD9C67DACF053D396440F7 &channel=MOB &isin=INE205A01025 &isinName=VEDANTA LIMITED &exchangeCd=NSE &product=1 &instrument=Equity &quantity=8970 &dpId=092200 &clientId=1209220000000217 &depository=CDSL &productcode=WAVE &MarketSegId=1 &ScripDetails=[{ISIN:'INE205A01025',Quantity:8,ISINName:'VEDANTA LIMITED',SettlmtCycle:'T1'},{ISIN:'INE467B01029',Quantity:5,ISINName:'TATA CONSULTANCY SERV LT',SettlmtCycle:'T1'},{ISIN:'INE118H01025',Quantity:7,ISINName:'BSE LIMITED',SettlmtCycle:'T1'},{ISIN:'INE012A01025',Quantity:5,ISINName:'ACC LIMITED',SettlmtCycle:'T1'}] &ReqId=GER123 &userId=AD001 &groupId=HO &ProductType=D &AMO=N&SettlmtCycle=T2
NSDL request:
https://demo.synapsewave.com/edis/newnetnet/EDISGatewayRequest.aspx?userCode=AAABV &managerIP=10.0.0.15 &sessionID=0x0134AECDAD9C67DACF053D396440F7 &channel=MOB &isin=INE205A01025 &isinName=VEDANTA LIMITED &exchangeCd=NSE &product=1 &instrument=Equity &quantity=8970 &dpId=092200 &clientId=1209220000000217 &depository=NSDL &productcode=WAVE &MarketSegId=1 &ScripDetails=[{ISIN:'INE205A01025',Quantity:8,ISINName:'VEDANTA LIMITED',SettlmtCycle:'T1'},{ISIN:'INE467B01029',Quantity:5,ISINName:'TATA CONSULTANCY SERV LT',SettlmtCycle:'T1'},{ISIN:'INE118H01025',Quantity:7,ISINName:'BSE LIMITED',SettlmtCycle:'T1'},{ISIN:'INE012A01025',Quantity:5,ISINName:'ACC LIMITED',SettlmtCycle:'T1'}] &ReqId=GER123 &userId=AD001 &groupId=HO &ProductType=D &AMO=N&SettlmtCycle=T2
Description of fields:
channel = MOB / WEB,
exchangeCd = NSE / BSE,
product = 1 (cash),
instrument = Equity,
productcode = MOBILEAPI / WEBAPI,
ProductType = D (delivery) / MF (MTF),
Response:
POST http://DOMAIN_NAME/PAGE_URL
BODY:
{"Depository":"CDSL", "dpId":null, "clientId":null, "isin":null, "OriginalQty":null, "BlkQty":null, "Channel":null, "Status":"Success", "Remark":"", "RefNum":"0", "TransRefNum":"1310202062531710", "StatusCode":"", "ScripDetails":"[{"ISIN":"INE898S01029", "Qty":8, "Status":"Failure", "StatusCode":"ERR035", "RefNo":"00092200DA236", "ISINName":"MAJESCO LIMITED", "ErrorDesc":"Invalid ISIN"}, {"ISIN":"INE325A01013", "Qty":8, "Status":"Success", "StatusCode":"", "RefNo":"00092200DA246", "ISINName":"TIMKEN INDIA LTD.", "ErrorDesc":null}]", "BrokerOrdrNo":"AAABV1602622349", "ReqId":"GER123", "UserId":"AD001", "GroupId":"HO"}
After receiving the response, it will be sent to webhook, which is to be configured in web.config of newnetnet with key (EDIS_POST_RESPONSE_URL).
| enct | string Example: enct=dXNlckNvZGU9TlhXQUQmbWFuYWdlcklQPTE3Mi4yNS4xMDIuMjMzJnNlc3Npb25JRD0weDAxMThGOEE1RjJCOUJFQTU4QkEzNzkzNjU3MkVDMiZjaGFubmVsPU1PQiZpc2luPSZpc2luTmFtZT0mZXhjaGFuZ2VDZD1OU0UmcHJvZHVjdD0xJmluc3RydW1lbnQ9RXF1aXR5JnF1YW50aXR5PTAmZHBJZD0wOTIyMDAmY2xpZW50SWQ9MTIwOTIyMDAwMDAwMDIwMiZkZXBvc2l0b3J5PUNEU0wmcHJvZHVjdGNvZGU9V0FWRSZNYXJrZXRTZWdJZD0xJlNjcmlwRGV0YWlscz0lNUIlN0IlMjJJU0lOJTIyJTNBJTIySU5GMTc0S0ExSUE1JTIyJTJDJTIyUXVhbnRpdHklMjIlM0EzMCUyQyUyMklTSU5OYW1lJTIyJTNBJTIyS09UQUtNQU1DJTIwLSUyMEtPVEFLQUxQSEElMjIlN0QlMkMlN0IlMjJJU0lOJTIyJTNBJTIySU5FNTI4RzAxMDM1JTIyJTJDJTIyUXVhbnRpdHklMjIlM0EyMiUyQyUyMklTSU5OYW1lJTIyJTNBJTIyWUVTJTIwQkFOSyUyMExJTUlURUQlMjIlN0QlMkMlN0IlMjJJU0lOJTIyJTNBJTIySU5FMjU2QTAxMDI4JTIyJTJDJTIyUXVhbnRpdHklMjIlM0EzMCUyQyUyMklTSU5OYW1lJTIyJTNBJTIyWkVFJTIwRU5URVJUQUlOTUVOVCUyMEVOVCUyMExURCUyMiU3RCU1RCZ1c2VySWQ9REVNTzMxJmdyb3VwSWQ9SE8mYW1vPU4mU2V0dGxtdEN5Y2xlPVQy Value is Base64 encoded |
Below URL should be formed with all scrips required for EDIS approval. Open below URL in browser pop-up which will be forwarded to the relevant Depository for approval. Once approved, browser will send message to parent window to take further action.
| userCode | string User code as received in login response |
| managerIP | string Manager IP |
| sessionID | string Session Id |
| channel | string Enum: "MOB" "WEB" Channel |
| isin | string ISIN |
| isinName | string ISIN name |
| exchangeCd | string Enum: "NSE" "BSE" Exchange |
| product | integer Value: 1 Product |
| instrument | string Value: "Equity" Instrument |
| quantity | string Quantity |
| dpId | integer Depository Participant Id |
| clientId | integer Client Id |
| depository | string Enum: "CDSL" "NSDL" Depository |
| productcode | string Enum: "ODINAERO" "WAVE" Product code |
| MarketSegId | integer Value: 521 Market segment Id |
| ScripDetails | string Value: [{"ISIN":"INE176A01028","Quantity":10,"ISINName":"BATA INDIA LTD","SettlmtCycle":"T1"},{"ISIN":"INE029A01011","Quantity":100,"ISINName":"BHARAT PETROLEUM CORP LT","SettlmtCycle":"T1"},{"ISIN":"INE257A01026","Quantity":300,"ISINName":"BHEL","SettlmtCycle":"T1"},{"ISIN":"INE022Q01020","Quantity":10,"ISINName":"INDIAN ENERGY EXC LTD","SettlmtCycle":"T1"},{"ISIN":"INE245A01021","Quantity":100,"ISINName":"TATA POWER CO LTD","SettlmtCycle":"T1"}] Scrip details |
| userId | string User Id (UCC) |
| groupId | string Group Id |
| amo | string Enum: "N" "Y" AMO |
| SettlmtCycle | string Settlement cycle |
| theme | string Value: "L" Theme |
{- "Depository": "CDSL",
- "dpId": null,
- "clientId": null,
- "isin": null,
- "OriginalQty": null,
- "BlkQty": null,
- "Channel": null,
- "Status": "Success",
- "Remark": "",
- "RefNum": "0",
- "TransRefNum": "2106202316633186",
- "StatusCode": "",
- "ScripDetails": "[{\"ISIN\":\"INE263A01024\",\"Qty\":2,\"Status\":\"Success\",\"StatusCode\":\"\",\"RefNo\":\"NS301604L66\",\"ISINName\":\"BHARAT+ELECTRONICS+LTD\",\"ErrorDesc\":null}]",
- "BrokerOrdrNo": "0170001687355003",
- "ReqId": "",
- "UserId": "DEMO31",
- "GroupId": "HO"
}Below URL should be formed with all scrips required for EDIS approval. Open below URL in browser pop-up which will be forwarded to the relevant Depository for approval. Once approved, browser will send message to parent window to take further action.
| depository | string Enum: "NSDL" "CDSL" Depository |
| userCode | string User code as received in login response |
| userId | string user Id (UCC) |
| groupId | string Group Id |
| managerIP | string Manager IP |
| sessionID | string Session Id |
| channel | string Enum: "MOB" "WEB" Channel |
| isin | string ISIN |
| isinName | string ISIN name |
| exchangeCd | string Enum: "NSE" "BSE" Exchange |
| product | integer Value: 1 Product |
| instrument | string Value: "Equity" Instrument |
| quantity | integer Quantity |
| dpId | string Depository Participant Id |
| clientId | integer Client Id |
| productcode | string Enum: "ODINAERO" "WAVE" Product code |
| ScripDetails | string Value: [{"ISIN:\"INE263A01024\"":null,"Quantity:2":null,"ISINName:\"BHARAT+ELECTRONICS+LTD\"":null}] Scrip details |
| ProductType | string Enum: "D = Delivery" "MF = MTF" Product type |
| ReqId | string Request Id |
| amo | string Enum: "N" "Y" AMO |
| SettlmtCycle | string Settlement cycle |
{- "Depository": "NDSL",
- "dpId": null,
- "clientId": null,
- "isin": null,
- "OriginalQty": null,
- "BlkQty": null,
- "Channel": null,
- "Status": "Success",
- "Remark": "",
- "RefNum": "0",
- "TransRefNum": "2106202316633186",
- "StatusCode": "",
- "ScripDetails": "[{\"ISIN\":\"INE263A01024\",\"Qty\":2,\"Status\":\"Success\",\"StatusCode\":\"\",\"RefNo\":\"NS301604L66\",\"ISINName\":\"BHARAT+ELECTRONICS+LTD\",\"ErrorDesc\":null}]",
- "BrokerOrdrNo": "0170001687355003",
- "ReqId": "",
- "UserId": "DEMO31",
- "GroupId": "HO"
}Below URL should be formed with all scrips required for EDIS revoke. Open below URL in browser pop-up which will be forwarded to the relevant Depository for revoke. Once approved, browser will send message to parent window to take further action.
Note :- Sample request given below. It needs to be Base64 encrypted before sending. Please ignore space at the end of every parameter, it is just for line break to happen.
NSDL Request :-
https://demo.synapsewave.com/edis/newnetnet/EDISRevokeRequest.aspx? userCode=NXWAD&depository=NSDL&userId=DEMO31&groupId=HO&managerIP=172.25.102.233&sessionID=0x01795DF5C40CF997470D3C3BB81A00 &dpId=017000&clientId=1201700000207472&productcode=WAVE &ScripDetails=[{"ISIN":"INE012A01025","Quantity":90,"ISINName":"ACC LIMITED"},{"ISIN":"INE836A01035","Quantity":90,"ISINName":"BIRLASOFT LIMITED"}] &channel=MOB&theme=L
CDSL Request :-
https://demo.synapsewave.com/edis/newnetnet/EDISRevokeRequest.aspx? depository=CDSL&userCode=NZHXQ&userId=DEMO31&groupId=HO&managerIP=172.25.102.233&sessionID=0x01795DF5C40CF997470D3C3BB81A00 &channel=WEB&exchangeCd=NSE&product=1&dpId=017000&clientId=1201700000405200&productcode=diet &ScripDetails=[{ISIN:"INE669E01016",Quantity:212,ISINName:"VODAFONE+IDEA+LIMITED"}]&ReqId=IS9158-14052024121743
Description of fields :-
channel = MOB / WEB
Response :
POST http://DOMAIN_NAME/PAGE_URL
BODY :
{"Depository":"NSDL","dpId":"NS123123","clientId":"87654322","isin":null,"OriginalQty":null, "BlkQty":null,"Channel":null,"Status":"Success","Remark":"order captured successfully","RefNum":"0", "TransRefNum":"6383655808367495","StatusCode":"00","ScripDetails":[{"ISIN":"INE012A01025","Qty":90, "Status":"Success","StatusCode":"04-","RefNo":"3865255227709835","ISINName":"ACC LIMITED","sBlkStatus":"04", "RequestTime":"2024-05-07T13:56:30+05:30","ConfirmStatus":"Success","ErrorDesc":null}], "BrokerOrdrNo":"10NXWBF171509019","ReqId":"RAMIBT-070524135630","UserId":"RAMIBT","GroupId":"HO"}
| enct | string Example: enct=dXNlckNvZGU9TlhXQUQmZGVwb3NpdG9yeT1DRFNMJnVzZXJJZD1ERU1PMzEmZ3JvdXBJZD1ITyZtYW5hZ2VySVA9MTcyLjI1LjEwMi4yMzMmc2Vzc2lvbklEPTB4MDE3OTVERjVDNDBDRjk5NzQ3MEQzQzNCQjgxQTAwJmRwSWQ9MDE3MDAwJmNsaWVudElkPTEyMDE3MDAwMDAyMDc0NzImcHJvZHVjdGNvZGU9V0FWRSZTY3JpcERldGFpbHM9JTVCJTdCJTIySVNJTiUyMiUzQSUyMklORTAxMkEwMTAyNSUyMiUyQyUyMlF1YW50aXR5JTIyJTNBOTAlMkMlMjJJU0lOTmFtZSUyMiUzQSUyMkFDQyUyMExJTUlURUQlMjIlN0QlMkMlN0IlMjJJU0lOJTIyJTNBJTIySU5FODM2QTAxMDM1JTIyJTJDJTIyUXVhbnRpdHklMjIlM0E5MCUyQyUyMklTSU5OYW1lJTIyJTNBJTIyQklSTEFTT0ZUJTIwTElNSVRFRCUyMiU3RCU1RCZjaGFubmVsPU1PQiZ0aGVtZT1M Value is Base64 encoded |
Below URL should be formed with all scrips required for EDIS revoke. Open below URL in browser pop-up which will be forwarded to the relevant Depository for revoke. Once approved, browser will send message to parent window to take further action.
| userCode | string User code as received in login response |
| depository | string Depository |
| userId | string User Id (UCC) |
| groupId | string Group Id |
| managerIP | string Manager IP |
| sessionID | string Session Id |
| dpId | integer Depository Participant Id |
| clientId | integer Client Id |
| productcode | string Enum: "ODINAERO" "WAVE" Product code |
| ScripDetails | string Value: [{"ISIN":"INE012A01025","Quantity":90,"ISINName":"ACC LIMITED"},{"ISIN":"INE836A01035","Quantity":90,"ISINName":"BIRLASOFT LIMITED"}] Scrip details |
| channel | string Enum: "MOB" "WEB" Channel |
| reqId | string Request Id |
| theme | string Value: "L" Theme |
{- "Depository": "CDSL",
- "dpId": null,
- "clientId": null,
- "isin": null,
- "OriginalQty": null,
- "BlkQty": null,
- "Channel": null,
- "Status": "Success",
- "Remark": "",
- "RefNum": "0",
- "TransRefNum": "RVRES95687066386",
- "StatusCode": "",
- "ScripDetails": "[{\"ISIN\":\"INE012A01025\",\"Qty\":90,\"Status\":\"Success\",\"StatusCode\":\"0\",\"RefNo\":\"NS301604M611\",\"ISINName\":\"ACC LIMITED\",\"ErrorDesc\":null}]",
- "BrokerOrdrNo": "0170001687465885",
- "ReqId": "",
- "UserId": "DEMO31",
- "GroupId": "HO"
}Below URL should be formed with all scrips required for EDIS revoke. Open below URL in browser pop-up which will be forwarded to the relevant Depository for revoke. Once approved, browser will send message to parent window to take further action.
| userCode | string User code as received in login response |
| depository | string Enum: "NSDL" "CSDL" Depository |
| userId | string User Id (UCC) |
| groupId | string Group Id |
| managerIP | string Manager IP |
| sessionID | string Session Id |
| dpId | integer Depository Participant Id |
| clientId | integer Client Id |
| productcode | string Enum: "WAVE" "ODINAERO" Product code |
| ScripDetails | string Value: [{"ISIN":"INE012A01025","Quantity":90,"ISINName":"ACC LIMITED"},{"ISIN":"INE836A01035","Quantity":90,"ISINName":"BIRLASOFT LIMITED"}] Scrip details |
| channel | string Enum: "MOB" "WEB" Channel |
| reqId | string Request Id |
| theme | string Value: "L" Theme |
{- "Depository": "NDSL",
- "dpId": null,
- "clientId": null,
- "isin": null,
- "OriginalQty": null,
- "BlkQty": null,
- "Channel": null,
- "Status": "Success",
- "Remark": "",
- "RefNum": "0",
- "TransRefNum": "RVRES95687066386",
- "StatusCode": "",
- "ScripDetails": "[{\"ISIN\":\"INE012A01025\",\"Qty\":90,\"Status\":\"Success\",\"StatusCode\":\"0\",\"RefNo\":\"NS301604M611\",\"ISINName\":\"ACC LIMITED\",\"ErrorDesc\":null}]",
- "BrokerOrdrNo": "0170001687465885",
- "ReqId": "",
- "UserId": "DEMO31",
- "GroupId": "HO"
}This API call would be used to generate TPIN.
Note: This facility is available for CDSL only.
| tenantid required | string |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
| dpid | string dpid |
| boid | string boid |
| dp_type | string dp_type |
| pan | string pan |
{- "dpid": "12092200",
- "boid": "1209220000000202",
- "dp_type": "CDSL",
- "pan": "QWERT1234Y"
}{- "status": "success",
- "code": "s-101",
- "message": "TPIN Generated Successfully",
- "data": {
- "ReqId": "APITEST_147864",
- "ResId": "AP181122287469474",
- "ResTime": "18112022183146",
- "Status": "00",
- "ErrorCode": ""
}
}Margin Pledge is a process in which users can pledge their stocks to the broker in return for a collateral margin that can be utilized for trading.
This API call allows you to initiate pledge request for stocks in holdings, in order to raise collateral margin for trading.
Note :- Sample request given below. It needs to be Base64 encrypted before sending. Please ignore space at the end of every parameter, it is just for line break to happen.
Pledge Request: https://demo.synapsewave.com/edis/newnetnet/PledgeRequest.aspx?type=1&UserId=NITWR21&GroupId=HO&Product=WAVE2&ManagerIP=172.25.104.113 &DealerCode=NXVZO&GroupCode=AAAAA&theme=L&SessionId=0x014519BF4DFB8DEC71FD4C5EA91F8D
| type | integer Example: type=1 |
| enct | string Example: enct=VXNlcklkPU5JVFdSMjEmR3JvdXBJZD1ITyZQcm9kdWN0PVdBVkUyJk1hbmFnZXJJUD0xNzIuMjUuMTA0LjExMyZEZWFsZXJDb2RlPU5YVlpPJkdyb3VwQ29kZT1BQUFBQSZ0aGVtZT1MJlNlc3Npb25JZD0weDAxNDUxOUJGNERGQjhERUM3MUZENEM1RUE5MUY4RA== |
This section provides the API calls to fetch the complete information about current, upcoming and closed IPOS.
This also allows you to place, modify, cancel IPO orders.
This call would return back the list of ongoing, upcoming and closed IPOs.
| type | string Example: type=-1 C = Current, F = Future, P = Past and -1 = All |
| offerName | string Offer Name |
| offerType | string Example: offerType=IPO IPO, FPO |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "IPO list fetched successfully",
- "data": {
- "CurrentIPOList": [
- {
- "IPOCode": "1",
- "OfferName": "Cams",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "1000000",
- "FaceValue": 10,
- "LotSize": "15",
- "IssueType": "Book Building",
- "MinOrderQty": 15,
- "MinAmount": 0,
- "nMarketLotBIDQty": "15",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "IPODIS",
- "OfferName": "Ipodis",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "500000",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 1,
- "MinAmount": 0,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "IPONIT",
- "OfferName": "Iponit",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "55555555",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 50,
- "MinAmount": 0,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "5",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "IPONITIN",
- "OfferName": "Iponitin",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "99999999999",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 10,
- "MinAmount": 0,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "IPONITIN1",
- "OfferName": "Iponitin1",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "5000000",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Fixed",
- "MinOrderQty": 100,
- "MinAmount": 0,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "10",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "IRFC",
- "OfferName": "Irfc",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "100000",
- "FaceValue": 10,
- "LotSize": "575",
- "IssueType": "Book Building",
- "MinOrderQty": 575,
- "MinAmount": 0,
- "nMarketLotBIDQty": "575",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "JAYCO",
- "OfferName": "Jayco",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "55555555555",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 1,
- "MinAmount": 0,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "KOLTEPATIL",
- "OfferName": "Koltepatil",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "50000000000",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 100,
- "MinAmount": 0,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "10",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}, - {
- "IPOCode": "NSDL",
- "OfferName": "Nsdl",
- "OfferType": "IPO",
- "MinPrice": "0.00",
- "MaxPrice": "0.00",
- "StartDate": "",
- "EndDate": "",
- "IssueSize": "250000",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 75,
- "MinAmount": 0,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "75",
- "dtStartDate": null,
- "dtDailyStartTime": null,
- "dtDailyEndTime": null,
- "brokerReco": "",
- "exchange": "Manual",
- "bidStatus": "ONGOING",
- "placeModifyBid": true,
- "cardDisplay": false
}
], - "FutureIPOList": [ ],
- "PastIPOList": [
- {
- "IPOCode": "BRUCHISOYA",
- "OfferName": "Ruchi Soya Industries",
- "OfferType": "IPO",
- "MinPrice": 615,
- "MaxPrice": 650,
- "StartDate": "24 Mar 2022",
- "EndDate": "28 Mar 2022",
- "IssueSize": "69908689",
- "FaceValue": 2,
- "LotSize": "21",
- "IssueType": "Book Building",
- "MinOrderQty": 21,
- "MinAmount": 12915,
- "nMarketLotBIDQty": "21",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2022-03-24T10:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T10:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T17:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NEQUITAS",
- "OfferName": "Equitas Holdings Limited",
- "OfferType": "IPO",
- "MinPrice": 1,
- "MaxPrice": 5,
- "StartDate": "20 Dec 2021",
- "EndDate": "28 Jan 2022",
- "IssueSize": "21766847190",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 10,
- "MinAmount": 10,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-12-20T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NAXISIPO1",
- "OfferName": "Axis Bank Ltd",
- "OfferType": "IPO",
- "MinPrice": 2,
- "MaxPrice": 4,
- "StartDate": "06 Dec 2021",
- "EndDate": "30 Dec 2021",
- "IssueSize": "651445416",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 1,
- "MinAmount": 2,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-12-06T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NSBICARDS",
- "OfferName": "Sbi Cards And Payment Services Limited",
- "OfferType": "IPO",
- "MinPrice": 750,
- "MaxPrice": 755,
- "StartDate": "26 Nov 2021",
- "EndDate": "10 Dec 2021",
- "IssueSize": "130526798",
- "FaceValue": 10,
- "LotSize": "19",
- "IssueType": "Book Building",
- "MinOrderQty": 19,
- "MinAmount": 14250,
- "nMarketLotBIDQty": "19",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-26T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "TARSONSPRODUCT",
- "OfferName": "Tarsons Products",
- "OfferType": "IPO",
- "MinPrice": 635,
- "MaxPrice": 662,
- "StartDate": "12 Nov 2021",
- "EndDate": "17 Nov 2021",
- "IssueSize": "13200000",
- "FaceValue": 2,
- "LotSize": "22",
- "IssueType": "Book Building",
- "MinOrderQty": 22,
- "MinAmount": 13970,
- "nMarketLotBIDQty": "22",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-12T10:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T10:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T20:00:00.000Z",
- "brokerReco": "Long Term",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "TESTIPO1",
- "OfferName": "Testmanualipo",
- "OfferType": "IPO",
- "MinPrice": 15,
- "MaxPrice": 20,
- "StartDate": "08 Nov 2021",
- "EndDate": "31 Jan 2022",
- "IssueSize": "100000",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 10,
- "MinAmount": 150,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-08T20:10:00.000Z",
- "dtDailyStartTime": "1970-01-01T20:10:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:59:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "PAYTM",
- "OfferName": "Manualpaytm",
- "OfferType": "IPO",
- "MinPrice": 15,
- "MaxPrice": 20,
- "StartDate": "08 Nov 2021",
- "EndDate": "28 Feb 2022",
- "IssueSize": "565000",
- "FaceValue": 15,
- "LotSize": "1",
- "IssueType": "Fixed",
- "MinOrderQty": 1,
- "MinAmount": 15,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-08T19:30:00.000Z",
- "dtDailyStartTime": "1970-01-01T19:30:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:59:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "PAYTMMANUAL",
- "OfferName": "Paytmmanualipo",
- "OfferType": "IPO",
- "MinPrice": 15,
- "MaxPrice": 20,
- "StartDate": "08 Nov 2021",
- "EndDate": "28 Feb 2022",
- "IssueSize": "56321",
- "FaceValue": 15,
- "LotSize": "1",
- "IssueType": "Fixed",
- "MinOrderQty": 1,
- "MinAmount": 15,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-08T19:30:00.000Z",
- "dtDailyStartTime": "1970-01-01T19:30:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:59:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "PBFINTECH",
- "OfferName": "Pb Fintech Ltd",
- "OfferType": "IPO",
- "MinPrice": 940,
- "MaxPrice": 980,
- "StartDate": "02 Nov 2021",
- "EndDate": "03 Nov 2021",
- "IssueSize": "500000",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 10,
- "MinAmount": 9400,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-11-02T04:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T04:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NSIGACHI",
- "OfferName": "Sigachi Industries Limited",
- "OfferType": "IPO",
- "MinPrice": 161,
- "MaxPrice": 163,
- "StartDate": "29 Oct 2021",
- "EndDate": "31 Dec 2021",
- "IssueSize": "7695000",
- "FaceValue": 10,
- "LotSize": "90",
- "IssueType": "Book Building",
- "MinOrderQty": 90,
- "MinAmount": 14490,
- "nMarketLotBIDQty": "90",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-10-29T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:30:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NSJS",
- "OfferName": "S J S Enterprises Limited",
- "OfferType": "IPO",
- "MinPrice": 531,
- "MaxPrice": 542,
- "StartDate": "29 Oct 2021",
- "EndDate": "28 Feb 2022",
- "IssueSize": "15065913",
- "FaceValue": 100,
- "LotSize": "27",
- "IssueType": "Book Building",
- "MinOrderQty": 27,
- "MinAmount": 14337,
- "nMarketLotBIDQty": "27",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-10-29T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:30:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "BNYKAA",
- "OfferName": "Fsn Ecommerce Ventures Limited",
- "OfferType": "IPO",
- "MinPrice": 1085,
- "MaxPrice": 1125,
- "StartDate": "27 Oct 2021",
- "EndDate": "01 Nov 2021",
- "IssueSize": "6000",
- "FaceValue": 10,
- "LotSize": "12",
- "IssueType": "Book Building",
- "MinOrderQty": 12,
- "MinAmount": 13020,
- "nMarketLotBIDQty": "12",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-10-27T09:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T09:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T16:00:00.000Z",
- "brokerReco": "Long Term",
- "exchange": "BSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "FINO",
- "OfferName": "Fino Payments Bank",
- "OfferType": "IPO",
- "MinPrice": 620,
- "MaxPrice": 620,
- "StartDate": "22 Oct 2021",
- "EndDate": "26 Oct 2021",
- "IssueSize": "100000",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Fixed",
- "MinOrderQty": 10,
- "MinAmount": 6200,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "10",
- "dtStartDate": "2021-10-22T01:30:00.000Z",
- "dtDailyStartTime": "1970-01-01T01:30:00.000Z",
- "dtDailyEndTime": "1970-01-01T15:00:00.000Z",
- "brokerReco": "Neutral",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NJKLV",
- "OfferName": "Jklv",
- "OfferType": "IPO",
- "MinPrice": 700,
- "MaxPrice": 800,
- "StartDate": "21 Oct 2021",
- "EndDate": "31 Dec 2021",
- "IssueSize": "5550000000",
- "FaceValue": 10,
- "LotSize": "20",
- "IssueType": "Book Building",
- "MinOrderQty": 20,
- "MinAmount": 14000,
- "nMarketLotBIDQty": "20",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-10-21T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:30:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "KOTYARK",
- "OfferName": "Kotyark Industries",
- "OfferType": "IPO",
- "MinPrice": 51,
- "MaxPrice": 51,
- "StartDate": "21 Oct 2021",
- "EndDate": "25 Oct 2021",
- "IssueSize": "2208000",
- "FaceValue": 10,
- "LotSize": "1",
- "IssueType": "Fixed",
- "MinOrderQty": 2000,
- "MinAmount": 102000,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "2000",
- "dtStartDate": "2021-10-21T00:10:00.000Z",
- "dtDailyStartTime": "1970-01-01T00:10:00.000Z",
- "dtDailyEndTime": "1970-01-01T19:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "PNB",
- "OfferName": "Pnbhousing",
- "OfferType": "IPO",
- "MinPrice": 500,
- "MaxPrice": 600,
- "StartDate": "20 Oct 2021",
- "EndDate": "25 Oct 2021",
- "IssueSize": "5000",
- "FaceValue": 5,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 20,
- "MinAmount": 10000,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "20",
- "dtStartDate": "2021-10-20T00:11:00.000Z",
- "dtDailyStartTime": "1970-01-01T00:11:00.000Z",
- "dtDailyEndTime": "1970-01-01T15:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "KOTAK",
- "OfferName": "Kotakbank",
- "OfferType": "IPO",
- "MinPrice": 500,
- "MaxPrice": 1000,
- "StartDate": "20 Oct 2021",
- "EndDate": "22 Oct 2021",
- "IssueSize": "1000",
- "FaceValue": 15,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 50,
- "MinAmount": 25000,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "50",
- "dtStartDate": "2021-10-20T00:10:00.000Z",
- "dtDailyStartTime": "1970-01-01T00:10:00.000Z",
- "dtDailyEndTime": "1970-01-01T20:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "LIC01",
- "OfferName": "Life Insurance Policy",
- "OfferType": "IPO",
- "MinPrice": 200,
- "MaxPrice": 800,
- "StartDate": "19 Oct 2021",
- "EndDate": "20 Oct 2021",
- "IssueSize": "1000",
- "FaceValue": 20,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 150,
- "MinAmount": 30000,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "15",
- "dtStartDate": "2021-10-19T00:10:00.000Z",
- "dtDailyStartTime": "1970-01-01T00:10:00.000Z",
- "dtDailyEndTime": "1970-01-01T17:10:00.000Z",
- "brokerReco": "Short Term",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "MED",
- "OfferName": "Glenmark",
- "OfferType": "IPO",
- "MinPrice": 500,
- "MaxPrice": 1500,
- "StartDate": "15 Oct 2021",
- "EndDate": "25 Oct 2021",
- "IssueSize": "10000",
- "FaceValue": 15,
- "LotSize": "20",
- "IssueType": "Fixed",
- "MinOrderQty": 20,
- "MinAmount": 10000,
- "nMarketLotBIDQty": "20",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-10-15T00:15:00.000Z",
- "dtDailyStartTime": "1970-01-01T00:15:00.000Z",
- "dtDailyEndTime": "1970-01-01T21:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "Manual",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "NSBINIPO1",
- "OfferName": "Sbinipo1",
- "OfferType": "IPO",
- "MinPrice": 1,
- "MaxPrice": 5,
- "StartDate": "01 Sep 2021",
- "EndDate": "31 Dec 2021",
- "IssueSize": "4200000",
- "FaceValue": 8,
- "LotSize": "1",
- "IssueType": "Book Building",
- "MinOrderQty": 1,
- "MinAmount": 1,
- "nMarketLotBIDQty": "1",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-09-01T08:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T08:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:30:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "NSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "BEQUITAS",
- "OfferName": "Equitas Holdings Limited",
- "OfferType": "IPO",
- "MinPrice": 1,
- "MaxPrice": 5,
- "StartDate": "02 Aug 2021",
- "EndDate": "01 Sep 2021",
- "IssueSize": "1500000",
- "FaceValue": 15,
- "LotSize": "135",
- "IssueType": "Book Building",
- "MinOrderQty": 675,
- "MinAmount": 675,
- "nMarketLotBIDQty": "135",
- "nMinimumLotBIDQty": "5",
- "dtStartDate": "2021-08-02T09:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T09:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:15:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "BSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "BGLAND",
- "OfferName": "Gland Pharma Ltd",
- "OfferType": "IPO",
- "MinPrice": 1490,
- "MaxPrice": 1500,
- "StartDate": "02 Aug 2021",
- "EndDate": "30 Oct 2021",
- "IssueSize": "0",
- "FaceValue": 10,
- "LotSize": "10",
- "IssueType": "Book Building",
- "MinOrderQty": 10,
- "MinAmount": 14900,
- "nMarketLotBIDQty": "10",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2021-08-02T09:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T09:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "BSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}, - {
- "IPOCode": "BSBICARDS",
- "OfferName": "Sbi Cards And Payment Services Limited",
- "OfferType": "IPO",
- "MinPrice": 750,
- "MaxPrice": 780,
- "StartDate": "26 Feb 2020",
- "EndDate": "30 Oct 2021",
- "IssueSize": "0",
- "FaceValue": 750,
- "LotSize": "19",
- "IssueType": "Book Building",
- "MinOrderQty": 19,
- "MinAmount": 14250,
- "nMarketLotBIDQty": "19",
- "nMinimumLotBIDQty": "1",
- "dtStartDate": "2020-02-26T09:00:00.000Z",
- "dtDailyStartTime": "1970-01-01T09:00:00.000Z",
- "dtDailyEndTime": "1970-01-01T23:00:00.000Z",
- "brokerReco": "Subscribe",
- "exchange": "BSE",
- "bidStatus": "CLOSED",
- "placeModifyBid": false,
- "cardDisplay": false
}
]
}, - "metadata": ""
}This call would return back the Details of a particular IPO.
| ipocode | string Example: VERANDA ipocode |
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "Success",
- "code": "s-101",
- "message": "IPO Details Fetch successfully",
- "data": {
- "IPOCode": "VERANDA",
- "Name": "VERANDA LEARNING",
- "OfferType": "IPO",
- "Series": "EQ",
- "MinPrice": 130,
- "MaxPrice": 170,
- "IssueType": "Book Building",
- "StartDate": "30 Mar 2022",
- "EndDate": "31 Mar 2022",
- "IssueSize": "100000",
- "FaceValue": 10,
- "LotSize": "100",
- "MinOrderQty": 100,
- "TickSize": 1,
- "DailyBiddingStartTime": "10:10",
- "DailyBiddingEndTime": "22:00",
- "RegisterName": null,
- "RatingAgency": "",
- "Ratings": "",
- "ProspectusLink": "",
- "RTALink ": "",
- "BrokerReco": "Subscribe",
- "Symbol": "VERANDA",
- "CategoryWise": [
- {
- "AppCategoryCode": "Retail",
- "AppCategoryName": "Retail",
- "MinPrice": 130,
- "MaxPrice": 170,
- "StartDateTime": "2022-03-30",
- "EndDateTime": "2022-03-31",
- "MaxBidLots": "14",
- "MinAmount": 0,
- "MaxAmount": 191800,
- "DiscountType": "1",
- "DiscountValue": 0,
- "BidCutOffFlag": true
}, - {
- "AppCategoryCode": "NIB",
- "AppCategoryName": "Non Institutional Bidder",
- "MinPrice": 130,
- "MaxPrice": 170,
- "StartDateTime": "2022-03-30",
- "EndDateTime": "2022-03-31",
- "MaxBidLots": "14",
- "MinAmount": 15000,
- "MaxAmount": 0,
- "DiscountType": "1",
- "DiscountValue": 0,
- "BidCutOffFlag": false
}
]
}
}To modify ipo order, need to send "TransactionNo" and "ReferenceNo" received while placing ipo order.
| Authorization | string Example: {{access_token}} |
| Content-Type | string Example: application/json |
| x-api-key | string Example: {{x-api-key}} |
| UserID | string UserID |
| GroupID | string GroupID |
| UCCClientID | string UCCClientID |
| UCCGroupID | string UCCGroupID |
| BidMode | string BidMode |
| IPOCode | string IPO Code |
| Series | string Series |
| AppCategoryCode | string AppCategoryCode |
| DPId | string DP Id |
| BeneficiaryId | string Beneficiary Id |
| PaymentMode | string Payment Mode |
| UpiId | string Upi Id |
| BankId | string Bank Id |
| BankAccountNo | string Bank Account No |
| TransactionNo | string Transaction No |
| ReferenceNo | string Reference No |
Array of objects List |
{- "UserID": "{{user_id}}",
- "GroupID": "HO",
- "UCCClientID": "",
- "UCCGroupID": "",
- "BidMode": "N",
- "IPOCode": "1234",
- "Series": "EQ",
- "AppCategoryCode": "Retail",
- "DPId": "12092200",
- "BeneficiaryId": "1209220000000202",
- "PaymentMode": "UPI",
- "UpiId": "shweta@okaxis",
- "BankId": "",
- "BankAccountNo": "",
- "TransactionNo": "",
- "ReferenceNo": "",
- "Bids": [
- {
- "ActivityType": "N",
- "Cutoff": true,
- "Price": 328,
- "BidNo": 0,
- "Qty": 10
}
]
}This call would return back the data from the IPO order book.
| startdate | string Example: startdate=2022-03-12 |
| endDate | string Example: endDate=2022-04-11 |
| offerType | integer Example: offerType=1 |
| offername | string |
| status | string Example: status=-1 |
| ipoCode | string |
| applicationNo | string |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": "Success",
- "code": "s-101",
- "message": "IPO Order Book Fetch successfully",
- "data": {
- "data": [ ]
}
}This call would return back the List of scrips matching the search text.
| tenantid required | string |
| searchText required | string Example: ACC NIFTY APR, GOLD MCX |
| mktAllowed required | string Example: -1 |
| Authorization | string Example: {{access_token}} |
| x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": {
- "took": 53,
- "timed_out": false,
- "_shards": {
- "total": 1,
- "successful": 1,
- "skipped": 0,
- "failed": 0
}, - "hits": {
- "total": {
- "value": 586,
- "relation": "eq"
}, - "max_score": null,
- "hits": [
- {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-22",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 22,
- "sDerivitiveDesc": "ACC LIMITED--ACC EQ--EQ--ACC--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 1075,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "1-22",
- "sExchange": "NSE",
- "sSearchText": "ACC ACC LIMITED NSE EQ",
- "sSymbolnew": "ACC"
}, - "sort": [
- 1,
- 1,
- 1,
- 1,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-7053",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACCELYA",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 7053,
- "sDerivitiveDesc": "ACCELYA SOLN INDIA LTD--ACCELYA EQ--EQ--ACCELYA--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACCELYA SOLN INDIA LTD",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 1596,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE793A01012",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "1-7053",
- "sExchange": "NSE",
- "sSearchText": "ACCELYA ACCELYA SOLN INDIA LTD NSE EQ",
- "sSymbolnew": "ACCELYA"
}, - "sort": [
- 1,
- 1,
- 1,
- 1,
- 1,
- 0,
- 0,
- "",
- "accelya"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-1465",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACCURACY",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 1465,
- "sDerivitiveDesc": "ACCURACY SHIPPING LIMITED--ACCURACY EQ--EQ--ACCURACY--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACCURACY SHIPPING LIMITED",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 2064,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE648Z01015",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "1-1465",
- "sExchange": "NSE",
- "sSearchText": "ACCURACY ACCURACY SHIPPING LIMITED NSE EQ",
- "sSymbolnew": "ACCURACY"
}, - "sort": [
- 1,
- 1,
- 1,
- 1,
- 1,
- 0,
- 0,
- "",
- "accuracy"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8-500410",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 500410,
- "sDerivitiveDesc": "ACC A--ACC A--ACC LTD.--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACC LTD.",
- "sSeries": "A",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "8-500410",
- "sExchange": "BSE",
- "sSearchText": "ACC ACC LTD. BSE A",
- "sSymbolnew": "ACC"
}, - "sort": [
- 1,
- 1,
- 3,
- 2,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8-532268",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACCELYA",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 532268,
- "sDerivitiveDesc": "ACCELYA B--ACCELYA B--ACCELYA SOLUTIONS INDIA L--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACCELYA SOLUTIONS INDIA L",
- "sSeries": "B",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE793A01012",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "8-532268",
- "sExchange": "BSE",
- "sSearchText": "ACCELYA ACCELYA SOLUTIONS INDIA L BSE B",
- "sSymbolnew": "ACCELYA"
}, - "sort": [
- 1,
- 1,
- 4,
- 2,
- 1,
- 0,
- 0,
- "",
- "accelya"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-21217",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACCORD",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 2000,
- "nToken": 21217,
- "sDerivitiveDesc": "ACCORD SM--ACCORD SM--ACCORD SYNERGY LIMITED--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACCORD SYNERGY LIMITED",
- "sSeries": "SM",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 5000,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE113X01015",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "1-21217",
- "sExchange": "NSE",
- "sSearchText": "ACCORD ACCORD SYNERGY LIMITED NSE SM",
- "sSymbolnew": "ACCORD"
}, - "sort": [
- 1,
- 1,
- 9,
- 1,
- 1,
- 0,
- 0,
- "",
- "accord"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8-517494",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ACCEL",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 517494,
- "sDerivitiveDesc": "ACCEL X--ACCEL X--ACCEL LIMITED--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "ACCEL LIMITED",
- "sSeries": "X",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE258C01038",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "8-517494",
- "sExchange": "BSE",
- "sSearchText": "ACCEL ACCEL LIMITED BSE X",
- "sSymbolnew": "ACCEL"
}, - "sort": [
- 1,
- 1,
- 15,
- 2,
- 1,
- 0,
- 0,
- "",
- "accel"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-12009",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "IMPAL",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 12009,
- "sDerivitiveDesc": "IND MOTOR PART & ACC LTD--IMPAL EQ--EQ--IMPAL--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "IND MOTOR PART & ACC LTD",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 1352,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE547E01014",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "1-12009",
- "sExchange": "NSE",
- "sSearchText": "IMPAL IND MOTOR PART & ACC LTD NSE EQ",
- "sSymbolnew": "IMPAL"
}, - "sort": [
- 1,
- 2,
- 1,
- 1,
- 1,
- 0,
- 0,
- "",
- "impal"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8-590065",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "IMPAL",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 590065,
- "sDerivitiveDesc": "IMPAL B--IMPAL B--INDIA MOTOR PARTS & ACCES--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "INDIA MOTOR PARTS & ACCES",
- "sSeries": "B",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE547E01014",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 1,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 1,
- "nIsIndex": 0,
- "nFOExists": 0,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 0,
- "nIsSIP": 0,
- "id": "8-590065",
- "sExchange": "BSE",
- "sSearchText": "IMPAL INDIA MOTOR PARTS & ACCES BSE B",
- "sSymbolnew": "IMPAL"
}, - "sort": [
- 1,
- 2,
- 4,
- 2,
- 1,
- 0,
- 0,
- "",
- "impal"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35871",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35871,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 --ACC22APRFUT--ACC--NSE F&O",
- "sInstrumentName": "FUTSTK",
- "sSecurityDesc": "ACC22APRFUT",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35871",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 FUT",
- "sSymbolnew": "ACC"
}, - "sort": [
- 3,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-43685",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 43685,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 --ACC22MAYFUT--ACC--NSE F&O",
- "sInstrumentName": "FUTSTK",
- "sSecurityDesc": "ACC22MAYFUT",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-43685",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 FUT",
- "sSymbolnew": "ACC"
}, - "sort": [
- 3,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-56740",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 56740,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 --ACC22JUNFUT--ACC--NSE F&O",
- "sInstrumentName": "FUTSTK",
- "sSecurityDesc": "ACC22JUNFUT",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-56740",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 FUT",
- "sSymbolnew": "ACC"
}, - "sort": [
- 3,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-1368535871",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC-1",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 1368535871,
- "sDerivitiveDesc": "ACC LIMITED--ACC-1--APR28 --SP-ACC-APR-MAY--ACC-1--NSE F&O",
- "sInstrumentName": "FUTSTK",
- "sSecurityDesc": "SP-ACC-APR-MAY",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 43685,
- "nFIILimit": 35871,
- "nPriceTick": 5,
- "nSpread": 1,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-1368535871",
- "sExchange": "NSE",
- "sSearchText": "ACC-1 ACCLIMITED NSE APR 28APR2022 FUT",
- "sSymbolnew": "ACC-1"
}, - "sort": [
- 3,
- 1,
- 99,
- 4,
- 2,
- 1335623400,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-1674043685",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC-2",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 1674043685,
- "sDerivitiveDesc": "ACC LIMITED--ACC-2--MAY26 --SP-ACC-MAY-JUN--ACC-2--NSE F&O",
- "sInstrumentName": "FUTSTK",
- "sSecurityDesc": "SP-ACC-MAY-JUN",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 56740,
- "nFIILimit": 43685,
- "nPriceTick": 5,
- "nSpread": 1,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 0,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-1674043685",
- "sExchange": "NSE",
- "sSearchText": "ACC-2 ACCLIMITED NSE MAY 26MAY2022 FUT",
- "sSymbolnew": "ACC-2"
}, - "sort": [
- 3,
- 1,
- 99,
- 4,
- 2,
- 1338042600,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42656",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "116000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42656,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1160.00 CE--ACC22APR1160CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1160CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42656",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1160.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1160,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42657",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "116000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42657,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1160.00 PE--ACC22APR1160PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1160PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42657",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1160.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1160,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42666",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "118000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42666,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1180.00 CE--ACC22APR1180CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1180CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42666",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1180.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1180,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42667",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "118000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42667,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1180.00 PE--ACC22APR1180PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1180PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42667",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1180.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1180,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42668",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "120000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42668,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1200.00 CE--ACC22APR1200CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1200CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42668",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1200.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1200,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42669",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "120000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42669,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1200.00 PE--ACC22APR1200PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1200PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-42669",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1200.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1200,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59832",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "122000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59832,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1220.00 CE--ACC22APR1220CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1220CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59832",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1220.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1220,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59833",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "122000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59833,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1220.00 PE--ACC22APR1220PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1220PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59833",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1220.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1220,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59834",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "124000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59834,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1240.00 CE--ACC22APR1240CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1240CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59834",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1240.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1240,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59835",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "124000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59835,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1240.00 PE--ACC22APR1240PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1240PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59835",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1240.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1240,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59836",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "126000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59836,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1260.00 CE--ACC22APR1260CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1260CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59836",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1260.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1260,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59837",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "126000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59837,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1260.00 PE--ACC22APR1260PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1260PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59837",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1260.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1260,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59838",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "128000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59838,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1280.00 CE--ACC22APR1280CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1280CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1280.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59838",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1280.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1280,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59839",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "128000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59839,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1280.00 PE--ACC22APR1280PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1280PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1280.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59839",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1280.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1280,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59840",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "130000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59840,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1300.00 CE--ACC22APR1300CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1300CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1300.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59840",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1300.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1300,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59841",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "130000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59841,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1300.00 PE--ACC22APR1300PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1300PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1300.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59841",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1300.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1300,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59842",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "132000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59842,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1320.00 CE--ACC22APR1320CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1320CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1320.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59842",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1320.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1320,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59843",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "132000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59843,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1320.00 PE--ACC22APR1320PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1320PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1320.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59843",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1320.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1320,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59844",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "134000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59844,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1340.00 CE--ACC22APR1340CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1340CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1340.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59844",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1340.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1340,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59845",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "134000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59845,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1340.00 PE--ACC22APR1340PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1340PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1340.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-59845",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1340.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1340,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79564",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79564,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1360.00 CE--ACC22APR1360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1360CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1360.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79564",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79565",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79565,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1360.00 PE--ACC22APR1360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1360PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1360.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79565",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79566",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79566,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1380.00 CE--ACC22APR1380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1380CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1380.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79566",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79567",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79567,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1380.00 PE--ACC22APR1380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1380PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1380.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79567",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79568",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79568,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1400.00 CE--ACC22APR1400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1400CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1400.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79568",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79569",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79569,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1400.00 PE--ACC22APR1400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1400PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1400.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79569",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79570",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79570,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1420.00 CE--ACC22APR1420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1420CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1420.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79570",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79571",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79571,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1420.00 PE--ACC22APR1420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1420PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1420.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79571",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79572",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79572,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1440.00 CE--ACC22APR1440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1440CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1440.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79572",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79573",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79573,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1440.00 PE--ACC22APR1440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1440PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1440.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79573",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79574",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79574,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1460.00 CE--ACC22APR1460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1460CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1460.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79574",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79575",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79575,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1460.00 PE--ACC22APR1460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1460PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1460.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79575",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79576",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79576,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1480.00 CE--ACC22APR1480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1480CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1480.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79576",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79577",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79577,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1480.00 PE--ACC22APR1480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1480PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1480.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79577",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79578",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79578,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1500.00 CE--ACC22APR1500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1500CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1500.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79578",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79591",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79591,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1500.00 PE--ACC22APR1500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1500PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1500.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79591",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79592",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79592,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1520.00 CE--ACC22APR1520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1520CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1520.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79592",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79593",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79593,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1520.00 PE--ACC22APR1520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1520PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1520.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79593",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79594",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79594,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1540.00 CE--ACC22APR1540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1540CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1540.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79594",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79595",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79595,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1540.00 PE--ACC22APR1540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1540PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1540.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79595",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79596",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79596,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1560.00 CE--ACC22APR1560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1560CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1560.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79596",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79597",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79597,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1560.00 PE--ACC22APR1560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1560PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1560.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79597",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79598",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79598,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1580.00 CE--ACC22APR1580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1580CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1580.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79598",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79599",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79599,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1580.00 PE--ACC22APR1580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1580PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1580.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79599",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79600",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79600,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1600.00 CE--ACC22APR1600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1600CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1600.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79600",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79601",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79601,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1600.00 PE--ACC22APR1600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1600PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1600.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79601",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79602",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79602,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1620.00 CE--ACC22APR1620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1620CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1620.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79602",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79603",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79603,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1620.00 PE--ACC22APR1620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1620PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1620.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79603",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79604",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79604,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1640.00 CE--ACC22APR1640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1640CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1640.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79604",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79605",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79605,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1640.00 PE--ACC22APR1640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1640PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1640.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79605",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79653",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79653,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1660.00 CE--ACC22APR1660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1660CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1660.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79653",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79654",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79654,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1660.00 PE--ACC22APR1660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1660PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1660.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79654",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79655",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79655,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1680.00 CE--ACC22APR1680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1680CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1680.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79655",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79656",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79656,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1680.00 PE--ACC22APR1680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1680PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1680.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79656",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79657",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79657,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1700.00 CE--ACC22APR1700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1700CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1700.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79657",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79658",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79658,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1700.00 PE--ACC22APR1700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1700PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1700.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79658",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79659",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79659,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1720.00 CE--ACC22APR1720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1720CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1720.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79659",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79660",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79660,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1720.00 PE--ACC22APR1720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1720PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1720.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79660",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79661",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79661,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1740.00 CE--ACC22APR1740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1740CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1740.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79661",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79662",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79662,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1740.00 PE--ACC22APR1740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1740PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1740.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79662",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79663",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79663,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1760.00 CE--ACC22APR1760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1760CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1760.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79663",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79664",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79664,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1760.00 PE--ACC22APR1760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1760PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1760.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79664",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79665",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79665,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1780.00 CE--ACC22APR1780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1780CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1780.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79665",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79666",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79666,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1780.00 PE--ACC22APR1780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1780PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1780.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79666",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79667",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79667,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1800.00 CE--ACC22APR1800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1800CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1800.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79667",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79668",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79668,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1800.00 PE--ACC22APR1800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1800PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1800.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79668",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79669",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79669,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1820.00 CE--ACC22APR1820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1820CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1820.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79669",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79670",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79670,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1820.00 PE--ACC22APR1820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1820PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1820.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79670",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79671",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79671,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1840.00 CE--ACC22APR1840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1840CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1840.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79671",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79672",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79672,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1840.00 PE--ACC22APR1840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1840PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1840.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79672",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79673",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79673,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1860.00 CE--ACC22APR1860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1860CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1860.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79673",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79674",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79674,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1860.00 PE--ACC22APR1860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1860PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1860.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79674",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79687",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79687,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1880.00 CE--ACC22APR1880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1880CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1880.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79687",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79688",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79688,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1880.00 PE--ACC22APR1880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1880PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1880.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79688",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79689",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79689,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1900.00 CE--ACC22APR1900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1900CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1900.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79689",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79693",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79693,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1900.00 PE--ACC22APR1900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1900PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1900.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79693",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79694",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79694,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1920.00 CE--ACC22APR1920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1920CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1920.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79694",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79695",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79695,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1920.00 PE--ACC22APR1920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1920PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1920.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79695",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79696",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79696,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1940.00 CE--ACC22APR1940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1940CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1940.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79696",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79697",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79697,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1940.00 PE--ACC22APR1940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1940PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1940.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79697",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79698",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79698,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1960.00 CE--ACC22APR1960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1960CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1960.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79698",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79699",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79699,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1960.00 PE--ACC22APR1960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1960PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1960.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79699",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79700",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79700,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1980.00 CE--ACC22APR1980CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1980CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1980.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79700",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1980.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1980,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79818",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79818,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 1980.00 PE--ACC22APR1980PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR1980PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1980.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79818",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 1980.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 1980,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79819",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79819,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2000.00 CE--ACC22APR2000CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2000CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2000.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79819",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2000.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2000,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79820",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79820,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2000.00 PE--ACC22APR2000PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2000PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2000.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79820",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2000.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2000,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79821",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79821,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2020.00 CE--ACC22APR2020CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2020CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2020.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79821",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2020.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2020,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79822",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79822,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2020.00 PE--ACC22APR2020PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2020PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2020.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79822",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2020.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2020,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79823",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79823,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2040.00 CE--ACC22APR2040CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2040CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2040.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79823",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2040.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2040,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79824",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79824,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2040.00 PE--ACC22APR2040PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2040PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2040.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79824",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2040.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2040,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79825",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79825,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2060.00 CE--ACC22APR2060CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2060CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2060.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79825",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2060.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2060,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79826",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79826,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2060.00 PE--ACC22APR2060PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2060PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2060.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79826",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2060.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2060,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79827",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79827,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2080.00 CE--ACC22APR2080CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2080CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2080.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79827",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2080.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2080,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79828",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79828,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2080.00 PE--ACC22APR2080PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2080PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2080.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79828",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2080.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2080,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79829",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79829,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2100.00 CE--ACC22APR2100CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2100CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2100.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79829",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2100.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2100,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79830",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79830,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2100.00 PE--ACC22APR2100PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2100PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2100.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79830",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2100.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2100,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79831",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79831,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2120.00 CE--ACC22APR2120CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2120CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2120.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79831",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2120.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2120,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79832",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79832,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2120.00 PE--ACC22APR2120PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2120PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2120.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79832",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2120.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2120,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79833",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79833,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2140.00 CE--ACC22APR2140CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2140CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2140.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79833",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2140.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2140,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79834",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79834,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2140.00 PE--ACC22APR2140PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2140PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2140.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79834",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2140.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2140,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79835",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79835,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2160.00 CE--ACC22APR2160CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2160CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79835",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2160.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2160,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79836",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79836,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2160.00 PE--ACC22APR2160PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2160PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79836",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2160.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2160,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79837",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79837,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2180.00 CE--ACC22APR2180CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2180CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79837",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2180.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2180,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79838",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79838,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2180.00 PE--ACC22APR2180PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2180PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79838",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2180.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2180,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79839",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79839,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2200.00 CE--ACC22APR2200CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2200CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79839",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2200.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2200,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79840",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79840,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2200.00 PE--ACC22APR2200PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2200PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79840",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2200.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2200,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79841",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79841,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2220.00 CE--ACC22APR2220CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2220CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79841",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2220.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2220,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79842",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79842,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2220.00 PE--ACC22APR2220PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2220PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79842",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2220.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2220,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79843",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79843,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2240.00 CE--ACC22APR2240CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2240CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79843",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2240.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2240,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79844",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79844,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2240.00 PE--ACC22APR2240PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2240PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79844",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2240.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2240,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79845",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79845,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2260.00 CE--ACC22APR2260CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2260CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79845",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2260.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2260,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79846",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79846,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2260.00 PE--ACC22APR2260PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2260PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79846",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2260.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2260,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79847",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79847,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2280.00 CE--ACC22APR2280CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2280CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2280.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79847",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2280.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2280,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79848",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79848,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2280.00 PE--ACC22APR2280PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2280PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2280.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79848",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2280.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2280,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79849",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79849,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2300.00 CE--ACC22APR2300CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2300CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2300.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79849",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2300.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2300,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79850",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79850,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2300.00 PE--ACC22APR2300PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2300PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2300.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79850",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2300.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2300,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79851",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79851,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2320.00 CE--ACC22APR2320CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2320CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2320.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79851",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2320.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2320,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79852",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79852,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2320.00 PE--ACC22APR2320PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2320PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2320.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79852",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2320.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2320,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79853",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79853,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2340.00 CE--ACC22APR2340CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2340CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2340.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79853",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2340.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2340,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79854",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79854,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2340.00 PE--ACC22APR2340PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2340PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2340.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79854",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2340.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2340,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79855",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79855,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2360.00 CE--ACC22APR2360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2360CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2360.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79855",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79856",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79856,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2360.00 PE--ACC22APR2360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2360PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2360.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79856",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79857",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79857,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2380.00 CE--ACC22APR2380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2380CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2380.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79857",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79858",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79858,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2380.00 PE--ACC22APR2380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2380PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2380.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79858",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79859",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79859,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2400.00 CE--ACC22APR2400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2400CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2400.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79859",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79860",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79860,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2400.00 PE--ACC22APR2400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2400PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2400.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79860",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79861",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79861,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2420.00 CE--ACC22APR2420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2420CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2420.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79861",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79862",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79862,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2420.00 PE--ACC22APR2420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2420PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2420.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79862",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79863",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79863,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2440.00 CE--ACC22APR2440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2440CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2440.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79863",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79864",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79864,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2440.00 PE--ACC22APR2440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2440PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2440.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79864",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79865",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79865,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2460.00 CE--ACC22APR2460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2460CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2460.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79865",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79866",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79866,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2460.00 PE--ACC22APR2460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2460PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2460.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79866",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79867",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79867,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2480.00 CE--ACC22APR2480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2480CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2480.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79867",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79868",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79868,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2480.00 PE--ACC22APR2480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2480PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2480.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79868",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79869",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79869,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2500.00 CE--ACC22APR2500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2500CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2500.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79869",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79870",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79870,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2500.00 PE--ACC22APR2500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2500PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2500.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79870",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79871",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79871,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2520.00 CE--ACC22APR2520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2520CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2520.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79871",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79872",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79872,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2520.00 PE--ACC22APR2520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2520PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2520.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79872",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79873",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79873,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2540.00 CE--ACC22APR2540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2540CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2540.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79873",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79874",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79874,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2540.00 PE--ACC22APR2540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2540PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2540.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79874",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79875",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79875,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2560.00 CE--ACC22APR2560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2560CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2560.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79875",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79876",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79876,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2560.00 PE--ACC22APR2560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2560PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2560.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79876",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79877",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79877,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2580.00 CE--ACC22APR2580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2580CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2580.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79877",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79878",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79878,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2580.00 PE--ACC22APR2580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2580PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2580.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79878",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79879",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79879,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2600.00 CE--ACC22APR2600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2600CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2600.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79879",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79880",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79880,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2600.00 PE--ACC22APR2600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2600PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2600.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79880",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79881",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79881,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2620.00 CE--ACC22APR2620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2620CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2620.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79881",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79882",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79882,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2620.00 PE--ACC22APR2620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2620PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2620.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79882",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79883",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79883,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2640.00 CE--ACC22APR2640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2640CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2640.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79883",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79884",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79884,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2640.00 PE--ACC22APR2640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2640PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2640.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79884",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79885",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79885,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2660.00 CE--ACC22APR2660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2660CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2660.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79885",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79886",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79886,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2660.00 PE--ACC22APR2660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2660PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2660.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79886",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79887",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79887,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2680.00 CE--ACC22APR2680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2680CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2680.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79887",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79888",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79888,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2680.00 PE--ACC22APR2680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2680PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2680.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79888",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79889",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79889,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2700.00 CE--ACC22APR2700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2700CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2700.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79889",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79890",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79890,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2700.00 PE--ACC22APR2700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2700PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2700.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79890",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79891",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79891,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2720.00 CE--ACC22APR2720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2720CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2720.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79891",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79892",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79892,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2720.00 PE--ACC22APR2720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2720PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2720.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79892",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79893",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79893,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2740.00 CE--ACC22APR2740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2740CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2740.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79893",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79894",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79894,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2740.00 PE--ACC22APR2740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2740PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2740.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79894",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79895",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79895,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2760.00 CE--ACC22APR2760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2760CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2760.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79895",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79896",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79896,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2760.00 PE--ACC22APR2760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2760PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2760.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79896",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79897",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79897,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2780.00 CE--ACC22APR2780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2780CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2780.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79897",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79898",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79898,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2780.00 PE--ACC22APR2780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2780PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2780.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79898",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79899",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79899,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2800.00 CE--ACC22APR2800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2800CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2800.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79899",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79900",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79900,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2800.00 PE--ACC22APR2800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2800PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2800.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79900",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79901",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79901,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2820.00 CE--ACC22APR2820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2820CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2820.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79901",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79902",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79902,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2820.00 PE--ACC22APR2820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2820PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2820.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79902",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79903",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79903,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2840.00 CE--ACC22APR2840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2840CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2840.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79903",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79904",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79904,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2840.00 PE--ACC22APR2840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2840PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2840.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79904",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79905",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79905,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2860.00 CE--ACC22APR2860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2860CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2860.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79905",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79906",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79906,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2860.00 PE--ACC22APR2860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2860PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2860.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79906",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79907",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79907,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2880.00 CE--ACC22APR2880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2880CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2880.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79907",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79908",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79908,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2880.00 PE--ACC22APR2880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2880PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2880.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79908",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79909",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79909,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2900.00 CE--ACC22APR2900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2900CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2900.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79909",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79910",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79910,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2900.00 PE--ACC22APR2900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2900PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2900.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79910",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79911",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79911,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2920.00 CE--ACC22APR2920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2920CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2920.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79911",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79912",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79912,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2920.00 PE--ACC22APR2920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2920PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2920.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79912",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79913",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79913,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2940.00 CE--ACC22APR2940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2940CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2940.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79913",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79914",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79914,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2940.00 PE--ACC22APR2940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2940PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2940.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79914",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79915",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79915,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2960.00 CE--ACC22APR2960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2960CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2960.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79915",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-79916",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 79916,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2960.00 PE--ACC22APR2960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2960PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2960.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-79916",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35160",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "298000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35160,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2980.00 CE--ACC22APR2980CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2980CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2980.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35160",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2980.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2980,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35161",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "298000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35161,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 2980.00 PE--ACC22APR2980PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR2980PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "2980.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35161",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 2980.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 2980,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35163",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "300000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35163,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3000.00 CE--ACC22APR3000CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3000CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3000.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35163",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3000.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3000,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35164",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "300000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35164,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3000.00 PE--ACC22APR3000PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3000PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3000.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35164",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3000.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3000,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35175",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "302000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35175,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3020.00 CE--ACC22APR3020CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3020CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3020.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35175",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3020.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3020,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35176",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "302000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35176,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3020.00 PE--ACC22APR3020PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3020PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3020.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-35176",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3020.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3020,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36313",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "304000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36313,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3040.00 CE--ACC22APR3040CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3040CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3040.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36313",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3040.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3040,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36314",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "304000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36314,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3040.00 PE--ACC22APR3040PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3040PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3040.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36314",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3040.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3040,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36320",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "306000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36320,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3060.00 CE--ACC22APR3060CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3060CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3060.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36320",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3060.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3060,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36321",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "306000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36321,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3060.00 PE--ACC22APR3060PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3060PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3060.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36321",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3060.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3060,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36325",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "308000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36325,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3080.00 CE--ACC22APR3080CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3080CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3080.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36325",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3080.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3080,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-36326",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "308000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 36326,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3080.00 PE--ACC22APR3080PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3080PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3080.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-36326",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3080.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3080,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38054",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "310000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38054,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3100.00 CE--ACC22APR3100CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3100CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3100.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38054",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3100.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3100,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38059",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "310000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38059,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3100.00 PE--ACC22APR3100PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3100PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3100.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38059",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3100.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3100,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38060",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "312000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38060,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3120.00 CE--ACC22APR3120CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3120CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3120.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38060",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3120.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3120,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38061",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "312000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38061,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3120.00 PE--ACC22APR3120PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3120PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3120.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38061",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3120.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3120,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38062",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "314000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38062,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3140.00 CE--ACC22APR3140CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3140CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3140.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38062",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3140.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3140,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-38064",
- "_score": null,
- "_source": {
- "exp": "2022-04-28T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "314000",
- "nExpiryDate": 1335623400,
- "nExpiryDate1": "28APR2022",
- "nExpiryDate2": "APR28",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 38064,
- "sDerivitiveDesc": "ACC LIMITED--ACC--APR28 3140.00 PE--ACC22APR3140PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22APR3140PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "3140.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 1,
- "nIssueMaturityDate": 1335623400,
- "nIsSIP": 0,
- "id": "2-38064",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE APR 28APR2022 OPT 3140.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1335623400,
- 3140,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42670",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "116000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42670,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1160.00 CE--ACC22MAY1160CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1160CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42670",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1160.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1160,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42671",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "116000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42671,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1160.00 PE--ACC22MAY1160PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1160PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1160.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42671",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1160.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1160,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42672",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "118000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42672,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1180.00 CE--ACC22MAY1180CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1180CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42672",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1180.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1180,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42675",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "118000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42675,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1180.00 PE--ACC22MAY1180PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1180PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1180.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42675",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1180.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1180,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42676",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "120000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42676,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1200.00 CE--ACC22MAY1200CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1200CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42676",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1200.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1200,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-42677",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "120000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 42677,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1200.00 PE--ACC22MAY1200PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1200PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1200.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-42677",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1200.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1200,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59846",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "122000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59846,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1220.00 CE--ACC22MAY1220CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1220CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59846",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1220.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1220,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59847",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "122000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59847,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1220.00 PE--ACC22MAY1220PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1220PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1220.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59847",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1220.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1220,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59848",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "124000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59848,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1240.00 CE--ACC22MAY1240CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1240CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59848",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1240.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1240,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59849",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "124000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59849,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1240.00 PE--ACC22MAY1240PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1240PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1240.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59849",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1240.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1240,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59850",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "126000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59850,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1260.00 CE--ACC22MAY1260CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1260CE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 35000,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59850",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1260.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1260,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59851",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "126000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59851,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1260.00 PE--ACC22MAY1260PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1260PE",
- "sSeries": "",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE012A01025",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "1260.00",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nPriceNum": 1,
- "nPriceDen": 1,
- "nIsAsset": 0,
- "nIntrinsicValue": 52500,
- "nIsIndex": 0,
- "nFOExists": 1,
- "nCoCode": 0,
- "nSectorCode": 0,
- "nOtherExchToken": 0,
- "sSector": "",
- "nExpiryMonth": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59851",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1260.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1260,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59852",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "128000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0