20813

LBR Oscillator

Oscillator used by Linda Bradford Raschke.

Basicly it's a MACD with 3/10/16 settings but without the histogram (difference between fast and slow line), instead the shown histogram is based on the fastline (green bars = fastline above zero). The color of the lines will tell you if the line is falling (red) or rising (green).

In terms of setups dont just buy or sell if a line is changing its color. Look for divergences or setups like first cross or anti.
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?
study("LBR Oscillator", shorttitle="LBR_OSC")
fast = input(title="Fast Length", type=integer, defval=3)
slow = input(title="Slow Length", type=integer, defval=10)
smoothing = input(title="Signal Smoothing", type=integer, defval=16)

[fastline, slowline, histline] = macd(close,fast,slow,smoothing)

plot(0, color=gray)
plot(fastline, color=fastline > 0 ? green : red, style=histogram)
plot(fastline, color=fastline > fastline[1] ? green :red)
plot(slowline, color=slowline > slowline[1] ? green : red)