can anybody make afl on these simple condtions

#1
guys i am a new bee , i am looking for a good intra day afl , i have heard that 3 indictors r good for intraday trdng , rsi , macd , moving ave , so i would like that someone can write a formula on these.

BUY signal when all theses 3 condtions satisfied=

1) rsi below 30
2) macd buy signal above zero
3) 20 day moving average holds or if trdng below it then on its crossover

SELL signal=

1)rsi above 70
2)macd sel signal below 0
3)20 day moving averges breaks


guys i am a new bee tryng to learn if i am wrong then plz correct me on the condtions.....instead of making fun....hehe:rofl:...........this will help for all new bees like me...thnks in advance
 
#2
//system:
Buy = (Cross( MACD(), Signal() ) AND Cross( RSI(), 30 )) AND V >50;

//exploration
Filter = Buy;
AddColumn( Buy, "Buy", 1);
AddColumn( Volume, "Volume", 1);
AddColumn( Cross( MACD(), Signal() ), "MACD/Signal cross", 1);
AddColumn( Cross( RSI(), 30 ), "RSI / 30 cross", 1);
 

kaly422000

Well-Known Member
#3
//system:
Buy = (Cross( MACD(), Signal() ) AND Cross( RSI(), 30 )) AND V >50;

//exploration
Filter = Buy;
AddColumn( Buy, "Buy", 1);
AddColumn( Volume, "Volume", 1);
AddColumn( Cross( MACD(), Signal() ), "MACD/Signal cross", 1);
AddColumn( Cross( RSI(), 30 ), "RSI / 30 cross", 1);
and when di+ in adx indicater cross di- . how to filter this one ,pls guide
 
#4
//system:
Buy = (Cross( MACD(), Signal() ) AND Cross( RSI(), 30 )) AND V >50;

//exploration
Filter = Buy;
AddColumn( Buy, "Buy", 1);
AddColumn( Volume, "Volume", 1);
AddColumn( Cross( MACD(), Signal() ), "MACD/Signal cross", 1);
AddColumn( Cross( RSI(), 30 ), "RSI / 30 cross", 1);

hey raj... thnks a lot bro... yaar this was asked my me so long ago... even i forget about this thread:D ..but thnks...for ur help... i will surely also try this...thnks for ur diwali gift brother...:clap:
 

Similar threads