This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| ## you will need to add an API key parameter if you call these more than a few times ## | |
| #OHLC data | |
| r = requests.get('https://finnhub.io/api/v1/stock/candle?symbol=AAPL&resolution=1&from=1572651390&to=1572910590') | |
| print(r.json()) | |
| #Tick data - premium accounts only | |
| r = requests.get('https://finnhub.io/api/v1/stock/tick?symbol=AAPL&date=2020-03-25') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* hello */ | |
| console.log('hello, tamper monkey!'); |
OlderNewer