Expectancy is Avg. Profit/Loss %

Have you realized that the results of the expectancy formula is exactly the same as the average returns (including loses)?

That means that the value is already in the built in report => “Avg. Profit/Loss %” under “All Trades”, and that there is no use in adding it as a custom backtest proc.

:slight_smile:

There is no single definition of expectancy.

Give a look to:

http://www.unicorn.us.com/trading/expectancy.html

https://www.amazon.com/gp/product/007147871X

http://www.vantharp.com/tharp-concepts/expectancy.asp

Yes, that fact is documented in the Users’ Guide http://www.amibroker.com/guide/h_report.html

1 Like

Hi All,
I have this example bactesting report.
Would like to confirm my understanding the calculation of Avg. Profit/Loss % (or Expectancy (%).

image

From the manual, Avg. Profit/Loss %, also known as Expectancy (%) = (% Profit of winners + % Loss of losers)/(number of trades)

So I tried doing the following calculation:
A = % Profit of winners: 4,160.35/ 30,000
B = % Loss of losers: -13,106.30/30,000
Number of Trades = 5

Avg. Profit/Loss (%) = (A+B)/5
Is this correct?
Somehow the above only give me -5.98% instead of the correct answer in the Backtesting report (-6.10%).

Could the different due to the rounding error?

Thanks.

You should be using the % P/L per trade, not the dollars of P/L divided by 30,000 because it is unlikely (actually impossible in this example) that all of your trades had an initial value of exactly 30,000. even if they had, your calculation is incorrect because it's not weighted by the number of winning and losing trades. Therefore, the correct math is:

(2 * 6.98% - 3 * 14.81%) / 5 = -6.094%

The difference between -6.094 and -6.10 is rounding error.

3 Likes

Thanks @mradtke. It makes sense now. I pulled out the list of trades to manually calculate the %P/L per trades and get exactly your numbers.
Superb.

1 Like