Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
yahoo-exchange
Advanced tools
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.
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]
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
getExchangeDataArray does not return Arrays to Callback.
err => console.log(err)
)index.getExchangeDataLowTraffic(v => console.log(v));
// [['EUR/USD', 8, 143.647461, 1.709399], ... more 23 items]
index.getExchangeDataLowTrafficP().then(v => console.log(v))
// [['EUR/USD', 8, 143.647461, 1.709399], ... more 23 items]
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.
It returns data using Promise.
deprecated Since version 1.0. Will be deleted in version 2.0. Use getExchangeDataArray instead.
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
deprecated Since version 1.0. Will be deleted in version 2.0. Use getExchangeDataArray instead.
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
getDataArray does not return Array to Callback.
It Returns a pair array.
const currency = ['USD','JPY'];
const base = ['KRW'];
getPairArray(currency,base);
// ['USDKRW','JPYKRW'];
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
A simple exchange api of Yahoo Finance.
The npm package yahoo-exchange receives a total of 18 weekly downloads. As such, yahoo-exchange popularity was classified as not popular.
We found that yahoo-exchange demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.