Hi Team,
I have a client who is new to DSWS. He is using the below request and wants just one datapoint for each month. Instead he is retrieving the data at a daily frequency (see code and output below).
This is economics data (GDP) which is published quarterly. I have run the same request but I get the data back quarterly as expected. Please can you advise what has gone wrong here?
ds.get_data(tickers='USGDP...B,EKCGDP..A', fields=['X'], start=’2002-09-16’, end=’-0D’, freq=’Q’)
But client still gets the data for each day, instead for each quarter :
|Date |USGDP...B |EKCGDP..A
+----------+--------------------+---------------------+
|2002-08-15|10984.04 |1860.823 |
|2002-08-16|11061.433 |1991.025 |
|2002-08-17|11061.433 |1991.025 |
|2002-08-18|11061.433 |1991.025 |
|2002-08-19|11061.433 |1991.025 |
|2002-08-20|11061.433 |1991.025 |
|2002-08-21|11061.433 |1991.025 |
|2002-08-22|11061.433 |1991.025 |
|2002-08-23|11061.433 |1991.025 |
|2002-08-24|11061.433 |1991.025 |
Thanks in advance,
Alison