> For the complete documentation index, see [llms.txt](https://help.deepsearch.com/dp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.deepsearch.com/dp/api/func/economy/imf/getimfseriesvalues.md).

# GetImfSeriesValues

### Function specification

```
GetImfSeriesValues(entity_ids, date_from=None, date_to=None)
```

###

### Parameters

| Parameter   | Type                                  | Description                                                      |
| ----------- | ------------------------------------- | ---------------------------------------------------------------- |
| entity\_ids | <p>string or</p><p>list of string</p> | 조회하고자 하는 경제 지표의 entity id 를 명시합니다.                               |
| date\_from  | date                                  | 데이터 조회 기간의 시작 날짜를 지정합니다. 데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다.  |
| date\_to    | date                                  | 데이터 조회 기간의 마지막 날짜를 지정합니다. 데이터 조회 기간이 주어지지 않을 경우 전체 기간을 대상으로 합니다. |

###

### Examples

```
>>> GetImfSeriesValues("IMF:BOP.A.AU.BCA_BP6_USD")

...

                                     GetImfSeriesValues(IMF:BOP.A.AU.BCA_BP6_USD)
entity_id                date
IMF:BOP.A.AU.BCA_BP6_USD 1989-12-31               -18340.0914
                         1990-12-31               -15532.3758
                         1991-12-31               -10586.1628
                         1992-12-31               -10313.3046
                         1993-12-31                -9289.5209
...                                                       ...
                         2016-12-31               -41035.4161
                         2017-12-31               -35951.6948
                         2018-12-31               -29784.7383
                         2019-12-31                 8033.4004
                         2020-12-31                33829.3207

```

```
>>> GetImfSeriesValues(["IMF:BOP.A.AU.BCA_BP6_USD", "IMF:BOP.A.AR.BEFD_BP6_USD"], date_from=2010-01-01, date_to=2016-12-31)

...

                                      GetImfSeriesValues([IMF:BOP.A.AU.BCA_BP6_USD, IMF:BOP.A.AR.BEFD_BP6_USD], date_from=2010-01-01, date_to=2016-12-31)
entity_id                 date
IMF:BOP.A.AR.BEFD_BP6_USD 2010-12-31                    0.0000
                          2011-12-31                    0.0000
                          2012-12-31                    0.0000
                          2013-12-31                    0.0000
                          2014-12-31                    0.0000
                          2015-12-31                    0.0000
                          2016-12-31                    0.0000
IMF:BOP.A.AU.BCA_BP6_USD  2010-12-31               -44714.2461
                          2011-12-31               -44431.1561
                          2012-12-31               -64482.9100
                          2013-12-31               -47872.5310
                          2014-12-31               -43397.3976
                          2015-12-31               -56958.7118
                          2016-12-31               -41035.4161
```
