Wordcloud
Strategy: strategy_3
Downloaded: 20230420
Stoploss: -0.99
The INbStrategy is a trading strategy implemented using the IStrategy interface from the freqtrade.strategy.interface module. It is designed for backtesting purposes on a backtesting website. Here's a breakdown of its important components: minimal_roi: This variable represents the minimum return on investment (ROI) required for a trade to be considered successful.

In this case, any ROI greater than or equal to 9999 (i.e., 999,900%) is considered acceptable.

stoploss: This variable sets the maximum acceptable loss for a trade.

If the trade's ROI drops below -0.99 (i.e., 99%), it will be automatically stopped. trailing_stop: This variable, when set to False, disables the trailing stop feature, which adjusts the stop-loss level as the trade's ROI increases. process_only_new_candles: When set to False, the strategy will process all candles in the historical data, not just the new ones. use_sell_signal: This variable determines whether to use a sell signal for exiting trades. When set to True, a sell signal is considered in the strategy. sell_profit_only: When set to False, the strategy considers all sell signals, regardless of profit. ignore_roi_if_buy_signal: When set to True, the ROI requirement is ignored if a buy signal is present. startup_candle_count: This variable indicates the number of candles needed before the strategy can generate valid signals. The exact value depends on the training feature timeframe. order_types: This dictionary defines the order types for different trade actions. In this case, "buy" and "sell" orders are set to "limit," while the stop-loss order is set to "market." Additionally, stoploss_on_exchange is set to False, meaning the stop-loss order is not placed on the exchange. order_time_in_force: This dictionary sets the time in force for different order types. Both "buy" and "sell" orders have "gtc" (good 'til canceled) as the time in force. Please note that some parts of the strategy have been commented out, indicating they are either disabled or not configured in this implementation.

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 114, in __init__ validate_config_consistency(self.config) File "/freqtrade/freqtrade/configuration/config_validation.py", line 95, in validate_config_consistency validate_config_schema(conf, preliminary=preliminary) File "/freqtrade/freqtrade/configuration/config_validation.py", line 65, in validate_config_schema raise ValidationError( jsonschema.exceptions.ValidationError: 'stoploss' is a required property
stoploss: -0.99
timeframe: 5m
hash(sha256): c2f03fd3e40947d548d4802a2a4aaf2bfa3ec15e8cc4cfcc52c9de821d5efed8

Was not able to fetch indicators from Strategyfile.

last change: 2024-04-29 02:38:44