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.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 63moons. |
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 63moons 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 63moons. |
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 63moons. |
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 63moons. |
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 63moons. |
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 63moons. |
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 63moons. |
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. |
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 63moons. |
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": { }
}
}
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 63moons. |
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. |
validity | |
Array of objects Invidiual leg details |
{- "type": "2L",
- "order_type": "RL-MKT",
- "validity": "IOC",
- "prot_perc": "",
- "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. |
validity | |
Array of objects Invidiual leg details |
{- "type": "2L",
- "validity": "IOC",
- "prot_perc": "",
- "order_time": 0,
- "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" "RUNNING" "COMPLETED" "CANCELLED" "STOPPED" 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 Example: RUNNING Current status of SIP |
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 |
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,
- "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 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. |
Mode | 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. |
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"
}
}
}
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.63moons.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.63moons.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.63moons.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.63moons.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.63moons.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,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59852,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1280.00 CE--ACC22MAY1280CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1280CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59852",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1280.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1280,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59853",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "128000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59853,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1280.00 PE--ACC22MAY1280PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1280PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59853",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1280.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1280,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59854",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "130000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59854,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1300.00 CE--ACC22MAY1300CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1300CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59854",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1300.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1300,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59855",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "130000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59855,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1300.00 PE--ACC22MAY1300PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1300PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59855",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1300.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1300,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59856",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "132000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59856,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1320.00 CE--ACC22MAY1320CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1320CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59856",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1320.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1320,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59857",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "132000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59857,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1320.00 PE--ACC22MAY1320PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1320PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59857",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1320.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1320,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59858",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "134000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59858,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1340.00 CE--ACC22MAY1340CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1340CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59858",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1340.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1340,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59859",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "134000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59859,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1340.00 PE--ACC22MAY1340PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1340PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59859",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1340.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1340,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59860",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59860,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1360.00 CE--ACC22MAY1360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1360CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59860",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59861",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59861,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1360.00 PE--ACC22MAY1360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1360PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59861",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59862",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59862,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1380.00 CE--ACC22MAY1380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1380CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59862",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59863",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59863,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1380.00 PE--ACC22MAY1380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1380PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59863",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59864",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59864,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1400.00 CE--ACC22MAY1400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1400CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59864",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59865",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59865,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1400.00 PE--ACC22MAY1400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1400PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59865",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59866",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59866,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1420.00 CE--ACC22MAY1420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1420CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59866",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59867",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59867,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1420.00 PE--ACC22MAY1420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1420PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59867",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59868",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59868,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1440.00 CE--ACC22MAY1440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1440CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59868",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59869",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59869,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1440.00 PE--ACC22MAY1440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1440PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59869",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59870",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59870,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1460.00 CE--ACC22MAY1460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1460CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59870",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59871",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59871,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1460.00 PE--ACC22MAY1460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1460PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59871",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59872",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59872,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1480.00 CE--ACC22MAY1480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1480CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59872",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59873",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59873,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1480.00 PE--ACC22MAY1480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1480PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59873",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59874",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59874,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1500.00 CE--ACC22MAY1500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1500CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59874",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59875",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59875,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1500.00 PE--ACC22MAY1500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1500PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59875",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59876",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59876,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1520.00 CE--ACC22MAY1520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1520CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59876",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59877",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59877,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1520.00 PE--ACC22MAY1520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1520PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59877",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59878",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59878,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1540.00 CE--ACC22MAY1540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1540CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59878",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59879",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59879,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1540.00 PE--ACC22MAY1540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1540PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59879",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59880",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59880,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1560.00 CE--ACC22MAY1560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1560CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59880",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59881",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59881,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1560.00 PE--ACC22MAY1560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1560PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59881",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59882",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59882,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1580.00 CE--ACC22MAY1580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1580CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59882",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59883",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59883,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1580.00 PE--ACC22MAY1580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1580PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59883",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59884",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59884,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1600.00 CE--ACC22MAY1600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1600CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59884",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59885",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59885,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1600.00 PE--ACC22MAY1600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1600PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59885",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59886",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59886,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1620.00 CE--ACC22MAY1620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1620CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59886",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59887",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59887,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1620.00 PE--ACC22MAY1620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1620PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59887",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59888",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59888,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1640.00 CE--ACC22MAY1640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1640CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59888",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59889",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59889,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1640.00 PE--ACC22MAY1640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1640PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59889",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59890",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59890,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1660.00 CE--ACC22MAY1660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1660CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59890",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-59891",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 59891,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1660.00 PE--ACC22MAY1660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1660PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-59891",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62663",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62663,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1680.00 CE--ACC22MAY1680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1680CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62663",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62664",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62664,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1680.00 PE--ACC22MAY1680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1680PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62664",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62665",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62665,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1700.00 CE--ACC22MAY1700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1700CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62665",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62666",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62666,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1700.00 PE--ACC22MAY1700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1700PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62666",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62667",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62667,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1720.00 CE--ACC22MAY1720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1720CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62667",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62668",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62668,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1720.00 PE--ACC22MAY1720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1720PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62668",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62669",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62669,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1740.00 CE--ACC22MAY1740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1740CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62669",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62670",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62670,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1740.00 PE--ACC22MAY1740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1740PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62670",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62671",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62671,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1760.00 CE--ACC22MAY1760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1760CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62671",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62672",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62672,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1760.00 PE--ACC22MAY1760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1760PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62672",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62673",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62673,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1780.00 CE--ACC22MAY1780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1780CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62673",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62674",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62674,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1780.00 PE--ACC22MAY1780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1780PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62674",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62675",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62675,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1800.00 CE--ACC22MAY1800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1800CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62675",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62676",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62676,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1800.00 PE--ACC22MAY1800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1800PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62676",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62677",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62677,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1820.00 CE--ACC22MAY1820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1820CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62677",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62678",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62678,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1820.00 PE--ACC22MAY1820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1820PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62678",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62679",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62679,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1840.00 CE--ACC22MAY1840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1840CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62679",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62680",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62680,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1840.00 PE--ACC22MAY1840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1840PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62680",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62681",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62681,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1860.00 CE--ACC22MAY1860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1860CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62681",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62682",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62682,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1860.00 PE--ACC22MAY1860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1860PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62682",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62683",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62683,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1880.00 CE--ACC22MAY1880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1880CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62683",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62684",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62684,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1880.00 PE--ACC22MAY1880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1880PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62684",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62685",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62685,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1900.00 CE--ACC22MAY1900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1900CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62685",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62686",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62686,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1900.00 PE--ACC22MAY1900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1900PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62686",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62687",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62687,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1920.00 CE--ACC22MAY1920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1920CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62687",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62688",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62688,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1920.00 PE--ACC22MAY1920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1920PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62688",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62689",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62689,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1940.00 CE--ACC22MAY1940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1940CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62689",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62690",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62690,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1940.00 PE--ACC22MAY1940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1940PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62690",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62691",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62691,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1960.00 CE--ACC22MAY1960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1960CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62691",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62692",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62692,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1960.00 PE--ACC22MAY1960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1960PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62692",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62693",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62693,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1980.00 CE--ACC22MAY1980CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1980CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62693",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1980.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1980,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62695",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62695,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 1980.00 PE--ACC22MAY1980PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY1980PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62695",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 1980.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 1980,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62696",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62696,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2000.00 CE--ACC22MAY2000CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2000CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62696",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2000.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2000,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62697",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62697,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2000.00 PE--ACC22MAY2000PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2000PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62697",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2000.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2000,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62698",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62698,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2020.00 CE--ACC22MAY2020CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2020CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62698",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2020.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2020,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62699",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62699,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2020.00 PE--ACC22MAY2020PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2020PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62699",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2020.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2020,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62700",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62700,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2040.00 CE--ACC22MAY2040CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2040CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62700",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2040.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2040,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62701",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62701,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2040.00 PE--ACC22MAY2040PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2040PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62701",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2040.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2040,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62702",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62702,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2060.00 CE--ACC22MAY2060CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2060CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62702",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2060.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2060,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62703",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62703,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2060.00 PE--ACC22MAY2060PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2060PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62703",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2060.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2060,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62704",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62704,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2080.00 CE--ACC22MAY2080CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2080CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62704",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2080.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2080,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62705",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62705,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2080.00 PE--ACC22MAY2080PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2080PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62705",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2080.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2080,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62706",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62706,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2100.00 CE--ACC22MAY2100CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2100CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62706",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2100.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2100,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62707",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62707,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2100.00 PE--ACC22MAY2100PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2100PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62707",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2100.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2100,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62708",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62708,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2120.00 CE--ACC22MAY2120CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2120CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62708",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2120.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2120,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62709",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62709,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2120.00 PE--ACC22MAY2120PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2120PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62709",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2120.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2120,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62710",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62710,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2140.00 CE--ACC22MAY2140CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2140CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62710",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2140.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2140,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62711",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62711,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2140.00 PE--ACC22MAY2140PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2140PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62711",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2140.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2140,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62712",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62712,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2160.00 CE--ACC22MAY2160CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2160CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62712",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2160.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2160,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62713",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62713,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2160.00 PE--ACC22MAY2160PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2160PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62713",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2160.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2160,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62714",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62714,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2180.00 CE--ACC22MAY2180CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2180CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62714",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2180.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2180,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62715",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62715,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2180.00 PE--ACC22MAY2180PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2180PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62715",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2180.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2180,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62716",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62716,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2200.00 CE--ACC22MAY2200CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2200CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62716",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2200.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2200,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62717",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62717,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2200.00 PE--ACC22MAY2200PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2200PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62717",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2200.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2200,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62718",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62718,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2220.00 CE--ACC22MAY2220CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2220CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62718",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2220.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2220,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62719",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62719,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2220.00 PE--ACC22MAY2220PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2220PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62719",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2220.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2220,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62720",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62720,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2240.00 CE--ACC22MAY2240CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2240CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62720",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2240.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2240,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62721",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62721,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2240.00 PE--ACC22MAY2240PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2240PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62721",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2240.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2240,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62722",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62722,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2260.00 CE--ACC22MAY2260CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2260CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62722",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2260.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2260,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62723",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62723,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2260.00 PE--ACC22MAY2260PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2260PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62723",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2260.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2260,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62724",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62724,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2280.00 CE--ACC22MAY2280CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2280CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62724",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2280.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2280,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62725",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62725,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2280.00 PE--ACC22MAY2280PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2280PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62725",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2280.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2280,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62726",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62726,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2300.00 CE--ACC22MAY2300CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2300CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62726",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2300.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2300,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62727",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62727,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2300.00 PE--ACC22MAY2300PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2300PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62727",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2300.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2300,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62728",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62728,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2320.00 CE--ACC22MAY2320CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2320CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62728",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2320.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2320,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62729",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62729,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2320.00 PE--ACC22MAY2320PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2320PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62729",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2320.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2320,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62730",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62730,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2340.00 CE--ACC22MAY2340CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2340CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62730",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2340.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2340,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62731",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62731,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2340.00 PE--ACC22MAY2340PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2340PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62731",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2340.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2340,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62732",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62732,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2360.00 CE--ACC22MAY2360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2360CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62732",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62733",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62733,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2360.00 PE--ACC22MAY2360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2360PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62733",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62734",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62734,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2380.00 CE--ACC22MAY2380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2380CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62734",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62735",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62735,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2380.00 PE--ACC22MAY2380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2380PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62735",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62736",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62736,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2400.00 CE--ACC22MAY2400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2400CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62736",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62737",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62737,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2400.00 PE--ACC22MAY2400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2400PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62737",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62738",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62738,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2420.00 CE--ACC22MAY2420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2420CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62738",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62739",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62739,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2420.00 PE--ACC22MAY2420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2420PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62739",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62740",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62740,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2440.00 CE--ACC22MAY2440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2440CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62740",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62741",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62741,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2440.00 PE--ACC22MAY2440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2440PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62741",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62742",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62742,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2460.00 CE--ACC22MAY2460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2460CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62742",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62743",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62743,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2460.00 PE--ACC22MAY2460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2460PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62743",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62744",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62744,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2480.00 CE--ACC22MAY2480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2480CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62744",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62745",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62745,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2480.00 PE--ACC22MAY2480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2480PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62745",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62746",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62746,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2500.00 CE--ACC22MAY2500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2500CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62746",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62747",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62747,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2500.00 PE--ACC22MAY2500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2500PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62747",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62756",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62756,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2520.00 CE--ACC22MAY2520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2520CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62756",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62757",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62757,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2520.00 PE--ACC22MAY2520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2520PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62757",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62758",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62758,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2540.00 CE--ACC22MAY2540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2540CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62758",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62759",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62759,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2540.00 PE--ACC22MAY2540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2540PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62759",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62763",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62763,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2560.00 CE--ACC22MAY2560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2560CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62763",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62767",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62767,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2560.00 PE--ACC22MAY2560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2560PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62767",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62768",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62768,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2580.00 CE--ACC22MAY2580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2580CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62768",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62769",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62769,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2580.00 PE--ACC22MAY2580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2580PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62769",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62770",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62770,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2600.00 CE--ACC22MAY2600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2600CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62770",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62771",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62771,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2600.00 PE--ACC22MAY2600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2600PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62771",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62772",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62772,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2620.00 CE--ACC22MAY2620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2620CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62772",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62773",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62773,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2620.00 PE--ACC22MAY2620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2620PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62773",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62774",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62774,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2640.00 CE--ACC22MAY2640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2640CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62774",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62794",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62794,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2640.00 PE--ACC22MAY2640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2640PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62794",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62795",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62795,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2660.00 CE--ACC22MAY2660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2660CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62795",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62797",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62797,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2660.00 PE--ACC22MAY2660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2660PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62797",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62798",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62798,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2680.00 CE--ACC22MAY2680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2680CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62798",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62799",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62799,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2680.00 PE--ACC22MAY2680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2680PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62799",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62800",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62800,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2700.00 CE--ACC22MAY2700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2700CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62800",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62801",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62801,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2700.00 PE--ACC22MAY2700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2700PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62801",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62802",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62802,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2720.00 CE--ACC22MAY2720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2720CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62802",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62804",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62804,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2720.00 PE--ACC22MAY2720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2720PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62804",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62805",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62805,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2740.00 CE--ACC22MAY2740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2740CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62805",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62806",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62806,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2740.00 PE--ACC22MAY2740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2740PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62806",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62807",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62807,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2760.00 CE--ACC22MAY2760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2760CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62807",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62808",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62808,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2760.00 PE--ACC22MAY2760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2760PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62808",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62809",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62809,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2780.00 CE--ACC22MAY2780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2780CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62809",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62810",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62810,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2780.00 PE--ACC22MAY2780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2780PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62810",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62861",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62861,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2800.00 CE--ACC22MAY2800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2800CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62861",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62862",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62862,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2800.00 PE--ACC22MAY2800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2800PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62862",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62863",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62863,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2820.00 CE--ACC22MAY2820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2820CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62863",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-62864",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 62864,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2820.00 PE--ACC22MAY2820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2820PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-62864",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35267",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35267,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2840.00 CE--ACC22MAY2840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2840CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-35267",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35268",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35268,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2840.00 PE--ACC22MAY2840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2840PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-35268",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35269",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35269,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2860.00 CE--ACC22MAY2860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2860CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-35269",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-35273",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 35273,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2860.00 PE--ACC22MAY2860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2860PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-35273",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-39383",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 39383,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2880.00 CE--ACC22MAY2880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2880CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-39383",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-39384",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 39384,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2880.00 PE--ACC22MAY2880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2880PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-39384",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47153",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47153,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2900.00 CE--ACC22MAY2900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2900CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47153",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47154",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47154,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2900.00 PE--ACC22MAY2900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2900PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47154",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47160",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47160,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2920.00 CE--ACC22MAY2920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2920CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47160",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47161",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47161,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2920.00 PE--ACC22MAY2920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2920PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47161",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47615",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47615,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2940.00 CE--ACC22MAY2940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2940CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47615",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47620",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47620,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2940.00 PE--ACC22MAY2940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2940PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47620",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47621",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47621,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2960.00 CE--ACC22MAY2960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2960CE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47621",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-47622",
- "_score": null,
- "_source": {
- "exp": "2022-05-26T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1338042600,
- "nExpiryDate1": "26MAY2022",
- "nExpiryDate2": "MAY26",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 47622,
- "sDerivitiveDesc": "ACC LIMITED--ACC--MAY26 2960.00 PE--ACC22MAY2960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22MAY2960PE",
- "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": 2,
- "nIssueMaturityDate": 1338042600,
- "nIsSIP": 0,
- "id": "2-47622",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE MAY 26MAY2022 OPT 2960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1338042600,
- 2960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57838",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57838,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1360.00 CE--ACC22JUN1360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1360CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57838",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57839",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "136000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57839,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1360.00 PE--ACC22JUN1360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1360PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57839",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57842",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57842,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1380.00 CE--ACC22JUN1380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1380CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57842",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57843",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "138000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57843,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1380.00 PE--ACC22JUN1380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1380PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57843",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57844",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57844,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1400.00 CE--ACC22JUN1400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1400CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57844",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57845",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "140000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57845,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1400.00 PE--ACC22JUN1400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1400PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57845",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57848",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57848,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1420.00 CE--ACC22JUN1420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1420CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57848",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57849",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "142000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57849,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1420.00 PE--ACC22JUN1420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1420PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57849",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57850",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57850,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1440.00 CE--ACC22JUN1440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1440CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57850",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57851",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "144000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57851,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1440.00 PE--ACC22JUN1440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1440PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57851",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57856",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57856,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1460.00 CE--ACC22JUN1460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1460CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57856",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57857",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "146000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57857,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1460.00 PE--ACC22JUN1460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1460PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57857",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57858",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57858,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1480.00 CE--ACC22JUN1480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1480CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57858",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57859",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "148000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57859,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1480.00 PE--ACC22JUN1480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1480PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57859",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57862",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57862,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1500.00 CE--ACC22JUN1500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1500CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57862",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57863",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "150000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57863,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1500.00 PE--ACC22JUN1500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1500PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57863",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57864",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57864,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1520.00 CE--ACC22JUN1520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1520CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57864",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57865",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "152000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57865,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1520.00 PE--ACC22JUN1520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1520PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57865",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57868",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57868,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1540.00 CE--ACC22JUN1540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1540CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57868",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57869",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "154000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57869,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1540.00 PE--ACC22JUN1540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1540PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57869",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57870",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57870,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1560.00 CE--ACC22JUN1560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1560CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57870",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57871",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "156000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57871,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1560.00 PE--ACC22JUN1560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1560PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57871",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57872",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57872,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1580.00 CE--ACC22JUN1580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1580CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57872",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57873",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "158000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57873,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1580.00 PE--ACC22JUN1580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1580PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57873",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57874",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57874,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1600.00 CE--ACC22JUN1600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1600CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57874",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57875",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "160000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57875,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1600.00 PE--ACC22JUN1600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1600PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57875",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57876",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57876,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1620.00 CE--ACC22JUN1620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1620CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57876",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57877",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "162000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57877,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1620.00 PE--ACC22JUN1620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1620PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57877",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57882",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57882,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1640.00 CE--ACC22JUN1640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1640CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57882",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57883",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "164000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57883,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1640.00 PE--ACC22JUN1640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1640PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57883",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57884",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57884,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1660.00 CE--ACC22JUN1660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1660CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57884",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57885",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "166000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57885,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1660.00 PE--ACC22JUN1660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1660PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57885",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57886",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57886,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1680.00 CE--ACC22JUN1680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1680CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57886",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57887",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "168000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57887,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1680.00 PE--ACC22JUN1680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1680PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57887",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57888",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57888,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1700.00 CE--ACC22JUN1700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1700CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57888",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57889",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "170000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57889,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1700.00 PE--ACC22JUN1700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1700PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57889",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57890",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57890,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1720.00 CE--ACC22JUN1720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1720CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57890",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57891",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "172000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57891,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1720.00 PE--ACC22JUN1720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1720PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57891",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57892",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57892,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1740.00 CE--ACC22JUN1740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1740CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57892",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57893",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "174000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57893,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1740.00 PE--ACC22JUN1740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1740PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57893",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57896",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57896,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1760.00 CE--ACC22JUN1760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1760CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57896",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57897",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "176000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57897,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1760.00 PE--ACC22JUN1760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1760PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57897",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57898",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57898,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1780.00 CE--ACC22JUN1780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1780CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57898",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57899",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "178000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57899,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1780.00 PE--ACC22JUN1780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1780PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57899",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57900",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57900,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1800.00 CE--ACC22JUN1800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1800CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57900",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57901",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "180000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57901,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1800.00 PE--ACC22JUN1800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1800PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57901",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57902",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57902,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1820.00 CE--ACC22JUN1820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1820CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57902",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57903",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "182000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57903,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1820.00 PE--ACC22JUN1820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1820PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57903",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57906",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57906,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1840.00 CE--ACC22JUN1840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1840CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57906",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57907",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "184000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57907,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1840.00 PE--ACC22JUN1840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1840PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57907",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57910",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57910,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1860.00 CE--ACC22JUN1860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1860CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57910",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57911",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "186000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57911,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1860.00 PE--ACC22JUN1860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1860PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57911",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57912",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57912,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1880.00 CE--ACC22JUN1880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1880CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57912",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57913",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "188000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57913,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1880.00 PE--ACC22JUN1880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1880PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57913",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57916",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57916,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1900.00 CE--ACC22JUN1900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1900CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57916",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57917",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "190000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57917,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1900.00 PE--ACC22JUN1900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1900PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57917",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57923",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57923,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1920.00 CE--ACC22JUN1920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1920CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57923",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57947",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "192000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57947,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1920.00 PE--ACC22JUN1920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1920PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57947",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57979",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57979,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1940.00 CE--ACC22JUN1940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1940CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57979",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57980",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "194000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57980,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1940.00 PE--ACC22JUN1940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1940PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57980",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57981",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57981,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1960.00 CE--ACC22JUN1960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1960CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57981",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57983",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "196000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57983,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1960.00 PE--ACC22JUN1960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1960PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57983",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57984",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57984,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1980.00 CE--ACC22JUN1980CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1980CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57984",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1980.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1980,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57998",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "198000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57998,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 1980.00 PE--ACC22JUN1980PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN1980PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57998",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 1980.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 1980,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-57999",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 57999,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2000.00 CE--ACC22JUN2000CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2000CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-57999",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2000.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2000,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58011",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "200000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58011,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2000.00 PE--ACC22JUN2000PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2000PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58011",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2000.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2000,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58012",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58012,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2020.00 CE--ACC22JUN2020CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2020CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58012",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2020.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2020,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58013",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "202000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58013,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2020.00 PE--ACC22JUN2020PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2020PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58013",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2020.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2020,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58020",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58020,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2040.00 CE--ACC22JUN2040CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2040CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58020",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2040.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2040,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58025",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "204000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58025,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2040.00 PE--ACC22JUN2040PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2040PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58025",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2040.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2040,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58029",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58029,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2060.00 CE--ACC22JUN2060CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2060CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58029",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2060.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2060,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58030",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "206000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58030,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2060.00 PE--ACC22JUN2060PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2060PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58030",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2060.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2060,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58031",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58031,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2080.00 CE--ACC22JUN2080CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2080CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58031",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2080.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2080,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58032",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "208000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58032,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2080.00 PE--ACC22JUN2080PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2080PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58032",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2080.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2080,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58033",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58033,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2100.00 CE--ACC22JUN2100CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2100CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58033",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2100.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2100,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58034",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "210000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58034,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2100.00 PE--ACC22JUN2100PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2100PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58034",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2100.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2100,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58035",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58035,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2120.00 CE--ACC22JUN2120CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2120CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58035",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2120.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2120,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58036",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "212000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58036,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2120.00 PE--ACC22JUN2120PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2120PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58036",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2120.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2120,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58037",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58037,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2140.00 CE--ACC22JUN2140CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2140CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58037",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2140.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2140,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58038",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "214000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58038,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2140.00 PE--ACC22JUN2140PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2140PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58038",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2140.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2140,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58043",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58043,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2160.00 CE--ACC22JUN2160CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2160CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58043",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2160.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2160,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58066",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "216000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58066,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2160.00 PE--ACC22JUN2160PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2160PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58066",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2160.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2160,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58067",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58067,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2180.00 CE--ACC22JUN2180CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2180CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58067",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2180.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2180,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58068",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "218000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58068,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2180.00 PE--ACC22JUN2180PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2180PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58068",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2180.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2180,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58069",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58069,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2200.00 CE--ACC22JUN2200CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2200CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58069",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2200.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2200,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58096",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "220000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58096,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2200.00 PE--ACC22JUN2200PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2200PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58096",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2200.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2200,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58117",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58117,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2220.00 CE--ACC22JUN2220CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2220CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58117",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2220.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2220,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58137",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "222000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58137,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2220.00 PE--ACC22JUN2220PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2220PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58137",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2220.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2220,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58220",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58220,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2240.00 CE--ACC22JUN2240CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2240CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58220",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2240.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2240,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58225",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "224000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58225,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2240.00 PE--ACC22JUN2240PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2240PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58225",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2240.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2240,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58226",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58226,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2260.00 CE--ACC22JUN2260CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2260CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58226",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2260.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2260,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58229",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "226000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58229,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2260.00 PE--ACC22JUN2260PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2260PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58229",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2260.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2260,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58230",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58230,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2280.00 CE--ACC22JUN2280CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2280CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58230",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2280.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2280,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58238",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "228000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58238,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2280.00 PE--ACC22JUN2280PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2280PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58238",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2280.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2280,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58239",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58239,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2300.00 CE--ACC22JUN2300CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2300CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58239",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2300.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2300,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58240",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "230000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58240,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2300.00 PE--ACC22JUN2300PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2300PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58240",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2300.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2300,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58241",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58241,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2320.00 CE--ACC22JUN2320CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2320CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58241",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2320.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2320,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58243",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "232000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58243,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2320.00 PE--ACC22JUN2320PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2320PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58243",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2320.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2320,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58244",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58244,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2340.00 CE--ACC22JUN2340CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2340CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58244",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2340.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2340,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58245",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "234000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58245,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2340.00 PE--ACC22JUN2340PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2340PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58245",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2340.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2340,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58246",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58246,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2360.00 CE--ACC22JUN2360CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2360CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58246",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2360.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2360,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58247",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "236000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58247,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2360.00 PE--ACC22JUN2360PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2360PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58247",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2360.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2360,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58248",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58248,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2380.00 CE--ACC22JUN2380CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2380CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58248",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2380.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2380,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58249",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "238000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58249,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2380.00 PE--ACC22JUN2380PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2380PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58249",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2380.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2380,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58250",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58250,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2400.00 CE--ACC22JUN2400CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2400CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58250",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2400.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2400,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58251",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "240000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58251,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2400.00 PE--ACC22JUN2400PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2400PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58251",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2400.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2400,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58252",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58252,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2420.00 CE--ACC22JUN2420CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2420CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58252",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2420.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2420,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58253",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "242000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58253,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2420.00 PE--ACC22JUN2420PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2420PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58253",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2420.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2420,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58254",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58254,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2440.00 CE--ACC22JUN2440CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2440CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58254",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2440.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2440,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58255",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "244000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58255,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2440.00 PE--ACC22JUN2440PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2440PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58255",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2440.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2440,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58256",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58256,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2460.00 CE--ACC22JUN2460CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2460CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58256",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2460.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2460,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58257",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "246000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58257,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2460.00 PE--ACC22JUN2460PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2460PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58257",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2460.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2460,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58258",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58258,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2480.00 CE--ACC22JUN2480CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2480CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58258",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2480.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2480,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58259",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "248000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58259,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2480.00 PE--ACC22JUN2480PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2480PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58259",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2480.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2480,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58260",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58260,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2500.00 CE--ACC22JUN2500CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2500CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58260",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2500.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2500,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58261",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "250000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58261,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2500.00 PE--ACC22JUN2500PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2500PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58261",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2500.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2500,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58262",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58262,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2520.00 CE--ACC22JUN2520CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2520CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58262",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2520.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2520,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58263",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "252000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58263,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2520.00 PE--ACC22JUN2520PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2520PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58263",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2520.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2520,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58268",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58268,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2540.00 CE--ACC22JUN2540CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2540CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58268",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2540.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2540,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58271",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "254000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58271,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2540.00 PE--ACC22JUN2540PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2540PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58271",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2540.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2540,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58272",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58272,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2560.00 CE--ACC22JUN2560CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2560CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58272",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2560.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2560,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58273",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "256000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58273,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2560.00 PE--ACC22JUN2560PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2560PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58273",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2560.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2560,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58289",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58289,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2580.00 CE--ACC22JUN2580CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2580CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58289",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2580.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2580,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58290",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "258000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58290,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2580.00 PE--ACC22JUN2580PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2580PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58290",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2580.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2580,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58325",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58325,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2600.00 CE--ACC22JUN2600CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2600CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58325",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2600.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2600,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58326",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "260000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58326,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2600.00 PE--ACC22JUN2600PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2600PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58326",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2600.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2600,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58327",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58327,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2620.00 CE--ACC22JUN2620CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2620CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58327",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2620.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2620,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58328",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "262000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58328,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2620.00 PE--ACC22JUN2620PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2620PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58328",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2620.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2620,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58329",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58329,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2640.00 CE--ACC22JUN2640CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2640CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58329",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2640.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2640,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58330",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "264000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58330,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2640.00 PE--ACC22JUN2640PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2640PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58330",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2640.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2640,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58331",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58331,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2660.00 CE--ACC22JUN2660CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2660CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58331",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2660.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2660,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58332",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "266000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58332,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2660.00 PE--ACC22JUN2660PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2660PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58332",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2660.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2660,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58335",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58335,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2680.00 CE--ACC22JUN2680CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2680CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58335",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2680.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2680,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58336",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "268000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58336,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2680.00 PE--ACC22JUN2680PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2680PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58336",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2680.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2680,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58341",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58341,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2700.00 CE--ACC22JUN2700CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2700CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58341",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2700.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2700,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58347",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "270000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58347,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2700.00 PE--ACC22JUN2700PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2700PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58347",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2700.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2700,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58349",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58349,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2720.00 CE--ACC22JUN2720CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2720CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58349",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2720.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2720,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58350",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "272000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58350,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2720.00 PE--ACC22JUN2720PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2720PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58350",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2720.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2720,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58351",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58351,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2740.00 CE--ACC22JUN2740CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2740CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58351",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2740.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2740,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58359",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "274000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58359,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2740.00 PE--ACC22JUN2740PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2740PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58359",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2740.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2740,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58360",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58360,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2760.00 CE--ACC22JUN2760CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2760CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58360",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2760.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2760,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58361",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "276000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58361,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2760.00 PE--ACC22JUN2760PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2760PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58361",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2760.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2760,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58362",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58362,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2780.00 CE--ACC22JUN2780CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2780CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58362",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2780.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2780,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58365",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "278000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58365,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2780.00 PE--ACC22JUN2780PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2780PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58365",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2780.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2780,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58366",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58366,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2800.00 CE--ACC22JUN2800CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2800CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58366",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2800.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2800,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58367",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "280000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58367,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2800.00 PE--ACC22JUN2800PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2800PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58367",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2800.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2800,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58368",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58368,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2820.00 CE--ACC22JUN2820CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2820CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58368",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2820.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2820,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58371",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "282000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58371,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2820.00 PE--ACC22JUN2820PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2820PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58371",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2820.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2820,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58372",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58372,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2840.00 CE--ACC22JUN2840CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2840CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58372",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2840.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2840,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58373",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "284000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58373,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2840.00 PE--ACC22JUN2840PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2840PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58373",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2840.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2840,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58376",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58376,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2860.00 CE--ACC22JUN2860CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2860CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58376",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2860.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2860,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58377",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "286000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58377,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2860.00 PE--ACC22JUN2860PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2860PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58377",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2860.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2860,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58378",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58378,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2880.00 CE--ACC22JUN2880CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2880CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58378",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2880.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2880,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58379",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "288000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58379,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2880.00 PE--ACC22JUN2880PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2880PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58379",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2880.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2880,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58380",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58380,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2900.00 CE--ACC22JUN2900CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2900CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58380",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2900.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2900,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58381",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "290000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58381,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2900.00 PE--ACC22JUN2900PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2900PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58381",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2900.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2900,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58382",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58382,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2920.00 CE--ACC22JUN2920CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2920CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58382",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2920.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2920,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58383",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "292000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58383,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2920.00 PE--ACC22JUN2920PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2920PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58383",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2920.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2920,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58384",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58384,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2940.00 CE--ACC22JUN2940CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2940CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58384",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2940.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2940,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58385",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "294000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58385,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2940.00 PE--ACC22JUN2940PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2940PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58385",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2940.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2940,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58391",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "CE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58391,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2960.00 CE--ACC22JUN2960CE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2960CE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58391",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2960.00 CALL CE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2960,
- "ce",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "2-58392",
- "_score": null,
- "_source": {
- "exp": "2022-06-30T14:30:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "PE",
- "nStrikePrice": "296000",
- "nExpiryDate": 1341066600,
- "nExpiryDate1": "30JUN2022",
- "nExpiryDate2": "JUN30",
- "nAssetToken": 22,
- "nInstrumentType": 0,
- "nMarketSegmentId": 2,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 250,
- "nToken": 58392,
- "sDerivitiveDesc": "ACC LIMITED--ACC--JUN30 2960.00 PE--ACC22JUN2960PE--ACC--NSE F&O",
- "sInstrumentName": "OPTSTK",
- "sSecurityDesc": "ACC22JUN2960PE",
- "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": 3,
- "nIssueMaturityDate": 1341066600,
- "nIsSIP": 0,
- "id": "2-58392",
- "sExchange": "NSE",
- "sSearchText": "ACC ACCLIMITED NSE JUN 30JUN2022 OPT 2960.00 PUT PE",
- "sSymbolnew": "ACC"
}, - "sort": [
- 13,
- 1,
- 99,
- 4,
- 1,
- 1341066600,
- 2960,
- "pe",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150739",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150739,
- "sDerivitiveDesc": "ACC A1--ACC A1--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "A1",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 1,
- "nSpread": 0,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-150739",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE A1",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150740",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150740,
- "sDerivitiveDesc": "ACC A2--ACC A2--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "A2",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 1,
- "nSpread": 0,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-150740",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE A2",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-153979",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 153979,
- "sDerivitiveDesc": "ACC AM--ACC AM--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "AM",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 1,
- "nSpread": 0,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-153979",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE AM",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-153980",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 153980,
- "sDerivitiveDesc": "ACC AJ--ACC AJ--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "AJ",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 1,
- "nSpread": 0,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 0,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-153980",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE AJ",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 1,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150051",
- "_score": null,
- "_source": {
- "exp": "2023-03-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02MAR2023",
- "nExpiryDate2": "MAR02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150051,
- "sDerivitiveDesc": "ACC 03--ACC 03--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "03",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153977,
- "nFIILimit": 153978,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1362182400,
- "nIsSIP": 0,
- "id": "8192-150051",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 03",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150052",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150052,
- "sDerivitiveDesc": "ACC 04--ACC 04--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "04",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153979,
- "nFIILimit": 153980,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-150052",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 04",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150049",
- "_score": null,
- "_source": {
- "exp": "2023-01-05T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "05JAN2023",
- "nExpiryDate2": "JAN05",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150049,
- "sDerivitiveDesc": "ACC 01--ACC 01--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "01",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153973,
- "nFIILimit": 153974,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1357344000,
- "nIsSIP": 0,
- "id": "8192-150049",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 01",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150050",
- "_score": null,
- "_source": {
- "exp": "2023-02-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02FEB2023",
- "nExpiryDate2": "FEB02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150050,
- "sDerivitiveDesc": "ACC 02--ACC 02--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "02",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153975,
- "nFIILimit": 153976,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1359763200,
- "nIsSIP": 0,
- "id": "8192-150050",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 02",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150053",
- "_score": null,
- "_source": {
- "exp": "2022-05-05T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "05MAY2022",
- "nExpiryDate2": "MAY05",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150053,
- "sDerivitiveDesc": "ACC 05--ACC 05--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "05",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153981,
- "nFIILimit": 153982,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1336176000,
- "nIsSIP": 0,
- "id": "8192-150053",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 05",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150057",
- "_score": null,
- "_source": {
- "exp": "2022-09-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "01SEP2022",
- "nExpiryDate2": "SEP01",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150057,
- "sDerivitiveDesc": "ACC 09--ACC 09--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "09",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153989,
- "nFIILimit": 153990,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1346457600,
- "nIsSIP": 0,
- "id": "8192-150057",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 09",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150058",
- "_score": null,
- "_source": {
- "exp": "2022-10-06T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "06OCT2022",
- "nExpiryDate2": "OCT06",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150058,
- "sDerivitiveDesc": "ACC 10--ACC 10--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "10",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1349481600,
- "nIsSIP": 0,
- "id": "8192-150058",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 10",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150059",
- "_score": null,
- "_source": {
- "exp": "2022-11-03T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "03NOV2022",
- "nExpiryDate2": "NOV03",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150059,
- "sDerivitiveDesc": "ACC 11--ACC 11--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "11",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153993,
- "nFIILimit": 153994,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1351900800,
- "nIsSIP": 0,
- "id": "8192-150059",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 11",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150060",
- "_score": null,
- "_source": {
- "exp": "2022-12-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "01DEC2022",
- "nExpiryDate2": "DEC01",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150060,
- "sDerivitiveDesc": "ACC 12--ACC 12--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "12",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153995,
- "nFIILimit": 153996,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1354320000,
- "nIsSIP": 0,
- "id": "8192-150060",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 12",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150055",
- "_score": null,
- "_source": {
- "exp": "2022-07-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07JUL2022",
- "nExpiryDate2": "JUL07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150055,
- "sDerivitiveDesc": "ACC 07--ACC 07--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "07",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153985,
- "nFIILimit": 153986,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1341619200,
- "nIsSIP": 0,
- "id": "8192-150055",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 07",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150056",
- "_score": null,
- "_source": {
- "exp": "2022-08-04T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "04AUG2022",
- "nExpiryDate2": "AUG04",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150056,
- "sDerivitiveDesc": "ACC 08--ACC 08--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "08",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153987,
- "nFIILimit": 153988,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1344038400,
- "nIsSIP": 0,
- "id": "8192-150056",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 08",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150054",
- "_score": null,
- "_source": {
- "exp": "2022-06-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02JUN2022",
- "nExpiryDate2": "JUN02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150054,
- "sDerivitiveDesc": "ACC 06--ACC 06--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "06",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 153983,
- "nFIILimit": 153984,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1338595200,
- "nIsSIP": 0,
- "id": "8192-150054",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE 06",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150722",
- "_score": null,
- "_source": {
- "exp": "2023-02-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02FEB2023",
- "nExpiryDate2": "FEB02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150722,
- "sDerivitiveDesc": "ACC X2--ACC X2--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X2",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150735,
- "nFIILimit": 150736,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1359763200,
- "nIsSIP": 0,
- "id": "8192-150722",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X2",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150725",
- "_score": null,
- "_source": {
- "exp": "2022-05-05T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "05MAY2022",
- "nExpiryDate2": "MAY05",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150725,
- "sDerivitiveDesc": "ACC X5--ACC X5--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X5",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150741,
- "nFIILimit": 150742,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1336176000,
- "nIsSIP": 0,
- "id": "8192-150725",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X5",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150728",
- "_score": null,
- "_source": {
- "exp": "2022-08-04T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "04AUG2022",
- "nExpiryDate2": "AUG04",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150728,
- "sDerivitiveDesc": "ACC X8--ACC X8--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X8",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150807,
- "nFIILimit": 150808,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1344038400,
- "nIsSIP": 0,
- "id": "8192-150728",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X8",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150729",
- "_score": null,
- "_source": {
- "exp": "2022-09-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "01SEP2022",
- "nExpiryDate2": "SEP01",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150729,
- "sDerivitiveDesc": "ACC X9--ACC X9--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X9",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150809,
- "nFIILimit": 150810,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1346457600,
- "nIsSIP": 0,
- "id": "8192-150729",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X9",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150721",
- "_score": null,
- "_source": {
- "exp": "2023-01-05T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "05JAN2023",
- "nExpiryDate2": "JAN05",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150721,
- "sDerivitiveDesc": "ACC X1--ACC X1--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X1",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150733,
- "nFIILimit": 150734,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1357344000,
- "nIsSIP": 0,
- "id": "8192-150721",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X1",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150723",
- "_score": null,
- "_source": {
- "exp": "2023-03-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02MAR2023",
- "nExpiryDate2": "MAR02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150723,
- "sDerivitiveDesc": "ACC X3--ACC X3--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X3",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150737,
- "nFIILimit": 150738,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1362182400,
- "nIsSIP": 0,
- "id": "8192-150723",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X3",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150724",
- "_score": null,
- "_source": {
- "exp": "2022-04-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07APR2022",
- "nExpiryDate2": "APR07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150724,
- "sDerivitiveDesc": "ACC X4--ACC X4--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X4",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150739,
- "nFIILimit": 150740,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1333756800,
- "nIsSIP": 0,
- "id": "8192-150724",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X4",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150727",
- "_score": null,
- "_source": {
- "exp": "2022-07-07T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "07JUL2022",
- "nExpiryDate2": "JUL07",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150727,
- "sDerivitiveDesc": "ACC X7--ACC X7--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X7",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150805,
- "nFIILimit": 150806,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1341619200,
- "nIsSIP": 0,
- "id": "8192-150727",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X7",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150726",
- "_score": null,
- "_source": {
- "exp": "2022-06-02T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "02JUN2022",
- "nExpiryDate2": "JUN02",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150726,
- "sDerivitiveDesc": "ACC X6--ACC X6--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "X6",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150743,
- "nFIILimit": 150744,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1338595200,
- "nIsSIP": 0,
- "id": "8192-150726",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE X6",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150731",
- "_score": null,
- "_source": {
- "exp": "2022-11-03T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "03NOV2022",
- "nExpiryDate2": "NOV03",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150731,
- "sDerivitiveDesc": "ACC XN--ACC XN--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "XN",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150813,
- "nFIILimit": 150814,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1351900800,
- "nIsSIP": 0,
- "id": "8192-150731",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE XN",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150730",
- "_score": null,
- "_source": {
- "exp": "2022-10-06T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "06OCT2022",
- "nExpiryDate2": "OCT06",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150730,
- "sDerivitiveDesc": "ACC XO--ACC XO--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "XO",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150811,
- "nFIILimit": 150812,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1349481600,
- "nIsSIP": 0,
- "id": "8192-150730",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE XO",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8192-150732",
- "_score": null,
- "_source": {
- "exp": "2022-12-01T00:00:00.000Z",
- "sSymbol": "ACC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "01DEC2022",
- "nExpiryDate2": "DEC01",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8192,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 150732,
- "sDerivitiveDesc": "ACC XD--ACC XD--ACC LIMITED--NSE SLBM",
- "sInstrumentName": " ",
- "sSecurityDesc": "ACC LIMITED",
- "sSeries": "XD",
- "nSPOS": 0,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 150815,
- "nFIILimit": 150816,
- "nPriceTick": 1,
- "nSpread": 2,
- "sISINCode": "22",
- "sGlobalNormalFlag": "0",
- "nStrikePrice1": "",
- "nFIIFlag": 1,
- "nMarginTypeIndicator": 0,
- "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": 1354320000,
- "nIsSIP": 0,
- "id": "8192-150732",
- "sExchange": "DSE",
- "sSearchText": "ACC ACC LIMITED DSE XD",
- "sSymbolnew": "ACC"
}, - "sort": [
- 99,
- 1,
- 15,
- 10,
- 3,
- 0,
- 0,
- "",
- "acc"
]
}
]
}
}
}
This call would return back the Security info data for a particular scrip. ( Viz... Symbol, series, ISIN Code, Instrument type, etc..)
tenantid required | string |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
mktSegmentId | string Market segment ID of the scrip/contract |
token | string Scrip token of the scrip available in the exchange scrip master file |
{- "mktSegmentId": "1",
- "token": "1594"
}
{- "status": true,
- "result": {
- "secInfo": [
- {
- "nToken": 1594,
- "sSymbol": "INFY ",
- "sSeries": "EQ ",
- "sSecurityDesc": "INFOSYS LIMITED ",
- "sISINCode": "INE009A01021 ",
- "nInstrumentType": "EQUITY",
- "nRegularLot": 1,
- "nPriceTick": 5,
- "nIssuedCapital": 4261425295,
- "nFreezePercent": 12,
- "nFaceValue": 500,
- "nAVMBuyMargin": 0,
- "nAVMSellMargin": 0,
- "nBookClosureEndDate": 0,
- "nBookClosureStartDate": 0,
- "nNoDeliveryStartDate": 0,
- "nNoDeliveryEndDate": 0,
- "sRemarks": "Dividend INTDIV - RS 15 PER SH ",
- "nRecordDate": 1319760000,
- "nExDate": 1319673600,
- "nIntrinsicValue": 1,
- "nMarginMultiplier": 0,
- "nPriceQuotFactor": 0,
- "nNormal_SecurityStatus": "Yes",
- "SPOS": 12,
- "SPOSTYPE": 0,
- "CouponRate": 2,
- "DaysInYear": 0,
- "DaysInMonth": null,
- "CouponFrequency": "",
- "MathcingType": 0,
- "ValueMethod": "Existing",
- "LastInterestPaymentDate": "01 Jan 1980",
- "NextInterestPaymentDate": "01 Jan 1980",
- "MaturityDate": "01 Jan 1980",
- "InstrumentCode": 1594,
- "Status": "Active",
- "SettlementType": 0,
- "CreditRating": "- - "
}
], - "pivot": [
- {
- "sSymbol": "INFY ",
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "PrevOpen": "1900.00",
- "PrevHigh": "1913.00",
- "PrevLow": "1894.20",
- "PrevClose": "1906.85"
}
]
}
}
This call would return back a particular Scrip details in different exchanges.
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": {
- "took": 2,
- "timed_out": false,
- "_shards": {
- "total": 1,
- "successful": 1,
- "skipped": 0,
- "failed": 0
}, - "hits": {
- "total": {
- "value": 2,
- "relation": "eq"
}, - "max_score": null,
- "hits": [
- {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "1-2475",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ONGC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 2475,
- "sDerivitiveDesc": "OIL AND NATURAL GAS CORP.--ONGC EQ--EQ--ONGC--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "OIL AND NATURAL GAS CORP.",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 1538,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE213A01029",
- "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-2475",
- "sExchange": "NSE",
- "sSearchText": "ONGC OIL AND NATURAL GAS CORP. NSE EQ",
- "sSymbolnew": "ONGC"
}, - "sort": [
- 1,
- 1,
- 1,
- 1,
- 1,
- 0,
- 0,
- "",
- "ongc"
]
}, - {
- "_index": "scripmaster",
- "_type": "_doc",
- "_id": "8-500312",
- "_score": null,
- "_source": {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "ONGC",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 500312,
- "sDerivitiveDesc": "ONGC A--ONGC A--OIL AND NATURAL GAS CORPO--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "OIL AND NATURAL GAS CORPO",
- "sSeries": "A",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 0,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE213A01029",
- "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-500312",
- "sExchange": "BSE",
- "sSearchText": "ONGC OIL AND NATURAL GAS CORPO BSE A",
- "sSymbolnew": "ONGC"
}, - "sort": [
- 1,
- 1,
- 3,
- 2,
- 1,
- 0,
- 0,
- "",
- "ongc"
]
}
]
}
}
}
This call would return back the ban status of the scrip.
tenantid required | string |
segmentId required | string Example: 2 |
token required | string Example: 52271 |
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "": 0,
- "nMarketSegementId": null,
- "nToken": null,
- "sSymbol": null,
- "ExchangeSegment": null
}
]
}
This API call will fetch the span margin info for derivative contract.
tenantid required | string |
exchangeSegment required | integer Example: 2 Exchange segment id |
scripToken required | integer Example: 56838 Scrip token of the scrip available in the exchange scrip master file |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "Market Segment": "NSE F&O",
- "Symbol": "INFY ",
- "Instrument Type": "FUTSTK",
- "ExpiryDate": "30 Jun 2022",
- "Lot Size": 300,
- "Initial Margin Long": 69651,
- "Initial Margin Short": 69411,
- "Initial Margin % Long": 15.36,
- "Initial Margin % Short": 15.3,
- "Exposure Margin": 15873.38,
- "Exposure Margin %": 3.5,
- "Total Margin % Long": 18.86,
- "Total Margin % Short": 18.8,
- "Total Margin Long": 85524.38,
- "Total Margin Short": 85284.38,
- "Total Future Value Long": 453525,
- "Total Future Value Short": 453525,
- "CVF": 1
}
]
}
This API call will fetch price range applicable for different legs of Cover (Margin Plus) or Bracket order.
Parameter moneymode should contain value of strike price from at the money (ATM).
strike price | moneymode |
---|---|
ATM | 1 |
ATM + 1 | 2 |
ATM - 1 | 3 |
Deep in the money | 4 |
Deep out of the money | 5 |
ATM + 2 | 6 |
ATM - 2 | 7 |
ATM + 3 | 8 |
ATM - 3 | 9 |
ATM + 4 | 10 |
ATM - 4 | 11 |
ATM + 5 | 12 |
ATM - 5 | 13 |
tenantid required | string |
exchangeSegment required | integer Example: 1 Exchange segment id |
scripToken required | integer Example: 1594 Scrip token of the scrip available in the exchange scrip master file |
instrument required | string Example: EQUITIES Instrument Type of the contract provided in the exchange scripmaster file |
symbol required | string Example: INFY Symbol code provided in exchange scripmaster file |
series required | string Example: EQ Series to which the scrip belongs (e.g. A, Eq, B, T, Z etc.) |
expiryDate required | string Example: NA Expiry date of the contract |
strikePrice required | string Example: - Strike price of the contract, usually in Paise |
optionType required | string Example: NA Option type example CE PE. |
moneymode required | string Example: - Moneyness of the Option, ie. strike price from at the money |
productCode required | string Example: B Product code. B = Bracket order, C = Cover order |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "nIsMatching": 1,
- "nHighPriceRange": 166185,
- "nLowPriceRange": 135975,
- "nDecimalLocator": 100,
- "PriceTick": 5,
- "nMinDiffLimitPricePercentage": 0,
- "nMinDiffTriggerPricePercentage": 200,
- "nDPRValidationOn": 0,
- "nDPRPercentage": 800,
- "ExpiryValue": "",
- "StrikePriceValue": "",
- "nBasePrice": 0,
- "nTradingAllowed": 2,
- "nMinDiffLimitTriggerPricePercentage": 200,
- "nProductType": 8192,
- "nProfitPricePercentage": 99999
}
]
}
This API call will fetch LTP price band master set by admin.
tenantid required | string |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "LTP band validations fetched successfully.",
- "data": [
- {
- "instrument_type": "OPT",
- "lower_ltp": 5,
- "higher_ltp": 10000,
- "worst_price_range": 1000,
- "favourable_price_range": 2500,
- "symbol_wise": false,
- "market_segment_id": 2,
- "exchange": "NSE_FO",
- "scrip_instrument": "ALL",
- "validation_type": "PERCENTAGE",
- "alert_type": "RESTRICTIVE",
- "additional_validation_for": [
- "RL-MKT"
], - "symbol": ""
}
]
}
Lets you set an alert for a particular scrip.
Allowed field for alert are LIFETIMEHIGH, LIFETIMELOW, LASTTRADEDPRICE, and USE_VALUE.
tenantid required | string |
version required | string Enum: "v1" "v2" |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
Array of objects | |
object | |
expiration | integer Expiration |
createDate | string Create Date |
{- "condition": [
- {
- "operand1": {
- "marketsegment": 1,
- "token": 5900,
- "field": "LastTradedPrice"
}, - "operand2": {
- "marketsegment": 1,
- "token": 5900,
- "field": "USE_VALUE",
- "value": 70000
}, - "operator": ">"
}
], - "data": {
- "remarks": "Alert : AXISBANK price exceeds ?700",
- "userid": "{{user_id}}",
- "tenantid": "{{tenantid}}",
- "symbol": "AXISBANK",
- "alertType": "PRICE",
- "category": "EQ"
}, - "expiration": -1,
- "createDate": "2022-07-25T13:00:54.907Z"
}
{- "status": "success",
- "code": "s-101",
- "message": "Alert submitted.",
- "data": {
- "alertId": "1103c5f6-1993-4f68-8cd3-5a9be50f4719"
}
}
This API call would let you modify a particular alert which is already set.
Allowed field for alert are LIFETIMEHIGH, LIFETIMELOW, LASTTRADEDPRICE, and USE_VALUE.
tenantid required | string |
version required | string Enum: "v1" "v2" |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
Array of objects | |
object | |
expiration | integer Expiration |
createDate | string Create Date |
serverAlertId | string Server Alert ID |
UniqueId | string Unique Alert ID |
{- "condition": [
- {
- "operand1": {
- "marketsegment": 1,
- "token": 5900,
- "field": "LastTradedPrice"
}, - "operand2": {
- "marketsegment": 1,
- "token": 5900,
- "field": "USE_VALUE",
- "value": 70000
}, - "operator": ">"
}
], - "data": {
- "remarks": "Alert : AXISBANK price exceeds ?700",
- "userid": "{{user_id}}",
- "tenantid": "{{tenantid}}",
- "symbol": "AXISBANK",
- "alertType": "PRICE",
- "category": "EQ"
}, - "expiration": -1,
- "createDate": "2022-07-25T13:00:54.907Z",
- "serverAlertId": "3c0bca4a-fd94-4d66-bd62-8b71da1d123c"
}
{- "status": "success",
- "code": "s-101",
- "message": "Alert modified.",
- "data": {
- "alertId": "a12fd447-28bb-4fd8-9a23-1ccbd09811fb"
}
}
This API call would return the list of all alerts set for a particular user.
tenantid required | string |
user_id required | string |
version required | string Enum: "v1" "v2" |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Alerts fetched successfully.",
- "data": [
- {
- "condition": [
- {
- "operand1": {
- "marketsegment": 1,
- "token": 1594,
- "field": "LastTradedPrice"
}, - "operand2": {
- "marketsegment": 1,
- "token": 1594,
- "field": "LifeTimeLow"
}, - "operator": "<"
}
], - "data": {
- "remarks": "Alert : INFY price breaches 52 WK Low.",
- "userid": "APITEST",
- "tenantid": "1404",
- "symbol": "INFY",
- "alertType": "52WL",
- "category": "EQ"
}, - "expiration": -1,
- "createDate": "2023-08-04T06:46:23.371Z",
- "tenantId": "1404",
- "workerId": "worker_alerts_eq_e88bf5f7-d7e6-49f0-9268-7ef41c18e5a0",
- "triggered": 0,
- "entryTime": "2023-08-04T06:46:36.836Z",
- "UCC": "APITEST",
- "MessageType": "USR_ALERT",
- "serverAlertId": "c70d7f4c-709d-4ec4-a429-341b2a89f145"
}
]
}
This API call would let you delete a particular alert which is already set.
tenantid required | string |
user_id required | string |
serverAlertId required | string Example: 1103c5f6-1993-4f68-8cd3-5a9be50f4719 Server Alert Id from Get Alerts API. |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Alert deleted.",
- "data": {
- "alertId": "1103c5f6-1993-4f68-8cd3-5a9be50f4719"
}
}
This API call would let you delete multiple alerts which are already set.
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
object |
{- "data": [
- {
- "condition": [
- {
- "operand1": {
- "marketsegment": 1,
- "token": 5900,
- "field": "LastTradedPrice"
}, - "operand2": {
- "marketsegment": 1,
- "token": 5900,
- "field": "USE_VALUE",
- "value": 70000
}, - "operator": ">",
- "data": {
- "remarks": "Alert : AXISBANK price exceeds ?700",
- "userid": "{{user_id}}",
- "tenantid": "{{tenantid}}",
- "symbol": "AXISBANK",
- "alertType": "PRICE",
- "category": "EQ"
}, - "expiration": -1,
- "createDate": "2022-07-25T13:00:54.907Z",
- "tenantId": "1524",
- "workerId": "",
- "triggered": 0,
- "entryTime": "2024-05-08 14:13:00",
- "UCC": "INDRESH",
- "MessageType": "USR_ALERT",
- "serverAlertId": 29,
- "UniqueId": 1731
}
]
}
]
}
{- "status": "success",
- "code": "s-101",
- "message": "Alert deleted successfully.",
- "data": [
- {
- "alertId": "bfd944b8-a186-41f6-92be-b59bd11ced57",
- "status": "success",
- "message": "Alert deleted successfully."
}
]
}
This API call would let you fetch volume weighted average price for a particular scrip over a specified period of time.
tenantid required | string |
exchange required | string Example: NSE_EQ Exchange |
token required | integer Example: 22 Token number recieved in Exchange Scrip master |
timePeriod required | integer Example: 15 Time Period : 15 / 30 / 60 |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "VWAP data fetch successfully",
- "data": [
- {
- "nId": 1,
- "nSystemTime": "18/11 09:15 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2456,
- "nHigh": 2456,
- "nLow": 2456,
- "nClose": 2456,
- "nTotalQtyTraded": 872,
- "CumulativeVolume": 872,
- "TypicalPrice": 245600,
- "TPV": 214163200,
- "CumulativeTPV": 214163200,
- "VWAP": 245600
}, - {
- "nId": 2,
- "nSystemTime": "18/11 09:30 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2456,
- "nHigh": 2456.7,
- "nLow": 2433,
- "nClose": 2436.65,
- "nTotalQtyTraded": 39250,
- "CumulativeVolume": 40122,
- "TypicalPrice": 244211.67,
- "TPV": 9585307917,
- "CumulativeTPV": 9799471117,
- "VWAP": 244241.84
}, - {
- "nId": 3,
- "nSystemTime": "18/11 09:45 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2436.65,
- "nHigh": 2437.65,
- "nLow": 2414.75,
- "nClose": 2424.95,
- "nTotalQtyTraded": 40868,
- "CumulativeVolume": 80990,
- "TypicalPrice": 242578.33,
- "TPV": 9913691327,
- "CumulativeTPV": 19713162443,
- "VWAP": 243402.43
}, - {
- "nId": 4,
- "nSystemTime": "18/11 10:00 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2424.95,
- "nHigh": 2428,
- "nLow": 2421.7,
- "nClose": 2423.5,
- "nTotalQtyTraded": 8349,
- "CumulativeVolume": 89339,
- "TypicalPrice": 242440,
- "TPV": 2024131560,
- "CumulativeTPV": 21737294003,
- "VWAP": 243312.48
}, - {
- "nId": 5,
- "nSystemTime": "18/11 10:15 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2423.5,
- "nHigh": 2429.7,
- "nLow": 2423.45,
- "nClose": 2427,
- "nTotalQtyTraded": 7841,
- "CumulativeVolume": 97180,
- "TypicalPrice": 242671.67,
- "TPV": 1902788538,
- "CumulativeTPV": 23640082542,
- "VWAP": 243260.78
}, - {
- "nId": 6,
- "nSystemTime": "18/11 10:30 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2427,
- "nHigh": 2438.5,
- "nLow": 2422,
- "nClose": 2435.6,
- "nTotalQtyTraded": 13032,
- "CumulativeVolume": 110212,
- "TypicalPrice": 243203.33,
- "TPV": 3169425840,
- "CumulativeTPV": 26809508382,
- "VWAP": 243253.99
}, - {
- "nId": 7,
- "nSystemTime": "18/11 10:45 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2435.6,
- "nHigh": 2434,
- "nLow": 2421.15,
- "nClose": 2428.85,
- "nTotalQtyTraded": 25928,
- "CumulativeVolume": 136140,
- "TypicalPrice": 242800,
- "TPV": 6295318400,
- "CumulativeTPV": 33104826782,
- "VWAP": 243167.52
}, - {
- "nId": 8,
- "nSystemTime": "18/11 11:00 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2428.85,
- "nHigh": 2436.45,
- "nLow": 2424.15,
- "nClose": 2426,
- "nTotalQtyTraded": 21147,
- "CumulativeVolume": 157287,
- "TypicalPrice": 242886.67,
- "TPV": 5136324340,
- "CumulativeTPV": 38241151122,
- "VWAP": 243129.76
}, - {
- "nId": 9,
- "nSystemTime": "18/11 11:15 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2426,
- "nHigh": 2428.7,
- "nLow": 2422.15,
- "nClose": 2424.55,
- "nTotalQtyTraded": 6898,
- "CumulativeVolume": 164185,
- "TypicalPrice": 242513.33,
- "TPV": 1672856973,
- "CumulativeTPV": 39914008095,
- "VWAP": 243103.87
}, - {
- "nId": 10,
- "nSystemTime": "18/11 11:30 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2424.55,
- "nHigh": 2434.4,
- "nLow": 2425.2,
- "nClose": 2426.1,
- "nTotalQtyTraded": 11643,
- "CumulativeVolume": 175828,
- "TypicalPrice": 242856.67,
- "TPV": 2827580170,
- "CumulativeTPV": 42741588265,
- "VWAP": 243087.5
}, - {
- "nId": 11,
- "nSystemTime": "18/11 11:45 AM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2426.1,
- "nHigh": 2429.65,
- "nLow": 2422.4,
- "nClose": 2428.7,
- "nTotalQtyTraded": 1868,
- "CumulativeVolume": 177696,
- "TypicalPrice": 242691.67,
- "TPV": 453348033,
- "CumulativeTPV": 43194936298,
- "VWAP": 243083.34
}, - {
- "nId": 12,
- "nSystemTime": "18/11 12:00 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2428.7,
- "nHigh": 2429.6,
- "nLow": 2422.7,
- "nClose": 2424.1,
- "nTotalQtyTraded": 3632,
- "CumulativeVolume": 181328,
- "TypicalPrice": 242546.67,
- "TPV": 880929493,
- "CumulativeTPV": 44075865792,
- "VWAP": 243072.59
}, - {
- "nId": 13,
- "nSystemTime": "18/11 12:15 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2424.1,
- "nHigh": 2429,
- "nLow": 2422.15,
- "nClose": 2427.1,
- "nTotalQtyTraded": 2167,
- "CumulativeVolume": 183495,
- "TypicalPrice": 242608.33,
- "TPV": 525732258,
- "CumulativeTPV": 44601598050,
- "VWAP": 243067.1
}, - {
- "nId": 14,
- "nSystemTime": "18/11 12:30 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2427.1,
- "nHigh": 2441.9,
- "nLow": 2424.05,
- "nClose": 2440.1,
- "nTotalQtyTraded": 20321,
- "CumulativeVolume": 203816,
- "TypicalPrice": 243535,
- "TPV": 4948874735,
- "CumulativeTPV": 49550472785,
- "VWAP": 243113.75
}, - {
- "nId": 15,
- "nSystemTime": "18/11 12:45 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2440.1,
- "nHigh": 2451.35,
- "nLow": 2438.6,
- "nClose": 2443.3,
- "nTotalQtyTraded": 114096,
- "CumulativeVolume": 317912,
- "TypicalPrice": 244441.67,
- "TPV": 27889816400,
- "CumulativeTPV": 77440289185,
- "VWAP": 243590.33
}, - {
- "nId": 16,
- "nSystemTime": "18/11 01:00 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2443.3,
- "nHigh": 2444.8,
- "nLow": 2437.9,
- "nClose": 2437.9,
- "nTotalQtyTraded": 4808,
- "CumulativeVolume": 322720,
- "TypicalPrice": 244020,
- "TPV": 1173248160,
- "CumulativeTPV": 78613537345,
- "VWAP": 243596.73
}, - {
- "nId": 17,
- "nSystemTime": "18/11 01:15 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2437.9,
- "nHigh": 2446.45,
- "nLow": 2437.9,
- "nClose": 2445,
- "nTotalQtyTraded": 4261,
- "CumulativeVolume": 326981,
- "TypicalPrice": 244311.67,
- "TPV": 1041012012,
- "CumulativeTPV": 79654549357,
- "VWAP": 243606.05
}, - {
- "nId": 18,
- "nSystemTime": "18/11 01:30 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2445,
- "nHigh": 2445,
- "nLow": 2445,
- "nClose": 2445,
- "nTotalQtyTraded": 0,
- "CumulativeVolume": 326981,
- "TypicalPrice": 244500,
- "TPV": 0,
- "CumulativeTPV": 79654549357,
- "VWAP": 243606.05
}, - {
- "nId": 19,
- "nSystemTime": "18/11 01:45 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2445,
- "nHigh": 2456.7,
- "nLow": 2435.6,
- "nClose": 2436.8,
- "nTotalQtyTraded": 9397,
- "CumulativeVolume": 336378,
- "TypicalPrice": 244303.33,
- "TPV": 2295718423,
- "CumulativeTPV": 81950267780,
- "VWAP": 243625.53
}, - {
- "nId": 20,
- "nSystemTime": "18/11 02:00 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2436.8,
- "nHigh": 2438,
- "nLow": 2426.25,
- "nClose": 2428.55,
- "nTotalQtyTraded": 10305,
- "CumulativeVolume": 346683,
- "TypicalPrice": 243093.33,
- "TPV": 2505076800,
- "CumulativeTPV": 84455344580,
- "VWAP": 243609.71
}, - {
- "nId": 21,
- "nSystemTime": "18/11 02:15 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2428.55,
- "nHigh": 2431.6,
- "nLow": 2425.1,
- "nClose": 2427,
- "nTotalQtyTraded": 6205,
- "CumulativeVolume": 352888,
- "TypicalPrice": 242790,
- "TPV": 1506511950,
- "CumulativeTPV": 85961856530,
- "VWAP": 243595.3
}, - {
- "nId": 22,
- "nSystemTime": "18/11 02:30 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2427,
- "nHigh": 2448.8,
- "nLow": 2427,
- "nClose": 2446.6,
- "nTotalQtyTraded": 100490,
- "CumulativeVolume": 453378,
- "TypicalPrice": 244080,
- "TPV": 24527599200,
- "CumulativeTPV": 110489455730,
- "VWAP": 243702.73
}, - {
- "nId": 23,
- "nSystemTime": "18/11 02:45 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2446.6,
- "nHigh": 2464.8,
- "nLow": 2446.2,
- "nClose": 2459.1,
- "nTotalQtyTraded": 27691,
- "CumulativeVolume": 481069,
- "TypicalPrice": 245670,
- "TPV": 6802847970,
- "CumulativeTPV": 117292303700,
- "VWAP": 243815.97
}, - {
- "nId": 24,
- "nSystemTime": "18/11 03:00 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2459.1,
- "nHigh": 2460.7,
- "nLow": 2453,
- "nClose": 2458.05,
- "nTotalQtyTraded": 13157,
- "CumulativeVolume": 494226,
- "TypicalPrice": 245725,
- "TPV": 3233003825,
- "CumulativeTPV": 120525307525,
- "VWAP": 243866.79
}, - {
- "nId": 25,
- "nSystemTime": "18/11 03:15 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2458.05,
- "nHigh": 2470,
- "nLow": 2457.7,
- "nClose": 2459.8,
- "nTotalQtyTraded": 24098,
- "CumulativeVolume": 518324,
- "TypicalPrice": 246250,
- "TPV": 5934132500,
- "CumulativeTPV": 126459440025,
- "VWAP": 243977.59
}, - {
- "nId": 26,
- "nSystemTime": "18/11 03:30 PM",
- "nToken": 22,
- "nMarketSegmentId": 1,
- "nOpen": 2459.8,
- "nHigh": 2461.9,
- "nLow": 2455,
- "nClose": 2457.85,
- "nTotalQtyTraded": 22117,
- "CumulativeVolume": 540441,
- "TypicalPrice": 245825,
- "TPV": 5436911525,
- "CumulativeTPV": 131896351550,
- "VWAP": 244053.19
}
]
}
This call would return back Scrip details in different exchanges.
tenantid required | string |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
isin | Array of strings List of ISIN |
{- "isin": [
- "INE002A01018"
]
}
{- "summary": "Scrip by ISIN",
- "value": {
- "status": true,
- "result": [
- {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "RELIANCE",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 1,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 2885,
- "sDerivitiveDesc": "RELIANCE INDUSTRIES LTD--RELIANCE EQ--EQ--RELIANCE--NSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "RELIANCE INDUSTRIES LTD",
- "sSeries": "EQ",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 1141,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE002A01018",
- "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,
- "nScripInstrument": 2,
- "sQtyUnit": "",
- "sSurvMeasureDescription": null,
- "nMaxSingleTransactionQty": 33828,
- "id": "1-2885",
- "sExchange": "NSE",
- "sSearchText": "RELIANCE RELIANCE INDUSTRIES LTD NSE EQ EQUITIES",
- "sSymbolnew": "RELIANCE",
- "MktSegId": 1,
- "ExchangeSegment": "NSE_EQ"
}, - {
- "exp": "1980-01-01T00:00:00.000Z",
- "sSymbol": "RELIANCE",
- "sOptionType": "",
- "nStrikePrice": "",
- "nExpiryDate": 0,
- "nExpiryDate1": "",
- "nExpiryDate2": "",
- "nAssetToken": 0,
- "nInstrumentType": 0,
- "nMarketSegmentId": 8,
- "nNormal_MarketAllowed": 1,
- "nPriceBdAttribute": 100,
- "nRegularLot": 1,
- "nToken": 500325,
- "sDerivitiveDesc": "RELIANCE A--RELIANCE A--RELIANCE INDUSTRIES LTD.--BSE Eq",
- "sInstrumentName": "EQUITIES",
- "sSecurityDesc": "RELIANCE INDUSTRIES LTD.",
- "sSeries": "A",
- "nSPOS": 12,
- "nPOS": 0,
- "DecimalLocator": 100,
- "nNRILimit": 900,
- "nFIILimit": 0,
- "nPriceTick": 5,
- "nSpread": 0,
- "sISINCode": "INE002A01018",
- "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,
- "nScripInstrument": 2,
- "sQtyUnit": "",
- "sSurvMeasureDescription": null,
- "nMaxSingleTransactionQty": 0,
- "id": "8-500325",
- "sExchange": "BSE",
- "sSearchText": "RELIANCE RELIANCE INDUSTRIES LTD. BSE A EQUITIES",
- "sSymbolnew": "RELIANCE",
- "MktSegId": 3,
- "ExchangeSegment": "BSE_EQ"
}
]
}
}
This call would return back the Periodicity-wise Fund Balance. These balances are categorized as cash deposit, adhoc deposit, Misc Deposit, overdraft limit, etc..
periodicity | integer Example: periodicity=3 Periodicity ID (Optional) is available with MarginInfo API with type as list. |
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": "Success message",
- "data": [
- {
- "id": "3",
- "name": "NSE Equities",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999100,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 999996683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 999996683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 999996683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 999996683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 999996683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 999996683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "17",
- "name": "BSE Equities",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 299999999999.97,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 299999999999.97,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 5999999999999.4,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 299999999999.97,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 20,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 20,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 5999999996682.4,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 299999996682.97,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 5999999996682.4,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 299999996682.97,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999996682.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999996682.99,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "13",
- "name": "NSE Derivatives",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 199999347912.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999347912.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 199999347912.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999347912.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999347912.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999347912.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "15",
- "name": "NSE Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 199999344595.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999344595.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 199999344595.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999344595.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999344595.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999344595.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "113",
- "name": "BSE Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 100000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 100000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 100000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 96683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 96683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 96683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 96683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 96683,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 96683,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "129",
- "name": "MCX Derivatives",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 1000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 10000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 100000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "164225",
- "name": "Commodity Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "18451",
- "name": "All Equity Combined ",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -3317,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 199999996682.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999996682.98,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 199999996682.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999996682.98,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999996682.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999996682.99,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "12397",
- "name": "All Derivatives Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 199999347912.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999347912.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 199999347912.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999347912.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999347912.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999347912.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "30847",
- "name": "All Equities + Derivatives Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 99344595.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99344595.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 99344595.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99344595.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99344595.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99344595.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "65537",
- "name": "NSE Currency",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 100000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 100000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "66561",
- "name": "Currency Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 1000000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000000,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "243181",
- "name": "Derivatives + Currency + Commodities Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 10000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 10000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 10000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 10000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 10000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 10000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 9347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 9347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 9347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 9347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 9347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 9347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "78957",
- "name": "Derivatives + Currency Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 1000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 1000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 1000000,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1000000,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -652087.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 347912.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 347912.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "97407",
- "name": "All Equities + Derv Combined + Curr Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 99999344595.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999344595.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 99999344595.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999344595.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999344595.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999344595.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}, - {
- "id": "8589934591",
- "name": "All Exchange Combined",
- "data": [
- {
- "sSign": "ADD",
- "sDescription": "Deposit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Deposit"
}, - {
- "sSign": "",
- "sDescription": "Cash Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Adhoc Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Overdraft Limit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Notional Deposit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999999999.99,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Misc. Deposit",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": " ",
- "sDescription": "Manual Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Deposit"
}, - {
- "sSign": "ADD",
- "sDescription": "Funds Transferred Today",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds Transferred Today"
}, - {
- "sSign": "LESS",
- "sDescription": "Funds withdrawal/Allocation",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Funds withdrawal/Allocation"
}, - {
- "sSign": "ADD",
- "sDescription": "Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "SAR Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "DP Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Pool Pledged Collateral",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "",
- "sDescription": "Maximum Collateral Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Collateral"
}, - {
- "sSign": "LESS",
- "sDescription": "Credit For Sale",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "DP CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Pool CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "SAR CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "",
- "sDescription": "Maximum CFS Limit",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Credit For Sale"
}, - {
- "sSign": "LESS",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Option CFS",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": "",
- "sDescription": "Maximum Option CFS",
- "nTrading": 99999999999.99,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Option CFS"
}, - {
- "sSign": " ",
- "sDescription": "Total Trading Power Limit",
- "nTrading": 199999999999.98,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999999999.98,
- "sIndicator": "Total Trading Power Limit"
}, - {
- "sSign": " ",
- "sDescription": "Multiplier",
- "nTrading": 1,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 1,
- "sIndicator": "Multiplier"
}, - {
- "sSign": "LESS",
- "sDescription": "Limit Utilization",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}, - {
- "sSign": "LESS",
- "sDescription": "Booked Profit/Loss",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": -652087.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": -3317,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Booked Profit/Loss"
}, - {
- "sSign": "LESS",
- "sDescription": "MTM Profit/Loss",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Commodity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Currency Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Derivative Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Equity Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "MTM Profit/Loss"
}, - {
- "sSign": "",
- "sDescription": "Total Utilization",
- "nTrading": -655404.5,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": -655404.5,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "Net Available Funds",
- "nTrading": 199999344595.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999344595.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Trading",
- "nTrading": 199999344595.48,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 199999344595.48,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "For Allocation/Withdrawal",
- "nTrading": 99999344595.49,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 99999344595.49,
- "sIndicator": ""
}, - {
- "sSign": "",
- "sDescription": "MF Position",
- "nTrading": 0,
- "nIPO": 0,
- "nMF": 0,
- "nTotal": 0,
- "sIndicator": "Limit Utilization"
}
]
}
]
}
This call would return back the Product-wise Fund Balance. These balances are categorized as "COMMCOMB", "EQ+FO+CDS+MCX+OTS", "NSE EQUITIES", etc..
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": "Success message",
- "data": [
- {
- "sProductId": "104",
- "sProductName": "COMMCOMB",
- "sActive": "1",
- "bDefaultProd": 0,
- "nBankMapping": 1,
- "balanceAmount": "99999344595.49",
- "periodicities": [
- "8589934591"
]
}, - {
- "sProductId": "103",
- "sProductName": "EQ+FO+CDS+MCX+OTS",
- "sActive": "1",
- "bDefaultProd": 0,
- "nBankMapping": 1,
- "balanceAmount": "99999344595.49",
- "periodicities": [
- "97407"
]
}, - {
- "sProductId": "1",
- "sProductName": "NSE EQUITIES",
- "sActive": "1",
- "bDefaultProd": 1,
- "nBankMapping": 1,
- "balanceAmount": "999996683.00",
- "periodicities": [
- "3"
]
}, - {
- "sProductId": "2",
- "sProductName": "BSE EQUITIES",
- "sActive": "1",
- "bDefaultProd": 0,
- "nBankMapping": 1,
- "balanceAmount": "99999344595.49",
- "periodicities": [
- "8589934591"
]
}, - {
- "sProductId": "100",
- "sProductName": "TRADING",
- "sActive": "1",
- "bDefaultProd": 1,
- "nBankMapping": 1,
- "balanceAmount": "99999344595.49",
- "periodicities": [
- "8589934591"
]
}, - {
- "sProductId": "5",
- "sProductName": "MCX FUTURES",
- "sActive": "1",
- "bDefaultProd": 0,
- "nBankMapping": 1,
- "balanceAmount": "100000000.00",
- "periodicities": [
- "129"
]
}
]
}
tenantid required | string |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
userId | string User Id |
groupId | string Group Id |
periodicityName | string Periodicity Name |
productType | integer Product Type |
{- "userId": "{{user_id}}",
- "groupId": "HO",
- "periodicityName": "All Exchange Combined",
- "productType": 1
}
{- "status": true,
- "result": [
- [
- {
- "Status": "Success",
- "ErrorMsg": ""
}
], - [
- {
- "Product": "1",
- "Deposit": "99999999999.99",
- "Funds Transferred Today": "0.00",
- "Collateral": "0.00",
- "Credit for Sale": "0.00",
- "Option CFS": "0.00",
- "Total Trading Power Limit": "99999999999.99",
- "Limit Utilization": "-41640.61",
- "Booked P&L": "0.00",
- "MTM P&L": "-153.95",
- "Total Utilization": "-41794.56",
- "Net Available Funds": "99999958205.43",
- "For Allocation/Withdrawal": "99999958205.43",
- "Exposure Margin": "0.00",
- "Cash Deposit": "99999999999.99",
- "Adhoc Deposit": 0,
- "NotionalDeposit": 0
}
]
]
}
This call would be used to fetch details of margin in different ways.
type required | string Example: detailed_limit Allowed values are "list" (to get list of all allowed periodicities), "limit" (to get limit utilization), "tokenwise" (to get scrip wise margin utilization), "producttypewise" (to get exchange product type wise margin utilization), "detailed_limit" (to get detailed limit utilization) |
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": [
- {
- "PeriodicityName": "All Exchange Combined",
- "nPeriodicity": "8589934591"
}
]
}
This section provides API calls to add funds, withdraw funds, get the Funds transaction related information like Bank details, UPI Details, purchase power, etc..
This call would return back the Bank details by Bank Id.
productId required | integer Example: 1 |
bankId required | string Example: HDFC |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": [
- {
- "sAccountNo": "87453625",
- "sIFSC": "",
- "sCustomerId": "",
- "sAccountType": "CA",
- "nProductCode": "0",
- "sProductType": "NetNet",
- "sBankBranchId": "",
- "sBankId": "HDFC",
- "sBankName": "HDFC BANK",
- "sBranchName": "mumbai",
- "sBranchCity": "mubai",
- "sManagerIP": "172.25.102.233",
- "sGroupId": "HO",
- "bWithdrawAllowed": false
}
]
}
This call would return back the Bank Details.
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": "Success message",
- "data": [
- {
- "sAccountNo": "87453625",
- "sIFSC": "",
- "sCustomerId": "",
- "sAccountType": "CA",
- "nProductCode": "0",
- "sProductType": "NetNet",
- "sBankBranchId": "",
- "sBankId": "HDFC",
- "sBankName": "HDFC BANK",
- "sBranchName": "mumbai",
- "sBranchCity": "mubai",
- "sManagerIP": "172.25.102.233",
- "sGroupId": "HO",
- "bWithdrawAllowed": false
}
]
}
This call would return back the Bank For Selected Product.
productId required | string |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": [
- [ ],
- [
- {
- "PGDefaultBank": "HDFC|87453625|"
}
]
]
}
This call would return back the Default Bank Details.
productId required | integer Example: 1 |
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": "Success message",
- "data": [
- {
- "sBankId": "HDFC",
- "sBankName": "HDFC BANK",
- "sAccountNo": "87453625",
- "sIFSC": "",
- "sCustomerId": ""
}
]
}
This call would return back the UPI Details.
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": "Success message",
- "data": [
- {
- "sProductId": "2",
- "sMerchantId": "6012",
- "sMerchantName": "MEBR",
- "sMasterBankId": "UPIHDFC",
- "sBankId": "UPIHDFC",
- "sMappedBankId": "UPIHDFC",
- "sMemberLoginId": "",
- "sMemberPassword": "",
- "sMemberId": "",
- "nBlockThirdParty": 1,
- "sAggregatorBankId": null,
- "sMappedBankName": "UPI - HDFC",
- "nGroupId": 35
}
]
}
This call would return back the payment gateway details for selected product and selected bank.
productID required | integer Example: 100 Product ID in which funds add |
bankID required | string Example: HDFC Bank ID from which funds add |
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": "Success message",
- "data": [
- {
- "sProductId": 100,
- "sMerchantId": "",
- "sMerchantName": "",
- "sMasterBankId": "HDFC",
- "sBankId": "ATOMPG",
- "sAggregatorBankId": "ATOMPG-1006",
- "sBankName": "HDFC Bank",
- "sMappedBankName": "ATOMPG-HDFC Bank",
- "nGroupId": 10,
- "sMemberLoginId": "",
- "sMemberPassword": "",
- "sMemberId": "",
- "nBlockThirdParty": 0,
- "nBankActive": 1,
- "nIndexNo": 1
}
]
}
This call would return back the Total Purchasing power of the user.
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": "Success message",
- "data": "199999929591.04"
}
This call would return back the Gateway Details.
productId required | integer Example: 1 |
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": "Success message",
- "data": [ ]
}
This call would return back the Fund transfer product ID mapped for various Products.
productid required | integer Example: 100 |
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": "Success message",
- "data": [
- {
- "nToProductId": 1,
- "sProductName": "NSE EQUITIES"
}, - {
- "nToProductId": 2,
- "sProductName": "BSE EQUITIES"
}, - {
- "nToProductId": 7,
- "sProductName": "IPO"
}, - {
- "nToProductId": 8,
- "sProductName": "MUTUAL FUND"
}
]
}
This API call allows you to initiate funds add request for selected product and bank.
Note :- Sample request given below. Please ignore space at the end of every parameter, it is just for line break.
http://DOMAIN/newnetnet/PaymentGateway/ProcessSendData.aspx?BankID=ATOMPG&AgencyID=&ProductId=100 &ProductName=TRADING&Amount=10000 &BankGroupId=10&UserID=APITEST&UserGroupID=HO &Product=WAVE&ManagerId=Odindemo.63moons.com &BankAcctNo=0&BlockThirdParty=0 &BankBrokerCode=&AccCustid=&MappedBankId=1006 &HoldRelease=HOLD&UPIID=apitest@okaxis
Description of fields:
BankID = First part of sAggregatorBankId separated by "-",
MappedBankId = Second part of sAggregatorBankId separated by "-",
BankGroupId = nGroupId
HoldRelease = HOLD to add funds
Values can be found in response of "Mapped Banks List" API call.
BankID | string Example: BankID=ATOMPG |
AgencyID | string |
ProductId | integer Example: ProductId=100 |
ProductName | string Example: ProductName=TRADING |
Amount | integer Example: Amount=10000 |
BankGroupId | integer Example: BankGroupId=10 |
UserID | string Example: UserID=APITEST |
UserGroupID | string Example: UserGroupID=HO |
Product | string Example: Product=WAVE |
ManagerId | string Example: ManagerId=Odindemo.63moons.com |
BankAcctNo | integer Example: BankAcctNo=0 |
BlockThirdParty | integer Example: BlockThirdParty=0 |
BankBrokerCode | string |
AccCustid | string |
MappedBankId | integer Example: MappedBankId=1006 |
HoldRelease | string Example: HoldRelease=HOLD |
UPIID | string Example: UPIID=apitest@okaxis |
Lets you Transfer (Add) Funds to the trading account.
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
moveFromProductID | string move from Product ID |
moveToProductID | string move to Product ID |
transferAmount | string transfer Amount |
{- "moveFromProductID": "1",
- "moveToProductID": "2",
- "transferAmount": "1000"
}
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": {
- "ResponseString": "Request for Allocating Funds has been updated successfully. Transaction Reference No: 22040158500000020"
}
}
Lets you Withdraw Funds.
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
accNo | string Account number |
amount | string Amount |
appWithdrawKey | string Enum: "1 = auto withdrawal" "2 = manual withdrawal" Whether the withdrawal shall be done Automatically or Manually. |
bankId | string Bank Id |
productId | string Refer Product Id from Balance > Productwise balance |
productName | string Refer Product name from Balance > Productwise balance |
{- "accNo": "87546532965",
- "amount": "5000",
- "appWithdrawKey": "1",
- "bankId": "HDFC",
- "productId": "100",
- "productName": "TRADING"
}
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": {
- "ResponseString": "Request for Withdraw Funds has been successfully sent. Transaction Reference No: 22040113700000016"
}
}
Lets you cancel the Fund Withdrawal requests which are pending.
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
productId | string product Id |
amount | string Amount of the withdrawal request to be canceled |
TxnRefNo | string Trasaction Reference Number |
{- "productId": "100",
- "amount": "1000",
- "TxnRefNo": "ABCD123"
}
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": {
- "ResponseString": "Request for Withdrawal Cancellation has been successfully sent. Transaction Reference No: 22040113700000015"
}
}
Lets you Fetch the Funds Report.
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
FromDate | string Start date for the report |
ToDate | string End date for the report |
Status | integer Enum: "1 = Deposit" "2 = Withdrawl" Status of the Funds records requested |
bankId | string bankId |
fund_type | string fund_type |
{- "FromDate": "04-01-2022",
- "ToDate": "04-01-2022",
- "Status": 2,
- "bankId": "",
- "fund_type": ""
}
{- "status": "success",
- "code": "s-101",
- "message": "Success message",
- "data": [ ]
}
This section provides the API calls to fetch the details of various Messages Flashed in the system.
This call would return back the Broker Messages.
tenantid required | string |
pageNo | integer Example: pageNo=1 |
pageSize | integer Example: pageSize=10 |
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "MsgSrNo": 1,
- "SendMsgTime": "2022-04-02 00:22:32",
- "Subject": "test broker message",
- "Message": "broker message",
- "MsgType": ""
}
]
}
This call would return the users Order Messages.
tenantid required | string |
pageNo | integer Example: pageNo=1 |
pageSize | integer Example: pageSize=10 |
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "time": "10:00",
- "date": "01/Apr/22",
- "cliOrdNo": "NXWAD000050142022",
- "msg": "Order entry request BUY 1 NSE EQUITY HDFCBANK EQ Order-Type: Regular Lot Limit at 1432.00 Trig. price 0.00 (Submitted to NSE) at 01-04-2022 10:00:57 PM Validity : GTD 11/04/2022 Product Type: AMO_DELIVERY AMO Order Id: NXWAD0000514 For DEMO31",
- "mktSegId": 1
}, - {
- "time": "09:59",
- "date": "01/Apr/22",
- "cliOrdNo": "NXWAD000030142022",
- "msg": "Reason : Order failed Min. Margin Plus Order Value Check where the limit = 1.00 and current value = 0.00 for of DEMO31 BUY 1 NSE EQUITY RELIANCE EQ Order-Type: Stop Loss Limit at 2365.00 Trig. price 2445.00 at 01-04-2022 9:59:56 PM Validity : DAY Product Type: COVER For DEMO31",
- "mktSegId": 1
}, - {
- "time": "09:45",
- "date": "01/Apr/22",
- "cliOrdNo": "NXWAD000020142022",
- "msg": "Reason : 0 Order Time has changed or is incorrect for modification/cancellation request BUY 1 NSE EQUITY ZEEL EQ Order-Type: Regular Lot Limit at 296.00 Trig. price 0.00 at 01-04-2022 9:45:31 PM Validity : GTD 18/04/2022 Product Type: AMO_DELIVERY AMO Order Id: NXWAD0000214 For DEMO31",
- "mktSegId": 1
}, - {
- "time": "09:42",
- "date": "01/Apr/22",
- "cliOrdNo": "NXWAD000020142022",
- "msg": "Cancellation request BUY 1 NSE EQUITY ZEEL EQ Order-Type: Regular Lot Limit at 296.00 Trig. price 0.00 (Admin pending) () at 01-04-2022 9:42:07 PM Validity : GTD 18/04/2022 Product Type: AMO_DELIVERY AMO Order Id: NXWAD0000214 For DEMO31",
- "mktSegId": 1
}, - {
- "time": "09:37",
- "date": "01/Apr/22",
- "cliOrdNo": "NXWAD000020142022",
- "msg": "Order entry request BUY 1 NSE EQUITY ZEEL EQ Order-Type: Regular Lot Limit at 295.00 Trig. price 0.00 (Submitted to NSE) at 01-04-2022 9:37:28 PM Validity : GTD 15/04/2022 Product Type: AMO_DELIVERY AMO Order Id: NXWAD0000214 For DEMO31",
- "mktSegId": 1
}
]
}
This call would return back the Exchange Messages.
tenantid required | string |
segmentId required | string Example: NSE_EQ |
noofhrs | integer Example: noofhrs=1 |
pageNo | integer Example: pageNo=1 |
pageSize | integer Example: pageSize=10 |
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "CORPORATE ANNOUNCEMENTS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "SYMBOL : SHORT DESCRIPTION\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": ": ANNOUNCEMENT\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "NPST : Closure of trading window\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": ": Network People Services Technologies Limited has informed the Exchange about Closure of trading window from 1st April, 2022 A copy of the same shall be available on the NSE website (http://www.nseindia.com) under: Corporates > Latest An\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "nouncements and on the Extranet Server (/common/CorporateAnnouncements).\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "CORPORATE ANNOUNCEMENTS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "SYMBOL : SHORT DESCRIPTION\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": ": ANNOUNCEMENT\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}, - {
- "SegmentId": 1,
- "Time": "13:47:31 ",
- "Messages": "BECTORFOOD : Postal Ballot\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
}
]
}
This call would return back the Recommendations sent by the Broker.
tenantid required | string |
allowedNewsCat | string Example: allowedNewsCat=25014,25033,25000,25035,25034,25039 |
pageNo | integer Example: pageNo=1 |
pageSize | integer Example: pageSize=10 |
Authorization | string Example: {{access_token}} |
Content-Type | string Example: application/json |
x-api-key | string Example: {{x-api-key}} |
{- "status": true,
- "result": [
- {
- "sRecoTag": "",
- "sRecoId": "028WABDYAA",
- "sScripDesc": "NSE EQUITIES INFY EQ",
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nRecoType": 1,
- "sRecoDetails": "<RecoDetails><RecoChild sRecoId=\"028WABDYAA\" sLongShort=\"L\" SubTypeID=\"101\" sSubTypes=\"Enter Long\" sFormattedReco=\"Buy NSE EQUITIES INFY EQ @ 2800.00\" dEnteredTime=\"Apr 2 2022 12:26AM\" sURL=\"\" EnteredPrice=\"2800.00\" SLPrice=\"\" SQPrice=\"\" SQPerc=\"\" nBuySell=\"1\" OrderCount=\"10\"/></RecoDetails>",
- "sSource": 2,
- "ID": "1",
- "LastModify": "2022-04-02T00:26:17.390Z",
- "nTotalNoRecords": 1,
- "nExpiryDate": "2022-04-02T23:59:00.000Z"
}
]
}
This section provides the API calls for Watchlist management. i.e. fetch Watchlists, create a new Watchlist, modify or delete existing Watchlist.
This call would return all the Watchlists created by the Member.
Authorization required | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist fetched successfully.",
- "data": [
- {
- "id": "32b95c61-3701-4329-b215-bb8857f9c949",
- "sWatchListName": "MY Test Watchlist 2",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "CHIEF",
- "sTenantId": "1524",
- "sSettings": "{\"subCount\":13}",
- "scrips": [
- {
- "nMarketSegmentId": 8,
- "nToken": 500875,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2277,
- "nSequenceNo": 5,
- "sSettings": null
}
], - "_version": 20,
- "_deleted": null,
- "_lastChangedAt": 1676629302581,
- "createdAt": "2023-01-20T07:46:42.385Z",
- "updatedAt": "2023-02-17T10:21:42.565Z"
}, - {
- "id": "76869a84-86f9-4b83-9d2e-6b4fee9f1e13",
- "sWatchListName": "MEMBERWL1",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "CHIEF",
- "sTenantId": "1524",
- "sSettings": "{\"subCount\":12}",
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 3812,
- "nSequenceNo": 2,
- "sSettings": null
}
], - "_version": 13,
- "_deleted": null,
- "_lastChangedAt": 1676628239769,
- "createdAt": "2023-01-20T07:46:42.376Z",
- "updatedAt": "2023-02-17T10:03:59.768Z"
}, - {
- "id": "7d82aa01-7d2a-4c23-81d0-234604f733b0",
- "sWatchListName": "FEB082023AB",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "CHIEF",
- "sTenantId": "1524",
- "sSettings": "{\"subCount\":3}",
- "scrips": [
- {
- "nMarketSegmentId": 8,
- "nToken": 500875,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 17971,
- "nSequenceNo": 5,
- "sSettings": null
}
], - "_version": 19,
- "_deleted": null,
- "_lastChangedAt": 1676628251525,
- "createdAt": "2023-02-08T09:45:43.375Z",
- "updatedAt": "2023-02-17T10:04:11.510Z"
}, - {
- "id": "ff5d2385-aa26-46a1-aa7e-359207565146",
- "sWatchListName": "DNSWL",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "CHIEF",
- "sTenantId": "1524",
- "sSettings": "{\"subCount\":6}",
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1624,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 2,
- "nToken": 56733,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 530965,
- "nSequenceNo": 3,
- "sSettings": null
}
], - "_version": 9,
- "_deleted": null,
- "_lastChangedAt": 1676628273080,
- "createdAt": "2023-01-20T07:46:42.382Z",
- "updatedAt": "2023-02-17T10:04:33.079Z"
}, - {
- "id": "517f23a8-6e82-4e99-a905-cae69b29f153",
- "sWatchListName": "Default-1524",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "CHIEF",
- "sTenantId": "1524",
- "sSettings": "{\"subCount\":5}",
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 22,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 6,
- "_deleted": null,
- "_lastChangedAt": 1676628260180,
- "createdAt": "2023-01-20T07:46:42.378Z",
- "updatedAt": "2023-02-17T10:04:20.163Z"
}
]
}
This call would return all the Watchlists created by the User.
Authorization required | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist fetched successfully.",
- "data": [
- {
- "id": "045f0106-28f2-4a20-b5df-491c5a9979c1",
- "sWatchListName": "Test Subscribe",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1677250173982,
- "createdAt": "2023-02-24T14:49:33.964Z",
- "updatedAt": "2023-02-24T14:49:33.964Z"
}, - {
- "id": "53ef3ecb-95fa-4520-b952-fb7442803f85",
- "sWatchListName": "Test duplicate scrips",
- "bIsPrivate": false,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 3761,
- "nSequenceNo": 2,
- "sSettings": null
}
], - "_version": 4,
- "_deleted": null,
- "_lastChangedAt": 1675961901745,
- "createdAt": "2023-02-09T11:37:43.382Z",
- "updatedAt": "2023-02-09T16:58:21.726Z"
}, - {
- "id": "3b66426b-4f28-4070-a4fe-f36b51291139",
- "sWatchListName": "Test",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1675943236512,
- "createdAt": "2023-02-09T11:47:16.512Z",
- "updatedAt": "2023-02-09T11:47:16.512Z"
}, - {
- "id": "b2cea8b6-5c16-4a3f-999d-625d7ae7fa42",
- "sWatchListName": "TESTSUGGWL",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1624,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 530965,
- "nSequenceNo": 3,
- "sSettings": null
}
], - "_version": 2,
- "_deleted": null,
- "_lastChangedAt": 1675887672086,
- "createdAt": "2023-02-08T20:21:10.311Z",
- "updatedAt": "2023-02-08T20:21:12.052Z"
}, - {
- "id": "4ae4d0d7-93d7-478f-a21a-e82173038cbb",
- "sWatchListName": "MY Test Watchlist 2",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 8,
- "nToken": 500875,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1675887657831,
- "createdAt": "2023-02-08T20:20:57.813Z",
- "updatedAt": "2023-02-08T20:20:57.813Z"
}, - {
- "id": "b515ae62-2f92-40ef-845b-309719d8242f",
- "sWatchListName": "RAJENDRA SIRVI",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 666,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1679317583294,
- "createdAt": "2023-03-20T13:06:23.276Z",
- "updatedAt": "2023-03-20T13:06:23.276Z"
}, - {
- "id": "99e75d7d-188a-4cdc-bead-c8a9e962908a",
- "sWatchListName": "Test Subscribe",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [ ],
- "_version": 2,
- "_deleted": null,
- "_lastChangedAt": 1677250297746,
- "createdAt": "2023-02-24T14:49:59.512Z",
- "updatedAt": "2023-02-24T14:51:37.745Z"
}, - {
- "id": "dc2d6b25-ef58-48eb-813b-6a5672676f1b",
- "sWatchListName": "RISH",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 22,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 15083,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 25,
- "nSequenceNo": 3,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1675961709246,
- "createdAt": "2023-02-09T16:55:09.227Z",
- "updatedAt": "2023-02-09T16:55:09.227Z"
}, - {
- "id": "6ba78e9a-70d4-4f42-a4c4-67ccb3a72469",
- "sWatchListName": "GLOBAL",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1675887613844,
- "createdAt": "2023-02-08T20:20:13.823Z",
- "updatedAt": "2023-02-08T20:20:13.823Z"
}
]
}
This call would return the Watchlist on the basis of the given Watchlist Id.
watchlistId required | string Example: eb4198ce-3964-4413-87ec-6581d5716f56 Watchlist ID (id field from the Watchlist response) |
Authorization | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist fetched successfully.",
- "data": {
- "id": "eb4198ce-3964-4413-87ec-6581d5716f56",
- "sWatchListName": "GLOBAL",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "INDRESH_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 1,
- "nToken": 1594,
- "nSequenceNo": 1,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1679321109723,
- "createdAt": "2023-03-20T14:05:09.704Z",
- "updatedAt": "2023-03-20T14:05:09.704Z"
}
}
This call will help user to create a new Watchlist.
Authorization required | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
sWatchListName required | string Watchlist's Name |
bIsPrivate | boolean Flag to identify private Watchlist |
bIsDefault | boolean Flag to make Watchlist default |
sSettings | string Reserved (must be JSON string) |
Array of objects List of all scrips in watchlist |
{- "sWatchListName": "Test",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 666,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
]
}
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist created successfully.",
- "data": {
- "id": "7c1aad4a-54fc-481a-98c4-e08f66eb0ca2",
- "sWatchListName": "Test",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 666,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
], - "_version": 1,
- "_deleted": null,
- "_lastChangedAt": 1679923190363,
- "createdAt": "2023-03-27T13:19:50.363Z",
- "updatedAt": "2023-03-27T13:19:50.363Z"
}
}
This call will let user to update an existing Watchlist and it can be used for renaming an existing Watchlist. It will facilitate to change the sequence of the scrips. Furthermore user can add/delete scrips from the Watchlist.
Authorization required | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
id required | string Watchlist's ID |
sWatchListName | string Watchlist's Name |
bIsPrivate | boolean Flag to identify private Watchlist |
bIsDefault | boolean Flag to make Watchlist default |
sSettings | string Reserved (must be JSON string) |
Array of objects List of all scrips in Watchlist | |
_version required | number Version number of the Watchlist |
{- "id": "7c1aad4a-54fc-481a-98c4-e08f66eb0ca2",
- "sWatchListName": "Test",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 22,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
], - "_version": 1
}
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist updated successfully.",
- "data": {
- "id": "7c1aad4a-54fc-481a-98c4-e08f66eb0ca2",
- "sWatchListName": "Test",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 22,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
], - "_version": 2,
- "_deleted": null,
- "_lastChangedAt": 1679923403533,
- "createdAt": "2023-03-27T13:19:50.363Z",
- "updatedAt": "2023-03-27T13:23:23.511Z"
}
}
This call will let user delete an existing Watchlist created by him/her.
id required | string Example: id=b515ae62-2f92-40ef-845b-309719d8242f Watchlist ID (id field from the Watchlist response) |
_version required | integer Example: _version=1 Version (_version field from the Watchlist response) |
Authorization required | string Example: {{access_token}} |
x-api-key | string Example: {{x-api-key}} |
{- "status": "success",
- "code": "s-101",
- "message": "Watchlist Deleted successfully.",
- "data": {
- "id": "b515ae62-2f92-40ef-845b-309719d8242f",
- "sWatchListName": "RAJENDRA SIRVI",
- "bIsPrivate": true,
- "bIsDefault": false,
- "sUserId": "2JZ92_1524",
- "sTenantId": "1524",
- "sSettings": null,
- "scrips": [
- {
- "nMarketSegmentId": 2048,
- "nToken": 1353,
- "nSequenceNo": 1,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500103,
- "nSequenceNo": 2,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 666,
- "nSequenceNo": 3,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 1660,
- "nSequenceNo": 4,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 2885,
- "nSequenceNo": 5,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 21862,
- "nSequenceNo": 6,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 500325,
- "nSequenceNo": 7,
- "sSettings": null
}, - {
- "nMarketSegmentId": 1,
- "nToken": 5012,
- "nSequenceNo": 8,
- "sSettings": null
}, - {
- "nMarketSegmentId": 8,
- "nToken": 524404,
- "nSequenceNo": 9,
- "sSettings": null
}
], - "_version": 2,
- "_deleted": true,
- "_lastChangedAt": 1679923511636,
- "createdAt": "2023-03-20T13:06:23.276Z",
- "updatedAt": "2023-03-20T13:06:23.276Z"
}
}
This section provides the API calls for Addendum and notices displayed to user on login and accept their acknowlegment.
This call would return all the addendum and notices created by the Member.
market_allowed required | string Example: 268437595 The exchange segments for which the addendum is required. |
login_type required | string Example: PASSWORD Type of login allowed for which the addendum is required. |
Authorization | string Example: {{access_token}} |
{- "status": "success",
- "code": "s-101",
- "message": "Addendum and notices data fetch successfully",
- "data": [
- {
- "notice_desc": "This is to text the new circular regarding the Risk disclosure",
- "notice_id": "20",
- "notice_title": "New Circular",
- "action_on_reject": "1",
- "show_checkbox": "1",
- "checkbox_label": "I agree",
- "log_off_message": "You are about to log off as you have not accepted the New Circular. Kindly confirm",
- "frequency": "0",
- "segment_allowed": "0"
}, - {
- "notice_desc": "<ul>\r\n\t\t\t<li style=\"padding-bottom:10px;\"><strong>9 out of 10 individual traders in equity Futures and Options Segment, incurred net losses.</strong></li>\r\n\t\t\t<li style=\"padding-bottom:10px;\"><strong>On an average, loss makers registered net trading loss close to 50,000 Rs.</strong></li>\r\n\t\t\t<li style=\"padding-bottom:10px;\"><strong>Over and above the net trading losses incurred, loss makers expended an additional 28% of net trading losses as transaction costs.</strong></li>\r\n\t\t\t<li style=\"padding-bottom:10px;\"><strong>Those making net trading profits, incurred between 15% to 50% of such profits as transaction cost.</strong></li>\r\n\t\t\t</ul>",
- "notice_id": "27",
- "notice_title": "Risk Disclosure",
- "action_on_reject": "1",
- "show_checkbox": "0",
- "checkbox_label": "",
- "log_off_message": "You are about to log off as you have not accepted the Risk Disclosure. Kindly confirm",
- "frequency": "3",
- "segment_allowed": "4102"
}
]
}
This call would register acknowledment by the user for a particular notice id.
Authorization required | string Example: {{access_token}} |
notice_id | string Notice id |
accept_or_reject_action | string Accept or Reject action |
client_mac_address | string Client mac address |
{- "notice_id": "20",
- "accept_or_reject_action": "ACCEPT",
- "client_mac_address": "00:00:00:00:00:00"
}
{- "status": "success",
- "code": "s-101",
- "message": "Status updated for notice ID 20"
}
The Price Feed API allows to get price feed from broadcast server.
Basic Flow to Implement the APIs:
STEP 1: Make a Login API call using login credential to obtain the broadcast socket server endpoint and broadcast access token.
STEP 2: Use broadcast access token in login request to broadcast server.
Click here to know how to connect or download API documentation.
System provides real-time streaming data to receive order & trade responses. This feature is exposed via socket.io. You need to use the standard socket.io library (for more information, kindly refer https://socket.io/).
This streaming feature is only meant for receiving real-time �Order & Trade responses�. All other features (order placement, order modification, portfolio details, etc.) need to be implemented using their respective APIs covered in the previous sections.
To use this feature, a client needs to establish a socket connection with the streaming server and subscribe to the events. Establishing the connectivity requires a couple of fields that are received in the Login API response (refer the User -> Login section to know how to login):
a. �others�:�messageSocket� � Streaming server�s endpoint that is used in the Connect section below.
b. �access_token� � A unique token that is issued to you for the purpose of authentication and is used in the Login section below.
Given below are the detailed steps, with a sample NodeJS code, describing the various events and how to subscribe to these events:
1. Connect: This step comprises of establishing the socket connection with the streaming server.
const io = require("socket.io-client"); // NPM package for socket.io
let ioClient = io.connect(url, {transports:['websocket']}); // url will be received in the Login API response -> �others�:�messageSocket�
2. Login: Here, you need to get authenticated before subscribing to events from the streaming server.
ioClient.on("connect", () => {
let msgLogin = {�jToken�:"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0b2tlbiIsImlhdCI6MTU5MzQ5.j80QyIeFOCJzNQk "}; // jToken will be received in Login API response -> �access_token�
ioClient.emit('loginAPI', msgLogin); // the socket will get disconnected if the authentication check is unsuccessful
})
3. Order/ Trade response: You need to subscribe to the MSG:DATA event to receive order & trade responses from the streaming server.
ioClient.on("MSG:DATA", (response) => {
console.log(' Received response : ' + JSON.stringify(response)) ;
})
We have provided the order & trade response structures as well as sample responses after the Disconnect section below. It will help you understand the JSON response structure and the fields that are returned.
4. Disconnect: You need to disconnect the socket to close the connection with the streaming server. Moreover, you also need to subscribe to the �disconnect� event in case the server disconnects the connection.
ioClient.on("disconnect", (err) => {
console.log("Disconnected: Error: "+ err );
})
Note: To differentiate order and trade response, kindly refer "MessageType" in the response. For order response, the value will be "ORD_NRML" and for trade response, it will be "TRD_MSG".
Order response structure:
Parameter (Key) | Data Type | Description |
AMOOrderID | String | Order id for AMO/ EqGTD orders otherwise blank |
Buy_Sell | String | 1 -> Buy 2 -> Sell |
CP_ID | String | |
CliOrderNumber | Integer | Gateway/Client order number [System Generated] |
DQ | Integer | Disclose quantity. Specifies the quantity that has to be disclosed to the market e.g 2500 |
DQRemaining | Integer | Disclose quantity remaining |
Days | String | Number of days |
Exchange | String | Exchange for which order is to be placed |
ExpiryDate | String | Expiry Date. Ddmmmyyyy e.g 24JUN2004. Applicable for Future and option segment only |
GTDOrderStatus | Integer | GTDOrderStatus |
InitiatedBy | String | Initiated from application |
InitiatedByUserId | String | Initiated from user id |
InstrumentName | String | Instrument name provided in security information. Valid values are given bellow Equity = blank Future Index = FUTIDX Interest Rate Future = FUTINT Future Stock = FUTSTK Option Index = OPTIDX Option Stock = OPTSTK MCX/NCDEX Futures = FUTCOM MCXSpot = COM NCDEXSpot = COMDTY NSE Currency Future = FUTCUR, FUTIRD, FUTIRT, OPTCUR NSE Currency Spot = INDEX, UNDCUR, UNDIRD, UNDIRT |
LastModifiedTime | Date Time | Time when order was confirmed |
LegIndicator | String | Blank value |
ManagerID | String | Manager Id |
MarketType | Integer | Normal = 1 Auction = 2 PreOpen = 3 |
MessageSequenceNumber | String | Running Message Sequence Number. For order�s latest status always consider max sequence number. |
MessageType | String | ORD_NRML |
Misc | String | Values will be: SPO-LMT, SPO-MKT, PO-MKT, PO-LMT |
ModifiedBy | String | Modified by application |
ModifiedByUserId | String | Modified by user id |
Option_Type | String | Option Type. Applicable for options only. |
OrderEntryTime | Date Time | Date and Time will be in 24 Hour Format e.g.: 15Jun2019 15.25.15 |
OrderNumber | String | For order entry request must be 0. In case of Modification/Cancellation request, this needs to be filled before sending. |
OrderOriginalQty | Integer | Total Quantity of an Order |
OrderPrice | Integer | Specifies the price in paise at which the order is placed. |
OrderStatus | Integer | Order Status |
OrderType | Integer | Order Type |
OrderValidity | String | Validity |
PartCode | String | Participant ID |
PendingQty | Integer | Pending quantity |
ProCli | String | 2 -> PRO 1 -> Client |
Product | String | ProductType of the order |
Reason | String | Rejection Reason |
ScripCode | String | Scrip Code |
Series | String | Exchange provided Security Series |
SpreadFlag | Integer | Normal order = 0 Spread order = 1 |
SpreadPrice | Integer | Spread Price |
StrikePrice | Integer | Exchange provided Strike price (in multiples of 100). Applicable only for options. |
Symbol | String | Exchange provided Security symbol |
TradedQTY | String | Traded Quantity |
TriggerPrice | Integer | Trigger Price at which Stop loss Order should be active in market. This field is applicable only for a Stop loss order. |
UCC | String | Alias UCC Code |
UniqueCode | String | Alphanumeric value with special characters |
UserID | String | Exchange User ID |
UserRemarks | String | User Remarks |
Parameter (Key) | Data Type | Description |
Buy_Sell | String | 1 -> Buy 2 -> Sell |
CP_ID | String | |
CliOrderNumber | Integer | Gateway/Client order number [System Generated] |
DQ | String | Disclose quantity. Specifies the quantity that has to be disclosed to the market e.g 2500 |
DQRemaining | String | Disclose quantity remaining |
Days | Integer | Number of days |
Exchange | Integer | Exchange |
ExpiryDate | String | Expiry Date. Ddmmmyyyy e.g 24JUN2004. Applicable for Future and option segment only |
InitiatedBy | String | Initiated from application |
InitiatedByUserId | String | Initiated from user id |
InstrumentName | String | Instrument name provided in security information. Valid values are given bellow Equity = blank Future Index = FUTIDX Interest Rate Future = FUTINT Future Stock = FUTSTK Option Index = OPTIDX Option Stock = OPTSTK MCX/NCDEX Futures = FUTCOM MCXSpot = COM NCDEXSpot = COMDTY NSE Currency Future = FUTCUR, FUTIRD, FUTIRT, OPTCUR NSE Currency Spot = INDEX, UNDCUR, UNDIRD, UNDIRT |
LegIndicator | String | Blank value |
ManagerID | Integer | Manager Id |
MessageSequenceNumber | Integer | Running Message Sequence Number |
MessageType | String | TRD_MSG |
Misc | String | Values will be: SPO-LMT, SPO-MKT, PO-MKT, PO-LMT |
ModifiedBy | String | Modified by application |
ModifiedByUserId | String | Modified by user id |
Option_Type | String | Option Type. Applicable for options only. |
OrderLastModifiedTime | Date Time | Time when order was confirmed. Date and Time will be in 24 Hour Format e.g.: 15Jun2019 15.25.15 |
OrderNumber | String | For order entry request must be 0. In case of Modification/Cancellation request, this needs to be filled before sending. |
OrderOriginalQty | Integer | Total Quantity of an Order |
OrderPrice | Integer | Order Price (Fresh order/ Modified order) in paisa |
OrderTime | Date Time | Date and Time will be 24 Hour format like: 15Jun2019 15.25.15 |
OrderType | Integer | Order Type |
PartCode | String | Participant ID |
PendingQty | String | Pending quantity |
ProCli | String | 2 -> PRO 1 -> Client |
Product | String | ProductType of the order |
QuantityTradedToday | Integer | Total no. of quantity traded inclusive of the current trade quantity |
ScripCode | Integer | Scrip Code |
Series | String | Exchange provided Security Series |
SpreadFlag | Integer | Normal order = 0 Spread order = 1 |
SpreadPrice | Integer | Spread Price |
StrikePrice | Integer | Exchange provided Strike price (in multiples of 100). Applicable only for options. |
Symbol | String | Exchange provided Security symbol |
TradeNumber | String | Trade no. |
TradeQty | String | Traded Quantity |
TradeTime | Date Time | Date and Time will be 24 Hour format like: 15Jun2019 15.25.15 |
TradedPrice | String | Trade price in paisa. e.g. 45065 (in multiples of 100) |
UCC | String | Alias UCC Code |
UniqueCode | String | Alphanumeric value with special characters |
UserID | String | Exchange User ID |
UserRemarks | String | User Remarks |