What do these mean?

 

I downloaded a free open source EA that was made by some russian guy. It has these parameters which I can't figure out what they would be in english...

extern double Otkat = 40;
extern double KoridorOC = 30;
extern double KoridorOt = 8;

// check for long position (BUY) possibility
if(Hour()==0 && Minute()<=3 && DayOfWeek()!=1 && DayOfWeek()!=5 && OpCl>KoridorOC*Point && ClLo<(Otkat-KoridorOt)*Point)
{

 
Beakon wrote >>

I downloaded a free open source EA that was made by some russian guy. It has these parameters which I can't figure out what they would be in english...

extern double Otkat = 40;
extern double KoridorOC = 30;
extern double KoridorOt = 8;

// check for long position (BUY) possibility
if(Hour()==0 && Minute()<=3 && DayOfWeek()!=1 && DayOfWeek()!=5 && OpCl>KoridorOC*Point && ClLo<(Otkat-KoridorOt)*Point)
{

Anyone?