Wordcloud
Strategy: yoyo_action_strategy_v0_1
Downloaded: 20220709
Stoploss: 0
The YoyoActionStrategy is a trading strategy that uses various indicators to generate buy and sell signals. Here is a summary of what the strategy does: Populating Indicators: Calculates the OHLC4 (average of open, high, low, and close prices). Computes exponential moving averages (ema_fast and ema_slow) using different time periods.

Calculates the relative strength index (rsi) using a specified period.

Computes the moving average convergence divergence (macd) as the difference between ema_fast and ema_slow.

Determines bullish and bearish states based on the macd values. Setting Stop Loss Levels: Calculates stop loss levels (sl1 and sl2) based on the average true range (atr) using different time periods. Creating Indicator Flags: Initializes flags for different indicator states such as green, blue, aqua, yellow, brown, red, long, preBuy, short, preSell, over_sole, over_bought, and bullish_last. Updates the flags based on the indicator conditions for each data point. Trail Stop Loss Calculation: Computes the trailing stop loss (trail2) based on the current close price and previous trail2 value. Adjusts the trail2 value based on the close price movement relative to the trail2 value and stop loss levels. Generating Buy and Sell Signals: Determines the buy signal based on the conditions when the green_last flag is False and the green flag is True. Sets the atr_stop value as the trail2 when the buy signal is True and the greenLine flag is True. Updates the atr_stop value based on the previous atr_stop value when the buy signal is False. Determines the sell signal based on the conditions when the red_last flag is False and the red flag is True, or when the atr_stop value is greater than the close price. Populating Buy and Sell Trends: Sets the "buy" column to 1 for the rows where the buy signal is True. Sets the "sell" column to 1 for the rows where the sell signal is True. The strategy uses a combination of indicators and trailing stop loss levels to identify potential buying and selling opportunities in the market.

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
timeframe: 4h
hash(sha256): c6ec40dfca88476571302d4ac6300a06ec44d032f79af10dd3b9c7ecc59d9d2a
indicators:
ohlc4 long close preSell over_bought
brown bearish over_sole trail2 bullish_last
signal_sell preBuy aqua open ema_fast
red high sl1 sl2 blue
short yellow macd green red_last
bullish greenLine_last green_last atr_stop rsi
greenLine ema_slow short_last hold_state low
signal_buy

Similar Strategies: (based on used indicators)

Strategy: yoyo_action_strategy_8, Similarity Score: 97.3%
Strategy: yoyo, Similarity Score: 83.78%
Strategy: yoyo_action_strategy, Similarity Score: 83.78%
Strategy: yoyo_action_strategy_102, Similarity Score: 83.78%

last change: 2024-04-29 20:31:58