# QueryFredSeriesData

### Function specification

```
QueryFredSeriesData(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

```
> QueryFredSeriesData(["BAMLH0A0HYM2", "UNRATE", "T10Y2Y"])

...

                              QueryFredSeriesData([BAMLH0A0HYM2, UNRATE, T10Y2Y])
entity_id         date
FRED:BAMLH0A0HYM2 1996-12-31                      3.13
                  1997-01-02                      3.06
                  1997-01-03                      3.09
                  1997-01-06                      3.10
                  1997-01-07                      3.10
...                                                ...
FRED:UNRATE       2020-03-01                      4.40
                  2020-04-01                     14.70
                  2020-05-01                     13.30
                  2020-06-01                     11.10
                  2020-07-01                     10.20
```
