Strumenti non in ritardo - pagina 39

 

Avete un indicatore per le candele blu e rosse?

Avete un indicatore per le candele blu e rosse?

 
bigsteely101:
Ciao ragazzi, ho avuto poca risposta alla mia domanda precedente, e ho pensato di aggiungere uno screenshot di alcuni dei trigger long e short che si attivano su Eur/USD con la strategia che ho descritto. Questo è un sito popolare per il forex trading, o ci sono altri siti che forse dovrei fare le mie richieste? Ho pensato che questo sarebbe stato il sito migliore considerando che l'indicatore MTF non lag moving average è stato sviluppato qui da Igorad. Sfortunatamente, sono troppo nuovo in questo sito per poter contattare direttamente Igorad. Quindi, ho allegato uno screenshot che mostra dove si verificherebbe un trigger long e short se le condizioni che ho menzionato prima sono soddisfatte. Le linee verticali (rosso = short e verde=long) indicano quando tre (linea sottile) o quattro (linea spessa) linee MTF Non lag MA iniziano a muoversi nella stessa direzione. Spero che lo screenshot aggiunto possa mostrare il potenziale di questo setup!

cos'è questo indicatore plz

grazie

 
mrtools:
Questo non lag tori orsi multi timeframe con avvisi, non poteva decidere se è utile o no, forse voi tutti potete decidere.

Ciao mrtools,

Trovo questo indicatore molto utile e sto codificando io stesso degli ea. quindi la mia domanda: E' possibile per te estrarre il segnale di tori e orsi per me? Voglio implementarlo nel mio ea e fare una prova.

Se vuoi testare anche il mio EA ti manderò un link tramite pm.

Saluti,

Banzak

 
banzak:
Ciao mrtools,

Trovo questo indicatore molto utile e sto codificando io stesso degli ea. quindi la mia domanda: È possibile per voi estrarre il segnale di tori e orsi per me? Voglio implementarlo nel mio ea e fare una prova.

Se vuoi testare anche il mio EA ti manderò un link tramite pm.

Cordiali saluti,

Banzak

Ciao Banzak,

Spero di aver capito bene, ho rimosso l'mtf e gli avvisi

File:
 
mrtools:
Ciao Banzak, Spero di aver capito bene, ho rimosso l'mtf e gli avvisi

Ciao mrtools,

Voglio costruire questo indicatore direttamente nel mio ea, quindi la mia domanda è se prendo

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

Quello che mi serve è l'estensione con il Nonlag...

Saluti,

Banzak

 
banzak:
Ciao mrtools,

Voglio costruire questo indicatore direttamente nel mio ea, quindi la mia domanda è se prendo

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

Quello che mi serve è l'estensione con il Nonlag...

Saluti,

Banzak

Banzak, penso di sapere, ma non sono abbastanza sicuro per dare il consiglio, e come funzionerebbe in un Ea, per me il suo molto più facile tutto il senso intorno a chiamare solo l'indicatore, solo usando il buffer di tendenza >< zero.

 
mrtools:
Banzak, penso di sapere ma non abbastanza sicuro circa abbastanza per dare il consiglio e come funzionerebbe in un Ea, a me il relativo molto più facile tutto il senso intorno appena per chiamare l'indicatore, appena usando il buffer di tendenza >< zero.

Salve signore,

pls aiutarmi voglio freccia in questo indicatore quando la linea blu e gialla si incrociano

File:
 

Per favore, qualcuno può aggiungere il metodo/modo nel non lag histo

ha avuto una prova veloce, ma deve mancare abit da qualche parte come nulla cambia

grazie mille

nonlag_ma_histo_mtfalerts.mq4

 

aggiunto il modo (credo)

aveva il modo nell'ordine, non fa molta differenza, ma vale sempre la pena provare

nonlag_ma_histo_mtfalerts.1.mq4

 

Grazie Mr Tools,

sto solo cercando di trovare l'ultimo indi per il mio sistema

poi cercherò di imparare a codificare