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

yahoo-exchange

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yahoo-exchange

A simple exchange api of Yahoo Finance.

  • 1.3.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-56.1%
Maintainers
1
Weekly downloads
 
Created
Source

yahoo-exchange

npm npm npm npm npm npm

getExchangeDataArray(pair, callback, errorHandler): void

  • pair : string or Array<string>
  • callback : (Array<number>, pair) => any
  • errorHandler : options (A default method is console.log(error))

Warning!

Bid and Ask can be returned NaN by some pair. If you find a pair that has errors, please write the pair at the issue.

A known error
  • JPYKRW

Array<number> : [Now, Changes, Changes percent, Previous Close, Open, Bid, Ask, Day's Range Min, Day's Range Max, 52 Week Range Min, 52 Week Range Max]

Example

  • getExchangeDataArray('USDKRW', data => console.log(data)); // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ]
    
  • getExchangeDataArray('USDKRW', data => console.log(data), error => console.log('[Error]' + error));
    // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] or [Error] error message
    
  • getExchangeDataArray('USDKRW', (data,pair) => console.log(data,pair), error => console.log('[Error]' + error));
    // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] USDRKW or [Error] error message
    
  • getExchangeDataArray('USDKRW', (data,pair) => console.log(data,pair), (error,pair) => console.log(`[Error:${pair}]${error}`));
     // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] USDKRW or [Error:USDKRW] error message
    
  • getExchangeDataArray(['USDKRW', 'JPYKRW'], data => console.log(data));
    // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ]
    // [ 10.08,  0.03,  0.34,  -0.11,  10.047,  NaN,  NaN,  10.08,  10.065,  10.0245,  10.0968 ]
    
  • getExchangeDataArray(['USDKRW', 'JPYKRW'], data => console.log(data), error => console.log('[Error]' + error));
    // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] or [Error] error message
    // [ 10.08,  0.03,  0.34,  -0.11,  10.047,  NaN,  NaN,  10.08,  10.065,  10.0245,  10.0968 ] or [Error] error message
    
  •  getExchangeDataArray(['USDKRW', 'JPYKRW'], (data,pair) => console.log(data, pair)), error => console.log('[Error]' + error));
     // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] USDKRW or [Error] error message
     // [ 10.08,  0.03,  0.34,  -0.11,  10.047,  NaN,  NaN,  10.08,  10.065,  10.0245,  10.0968 ] JPYKRW or [Error] error message
    
  •  getExchangeDataArray(['USDKRW', 'JPYKRW'], (data,pair) => console.log(data, pair)), (error,pair) => console.log(`[Error:${pair}]${error}`));
     // [ 1071.27,  0.88,  0.08,  -0.11,  1070.22,  1071.27,  1072.27,  1069.13,  1072.45,  1055.21,  1158.36 ] USDKRW or [Error:USDKRW] error message
     // [ 10.08,  0.03,  0.34,  -0.11,  10.047,  NaN,  NaN,  10.08,  10.065,  10.0245,  10.0968 ] JPYKRW or [Error:JPYKRW] error message
    

Warning

getExchangeDataArray does not return Arrays to Callback.

getData(pair, callback, errorHandler): void @deprecated

deprecated Since version 1.0. Will be deleted in version 2.0. Use getExchangeDataArray instead.

Example

  • getData('USDKRW', data => console.log(data)); // [
    
  • getData('USDKRW', data => console.log(data), error => console.log('[Error]' + error));
    // 1070 or [Error] error message
    
  • getData('USDKRW', (data,pair) => console.log(data,pair), error => console.log('[Error]' + error));
    // 1070 USDRKW or [Error] error message
    
  • getData('USDKRW', (data,pair) => console.log(data,pair), (error,pair) => console.log(`[Error:${pair}]${error}`));
     // 1070 USDKRW or [Error:USDKRW] error message
    

getDataArray(pair, callback, errorHandler): void @deprecated

deprecated Since version 1.0. Will be deleted in version 2.0. Use getExchangeDataArray instead.

Example

  • getDataArray(['USDKRW', 'JPYKRW'], data => console.log(data));
    // 1070
    // 970
    
  • getDataArray(['USDKRW', 'JPYKRW'], data => console.log(data), error => console.log('[Error]' + error));
    // 1070 or [Error] error message
    // 970 or [Error] error message
    
  •  getDataArray(['USDKRW', 'JPYKRW'], (data,pair) => console.log(data, pair)), error => console.log('[Error]' + error));
     // 1070 USDKRW or [Error] error message
     // 970 JPYKRW or [Error] error message
    
  •  getDataArray(['USDKRW', 'JPYKRW'], (data,pair) => console.log(data, pair)), (error,pair) => console.log(`[Error:${pair}]${error}`));
     // 1070 USDKRW or [Error:USDKRW] error message
     // 970 JPYKRW or [Error:JPYKRW] error message
    

Warning

getDataArray does not return Array to Callback.

getPairArray(currency: Array, base: Array): Array

It Returns a pair array.

Example

  •  const currency = ['USD','JPY'];
     const base = ['KRW'];
     getPairArray(currency,base);
     // ['USDKRW','JPYKRW'];
    

test.js

  • const yahooExchange = require('yahoo-exchange');
    /**
     * yahooExchange.getData('USDKRW', data => console.log(data));
     * yahooExchange.getDataArray(['USDKRW', 'JPYKRW'], data => console.log(data));
     * yahooExchange.getData('USDKRW', (data, pair) => console.log(data, pair));
     * yahooExchange.getDataArray(['USDKRW', 'JPYKRW'], (data, pair) => console.log(data, pair));
     * yahooExchange.getData('USDKRW', (data, pair) => console.log(data, pair), (error,pair) => console.log(`[Error] ${pair}\n${error}`));
     * yahooExchange.getDataArray(['USDKRW', 'JPYKRW'], (data, pair) => console.log(data, pair), (error,pair) => console.log(`[Error] ${pair}\n${error}`));
     */
    yahooExchange.getExchangeDataArray('USDKRW', data => console.log(data));
    yahooExchange.getExchangeDataArray(['USDKRW', 'JPYKRW'], data => console.log(data));
    yahooExchange.getExchangeDataArray('USDKRW', (data, pair) => console.log(data, pair));
    yahooExchange.getExchangeDataArray(['USDKRW', 'JPYKRW'], (data, pair) => console.log(data, pair));
    yahooExchange.getExchangeDataArray('USDKRW', (data, pair) => console.log(data, pair), (error, pair) => console.log(`[Error] ${pair}\n${error}`));
    yahooExchange.getExchangeDataArray(['USDKRW', 'JPYKRW'], (data, pair) => console.log(data, pair), (error, pair) => console.log(`[Error] ${pair}\n${error}`));
    
    

FAQs

Package last updated on 23 Mar 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