mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 02:33:55 +00:00
17 lines
345 B
Python
17 lines
345 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
|