TRADE* EnterTrade(int side)
{
if (side == _LONG)
return enterLong(myTMF);
else
return enterShort(myTMF);
}