Hi,
I think there is a bug in the commission structure in the backtest (and in the paper trading)
From the documentation (https://www.quantopian.com/help#ide-commission)
according to this line:
"If you don't specify a commission, your backtest defaults to $0.001 per share with a $1 minimum cost per trade."
If I ran my strategy on backtest twice:
* once without specifying the commissions
* and once with this line:
set_commission(commission.PerShare(cost=0.001, min_trade_cost=1))
the backtest results must be the same, right ?.
But the results are TOTALLY different (the one with specifying the commission - much worst!)
Am I missing something here?
thanks!