CheckReverse

Проверяет необходимость и возможность разворота позиции.

virtual bool  CheckReverse()

Возвращаемое значение

true - выполнена какая-либо торговая операция, иначе - false.

Примечание

Последовательно проверяется необходимость разворота длинной позиции (вызов метода CheckReverseLong()), затем короткой (вызов метода CheckReverseShort()).

Реализация

//+------------------------------------------------------------------+
//| Check for position reverse                                       |
//| INPUT:  no.                                                      |
//| OUTPUT: true-if trade operation processed, false otherwise.      |
//| REMARK: no.                                                      |
//+------------------------------------------------------------------+
bool CExpert::CheckReverse()
  {
   if(m_position.PositionType()==POSITION_TYPE_BUY)
     {
      //--- check the possibility of reverse the long position
      if(CheckReverseLong())  return(true);
     }
   else
      //--- check the possibility of reverse the short position
      if(CheckReverseShort()) return(true);
//--- return without operations
   return(false);
  }