Fix some types

This commit is contained in:
Matthias
2020-10-02 06:41:28 +02:00
parent 62110dc2fc
commit 66b77d2f53
3 changed files with 7 additions and 5 deletions

View File

@@ -123,6 +123,8 @@ class IStrategy(ABC):
# and wallets - access to the current balance.
dp: Optional[DataProvider] = None
wallets: Optional[Wallets] = None
# container variable for strategy source code
__source__: str = ''
# Definition of plot_config. See plotting documentation for more details.
plot_config: Dict = {}