In the code below, is there any way to set endDate as latest value instead of as 0Q?
mydsws$timeSeriesListRequest(instrument = "LFTSE100", expression = "PCH#(XXXX,3M)", startDate = "-30Q", endDate = "-0Q", frequency = "Q")
In the code below, is there any way to set endDate as latest value instead of as 0Q?
mydsws$timeSeriesListRequest(instrument = "LFTSE100", expression = "PCH#(XXXX,3M)", startDate = "-30Q", endDate = "-0Q", frequency = "Q")
The endDate could be LATESTDATE, as shown below.
mydsws$timeSeriesListRequest(instrument = "LFTSE100", expression = "PCH#(XXXX,3M)", startDate = "-30Q", endDate = "LATESTDATE", frequency = "Q")