Falling-Rising FilterIntroduction
This is a modification of an old indicator i made. This filter aim to adapt to market trend by creating a smoothing constant using highest and lowest functions. This filter is visually similar to the edge-preserving filter, this similarity can make this filter quite good for MA cross strategies.
On The Filter Code
a = nz(a ) + alpha*nz(error ) + beta*nz(error )
The first 3 terms describe a simple exponential filter where error = price - a , beta introduce the adaptive part. beta is equal to 1 when the price is greater or lower than any past price over length period, else beta is equal to alpha , someone could ask why we use two smoothing variable (alpha, beta) instead of only beta thus having :
a = nz(a ) + beta*nz(error )
well alpha make the filter converge faster to the price thus having a better estimation.
In blue the filter using only beta and in red the filter using alpha and beta with both length = 200 , the red filter converge faster to the price, if you need smoother results but less precise estimation only use beta .
Conclusion
I have presented a simple indicator using rising/falling functions to calculate an adaptive filter, this also show that when you create an exponential filter you can use more terms instead of only a = a + alpha*(price - a ) . I hope you find this indicator useful.
Thanks for reading !
在腳本中搜尋"ma cross"
RSI MA CrossoverHello guys.
Doing some backtest to automate my strategy. It's an other version of my first thread, but after a short term, a smoothed one, a very extended one, time to show the extended smoothed.
Triangles will show on charts on very over extended trend that are ready to reverse.
Results are not convincing atm but will build more versions.
Cheers,
DOUBLE cukong with candleSimple MA cross short 50 and 80
combine with indicator from candle stick
like hang man hammer and soon on
to give more accurate signal to buy and sell
Flat Market Filters4 separate indicators in one to identify flat/ranging market conditions, with the intention of filtering out MA crosses during periods of flatness (or targetting ranging conditions for mean reversion strats)
Options to use any combination of the 4 indicators (AND/OR settings for each indicator combination) and separate config options for each indicator.
Updates to come. Message for access.
EMA & MA CrossoverfibThis is nice hybrid of EMA MA cross over made by harry poter and daily fib made by justuncle
with alerts easy to see where the best buy points and exit. also you the trends more easy.have fun
Indicator Sumary by VIPHAverage of the following indicators: RSI, CCI, Stoch, MA Cross, Price, Volume
(YEK) Bollinger Bands & DoubleHMA & MA CrossMy favorite indicators ALL-IN-1: Bollinger Bands, Double Hull Moving Average (21,8), Double Moving Average (200,50)
ATR SpikesVolatility Spike Indicator (ATR based)
I read some of Adam Grimes' work and found he uses a tool called sigma spikes, his concept is to mark significance to daily bars that have returns over x standard deviations of a 20 period average of returns.
I have adapted this idea for intra day trading. I've used an ATR and marked significance to any bar with a range greater than 4 standard deviations of the ATR, this results in attention being drawn to bars with strong momentum behind them and often results in strong follow through.
Additionally, I have included a MA crossover (fast/slow) filter to the indicator, this removes any signals that are counter- short term trend/momentum.
This is a powerful tool for momentum traders as it clearly shows points when the market has significant volatility.
K3 Relative Strength IndexRSI color-coded by CCI value, and MA.
These RSI-MA crosses are very powerful, especially when backed up with the right CCI direction (Green is positive, Red is negative).