npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

market-closure

v0.1.2

Published

Helpers for getting market closure status

Downloads

8

Readme

Market Closure Helper

This repo helps with checking if a market is currently closed according to a predefined schedule.

Install

yarn add market-closure

Usage

const { MarketClosure } = require('market-closure')

MarketClosure

Expects a timezone (e.g. "Europe/London"). See Luxon's documentation for more information: https://moment.github.io/luxon/docs/manual/zones

Hours is the trading hours per day where the market is open. See checkIfInHours() for more information on how this works. This object can be omitted or set to null to consider all days open. If a day is not included, then the entire day is considered closed.

Holidays is an array of holidays where the market is closed. See checkIfInHolidays() for more information.

const schedule = {
    // We are using the London Stock Exchange, so set the local timezone to "Europe/London"
    "timezone": "Europe/London",
    // Hours is the regular trading hours. In this set, we only show Monday and Tuesday as open.
    "hours": {
        // We have two sets of trading hours per day: 08-12, then lunch break, then 13-16
        "monday": ["08:00-12:00", "13:00-16:00"],
        "tuesday": ["08:00-12:00", "13:00-16:00"]
    },
    // Holidays are scheduled days where the market is closed
    "holidays": [
        {
            "year": 2020,
            "month": 5,
            "day": 8,
            // We can set the specific hours in the day where the market is closed.
            // In this case, the market is open until 12:30 local time.
            "hours": "12:30-23:59"
        },
        {
            "year": 2020,
            "month": 12,
            "day": 25
            // Here we have omitted the hours, so we consider the entire day closed.
        }
    ]
}

Arguments

  • schedule (Object): The schedule config for this market. See example above.

tradingHalted

Checks if trading is halted according to the schedule/config provided earlier. It will check both isInTradingHours() and isInHolidays() using the current time of the time zone provided.

If no time zone was provided, this will always return false.

isInTradingHours

Checks to see if the time provided is within the scheduled trading hours of the market. Returns true when local time is within trading hours (market is open).

Arguments

  • t (DateTime): The local time to check against

isInHolidays

Checks to see if the time provided is within a scheduled holiday. Returns true when local time is within a holiday ( market is closed).

Arguments

  • t (DateTime): The local time to check against