Your filter is already set such that only those that EXACTLY match your Buy or Sell signals are listed. Any change you make will only increase the number of symbols that show up.
If you want fewer signals, then make your Buy signal more restrictive, or work with a smaller number of symbols. Note that your Buy and Sell logic does not make much sense. The Cross function returns 1 or 0. Multiplying that by 0.001 just means that you'll have 0.001 or 0.000 which does not change anything. Whether 1 or 0.001, it still means "true". Mike --- In [email protected], "nifty46" <nift...@...> wrote: > > SIR, I NEED HELP FOR EXPLORATION, > > > MOVINGAVG=EMA(H,21); > entryprice= EMA(H,21)+0.01; > ENTRYSELL= EMA(H,21)-0.01; > Buy=Cross(C,MOVINGAVG)*0.001; > Sell=Cross(MOVINGAVG,C)*0.001; > Filter=Buy OR Sell; > AddColumn(C," CMP ",0,colorBlack,colorLightGrey); > AddColumn(IIf(Buy,entryprice,ENTRYSELL),"INTRADAY ",0,colorDefault,IIf(C > >entryprice,colorGreen, colorRed)); > > > LOT OF STOCK COMES UNDER EXPLORERE SCAN, BUT I NEED ONLY THOSE FEW STOCKS > WHICH ARE CURRENTLY TRADED HALF% ABOVE OR BELOW FROM MY BUY OR SELL SIGNAL , > THOSE STOCK WHICH CROSS HALF% LIMIT FROM BUY OR SELL SIGNALS I NEED THEY > AUTOMATIC OUT OF MY EXPLORATION, AND COMES AGAIN ONLY IN EXPLORERE SCAN WHEN > THEY ARE AGAIN UNDER MY LIMIT HALF% OF BUY OR SELL SIGNALS, THAX IN ADVANCE, > WAITING A GOOD RESPONCE, NIFTY46 >
