Day Up With MA

Hii Sir,

When i am using days up with MA it is showing less number of signal now. Below is screen shot attached.
Is there a issue with my script. The black portion is also the area where MA is up for three days which i checked manually also but show bar is not appearing in the area.MA is up for 3 days

v1 = MA(BARS=80, STYLE=Exponential, CALC=Close); 
DU(v1) == 3

Hi Deepak,

Your script is looking for when there are 3 consecutive up days - the area you highlight has more than 3 so your script will not return a true result. The DU() and DD() functions are cumulative - put the following in a Show View and you will see the values:

v1 = MA(BARS=80, STYLE=Exponential, CALC=Close);
DU(v1)

Try using >=3 in your script instead if that’s what you want to see.