My System - My trades.

I am a rough diamond bro. I don't know my full capabilities yet. :D;);)

For scanner we have to open separated explore sheet. It is useful if u have large watchlist. Even in scanner text or sound alert has to be included.

If hardly 5 or 6 scrips means we can open individual charts and only alerts will be enough.
The scanner which we run in HTF will short list the stocks to be on our watch list, instead of watching numerous about of stocks we can watch selective stocks which fits our criteria.

I have asked my frnd to code, since he's busy he can't able to do it yet, I'll share once I get the scanner afl

DM
 
Can you please post the AFL brother ...

Thanks a lot

Buy = Open == Low;

Sell = Open == High;

Noise = High > Close;

AddColumn(Open,"Open");
AddColumn(Close,"Close");
AddColumn(High,"High");
AddColumn(Low,"Low");

Filter= (Buy OR Sell) AND Noise;

AddColumn(IIf(Buy,Open,Null)," open=low ", 6.2,1.2,colorGreen);
AddColumn(IIf(Sell,Open,Null)," open= high ",6.2,1.2,colorOrange);
This is it..
 

Similar threads