I'm trying to recreate the following excel api call in python:
RHistory(FEED!J1,"ROAS.Timestamp;ROAS.Value","NBROWS:1000 INTERVAL:1D",,"SORT:DESC",J4)
My issue is I'm not sure how to specify that I want the ROAS returned in python, not the index level.
Consider the following code snippet: (line1) EndDate = datetime.now() (line2) StartDate = EndDate - timedelta(days=1000) (line3)MERHWC0_data = ek.get_timeseries([".MERHWC0"], start_date=StartDate, end_date=EndDate)
line 3 only returns the close field for .MERHWC0.Is ROAS supported by the python API?