Kind Sirs:

Am I correct that this condition will capture pending trades that have hit their entry price PLUS **pending trades that are "at market" orders ** ?

for(current_trades)
{
if (TradeIsPending && TradeIsEntry )
{
//....
}
}


Thanks so much,

OptimusPrime