This utility provides functions to manage and query information related to trading schedules, market openings, and expiries for Indian Stock Market. The utility is written in JavaScript and can be used in Node.js environments.
- Market Status: Determine whether the market is currently open or closed.
- Holiday Check: Verify if a specified date is a market holiday.
- Expiry Information: Obtain accurate monthly and weekly expiry dates for Futures (FUT) and Options.
- Symbol Breakdown: Receive detailed breakdowns for Call Options (CE), Put Options (PE), and Futures (FUT) symbols in the required format.
- Comprehensive Symbol Matching: Efficiently match symbols and provide complete breakdowns.
- Holiday Database: Access an up-to-date list of public holidays and special days.
- Dynamic Updates: Benefit from regularly updated lists of public holidays and special days, ensuring accuracy every year.
Our utility is designed to enhance your trading experience by providing precise market status information and comprehensive symbol details.
To get started with the Indian Stock Market package, follow these steps:
npm install @zero65tech/indian-stock-market
const { info, isOpen, hasOpened, hasClosed, isHoliday } = require('@zero65tech/indian-stock-market')
- This utility uses IST (Indian Standard Time) for date and time calculations.
- All times are represented in a 24-hour format
This function analyzes a given trading symbol and returns information about the financial instrument, including script, expiry, expiry date, strike (if applicable), and type (FUT, PE, CE). It supports both monthly and weekly expiries for options.
const result = exports.info("NIFTY22JAN12000CE");
// Output: { script: 'NIFTY', exp: '22JAN', expiry: '2024-01-25', strike: 12000, type: 'CE' }
This function checks if the market is currently open based on the Indian Standard Time (IST). It considers holidays and special days.
const isOpen = exports.isOpen();
// Output: true or false
This function checks if the market has opened for the current day based on Indian Standard Time (IST). It considers holidays and special days.
const hasOpened = exports.hasOpened();
// Output: true or false
This function checks if the market has closed for the current day based on Indian Standard Time (IST). It considers holidays and special days.
const hasClosed = exports.hasClosed();
// Output: true or false
This function checks if a given date is a holiday. By default, it checks the current date if no date is provided. The function considers predefined holidays and special days.
const isHoliday = exports.isHoliday("2024-01-01");
// Output: false
// 2024-01-01 is not a Holiday
Expiry | Weekly (OPT Only) | Monthly (FUT & OPT) |
---|---|---|
Stocks | - | Thursday |
Nifty | Thursday | Thursday |
Nifty Bank | Wednesday | Thursday |
Nifty Financial | Tuesday | Tuesday |
The weekly expiry format is <YY><M><DD>. The month format is 1 for JAN, 2 for FEB, 3, 4, 5, 6, 7, 8, 9, O(capital o) for October, N for November, D for December.