CheckTrailingStopLong

Prüft die Notwendigkeit Long-Position-Eigenschaften zu ändern.

virtual bool  CheckTrailingStopLong()

Rückgabewert

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

Hinweis

Prüft die Notwendigkeit die Parameter einer Long-Position zu ändern (Aufruf der CheckTrailingStopLong()-Methode des Trailing-Objekts). Wenn die Bedienung erfüllt ist, ändert sie die Long-Position-Parameter entsprechend den Einstellungen des Trailing-Objekts (Aufruf der Methode TrailingStopLong()).

Implementierung

//+------------------------------------------------------------------+
//| Check for trailing stop/profit long position                     |
//| INPUT:  no.                                                      |
//| OUTPUT: true-if trade operation processed, false otherwise.      |
//| REMARK: no.                                                      |
//+------------------------------------------------------------------+
bool CExpert::CheckTrailingStopLong()
  {
   double sl=EMPTY_VALUE;
   double tp=EMPTY_VALUE;
//--- check for long trailing stop operations
   if(m_trailing.CheckTrailingStopLong(GetPointer(m_position),sl,tp))
     {
      if(sl==EMPTY_VALUE) sl=m_position.StopLoss();
      if(tp==EMPTY_VALUE) tp=m_position.TakeProfit();
      //--- long trailing stop operations
      return(TrailingStopLong(sl,tp));
     }
//--- return without operations
   return(false);
  }