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
AZRUL
Posizionare questo :
static datetime lastUpdated = 0; if ((TimeCurrent()-lastUpdated) < PERIOD_M5*60) return(0); lastUpdated=TimeCurrent();
come prima linea della procedura di avvio e il resto del codice della procedura di avvio sarà eseguito con almeno 5 minuti di ritardo tra due esecuzioni consecutiveCaro SIR MLADEN,
Proverò a mettere questi codici SOLO....
Grazie MOLTO2 per il tuo tempo e la tua competenza.... 5° crediti
Sinceramente vostro
AZRUL...
Se compilo questo codice mentre uso "strict" ottengo"array out of range".
if (RSI4 > RSI1 && RSI4 < RSI1) drawArrow(i,Aqua,233,false);
if (RSI4 RSI1) drawArrow(i,Tomato,234,true);
[/PHP]
This works with no errors but of course there are arrows on every candle
if (RSI4 > RSI1 ) drawArrow(i,Aqua,233,false);
if (RSI4 < RSI1 ) drawArrow(i,Tomato,234,true);
This appears to be the problem as soon as the +1 is added.
[PHP]RSI4 > RSI1C'è una correzione per questo?
Se compilo questo codice mentre uso "strict" ottengo "array out of range"
if (RSI4 > RSI1 && RSI4 < RSI1) drawArrow(i,Aqua,233,false);
if (RSI4 RSI1) drawArrow(i,Tomato,234,true);
[/PHP]
This works with no errors but of course there are arrows on every candle
if (RSI4 > RSI1 ) drawArrow(i,Aqua,233,false);
if (RSI4 < RSI1 ) drawArrow(i,Tomato,234,true);
[/PHP]
This appears to be the problem as soon as the +1 is added.
[PHP]RSI4 > RSI1cja
Prova così :
[PHP]se(i<(Bars-1))
{
se (RSI4 > RSI1 && RSI4 < RSI1) drawArrow(i,Aqua,233,false);
if (RSI4 RSI1) drawArrow(i,Tomato,234,true);
}e dovrebbe funzionare
Ciao, ho un problema con un indicatore fibonacci, vorrei usarlo sullo stesso grafico a 1440 e 2280, come in questa immagine:
(Ecco perché ho creato manualmente)
Il problema è che ho creato una seconda versione dell'indicatore a 2 giorni ma quando lo inserisco sullo stesso grafico dove ho l'indicatore in versione 1440 automaticamente non vedo più le linee in 1440. Spero di risolvere con il vostro aiuto!
Ciao, ho un problema con un indicatore fibonacci, vorrei usarlo sullo stesso grafico a 1440 e 2280, come in questa immagine:
(Ecco perché ho creato manualmente)
Il problema è che ho creato una seconda versione dell'indicatore a 2 giorni ma quando lo inserisco sullo stesso grafico dove ho l'indicatore in versione 1440 automaticamente non vedo più le linee in 1440. Spero di risolvere con il vostro aiuto!dany84
Provalo ora: fibo_v9_1.mq4
Imposta il parametro UniqueID su un valore unico per ogni nuova istanza dell'indicatore e poi puoi avere tutte le istanze che vuoi
dany84
Provalo ora: fibo_v9_1.mq4
Imposta il parametro UniqueID su un valore unico per ogni nuova istanza dell'indicatore e poi puoi avere tutte le istanze che vuoiGrazie Mladen, ora funziona bene!
Strano errore!!!
I have the following string: " 99.40 "
double TakeProfit = StrToDouble("99.40");
Print("TakeProfit =", TakeProfit);
Print("or TakeProfit = ", NormalizeDouble(TakeProfit,2);
E questo è l'output:
TakeProfit =99.40000000000001
o TakeProfit = 99.40000000000001
Qualcuno può spiegarmi questo strano errore e cosa posso fare contro di esso?
Grazie!
Strano errore!!!
I have the following string: " 99.40 "
double TakeProfit = StrToDouble("99.40");
Print("TakeProfit =", TakeProfit);
Print("or TakeProfit = ", NormalizeDouble(TakeProfit,2);
E questo è l'output:
TakeProfit =99.40000000000001
o TakeProfit = 99.40000000000001
Qualcuno può spiegarmi questo strano errore e cosa posso fare contro di esso?
Grazie!sunshineh
Come hai ottenuto la parte "0000000000001" con la stampa?
Sto ottenendo questo quando uso quel codice:
Ciao,
questa è la stampa dei messaggi di due diversi conti Metatrader:
Ciao,
Questa è la stampa dei messaggi di due diversi conti Metatrader:
Probabilmente la build
Ho usato la build 660 per testarlo