Is there a way to "ban" some tickers across all strategies from signal generation? I have a few strategy that generates signals for the ticker EA, but the stock is pending for being taken private and has been do nothing. So i want to ignore it from all my strategies before it's officially removed.
Additionally, is there a fundamental data source that has such data so we could also consider this in backtesting? Thanks.
Additionally, is there a fundamental data source that has such data so we could also consider this in backtesting? Thanks.
Rename
If you're not able to just remove it from your test DataSet, you can add a simple rule to "ignore" it like this at the top of Execute() for each Strategy:
For Blocks, add a Condition > Symbol Filter.
CODE:
if (bars.Symbol == "EA") return;
For Blocks, add a Condition > Symbol Filter.
Thanks Cone. I was looking for whether this could be done globally by a config or something since it's tedious to modify every strategy.
Your Response
Post
Edit Post
Login is required