New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nasdaq-earnings

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nasdaq-earnings

Check Nasdaq's earnings calendar and report status

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

nasdaq-earnings

Check Nasdaq's earnings calendar on a given date

install

npm install nasdaq-earnings

usage

const nasdaq = require('nasdaq-earnings');

// current date
nasdaq.getCalendar().then(companies => {
  console.log(companies);
});

// date as strings
nasdaq.getCalendar('2018-Jun-04').then(companies => {
  console.log(companies);
});

// date as Date objects
nasdaq.getCalendar(new Date()).then(companies => {
  console.log(companies);
});

data format

[
    {
        "preMarket": false,
        "name": "Ascena Retail Group, Inc.",
        "symbol": "ASNA",
        "market_cap": "$639.59M",
        "eps": -0.09,
        "estimates": 2
    },
    {
        "preMarket": true,
        "name": "Capital Southwest Corporation",
        "symbol": "CSWC",
        "market_cap": "$275.18M",
        "eps": 0.27,
        "estimates": 1
    },
    //...
]

Keywords

FAQs

Package last updated on 04 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc