I don't know if it's a fake backtest or not, but it doesn't match up with real trading.He want to see the same thing as the backtest show, and he don't believe that the backtest is fake.
I don't know if it's a fake backtest or not, but it doesn't match up with real trading.He want to see the same thing as the backtest show, and he don't believe that the backtest is fake.
Having the source code, it is very easy to do this, and then we will see the same picture as in the back test.This is what he want to see. Both directions in one trade.
This is the fake backtest and will not happen in demo or real accounts.
View attachment 166136
For me, this scheduler only works on a demo account. It is not installed on a real account.I recommend you download the version directly from their page.
LOTTO???Gli importi nelle impostazioni sono solo di esempio. Dovresti impostarne uno tuo in base al deposito. Ho $480 sul mio account in questo momento. Il profitto è impostato a $1, la perdita è di $200.
Che cosa è FR?
I replaced MT4 Build 1428 with 1430 and the scheduler started working on a real account.Works fine and the same way in demo or real accounts.
Hi, I put this EA to test but now I'm in a big floanting loss.I replaced MT4 Build 1428 with 1430 and the scheduler started working on a real account.
Your setting multiloss???Ciao, ho messo alla prova questo EA ma ora ho una grossa perdita fluttuante.
È da un trade preso nella sessione asiatica/di Londra. Come lo gestisci? Chiudi manualmente? L'EA sembra buono ma quando il mercato inizia a riprendersi, si comporta come tutti i robot Martingala. Hai qualche consiglio per noi? Grazie.
Hi Luigi, my Multiloss is default 3.Your setting multiloss???
Nel codice mostrato, il parametro Mult_Lossnon viene effettivamente utilizzato in nessuna logica di chiusura o gestione delle posizioni. Anche se è dichiarato come parametro esterno ( extern int Mult_Loss = 3, non ci sono linee di codice che lo impiegano in calcoli o condizioni.
Facciamo un'analisi dei passaggi chiave per chiarire la situazione:
Conclusione:
- Capitale iniziale: 100.000 euro (non influenza direttamente la logica, poiché l'EA lavora in base a profitti e perdite, non in percentuale di capitale).
- StartLots = 1 lotto:
- Qwaaw() restituisce il numero di lotti normalizzati rispetto alle regole del broker. Con StartLots=1, Qwaaw()restituiremo circa 1.0 lotto (salvo restrizioni broker).
- Mult_Loss = 3:
Questo parametro è presente ma non viene mai utilizzato all'interno del codice. Non influisce sulle logiche di profitto o perdita.
- Cosa fa l'EA con le soglie di profitto/perdita?
Nel codice vi sono condizioni come:
mq4
se(profitto > Profitto || profitto < -(Profitto*2))
{
// Chiudi tutte le operazioni
}
e
mq4
se(profitto < -(Qwaaw()*perdita))
{
// Chiude la posizione più vecchia in perdita
}
Qui si nota che l'unico riferimento per una soglia di perdita "grossa" è la variabile loss(fissata a 15.000) e il valore restituito da Qwaaw()(nel tuo caso 1.0 lotto).
Quindi se il profitto totale scende sotto -15.000 (1 lotto * 15.000), l'EA chiudendo la posizione più vecchia in perdita. Mult_Lossnon entra in questa logica.
Nonostante tu abbia impostato Mult_Loss = 3, nella versione del codice fornito questo parametro non viene mai utilizzato. L'Expert continuerà a chiudere tutte le operazioni al superamento delle soglie stabilite dalla logica interna (per esempio, superato un certo profitto o una certa perdita totale), ma Mult_Lossnon ha alcun effetto sulle decisioni del robot in questa specifica implementazione.
You also have a big DD from yesterday?Do you have the source code for the original gold coin?
The amount of the DD depends on the deposit.You also have a big DD from yesterday?
The amount of the DD depends on the deposit.
I have $550 in my account, the drawdown is $77.
The drawdown is 15%. It's not much.