Skip to content

Commit

Permalink
Adding readme examples for batch quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zackurben committed Jan 1, 2018
1 parent f5b8f51 commit f21076c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ alpha.data.intraday(`msft`).then(data => {
console.log(data);
});

alpha.data.batch([`msft`, `aapl`]).then(data => {
console.log(data);
});

alpha.forex.rate('btc', 'usd').then(data => {
console.log(data);
})
Expand Down Expand Up @@ -68,6 +72,7 @@ alpha.data.weekly(symbol, interval)
alpha.data.weekly_adjusted(symbol, interval)
alpha.data.monthly(symbol, interval)
alpha.data.monthly_adjusted(symbol, interval)
alpha.data.batch([symbol1, symbol2..])
```

## Forex
Expand Down

0 comments on commit f21076c

Please sign in to comment.