Hi,
what's wrong with the BtMovingAverage EFS in the BackTesting folder that it doesn't take gaps?
I've rewritten the code with
instead of
(same for doLong)
Anybody has a solution?
Linus
what's wrong with the BtMovingAverage EFS in the BackTesting folder that it doesn't take gaps?
I've rewritten the code with
PHP Code:
Strategy.doShort("Crossing Down", Strategy.LIMIT, Strategy.THISBAR,null,v-v%0.5);
PHP Code:
Strategy.doShort("Crossing Down", Strategy.MARKET, Strategy.THISBAR);
Anybody has a solution?
Linus
Comment