LazyBear

Indicator: ElliotWave Oscillator [EWO]

This oscillator has to be used in conjunction with other EW tools (certainly cannot be the main indicator).

EWO has:
- Higher values during third waves' up
- Lower but still Positive values during the first and fifth waves up
- Negative values during the biggest corrections or downtrend impulse waves.

Personally, I am still trying to figure out EW, so do not use this. Just wanted to publish this for the EW masters out there who can put this to good use.

Appreciate any comments/feedback.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
//
// @author LazyBear
//
study(title = "Elliot Wave Oscillator [LazyBear]", shorttitle="EWO_LB")
s2=ema(close, 5) - ema(close, 35)
c_color=s2 <= 0 ? red : lime
plot(s2, color=c_color, style=histogram, linewidth=2)