I want to reduce the amount of work when editing the same parts of code in multiple strategies and possibility of error doing so by just splitting strategy into several files, as my main code (with Entry/Exit/Money and Risk Management filters that are used in all strategies) is exactly the same, and only parts that change are specific entries and exits of each strategy.
How can I refactor my strategies, so that all of them use main master file and only custom entries and exits?
Comment