Lets try this instead, it seems the previous question was not any help available. I am trying to request intraday data via the API ( either the using Python as i asked about previously ( the Eikon data API ) or using the older ? .com desktop API. i have a working code for day end prices, but i cant find the documentation how to set the "RequestParameters" for intraday data, i tried adding interval='minute' it doesnt work though
This is my settings for end of day data that works fine
RequestParameters= "SDate='2024-01-19' eDate='2024-01-19' frq:C"
FieldsList="TR.priceclose"
I cant though work out the equivalent setting for intraday, this is what i tried ( based on trying to interpret what it looks like in the API in excel )
RequestParameters= "RequestParametersTxt.Text = "SDate='2024-01-02T12:00:00', eDate='2024-01-03T18:00:00', interval='minute'"
FieldsList=".close"
Any suggestions ?
Or even better some help getting the example code for the other API to work