# 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
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.deepsearch.com/dp/api/func/economy/imf/getimfseriesvalues.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
