formula for maximum adverse excursion

if (MarketPosition = 1) then
. MAE = (LowestLow – EntryPrice)/EntryPrice
else if (MarketPosition = -1) then
. MAE = (EntryPrice - HighestHigh)/EntryPrice;
 
Back
Top