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.
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
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)