LazyBear

Indicator: Forecast Oscillator & a BB extrapolation experiment

689
FOSC (Forecast Oscillator, %F) is implemented as explained by Kaufman (there are lot of representations out there, using linregs, this one is not.).

This indicator plots a 3-period smoothing of %F. When %F = 0, the trend line and prices are moving parallel to one another; when %F is above 0 the market is accelerating away from the trend line; when %F is below 0 prices are slowing down and the two series are converging.

Now on to the BB extrapolation: As you can see above, a 21-period BB on 1W shows 2 volatile areas of same length. Simple projection using the same time periods gives us a similar volatile area in another 105d. FOSC is forming a similar pattern now as of the first area. More information in the chart markings.

Interesting thing for me was how my other chart (www.tradingview.com/v/HeSyTev8/) aligned with this. Lets see how far these timelines are respected.

In the mean time, feel free to "Make mine" this and use FOSC in your charts. Appreciate any feedback / comments.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?
//
// @author LazyBear
// 
study(title = "Forecast Oscillator [LazyBear]", shorttitle="ForecastOsc_LB")
pf=100*((close[0]-close[1])/close[0])
//plot(pf, color=green)
plot(sma(pf,3), color=orange)
hline(0)