It happens in every case I try to gather data from there. Here a few examples:
```r
av_get(symbol = "MSFT", av_fun = "TIME_SERIES_INTRADAY", interval = "15min")
# A tibble: 100 x 6
timestamp open high low close volume
<dttm> <dbl> <dbl> <dbl> <dbl> <dbl>
1 2020-12-17 11:00:00 219. 219. 218. 218. 1089346
2 2020-12-17 11:15:00 218. 219. 218. 218. 799811
3 2020-12-17 11:30:00 218. 219. 218. 218. 661366
4 2020-12-17 11:45:00 218. 219. 218. 218. 679597
5 2020-12-17 12:00:00 218. 219. 218. 219. 897880
6 2020-12-17 12:15:00 219. 219. 218. 218. 724045
7 2020-12-17 12:30:00 218. 219. 218. 219. 466679
8 2020-12-17 12:45:00 219. 219. 218. 219. 489988
9 2020-12-17 13:00:00 219. 219. 219. 219. 466391
10 2020-12-17 13:15:00 219. 220. 219. 219. 780997
# ... with 90 more rows
Warnmeldung:
`...` is not empty.
We detected these problematic arguments:
* `needs_dots`
and
> av_get("EUR/USD", av_fun = "FX_INTRADAY", interval = "5min")
# A tibble: 100 x 5
timestamp open high low close
<dttm> <dbl> <dbl> <dbl> <dbl>
1 2020-12-21 19:45:00 1.23 1.23 1.22 1.22
2 2020-12-21 19:50:00 1.22 1.22 1.22 1.22
3 2020-12-21 19:55:00 1.22 1.22 1.22 1.22
4 2020-12-21 20:00:00 1.22 1.23 1.22 1.22
5 2020-12-21 20:05:00 1.22 1.23 1.22 1.22
6 2020-12-21 20:10:00 1.22 1.23 1.22 1.22
7 2020-12-21 20:15:00 1.22 1.22 1.22 1.22
8 2020-12-21 20:20:00 1.22 1.22 1.22 1.22
9 2020-12-21 20:25:00 1.22 1.22 1.22 1.22
10 2020-12-21 20:30:00 1.22 1.22 1.22 1.22
# ... with 90 more rows
Warnmeldung:
`...` is not empty.
We detected these problematic arguments:
* `needs_dots`
but happens also with equivalent getSymbols() or tq_get() requests
Thanks