pl. correct these BT settings.....

bharatk8

Active Member
#1
When I ran explorer my AFL showed 143 trades.

When I ran BT it returned results for just 3 trades.

It seems there is something wrong with my BT settings.Pl. load these settings

on AFL of your choice.and if you get numbers of trades in BT almost

equal to trades shown in explorer,pl. save your settings and post them here.

In case some additional codes are required to achieve this pl. suggest

https://rapidshare.com/files/2393789943/too good.ABS
 
Last edited:
#2
You can not get the same results in exploration and backtest when using multiple symbols because exploration handles each symbol separately. You only get same results in exploration when using one symbol.

What do you wanna achieve anyway?? Simply use backtester. It's made for backtesting systems. :rolleyes:
 
#7
all codes have same issue
Can you read?

You can not get the same results in exploration and backtest when using multiple symbols because exploration handles each symbol separately. You only get same results in exploration when using one symbol.

What do you wanna achieve anyway?? Simply use backtester. It's made for backtesting systems. :rolleyes:
Show me one exploration and using equity() function in addcolumn that shows continuous equity when using multiple symbols.

And when using one symbol then I get same results in exploration and backtest.
 

bharatk8

Active Member
#8
Pl. suggest tweaks

Buy=(LEXT) AND (L<BT9Ld);
BuyPrice = O;
Sell = L < Ref(L,-1);
SellPrice = C;

Short=(UEXT) AND (H>TP9Ld);
ShortPrice = O;
Cover = H > Ref(H,-1);
CoverPrice = C;
E=Equity();

Filter= 1 AND (Buy OR Short );

AddColumn(IIf(Buy,66,45), "Buy", formatChar, colorWhite,IIf(Buy,colorGreen,colorWhite));

AddColumn(IIf(Short,83,45), "Short", formatChar, colorWhite,IIf(Short,colorRed,colorWhite));














Can you read?



Show me one exploration and using equity() function in addcolumn that shows continuous equity when using multiple symbols.

And when using one symbol then I get same results in exploration and backtest.
 
Last edited:
#9
Pl. suggest tweaks

Buy=(LEXT) AND (L<BT9Ld);
BuyPrice = O;
Sell = L < Ref(L,-1);
SellPrice = C;

Short=(UEXT) AND (H>TP9Ld);
ShortPrice = O;
Cover = H > Ref(H,-1);
CoverPrice = C;
E=Equity();

Filter= 1 AND (Buy OR Short );

AddColumn(IIf(Buy,66,45), "Buy", formatChar, colorWhite,IIf(Buy,colorGreen,colorWhite));

AddColumn(IIf(Short,83,45), "Short", formatChar, colorWhite,IIf(Short,colorRed,colorWhite));

Do you even understand what I'm trying to say??

And re-read post #2!!
 
Last edited:

Similar threads