Hello Everybody,
I wonder if one of you guys can help me tweak the attached efs to alert me when the MACD signal trend is up (TRUE) and up (FALSE). I believe it happens on line 55. There you will see the following code:
if ( /* (vMACD_Hist >= vMACD_Hist_1) && (vMACD_Hist_1 >= vMACD_Hist_2)&&*/
(vEMA > vEMA_1) && (vEMA_1 > vEMA_2) )
TrendIsUp = true; else TrendIsUp = false;
If someone could just show me how to rewrite that piece of code so that I'm alerted when TrendIsUP = true and when TrendIsUp = False.
Cheers guys.
Carlton
I wonder if one of you guys can help me tweak the attached efs to alert me when the MACD signal trend is up (TRUE) and up (FALSE). I believe it happens on line 55. There you will see the following code:
if ( /* (vMACD_Hist >= vMACD_Hist_1) && (vMACD_Hist_1 >= vMACD_Hist_2)&&*/
(vEMA > vEMA_1) && (vEMA_1 > vEMA_2) )
TrendIsUp = true; else TrendIsUp = false;
If someone could just show me how to rewrite that piece of code so that I'm alerted when TrendIsUP = true and when TrendIsUp = False.
Cheers guys.
Carlton
Comment