-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHistoric data resources.txt
More file actions
34 lines (28 loc) · 1.27 KB
/
Copy pathHistoric data resources.txt
File metadata and controls
34 lines (28 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
https://finance.yahoo.com/quote/AAPL/history?p=AAPL&.tsrc=fin-srch
https://www.dukascopy.com/wiki/en/development/strategy-api/historical-data
https://www.alphavantage.co/query?function=GLOBAL_QUOTE&symbol=JOH&apikey=CNFP17MQU340FIQV
https://www.alphavantage.co/query?function=GLOBAL_QUOTE&symbol=DSY.JOH&apikey=CNFP17MQU340FIQV
https://www.alphavantage.co/documentation/
https://www.alphavantage.co/
https://www.quandl.com/tools/full-list
https://www.quandl.com/
https://www.morningstar.com/
https://iextrading.com/developer/
https://www.fmlabs.com/reference/default.htm
API
https://app.alpaca.markets/signup
https://www.quantconnect.com/data/tree
https://docs.tradingeconomics.com/#historical
STOCK PREDICTIONS
https://www.predictwallstreet.com/
Temp
-------------------------------------------------------------
investing.py: https://github.com/freenetwork/investing.com.economic-calendar
=======================Python and Selenium===================
import selenium
from selenium import webdriver
driver.Chrome(executable_path=PATH_TO_CHROMEDRIVER)
driver.get("https://www.investing.com/economic-calendar/")
driver.find_element_by_id("timeFrame_tomorrow").click()
html = driver.page_source
=============================================================