first working DOCN example. prints out each day's totals
This commit is contained in:
parent
3ae4d46ccc
commit
cecc84f98f
|
@ -0,0 +1,19 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
import time
|
||||||
|
import intrinio_sdk as intrinio
|
||||||
|
from intrinio_sdk.rest import ApiException
|
||||||
|
|
||||||
|
intrinio.ApiClient().set_api_key('OjZjZGIzZmYyNDg4NDZjYjQ4NzAzMzAyZjg0OTU5MDcz')
|
||||||
|
intrinio.ApiClient().allow_retries(True)
|
||||||
|
|
||||||
|
identifier = 'DOCN'
|
||||||
|
start_date = '2022-10-20'
|
||||||
|
end_date = '2022-11-01'
|
||||||
|
frequency = 'daily'
|
||||||
|
page_size = 100
|
||||||
|
next_page = ''
|
||||||
|
|
||||||
|
response = intrinio.SecurityApi().get_security_stock_prices(identifier, start_date=start_date, end_date=end_date, frequency=frequency, page_size=page_size, next_page=next_page)
|
||||||
|
print(response)
|
Loading…
Reference in New Issue