Strategy004 is a trading strategy designed for backtesting on a trading website. The strategy uses various technical indicators to generate buy and sell signals. Here is a breakdown of how the strategy works:
Minimal ROI (Return on Investment): The strategy aims to achieve specific minimal returns at different time intervals (60, 30, 20, and 0 minutes).
These values can be adjusted.
Stoploss: The strategy has a predefined stoploss value (-0.10) to limit potential losses.
Timeframe: The strategy operates on 5-minute candlesticks, meaning it analyzes price data in 5-minute intervals. Trailing Stoploss: The strategy does not use trailing stoploss. Candle Processing: The strategy processes all candles, not just new ones. Sell Signals: The strategy uses multiple indicators to generate sell signals. It considers the slowadx value, fastk, fastd, fastk-previous, and fastd-previous. If the slowadx is below 25, either the fastk or fastd is above 70, and the fastk-previous is less than the fastd-previous, it generates a sell signal when the close price is above the exponential moving average (ema5). Buy Signals: The strategy uses several indicators to generate buy signals. It considers the adx, slowadx, cci, fastk, fastd, fastk-previous, fastd-previous, slowfastk, slowfastd, slowfastk-previous, slowfastd-previous, mean-volume, and close price. If the adx is above 50 or the slowadx is above 26, the cci is below -100, the fastk-previous and fastd-previous are both below 20, the slowfastk-previous and slowfastd-previous are both below 30, the fastk-previous is less than the fastd-previous, the fastk is greater than the fastd, the mean-volume is above 0.75, and the close price is above 0.00000100, it generates a buy signal. Order Types: The strategy uses limit orders for buying and selling, and market orders for stoploss. The strategy is authored by Gerald Lonlas and can be executed using the command python3 ./freqtrade/main.py -s Strategy004.