Quote from Tom1234:
If anyone uses the M.A. crossovers as an entry signal, what do you for confirmation? I'd like to find (a good) confirmation indicator for Moving Average crossover signals.
Sure, lots of them. But there is a bit of a philosophical problem of definition: what's the difference between "entry signals" and "confirmations"? If you use Indicator X along with Moving Average crossovers in a trading system, perhaps something like this:
Code:
IF( (moving average crossover = TRUE) AND (Indicator X = Bullish) ) THEN enter long
then the MA cross and Indicator X have the same function: each one is half of the (combined) entry strategy. You could just as easily say that Indicator X is the entry signal and MA Cross is the confirmation.
In fact you could choose "Indicator X" to be a third moving average, and now your "MA Crossover with Confirmation" system is identical to Murray Ruggiero's "Triple MA" system.
But if you are going to do some computer backtesting studies of (MA Crossover plus confirmation idea X), I suggest you start off trying confirmation ideas that
don't include moving averages. For the sake of diversity if nothing else.
Good old Chuck LeBeau suggests several ideas in his excellent book
(link). See especially pages 85-101. LeBeau certainly agrees with your idea that it's vastly preferable to add another qualifying condition to the basic MA crossover signal. Whether you call it a "confirmation" or a "filter" or a "setup before the trigger" or a "qualifier" or a "part of the combination" is mere linguistic preference.
Here are a few more, that you can program into your backtest software and try for yourself:
- (for longs) when the moving averages cross over, don't enter on the close. Instead, wait for price to break out above the high of the day the MA's crossed. Enter on a Stop order at price = (High of crossover day)
- Require the N-day ADX to be rising
- Require the N-day ADX reading to be above XXX value, and also require ADX to be rising
- (for longs) After the MA's cross, don't enter until you see N closes in a row, above the fast MA
- (for longs) Require the N-day momentum oscillator to be >0
- (for longs) Don't enter until the fastMA has risen for N days in a row
- (for longs) Don't enter unless the N-day RSI is above XXX value
- (for longs) Don't enter unless the close is very near to the highest high of the last N days. You can accomplish this using the Stochastic Fast %K: don't enter unless Fast %K is 85 or greater.
- (for longs) Don't enter unless the close is beyond the XXX-th Bollinger Band. You can accomplish this using Bollinger's Oscillator %B: don't enter unless %B is XXX or greater
- and so forth. Use your imagination! Don't be afraid to try out some ideas.