mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
17 lines
342 B
Python
17 lines
342 B
Python
|
|
from typing import Any, Dict
|
|
|
|
|
|
class ApiBG():
|
|
# Backtesting type: Backtesting
|
|
bt: Dict[str, Any] = {
|
|
'bt': None,
|
|
'data': None,
|
|
'timerange': None,
|
|
'last_config': {},
|
|
'bt_error': None,
|
|
}
|
|
bgtask_running: bool = False
|
|
# Exchange - only available in webserver mode.
|
|
exchange = None
|