My strategy has various profit targets:
SetProfitTarget("Entry1", CalculationMode.Ticks, ProfitTarget1);
SetProfitTarget("Entry2", CalculationMode.Ticks, ProfitTarget2);
SetProfitTarget("Entry3", CalculationMode.Ticks, ProfitTarget3);
When the first one is hit, I want to perform some action. How can I identify its execution using the OnExecution Method?
I have tried to use a Iorder variable but it does not compile ...
Best regards,

Comment