TradingView
alexgrover
May 14, 2019 4:49 PM

Falling-Rising Filter 

EUR/USDOANDA

描述

Introduction

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[1]) + alpha*nz(error[1]) + beta*nz(error[1])

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[1]) + beta*nz(error[1])

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[1] + alpha*(price - a[1]). I hope you find this indicator useful.

Thanks for reading !

版本注释

Fixed a redundant error, thanks to @aaahopper for pointing it out.
评论
kumarasami
excellent work thanks
alexgrover
@kumarakshay, Thanks for your comment :)
elvisforex
it was perfect ! thanks
alexgrover
@elvisforex, Thanks for the support :)
aaahopper
Hi @alexgrover
How would you change the script to have an opposite line?
I noticed by having a large length you can create lines similar to a band on which you can pick tops and bottoms for quick trades.
Could you assist?
Thanks
alexgrover
@aaahopper, Hi aahopper, thanks for commenting, the closest script i have for what you are asking is the flagging band indicator. But i can try to tweak the code for what you want.
aaahopper
Hi @alexgrover,

I found this line a lot smoother and direction of trend :).
I can't thank you enough for such great work.
You are amazing:)
(Note: Could you check my separate comment below)
alexgrover
@aaahopper, You are very welcome, and thank you so much for pointing the line 7 redundancy problem, i will upgrade the code right now, i'm feeling really bad recently and my condition have some repercussion on my codes.
aaahopper
Hi @alexgrover
Thank you again for a great indicator. Just Brilliant :).
Question:
Why is "close" in line 7, not the src?
Thanks
AltJams
Very neat! Thanks, friend!
更多