TradingView
cheatcountry
12 Th05 2021 13:17

Ehlers Voss Predictive Filter [CC] 

Apple Inc.NASDAQ

Mô tả

The Voss Predictive Filter was created by John Ehlers (Stocks and Commodities August 2019) and this is a unique indicator in that it tries to predict future price action. I have color coded the middle line to show buy and sell signals so buy when the line turns green and sell when it turns red.

Let me know if there are any other indicators you want me to publish!
Bình luận
AtomOfScent
I'm not sure why I didn't think to color the center line before. Nice idea, I'll be using that more from now on with I get sick of dots. :)
Also FYI, I've noticed most of your scripts only need extremely minor tweaks to be backtestable/tradable with the Ultimate Strategy Template (tradingview.com/script/2lGyzYkC-Ultimate-Strategy-Template/). It's a piece of cake so I don't mind doing it, but it could be worth considering for those less inclined to modify scripts.

buy = crossover(sig, 0)
sell = crossunder(sig, 0)
Signal = buy ? 1 : sell ? -1 : 0 //exit_buy ? 2 : exit_sell ? -2 : 0
plot(Signal, title="🔌Connector🔌", transp=100, display=display.none)
cheatcountry
@AtomOfScent, thanks and send me a pm when you can because I want to talk to you more about this template stuff
Thêm nữa