Hi All,
Its great to see people helping each other and learning on the way Great initiative .
I am new to trading and hence the thread gives me great chance to learn . over the past week or so I tried to read as much as possible about Indicators and Moving averages . I would like to sum up a few things here ( please do let me know if I am wrong in my assumptions ) .
Note : I am NOT a intraday trader . So I cant think from that perspective . I do my analysis only EOD .
So I while designing a trading system I need to take care of the following :
a )
Stochastic :
Buy=Cross(StochK(),StochD())
Sell = ?
b ) [Positive/Negative] Directional Movement Indicator :
Buy = Cross(PDI(),MDI())
Sell = ?
c ) ADX :
ADX > 25 : uptrend
ADX > 50 : strong uptrend
ADX < 25 : downtrend
Buy : ADX > 25
Sell : ADX < 25
d ) Moving Average Convergence Divergence
Buy = MACD()>Signal() AND (ADX()>25)
Sell = Cross(Signal(),MACD())
Questions :
1 . As you can see I have fairly good entry signals but I still am unable to define good exit signals . I read that its not good to involve alot of indicators in a single system . Here i involve alot ( MACD , ADX , Stochastic , ) I am yet to involve RSI .
So is it a good idea to involve so many constructs all at once ? I have tried backfiling with average to OK results .
2 . Also can someone help me define my SELL signals better ? Like how do they use the above constructs to exit trades ( or their combinations )
Much thanks .
Its great to see people helping each other and learning on the way Great initiative .
I am new to trading and hence the thread gives me great chance to learn . over the past week or so I tried to read as much as possible about Indicators and Moving averages . I would like to sum up a few things here ( please do let me know if I am wrong in my assumptions ) .
Note : I am NOT a intraday trader . So I cant think from that perspective . I do my analysis only EOD .
So I while designing a trading system I need to take care of the following :
a )
Stochastic :
Buy=Cross(StochK(),StochD())
Sell = ?
b ) [Positive/Negative] Directional Movement Indicator :
Buy = Cross(PDI(),MDI())
Sell = ?
c ) ADX :
ADX > 25 : uptrend
ADX > 50 : strong uptrend
ADX < 25 : downtrend
Buy : ADX > 25
Sell : ADX < 25
d ) Moving Average Convergence Divergence
Buy = MACD()>Signal() AND (ADX()>25)
Sell = Cross(Signal(),MACD())
Questions :
1 . As you can see I have fairly good entry signals but I still am unable to define good exit signals . I read that its not good to involve alot of indicators in a single system . Here i involve alot ( MACD , ADX , Stochastic , ) I am yet to involve RSI .
So is it a good idea to involve so many constructs all at once ? I have tried backfiling with average to OK results .
2 . Also can someone help me define my SELL signals better ? Like how do they use the above constructs to exit trades ( or their combinations )
Much thanks .