PipFoundry

Pip Foundry - Simple Volume

My premium indicators are available for monthly lease at www.tradingview.com/...arket/ah-pipfoundry/

Requested by user SunnyBTC for use in the Forex market on the EURUSD pair.

This simple indicator will allow you to view the volume of a security other than the one you are currently charting.

Edit: This script has since been updated. Please see related link at bottom.
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="Pip Foundry - Simple Volume", shorttitle="Pip Foundry - Simple Volume", precision=0)

showMA = input(true)
SecInput = input(defval="FX_IDC:EURUSD", title="Security Volume", type=symbol, confirm=true)
VolSrc = security(SecInput, period, volume, false)
plot(VolSrc, color = open > close ? red : green, style=columns, title="Volume MA", transp=65)
plot(showMA ? sma(VolSrc,20) : na, style=area, color=blue, title="Volume", transp=85)