Indicators: three indicators to use with the Raghee Horner method

 

three indicators to use with the Raghee Horner method:

three indicators to use with the Raghee Horner method

Author: roman robidet

 

hi it's interesting but ..
i don't see anything for raghee5minutes.mq4
check please
merci de verifier
kinonen

 
kinonen:

hi it's interesting but ..
i don't see anything for raghee5minutes.mq4
check please
merci de verifier
kinonen


This indicator run only in 5 minutes charts.
if you want tou use it in any period comment the line :
int start()
{

if (Period()>5) return(0); <-- comment this line --> //if (Period()>5) return(0);

 
romrob:
kinonen:

hi it's interesting but ..
i don't see anything for raghee5minutes.mq4
check please
merci de verifier
kinonen


This indicator run only in 5 minutes charts.
if you want tou use it in any period comment the line :
int start()
{

if (Period()>5) return(0); <-- comment this line --> //if (Period()>5) return(0);


i am on 5min Chart and don't see anything, just candles bars
and if i make : //if (Period ...
it doesn't work on TF > 5 min
sorry
 
i am on 5min Chart and don't see anything, just candles bars
and if i make : //if (Period ...
it doesn't work on TF > 5 min
sorry
Okay, the Raghee5minutes indicator only it used in up trend or down trend. you can identify the case with the RagheeCandleVagueBars indicator. if the colored bar are green or red the Raghee5minutes can be used but if you have only brown and chartreuse bar you can't.
if you want see all the time the plot comment the line else ..(see bellow) ., but in this case you see the ema34 only when you are in a up trend or down trend.

//-- main loop

for(int i=0; i<limit; i++)
{
if (Angle>30) { ema34[i]=iMA(Symbol(),0,34,0,MODE_EMA,PRICE_LOW,i);SetIndexLabel(2,"EMA34L");}
else if (Angle<-30) { ema34[i]=iMA(Symbol(),0,34,0,MODE_EMA,PRICE_HIGH,i);SetIndexLabel(2,"EMA34H");}
--> //else { ema13[i]=0;ema21[i]=0;ema55[i]=0;break;} <---- comment this line

I recomend to read https://www.mql5.com/go?link=http://ragheehorner.com/blog/?p=882
and also : http://ragheehorner.com/blog/?p=1133
 
romrob:
i am on 5min Chart and don't see anything, just candles bars
and if i make : //if (Period ...
it doesn't work on TF > 5 min
sorry
Okay, the Raghee5minutes indicator only it used in up trend or down trend. you can identify the case with the RagheeCandleVagueBars indicator. if the colored bar are green or red the Raghee5minutes can be used but if you have only brown and chartreuse bar you can't.
if you want see all the time the plot comment the line else ..(see bellow) ., but in this case you see the ema34 only when you are in a up trend or down trend.

//-- main loop

for(int i=0; i<limit; i++)
{
if (Angle>30) { ema34[i]=iMA(Symbol(),0,34,0,MODE_EMA,PRICE_LOW,i);SetIndexLabel(2,"EMA34L");}
else if (Angle<-30) { ema34[i]=iMA(Symbol(),0,34,0,MODE_EMA,PRICE_HIGH,i);SetIndexLabel(2,"EMA34H");}
--> //else { ema13[i]=0;ema21[i]=0;ema55[i]=0;break;} <---- comment this line

I recomend to read https://www.mql5.com/go?link=http://ragheehorner.com/blog/?p=882
and also : https://www.mql5.com/go?link=http://ragheehorner.com/blog/?p=1133

thanks you
kino
 
Raghee 5 mins doesn't work for me either.
Reason: