order_calc_profit

Rückgabe des Gewinns in Kontowährung für die angegebene Handelsoperation.

order_calc_profit(
   action,          // Ordertyp (ORDER_TYPE_BUY oder ORDER_TYPE_SELL)
   symbol,          // Symbolname
   volume,          // Volume
   price_open,      // Eröffnungspreis
   price_close      // Schließpreis
   );

Parameter

action

[in]  Ordertyp kann eine der beiden Werte der Enumeration ORDER_TYPE annehmen: ORDER_TYPE_BUY or ORDER_TYPE_SELL. Benötigter unbenannter Parameter.

symbol

[in]  Name des Finanzinstruments. Benötigter unbenannter Parameter.

volume

[in]  Volumen der Handelsoperation. Benötigter unbenannter Parameter.

price_open

[in]  Eröffnungspreis. Benötigter unbenannter Parameter.

price_close

[in]  SchließpreisClose price. Benötigter unbenannter Parameter.

Rückgabewert

Double-Wert im Erfolgsfall, andernfalls nichts. Die Fehlernummer kann über last_error() abgefragt werden.

Hinweis

Die Funktion ermöglicht die Schätzung des Ergebnisses einer Handelsoperation auf dem aktuellen Konto und der aktuellen Handelsumgebung. Die Funktion ist ähnlich wie OrderCalcProfit.

Beispiel:

import MetaTrader5 as mt5
# Anzeige der Daten des Pakets MetaTrader 5
print("MetaTrader5 package author: ",mt5.__author__)
print("MetaTrader5 package version: ",mt5.__version__)
 
# Verbindung herstellen zum MetaTrader 5 Terminal
if not mt5.initialize():
    print("initialize() failed, error code =",mt5.last_error())
    quit()
 
# Abrufen der Kontowährung
account_currency=mt5.account_info().currency
print("Account сurrency:",account_currency)
 
# Auflistung der Symbole
symbols = ("EURUSD","GBPUSD","USDJPY")
print("Symbols to check margin:", symbols)
# Gewinnschätzung für Kauf und Verkauf
lot=1.0
distance=300
for symbol in symbols:
    symbol_info=mt5.symbol_info(symbol)
    if symbol_info is None:
        print(symbol,"not found, skipped")
        continue
    if not symbol_info.visible:
        print(symbol, "is not visible, trying to switch on")
        if not mt5.symbol_select(symbol,True):
            print("symbol_select({}}) failed, skipped",symbol)
            continue
    point=mt5.symbol_info(symbol).point
    symbol_tick=mt5.symbol_info_tick(symbol)
    ask=symbol_tick.ask
    bid=symbol_tick.bid
    buy_profit=mt5.order_calc_profit(mt5.ORDER_TYPE_BUY,symbol,lot,ask,ask+distance*point)
    if buy_profit!=None:
        print("   buy {} {} lot: profit on {} points => {} {}".format(symbol,lot,distance,buy_profit,account_currency));
    else:
        print("order_calc_profit(ORDER_TYPE_BUY) failed, error code =",mt5.last_error())
    sell_profit=mt5.order_calc_profit(mt5.ORDER_TYPE_SELL,symbol,lot,bid,bid-distance*point)
    if sell_profit!=None:
        print("   sell {} {} lots: profit on {} points => {} {}".format(symbol,lot,distance,sell_profit,account_currency));
    else:
        print("order_calc_profit(ORDER_TYPE_SELL) failed, error code =",mt5.last_error())
    print()
 
# Schließen der Verbindung zum MetaTrader 5 Terminal
mt5.shutdown()
 
 
Ergebnis:
MetaTrader5 package author:  MetaQuotes Software Corp.
MetaTrader5 package version:  5.0.29
 
Account сurrency: USD
Symbols to check margin: ('EURUSD', 'GBPUSD', 'USDJPY')
   buy EURUSD 1.0 lot: profit on 300 points => 300.0 USD
   sell EURUSD 1.0 lot: profit on 300 points => 300.0 USD
 
   buy GBPUSD 1.0 lot: profit on 300 points => 300.0 USD
   sell GBPUSD 1.0 lot: profit on 300 points => 300.0 USD
 
   buy USDJPY 1.0 lot: profit on 300 points => 276.54 USD
   sell USDJPY 1.0 lot: profit on 300 points => 278.09 USD

Siehe auch

order_calc_margin, order_check