docstrings added

This commit is contained in:
hroff-1902 2019-04-06 23:36:55 +03:00
parent 8cb1024ff6
commit dc1968b968
1 changed files with 15 additions and 0 deletions

View File

@ -135,12 +135,27 @@ def deep_merge_dicts(source, destination):
def timeframe_to_seconds(ticker_interval: str) -> int:
"""
This function uses ccxt to parse the timeframe interval value written in the human readable
form ('1m', '5m', '1h', '1d', '1w', etc.) and returns the number
of seconds for one timeframe interval.
"""
return Exchange.parse_timeframe(ticker_interval)
def timeframe_to_minutes(ticker_interval: str) -> int:
"""
This function uses ccxt to parse the timeframe interval value written in the human readable
form ('1m', '5m', '1h', '1d', '1w', etc.) and returns the number
of minutes for one timeframe interval.
"""
return Exchange.parse_timeframe(ticker_interval) // 60
def timeframe_to_msecs(ticker_interval: str) -> int:
"""
This function uses ccxt to parse the timeframe interval value written in the human readable
form ('1m', '5m', '1h', '1d', '1w', etc.) and returns the number
of milliseconds for one timeframe interval.
"""
return Exchange.parse_timeframe(ticker_interval) * 1000