Dear all,
We released a new strategy API endpoint which returns the data from the Summary, Holdings (Current) and Statistics tabs for strategies and books. Below is an example of how the endpoint is used:
import p123api
client = p123api.Client(api_id='xxx', api_key='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') #Insert your API Id and Key
try:
print(client.strategy(strategy_id=1004872)) #GARP $100k
except p123api.ClientException as e:
print(e)
Thank you, this will work for my use case.
Actually I want to pull data of multiple ranking systems - for each date.
But I can loop through all multiple ranking systems and merge tables.