process_only_new_candles = True
@property
- def can_short(self):
+ def can_short(self) -> bool:
return self.is_short_allowed()
@property
- def plot_config(self):
+ def plot_config(self) -> dict:
return {
"main_plot": {},
"subplots": {
}
@property
- def protections(self):
+ def protections(self) -> list:
fit_live_predictions_candles = self.freqai_info.get(
"fit_live_predictions_candles", 100
)
use_exit_signal = True
@property
- def startup_candle_count(self):
+ def startup_candle_count(self) -> int:
return int(self.freqai_info.get("fit_live_predictions_candles", 100) / 2)
def bot_start(self, **kwargs) -> None: