Ti stai perdendo delle opportunità di trading:
- App di trading gratuite
- Oltre 8.000 segnali per il copy trading
- Notizie economiche per esplorare i mercati finanziari
Registrazione
Accedi
Accetti la politica del sito e le condizioni d’uso
Se non hai un account, registrati
Come faccio a sapere che SL/TP è stato attivato in OnTradeTransaction()?
Per capire la logica dei messaggi in OnTrade*, faccio una stampa dei parametri di input nel momento in cui si è verificato l'evento di interesse.
Fate lo stesso, tutto diventa subito chiaro.
Ricorda che il TP in MT5 è sempre (a differenza di MT4) un ordine a mercato, che si blocca sul server MT5, non sulla borsa/ECN. Di conseguenza, quando viene attivato ci sarà latenza + slittamento del mercato di qualsiasi segno. Su alcuni MT4 TP ci sono ordini limite che vengono piazzati direttamente sull'ECN. Quindi non c'è latenza (MT-ECN) e nessuno slittamento negativo, ma c'è un reindirizzamento. Quindi il TP è uno dei forti svantaggi di MT5 rispetto a MT4.
Per capire la logica dei messaggi di OnTrade*, faccio una stampa dei parametri di input nel momento in cui si è verificato l'evento di interesse.
Fate lo stesso, tutto diventa subito chiaro.
Provato. In questo caso OnTrade() non è utile e nemmeno buono, dato che dobbiamo elaborare la storia per ogni evento di compravendita.
Ha senso scoprire l'attivazione di SL/TP in OnTradeTransaction() perché si può filtrare per tipo di evento. In questo caso ho definito il tipo di evento come "Add to history", poi il tipo di trade come "Exit" e poi un deadlock.
Provato. OnTrade() in questo caso non è utile, anzi è dannoso, perché dovrà elaborare la storia ad ogni evento di compravendita.
Si trattava di OnTrade*.
bool FirstRun = true;
void OnTick()
{
if (FirstRun)
{
const double Price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
FirstRun = (OrderSend(_Symbol, OP_BUY, 1, Price, 0, 0, Price + 10 * _Point) <= 0);
}
}
void OnTradeTransaction ( const MqlTradeTransaction &Trans, const MqlTradeRequest &Request, const MqlTradeResult &Result )
{
if (!FirstRun)
Print(ToString(Trans) + ToString(Request) + ToString(Result));
}
#define TOSTRING(A) #A + " = " + (string)(A) + "\n"
#define TOSTRING2(A) #A + " = " + EnumToString(A) + "\n"
string ToString( const MqlTradeTransaction &Trans )
{
return(TOSTRING(Trans.deal) + TOSTRING(Trans.order) + TOSTRING(Trans.symbol) +
TOSTRING2(Trans.type) + TOSTRING2(Trans.order_type) + TOSTRING2(Trans.order_state) +
TOSTRING2(Trans.deal_type) + TOSTRING2(Trans.time_type) +
TOSTRING(Trans.time_expiration) + TOSTRING(Trans.price) + TOSTRING(Trans.price_trigger) +
TOSTRING(Trans.price_sl) + TOSTRING(Trans.price_tp) + TOSTRING(Trans.volume) +
TOSTRING(Trans.position) + TOSTRING(Trans.position_by));
}
string ToString( const MqlTradeRequest &Request )
{
return(TOSTRING2(Request.action) + TOSTRING(Request.magic) + TOSTRING(Request.order) +
TOSTRING(Request.symbol) + TOSTRING(Request.volume) + TOSTRING(Request.price) +
TOSTRING(Request.stoplimit) + TOSTRING(Request.sl) + TOSTRING(Request.tp) +
TOSTRING(Request.deviation) + TOSTRING2(Request.type) + TOSTRING2(Request.type_filling) +
TOSTRING2(Request.type_time) + TOSTRING(Request.expiration) + TOSTRING(Request.comment) +
TOSTRING(Request.position) + TOSTRING(Request.position_by));
}
string ToString( const MqlTradeResult &Result )
{
return(TOSTRING(Result.retcode) + TOSTRING(Result.deal) + TOSTRING(Result.order) +
TOSTRING(Result.volume) + TOSTRING(Result.price) + TOSTRING(Result.bid) +
TOSTRING(Result.ask) + TOSTRING(Result.comment) + TOSTRING(Result.request_id) +
TOSTRING(Result.retcode_external));
}
2016.11.23 23:59:57 deal #3 sell 1.00 EURUSD at 1.06245 done (based on order #3)
2016.11.23 23:59:57 deal performed [#3 sell 1.00 EURUSD at 1.06245]
2016.11.23 23:59:57 order performed sell 1.00 at 1.06245 [#3 sell 1.00 EURUSD at 1.06245]
2016.11.23 23:59:57 Trans.deal = 3
2016.11.23 23:59:57 Trans.order = 3
2016.11.23 23:59:57 Trans.type = TRADE_TRANSACTION_DEAL_ADD
2016.11.23 23:59:57 Trans.order_type = ORDER_TYPE_BUY
2016.11.23 23:59:57 Trans.order_state = ORDER_STATE_STARTED
2016.11.23 23:59:57 Trans.deal_type = DEAL_TYPE_SELL
2016.11.23 23:59:57 Trans.time_type = ORDER_TIME_GTC
2016.11.23 23:59:57 Trans.time_expiration = 1970.01.01 00:00:00
2016.11.23 23:59:57 Trans.price = 1.06245
2016.11.23 23:59:57 Trans.price_trigger = 0.0
2016.11.23 23:59:57 Trans.price_sl = 0.0
2016.11.23 23:59:57 Trans.volume = 1.0
2016.11.23 23:59:57 Trans.position = 2
2016.11.23 23:59:57 Trans.position_by = 0
2016.11.23 23:59:57 Request.action = ENUM_TRADE_REQUEST_ACTIONS::0
2016.11.23 23:59:57 Request.magic = 0
2016.11.23 23:59:57 Request.order = 0
2016.11.23 23:59:57 Request.symbol =
2016.11.23 23:59:57 Request.volume = 0.0
2016.11.23 23:59:57 Request.price = 0.0
2016.11.23 23:59:57 Request.sl = 0.0
2016.11.23 23:59:57 Request.tp = 0.0
2016.11.23 23:59:57 Request.deviation = 0
2016.11.23 23:59:57 Request.type = ORDER_TYPE_BUY
2016.11.23 23:59:57 Request.type_filling = ORDER_FILLING_FOK
2016.11.23 23:59:57 Request.type_time = ORDER_TIME_GTC
2016.11.23 23:59:57 Request.expiration = 1970.01.01 00:00:00
2016.11.23 23:59:57 Request.comment =
2016.11.23 23:59:57 Request.position = 0
2016.11.23 23:59:57 Result.retcode = 0
2016.11.23 23:59:57 Result.deal = 0
2016.11.23 23:59:57 Result.order = 0
2016.11.23 23:59:57 Result.volume = 0.0
2016.11.23 23:59:57 Result.price = 0.0
2016.11.23 23:59:57 Result.bid = 0.0
2016.11.23 23:59:57 Result.ask = 0.0
2016.11.23 23:59:57 Result.comment =
2016.11.23 23:59:57 Result.request_id = 0
2016.11.23 23:59:57
2016.11.23 23:59:57 Trans.deal = 0
2016.11.23 23:59:57 Trans.order = 3
2016.11.23 23:59:57 Trans.symbol = EURUSD
2016.11.23 23:59:57 Trans.type = TRADE_TRANSACTION_ORDER_DELETE
2016.11.23 23:59:57 Trans.order_type = ORDER_TYPE_SELL
2016.11.23 23:59:57 Trans.order_state = ORDER_STATE_FILLED
2016.11.23 23:59:57 Trans.deal_type = DEAL_TYPE_BUY
2016.11.23 23:59:57 Trans.time_type = ORDER_TIME_GTC
2016.11.23 23:59:57 Trans.price = 1.06245
2016.11.23 23:59:57 Trans.price_trigger = 0.0
2016.11.23 23:59:57 Trans.price_sl = 0.0
2016.11.23 23:59:57 Trans.price_tp = 0.0
2016.11.23 23:59:57 Trans.volume = 1.0
2016.11.23 23:59:57 Trans.position = 2
2016.11.23 23:59:57 Trans.position_by = 0
2016.11.23 23:59:57 Request.action = ENUM_TRADE_REQUEST_ACTIONS::0
2016.11.23 23:59:57 Request.magic = 0
2016.11.23 23:59:57 Request.symbol =
2016.11.23 23:59:57 Request.volume = 0.0
2016.11.23 23:59:57 Request.price = 0.0
2016.11.23 23:59:57 Request.stoplimit = 0.0
2016.11.23 23:59:57 Request.sl = 0.0
2016.11.23 23:59:57 Request.tp = 0.0
2016.11.23 23:59:57 Request.deviation = 0
2016.11.23 23:59:57 Request.type = ORDER_TYPE_BUY
2016.11.23 23:59:57 Request.type_filling = ORDER_FILLING_FOK
2016.11.23 23:59:57 Request.expiration = 1970.01.01 00:00:00
2016.11.23 23:59:57 Request.comment =
2016.11.23 23:59:57 Request.position = 0
2016.11.23 23:59:57 Request.position_by = 0
2016.11.23 23:59:57 Result.retcode = 0
2016.11.23 23:59:57 Result.deal = 0
2016.11.23 23:59:57 Result.order = 0
2016.11.23 23:59:57 Result.volume = 0.0
2016.11.23 23:59:57 Result.price = 0.0
2016.11.23 23:59:57 Result.ask = 0.0
2016.11.23 23:59:57 Result.comment =
2016.11.23 23:59:57 Result.request_id = 0
2016.11.23 23:59:57 Result.retcode_external = 0
2016.11.23 23:59:57
2016.11.23 23:59:57 Trans.deal = 0
2016.11.23 23:59:57 Trans.order = 3
2016.11.23 23:59:57 Trans.symbol = EURUSD
2016.11.23 23:59:57 Trans.type = TRADE_TRANSACTION_HISTORY_ADD
2016.11.23 23:59:57 Trans.order_state = ORDER_STATE_FILLED
2016.11.23 23:59:57 Trans.deal_type = DEAL_TYPE_BUY
2016.11.23 23:59:57 Trans.time_type = ORDER_TIME_GTC
2016.11.23 23:59:57 Trans.time_expiration = 1970.01.01 00:00:00
2016.11.23 23:59:57 Trans.price = 1.06245
2016.11.23 23:59:57 Trans.price_trigger = 0.0
2016.11.23 23:59:57 Trans.price_sl = 0.0
2016.11.23 23:59:57 Trans.price_tp = 0.0
2016.11.23 23:59:57 Trans.volume = 0.0
2016.11.23 23:59:57 Trans.position_by = 0
2016.11.23 23:59:57 Request.action = ENUM_TRADE_REQUEST_ACTIONS::0
2016.11.23 23:59:57 Request.magic = 0
2016.11.23 23:59:57 Request.order = 0
2016.11.23 23:59:57 Request.symbol =
2016.11.23 23:59:57 Request.volume = 0.0
2016.11.23 23:59:57 Request.price = 0.0
2016.11.23 23:59:57 Request.stoplimit = 0.0
2016.11.23 23:59:57 Request.sl = 0.0
2016.11.23 23:59:57 Request.deviation = 0
2016.11.23 23:59:57 Request.type = ORDER_TYPE_BUY
2016.11.23 23:59:57 Request.type_filling = ORDER_FILLING_FOK
2016.11.23 23:59:57 Request.type_time = ORDER_TIME_GTC
2016.11.23 23:59:57 Request.expiration = 1970.01.01 00:00:00
2016.11.23 23:59:57 Request.comment =
2016.11.23 23:59:57 Request.position = 0
2016.11.23 23:59:57 Request.position_by = 0
2016.11.23 23:59:57 Result.retcode = 0
2016.11.23 23:59:57 Result.order = 0
2016.11.23 23:59:57 Result.volume = 0.0
2016.11.23 23:59:57 Result.price = 0.0
2016.11.23 23:59:57 Result.bid = 0.0
2016.11.23 23:59:57 Result.ask = 0.0
2016.11.23 23:59:57 Result.comment =
2016.11.23 23:59:57 Result.request_id = 0
2016.11.23 23:59:57 Result.retcode_external = 0
fxsaber:
Ilrisultato del tester
Sì, ma poi cosa?
Dove si vede che lo SL/TP è innescato? - Questa è la difficoltà))
chiuso una posizione .
Questo è il problema. Ma MT5 in qualche modo ottiene queste informazioni, a giudicare dal log e dal disegno delle posizioni chiuse.
Non funziona più così?
Forum sul trading, sistemi di trading automatico e test di strategia
Come faccio a sapere se è scattato il Take Profit o lo Stop Loss?
Stanislav Korotky, 2014.10.16 12:06
Ho controllato da SL/TP della posizione (ordine) e che il prezzo di chiusura è migliore o uguale a TP e peggiore o uguale a SL.Non funziona più?
Posso avere il codice?
...sì sì, posso avere Mashka per la coscia, scusa... Mostrami il codice, per favore.
Non funziona più così?