If I have a trade initiated from an addon or indicator like
sellOrd = acct.CreateOrder(Ins,oaction,otype,tif,1,0,0,"","E ntry",null);
NinjaTrader.NinjaScript.AtmStrategy.StartAtmStrate gy("My ATM", sellOrd);
How can/should I track its result ?
I guess I need to check when sellOrd gets filled (ok )
then I need the position ( not sure how to do that )
and then look at position.TradePerformance ?
Thanks !

Comment