Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

doppelgunner-stock

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

doppelgunner-stock

stock api for node connects with WSJ as of now

  • 2.3.6
  • latest
  • Source
  • npm
  • Socket score

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

doppelgunner-stock api

Api for getting historical-prices and analyzing its data.

Installation

npm install --save doppelgunner-stock

Samples

Loading of historical prices from WSJ.

  • Note: internet is required
  • Note: important to pass function callback to execute when downloading finished
import { HP, HPCommons, HPModel } from 'doppelgunner-stock';

HP.load(HP.downloadWSJ('X',false,'PH'), funcCallback);

OR

HP.load(HP.downloadWSJ('X',false,'PH'), () => {/*something to do here*/});

Function callback

  • Note: better to make promise for chaining
  • Note: This sample extracts and displays all dates
function funcCallback(hpModel) {
    new Promise((resolve,reject) => {
        resolve(hpModel);
    }).then(xurpas => HPCommons.getColumn(xurpas, 'date'))
      .then(dateColumn => console.log(dateColumn));
}

Limitations

  • Downloads from WSJ as of now
  • Only historical-prices

Keywords

FAQs

Package last updated on 10 Dec 2017

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