Revert "Add disable_dataframe_checks to strategy templates"

This reverts commit a9c57e5147.
This commit is contained in:
Matthias 2020-05-30 16:23:33 +02:00
parent a9c57e5147
commit 376c536dd1
2 changed files with 0 additions and 8 deletions

View File

@ -57,10 +57,6 @@ class {{ strategy }}(IStrategy):
# Run "populate_indicators()" only for new candle.
process_only_new_candles = False
# Disable checking the dataframe (converts the error into a warning message)
# Only use if you understand the implications!
disable_dataframe_checks: bool = False
# These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = True
sell_profit_only = False

View File

@ -58,10 +58,6 @@ class SampleStrategy(IStrategy):
# Run "populate_indicators()" only for new candle.
process_only_new_candles = False
# Disable checking the dataframe (converts the error into a warning message)
# Only use if you understand the implications!
disable_dataframe_checks: bool = False
# These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = True
sell_profit_only = False