![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gatsby-yahoo-finance-api
Advanced tools
Source plugin for pulling in market and individual stock data into Gatsby from the unofficial Yahoo Finance API hosted by Rapid API.
Yahoo deprecated their API in 2012, but it has since been made available on Rapid API and still provides valuable data for current and historical stock market information.
This is only a small subset of the data offered by the Yahoo Finance API, so if there's something missing that you'd like to see added please open an issue or create a pull request in Github!
npm install --save gatsby-yahoo-finance-api
First you'll need to create an Rapid API account to retrieve an API key here.
Then in your gatsby-config.js
, add the following plugin configuration for Gatsby to pull in your data:
plugins: [
{
resolve: "gatsby-yahoo-finance-api",
options: {
/* Your Yahoo Finance API Key (Required) */
key: "<YOUR_API_KEY>",
/*
An array of queries you want to make (The data you want to fetch at build time).
At least one query object is required.
*/
queries: [
/*
Below is a list of all queries available, with their associated types and params.
All queries must have a "type" and a "params" field
The query type determines which query will be made.
Note: Timestamps for this API are in Unix epoch time. Refer to https:/www.epochconverter.com/ to determine a timestamp for a given date.
*/
{
type: "get-historical-data",
params: {
period1: "1431010482", // (Required) Epoch timestamp
period2: "1588863282", // (Required) Epoch timestamp
symbol: "TSLA", // (Required) Stock ticker/symbol
frequency: "1d", // (Optional) Options: 1d | 1w | 1mo
},
},
{
type: "get-balance-sheet",
params: {
symbol: "TSLA", // (Required) Stock ticker/symbol
},
},
{
type: "get-movers",
params: {
region: "US", // (Required) Options: AU | CA | FR | DE | HK | US | IT | ES | GB | IN
lang: "en", // (Required) Options: en | fr | de | it | es | zh
count: "10", // (Optional) The number of quotes to display in day gainers / losers / activies
},
},
{
type: "get-charts",
params: {
symbol: "TSLA", // (Required) Stock ticker/symbol
region: "US", // (Required) Options: AU | CA | FR | DE | HK | US | IT | ES | GB | IN
lang: "en", // (Required) Options: en | fr | de | it | es | zh
range: "3mo", // (Required) Options: 1d | 5d | 3mo | 6mo | 1y | 5y | max
interval: "1mo", // (Required) Options: 5m | 15m | 1d | 1wk | 1mo
comparisons: "APPL,GOOG", // (Optional) Comma seperated list of stock symbols to retrieve financial data for
},
},
],
},
},
]
Once the build is done, the following node types will be available in your GraphQL queries (depending on which queries were made)
You can query generated nodes like the following:
{
allStockHistoricalData {
edges {
node {
prices {
close
open
date
}
}
}
}
}
FAQs
Source plugin for the Yahoo Finance API
The npm package gatsby-yahoo-finance-api receives a total of 2 weekly downloads. As such, gatsby-yahoo-finance-api popularity was classified as not popular.
We found that gatsby-yahoo-finance-api 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.