1.0.0 • Published 4 years ago

@steve-udotong/gatsby-stocktwits-symbol v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

gatsby-stocktwits-symbol

Pulls data about recent stocktwit messages under a given stock symbol, (EX: SPY, AAPL, TSLA)

Example

In your gatsby-config.js:

module.exports = {
  
  plugins: [
    
    {
      resolve: 'gatsby-stocktwits-symbol',
      options: {
        // get this at https://api.stocktwits.com/developers/apps/new 
        apikey: 'your_api_key',   
        stockId: 'SPY',
        maxTweets: 30, //optional, default is 20     
      }
    },
}