CheckCloseShort

Prüft die Notwendigkeit eine Short-Position zu schließen.

virtual bool  CheckCloseShort()

Rückgabewert

Gibt true zurück wenn eine Operation ausgeführt ist, ansonsten gibt false zurück.

Hinweis

Prüft die Notwendigkeit eine Short-Position zu schließen (Aufruf der CheckCloseShort()-Methode eines Handelssignale-Objekts) und wenn die Bedienung erfüllt ist, schließt sie die Position (Aufruf der CloseShort()-Methode).

Implementierung

//+------------------------------------------------------------------+
//| Check for short position close or limit/stop order delete        |
//| INPUT:  no.                                                      |
//| OUTPUT: true-if trade operation processed, false otherwise.      |
//| REMARK: no.                                                      |
//+------------------------------------------------------------------+
bool CExpert::CheckCloseShort()
  {
   double price=EMPTY_VALUE;
//--- check for short close operations
   if(m_signal.CheckCloseShort(price))
      return(CloseShort(price));
//--- return without operations
   return(false);
  }