AFL Required: MA Crossover, BBTop Breakout

#1
I would like to generate an EOD Scan / Explore functionality based on following datapoints:

1. Crossover of MA - 20/50 day or Generic which can be changed as per requirement
2. Crossing Bollinger Band Top

Can you help me with an AFL for the same.
 

singhboy

Active Member
#2
Buy = Close > BBandTop( Close, 20, 2 )
AND Close > MA( Close , 20 );

Sell = Close < BBandBot( Close, 20, 2 )
AND Close < MA( Close , 20 );
Filter=(Volume>100000) ;
AddColumn(Close,"Close",1.4);
AddColumn(Buy,"buy",1.2);
AddColumn(Sell,"sell",1.2);
 

asnavale

Well-Known Member
#3
Buy = Close > BBandTop( Close, 20, 2 )
AND Close > MA( Close , 20 );

Sell = Close < BBandBot( Close, 20, 2 )
AND Close < MA( Close , 20 );
Filter=(Volume>100000) ;
AddColumn(Close,"Close",1.4);
AddColumn(Buy,"buy",1.2);
AddColumn(Sell,"sell",1.2);
Hi singhboy,

Your AFL will Buy at highs and Sell at lows !

-Anant
 
#4
Dear Anant,

Can you fine tune the AFL provided by Singhboy, wherein:

1. After the MA Crossover,
2. After the BB Top Breakout,
3. Price Swing (Last day's price) Should be greater than 2% or 5% than previous day or previous week

Best Rgds/Balaji
 

singhboy

Active Member
#5
asnvale thanks for ur help in past, but i use this afl n that 5 day high afl for eod scan n then select 25-30 scrips for intra trading for next day. 5-6 of them give 5-10% returns. If u wish i will like to show u live. May b u could help to make performance betta in future
 
Last edited:

asnavale

Well-Known Member
#6
asnvale thanks for ur help in past, but i use this afl n that 5 day high afl for eod scan n then select 25-30 scrips for intra trading for next day. 5-6 of them give 5-10% returns. If u wish i will like to show u live. May b u could help to make performance betta in future
Hi Singhboy,

I am interested in seeing your trades.

-Anant
 
#7
Guys,

Im still waiting for the response - both Singhboy/ Asnavale:

1. After the MA Crossover
2. After the BB Top Breakout {{ Both above given by SinghBoy already}}

Once above two points done, it should check also for below:

3. Price Swing (Last day's price) Should be greater than 2% or 5% than previous day or previous week

-Balaji
 

singhboy

Active Member
#8
Guys,

Im still waiting for the response - both Singhboy/ Asnavale:

1. After the MA Crossover
2. After the BB Top Breakout {{ Both above given by SinghBoy already}}

Once above two points done, it should check also for below:

3. Price Swing (Last day's price) Should be greater than 2% or 5% than previous day or previous week

-Balaji
sorry im not expert, asnvale may hepl. And anant my id [email protected]. I will show during mkt or u can see sum examle even now
 

Similar threads