So I have a question about back testing:
Scenario 1: I wrote some code, and selected the time period and $200,000 to trade. In the back testing YTD I get a result of over 700%.
Scenario 2: What I want to do is diversify the risk over five stocks at $200,000 each. So I increased the amount to test against to $1,000,000 and then added:
order_target_percent(context.stockname1, 0.2)
If I understand the tutorial section on this, this would give me $200,000 for that stock to test against. When I run the back test for the same dates and only this stock, it gives me returns of around 240%.
Shouldn't the returns be somewhat closer to each other and track a roughly similar path given that I am trading the same stock, the same value and the same time period?
Thanks for any insights!