Update missed strings

This commit is contained in:
Matthias
2019-11-13 11:28:26 +01:00
parent c449e39280
commit 6ac73f7cde
2 changed files with 3 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ class DataProvider:
"""
Get stored historic ohlcv data
:param pair: pair to get the data for
:param timeframe: ticker interval to get data for
:param timeframe: timeframe to get data for
"""
return load_pair_history(pair=pair,
timeframe=timeframe or self._config['ticker_interval'],
@@ -73,7 +73,7 @@ class DataProvider:
Return pair ohlcv data, either live or cached historical -- depending
on the runmode.
:param pair: pair to get the data for
:param timeframe: ticker interval to get data for
:param timeframe: timeframe to get data for
:return: Dataframe for this pair
"""
if self.runmode in (RunMode.DRY_RUN, RunMode.LIVE):