OpenLong

Führt Operationen für Eröffnung einer Long-Position.

virtual bool  OpenLong(
   double    price,    // Preis
   double    sl,       // Stop Loss
   double    tp        // Take Profit
   )

Parameter

price

[in] Markteintrittspreis.

sl

[in] Preis von Stop Loss.

tp

[in] Preis von Take Profit.

Rückgabewert

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

Hinweis

Die Lotgröße ist durch den Aufruf von LotOpenLong()-Methode definiert. Wenn ein Lot nicht gleich 0.0 ist, eröffnet die Position (Aufruf der Buy(...)-Methode vom Handelsobjekt).

Implementierung

//+------------------------------------------------------------------+
//| Long position open or limit/stop order set                       |
//| INPUT:  price - price,                                           |
//|         sl    - stop loss,                                       |
//|         tp    - take profit.                                     |
//| OUTPUT: true-if trade operation processed, false otherwise.      |
//| REMARK: no.                                                      |
//+------------------------------------------------------------------+
bool CExpert::OpenLong(double price,double sl,double tp)
  {
   if(price==EMPTY_VALUEreturn(false);
//--- get lot for open
   double lot=LotOpenLong(price,sl);
//--- check lot for open
   if(lot==0.0) return(false);
//---
   return(m_trade.Buy(lot,price,sl,tp));
  }