Traceback (most recent call last):
File "/usr/local/lib/python3.11/inspect.py", line 1369, in getfullargspec
sig = _signature_from_callable(func,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/inspect.py", line 2449, in _signature_from_callable
raise TypeError('{!r} is not a callable object'.format(obj))
TypeError: True is not a callable object
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/freqtrade/freqtrade/main.py", line 42, in main
return_code = args['func'](args)
^^^^^^^^^^^^^^^^^^
File "/freqtrade/freqtrade/commands/optimize_commands.py", line 57, in start_backtesting
backtesting = Backtesting(config)
^^^^^^^^^^^^^^^^^^^
File "/freqtrade/freqtrade/optimize/backtesting.py", line 113, in __init__
self.strategylist.append(StrategyResolver.load_strategy(self.config))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/freqtrade/freqtrade/resolvers/strategy_resolver.py", line 48, in load_strategy
strategy: IStrategy = StrategyResolver._load_strategy(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/freqtrade/freqtrade/resolvers/strategy_resolver.py", line 278, in _load_strategy
return StrategyResolver.validate_strategy(strategy)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/freqtrade/freqtrade/resolvers/strategy_resolver.py", line 222, in validate_strategy
has_after_fill = ('after_fill' in getfullargspec(strategy.custom_stoploss).args
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/inspect.py", line 1379, in getfullargspec
raise TypeError('unsupported callable') from ex
TypeError: unsupported callable