I'm running a strategy with 4 different signal types. What I want to achieve is the following:
Whenever a signal is generated, I want to make sure that there can't be another one (regadless of its type) on the next bar. Are Bool Flags the only way to go here? I'm asking this because I'm already using bool flags for another feature and I'm afraid that using them twice will make the code too complicated.
Thanks

Comment