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.7.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 npm

Yahoo Finance parser was broken. So we created a new Yahoo Finace Parser. Now, the exchange rate is defined as the average value of close and open. Warning : getExchangeDataLowTraffic and getExchangeDataLowTrafficP returns error. Don't use now.

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 undefined 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,  undefined,  undefined,  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,  undefined,  undefined,  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,  undefined,  undefined,  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,  undefined,  undefined,  10.08,  10.065,  10.0245,  10.0968 ] JPYKRW or [Error:JPYKRW] error message
    

Warning

getExchangeDataArray does not return Arrays to Callback.

getExchangeDataLowTraffic(callback, errorHandler): void

  • callback : data:Array<Array<any>> => any
  • errorHandler : options (A default method is err => console.log(err))

Example

  • index.getExchangeDataLowTraffic(v => console.log(v));
    // [['EUR/USD', 8, 143.647461, 1.709399], ... more 23 items]
    

getExchangeDataLowTrafficP(): Promise<Array<Array>>

Example

  • index.getExchangeDataLowTrafficP().then(v => console.log(v))
    // [['EUR/USD', 8, 143.647461, 1.709399], ... more 23 items]
    

What is getExchangeDataLowTraffic and getExchangeDataLowTrafficP?

It just does one request and get data of 24 pairs. If you use the following pair, it is recommended that you use this method.

What pairs are available?

  • EUR/USD
  • USD/JPY
  • GBP/USD
  • AUD/USD
  • NZD/USD
  • EUR/JPY
  • GBP/JPY
  • EUR/GBP
  • EUR/CAD
  • EUR/SEK
  • EUR/CHF
  • EUR/HUF
  • EUR/JPY
  • USD/CNY
  • USD/HKD
  • USD/SGD
  • USD/INR
  • USD/MXN
  • USD/PHP
  • USD/IDR
  • USD/THB
  • USD/MYR
  • USD/ZAR
  • USD/RUB

What is getExchangeDataLowTrafficP?

It returns data using Promise.

getFxYahooJapan(callback, errorHandler): void

  • callback : (data:Object)=> any

data = { 'USDJPY':[100.05,100.15], ... more 21 data }

  • errorHandler : options (A default method is err => console.log(err)) It does return fx data (bid and ask) in 5m chart (5分足)

What pairs are available?

  • USDJPY
  • EURJPY
  • AUDJPY
  • GBPJPY
  • NZDJPY
  • CADJPY
  • CHFJPY
  • ZARJPY
  • CNHJPY
  • EURUSD
  • GBPUSD
  • AUDUSD
  • NZDUSD
  • HKDJPY
  • EURGBP
  • EURAUD
  • USDCHF
  • EURCHF
  • GBPCHF
  • AUDCHF
  • CADCHF
  • USDHKD

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

It returns a pair array.

Example

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

getUnit(currency:string):string or Array

It Returns a currency sign or a list of currency sign

Example

  •   const currency = 'USD';
      const currency2 = 'USDKRW';
      getUnit(currency);
      getUnit(currency2);
      // '$';
      // [ '$', '₩' ]
    

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

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

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

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

test.js

  • const yahooExchange = require('yahoo-exchange');
    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}`));
    
    

Some of the code from the library below has been included in this project.

FAQs

Package last updated on 14 May 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