I am trying to determine what is conceptually nature of what is possible within the BackTester.
Say, I have binary script that ranges from 1-10. Is it possible to run a combined backtest with 100% of the equity allocated to each asset only during its specified condition below using logic like the following:
Entry:
If Binary >= than 7 then SPY
If Binary < 7 and > 4, then GLD
If Binary <= 4 then SHV
Is this even possible? If so, how do you match the script to the Codes in the backtesting engine? How do you handle the exits since they are part of the entry?
Thanks in advance,
Eric