The "DoesNothingStrategy" is a simple trading strategy that does not perform any specific trading actions. It is mainly used as a skeleton or template for developing more advanced strategies. Here are the key points of the strategy:
The strategy has a minimal return on investment (ROI) of 1000.
This means that it aims to achieve a profit of 1000 units, regardless of market conditions.
The minimal ROI can be adjusted in the configuration file.
The strategy has a stoploss value of -1, which indicates that there is no predefined stop loss level. This means that the strategy does not have a specific exit condition based on the price dropping below a certain threshold. The timeframe used for the strategy is set to 1 day. This means that the strategy operates on daily price data. The strategy does not populate any indicators. The populate_indicators function simply returns the input dataframe without making any modifications. The strategy populates an "enter_long" column in the dataframe with a value of 0. This indicates that there are no specific conditions for entering a long position. The strategy populates an "exit_long" column in the dataframe with a value of 0. This indicates that there are no specific conditions for exiting a long position. Overall, the "DoesNothingStrategy" is a basic strategy that does not perform any trading actions or provide any specific signals for entering or exiting positions. It serves as a starting point for developing more complex trading strategies.