April 2019
Intermediate to advanced
426 pages
11h 13m
English
This section describes the steps for downloading our required prices and technical indicator values from Intrinio. Comprehensive documentation on the API calls can be found at https://docs.intrinio.com/documentation/api_v2. If you decide to use another data provider, go ahead and skip this section:
In [ ]: import requests BASE_URL = 'https://api-v2.intrinio.com' # REPLACE YOUR INTRINIO API KEY HERE! INTRINIO_API_KEY = 'Ojc3NjkzOGNmNDMxMGFiZWZiMmMxMmY0Yjk3MTQzYjdh' def query_intrinio(path, **kwargs): url = '%s%s'%(BASE_URL, path) kwargs['api_key'] = INTRINIO_API_KEY response = requests.get(url, params=kwargs) status_code ...
Read now
Unlock full access