Help me please

#1
I want to scan composite index value is zero and below. What should I do?

_SECTION_BEGIN("COMPOSITE INDEX");

A=RSI() - Ref(RSI(30),-19)+ MA(RSI(3),3);
Plot(A,"Composite Index",colorBlack,styleThick);
Plot(100,"",colorRed,styleDots,styleArea);
Plot(0,"",colorGreen,styleDots,styleArea);
Overbought=100;
Oversold=0;
Plot(100,"",colorWhite,styleArea);
Plot(120,"",colorBlack,styleHistogram);
Plot(120,"",colorRed,styleArea);
Plot(-20,"",colorBlack,styleHistogram);
Plot(-20,"",colorGreen,styleArea);
Overbought=100;
Oversold=-0;




_SECTION_END();
 

Similar threads