Wordcloud
Strategy: MACDStrategy_458
Downloaded: 20220112
Stoploss: -0.3
5mFailedSpotv2Link

Strategy failed backtesting!
Reason: Duplicate of MACDStrategy

You will be redirected to the original Strategy in 15 seconds.Redirecting...
The MACDStrategy is a trading strategy implemented in Python for backtesting purposes. It uses technical analysis indicators such as MACD (Moving Average Convergence Divergence) and CCI (Commodity Channel Index) to identify potential buying and selling opportunities in the financial market. The strategy defines an uptrend when the MACD line is above the MACD signal line and the CCI value is below -50.

Conversely, a downtrend is defined when the MACD line is below the MACD signal line and the CCI value is above 100.

The strategy also includes predefined parameters such as minimal ROI (Return on Investment) and stoploss values, which can be overridden in the configuration file.

The minimal ROI specifies the desired profit percentage at different time intervals, while the stoploss defines the acceptable loss percentage before exiting a trade. The timeframe for this strategy is set to 5 minutes, indicating that it operates on 5-minute intervals of price data. In terms of implementation, the strategy uses the Freqtrade library and relies on the populate_indicators, populate_buy_trend, and populate_sell_trend methods to calculate the necessary indicators and generate the buy and sell signals based on the defined conditions. The strategy modifies the input DataFrame by adding columns for MACD, MACD signal, MACD histogram, and CCI values. The populate_buy_trend method populates the 'buy' column of the DataFrame with a value of 1 for rows that satisfy the conditions for a buy signal: MACD is greater than MACD signal and CCI is less than or equal to -50. Similarly, the populate_sell_trend method populates the 'sell' column of the DataFrame with a value of 1 for rows that satisfy the conditions for a sell signal: MACD is less than MACD signal and CCI is greater than or equal to 100. Overall, the MACDStrategy aims to exploit potential trends in the market using the MACD and CCI indicators, providing a basis for automated trading decisions.

stoploss: -0.3
timeframe: 5m
hash(sha256): 354b4a91525320c0ae8f6557df4f22341785e492870b9b107187444140a79f08

Was not able to fetch indicators from Strategyfile.

last change: 2022-07-11 14:55:22