Vars
NumericSeries preE;
Numeric mar;
Begin
mar= MarketPosition;
if (AItime(750)==True) preE = 999;
if (AItime(750)==False) preE = 111;
Commentary("preE="+Text(preE));
Commentary("myenter="+Text(mar));
if (AItime(700)==true)
{
Buy(1,Close+2);
}
if (AItime(700)==False)
{
SellShort(1,Close-2);
}
End