double Lot()
{
double lot=Lots;
if(CountTrades()<Count) lot=NormalizeDouble(Lots*MathPow(KLot,CountTrades()),2);
if(lot>MaxLot)lot=Lots;
return(lot);
}
extern bool Buy = 1; // баи
extern bool Sell = 0; // селы
AM2