Swap Calculation in Tester wrong ??

 
Hello,

how ist Swap calculated in StrategyTester on Weekend?

I found out that when I open a position on Friday and close it on Monday after,
swap in StrategyTester is calculated only for 1 RolloverDay not for 3.
Is this calculation similar to real swap calculation ??

Thanks
 
Usually the swap fees are triple on Wednesdays to compensate for weekends.

Could you see swap fees in the MT4 tester? As separate fees listed in the results? I don't seem to have swap fees on my version.
 
bubo:
You can export all trades made by tester to a file with the buildin file functions.

->place your code in the deinit() function

open file;

for( int i = 0; i < OrderHistory();i++)
{
Select the history trades
export the values you want
}

close the file;

Try it out its simple. I think swap calculation is wrong.
Reason: