Im trying to further adjust my strategy to alter its buy and sell position using ETD & MAE. So if I understand correctly, ETD is the amount the price rose to and the difference from your exit. And MAE, the entry vs how much the price went in the opposite direction.
ie Your long and you entry @ 90, it drops to 85c then it rises to 99, then you sell at 97, your ETD is the 2c difference. And the MAE is the 5c difference.
So I used the following code to gather this information.
//MFE
PrintWithTimeStamp("" + Instrument.FullName + " MFE - " + Performance.AllTrades.TradesPerformance.Currency.A vgMfe.ToString() + "\r\nPoints: " + Performance.AllTrades.TradesPerformance.Points.Avg Mfe.ToString());
//MAE
PrintWithTimeStamp("" + Instrument.FullName + " MAE - " +
Performance.AllTrades.TradesPerformance.Currency.A vgMae.ToString() + "\r\nPoints: " + Performance.AllTrades.TradesPerformance.Points.Avg Mae.ToString());
//ETD
PrintWithTimeStamp("" + Instrument.FullName + " ETD - " + Performance.AllTrades.TradesPerformance.Currency.A vgEtd.ToString() + "\r\nPoints: " + Performance.AllTrades.TradesPerformance.Points.Avg Etd.ToString());
The strategy returned the following results.
$AUDJPY MFE - 249.999999999986
Points: 249.999999999986
$AUDJPY MAE - 75.0000000000028
Points: 75.0000000000028
$AUDJPY ETD - 0
Points: 0
Does anyone have in-site into how I can adjust these values, to work with an entry and exit strategy, I tried points and also currency. I'm just unsure why it has returned the values. Any help in better understanding this information would be much appreciated. I was hoping for like 2 ticks etc, so I can make alterations to my entry and exit targets.

Comment