OPEN-SOURCE SCRIPT
Bostian/Elder Accumulation Distribution

//version=6
indicator(title="Bostian/Elder Accumulation Distribution", shorttitle="Bostian A/D", format=format.volume, overlay=false, timeframe="", timeframe_gaps=true)
// 1. Volumen-Überprüfung (Sicherheitsabfrage)
var cumVol = 0.
cumVol += nz(volume)
if barstate.islast and cumVol == 0
runtime.error("No volume is provided by the data vendor.")
// 2. Berechnung nach David Bostian: (Close - Open) / (High - Low) * Volumen
// Die Abfrage verhindert eine Division durch Null bei Doji-Kerzen (high == low)
ad_value = high == low ? 0 : ((close - open) / (high - low)) * volume
// 3. Fortlaufende Kumulierung der täglichen Werte
ad = ta.cum(ad_value)
// 4. Grafische Ausgabe
plot(ad, title = "Bostian A/D Line", color=#999915, linewidth=2)
indicator(title="Bostian/Elder Accumulation Distribution", shorttitle="Bostian A/D", format=format.volume, overlay=false, timeframe="", timeframe_gaps=true)
// 1. Volumen-Überprüfung (Sicherheitsabfrage)
var cumVol = 0.
cumVol += nz(volume)
if barstate.islast and cumVol == 0
runtime.error("No volume is provided by the data vendor.")
// 2. Berechnung nach David Bostian: (Close - Open) / (High - Low) * Volumen
// Die Abfrage verhindert eine Division durch Null bei Doji-Kerzen (high == low)
ad_value = high == low ? 0 : ((close - open) / (high - low)) * volume
// 3. Fortlaufende Kumulierung der täglichen Werte
ad = ta.cum(ad_value)
// 4. Grafische Ausgabe
plot(ad, title = "Bostian A/D Line", color=#999915, linewidth=2)
オープンソーススクリプト
TradingViewの精神に則り、このスクリプトの作者はコードをオープンソースとして公開してくれました。トレーダーが内容を確認・検証できるようにという配慮です。作者に拍手を送りましょう!無料で利用できますが、コードの再公開はハウスルールに従う必要があります。
免責事項
これらの情報および投稿は、TradingViewが提供または承認する金融、投資、取引、またはその他の種類の助言もしくは推奨であることを意図したものではなく、またこれらに該当するものでもありません。詳細は利用規約をご覧ください。
オープンソーススクリプト
TradingViewの精神に則り、このスクリプトの作者はコードをオープンソースとして公開してくれました。トレーダーが内容を確認・検証できるようにという配慮です。作者に拍手を送りましょう!無料で利用できますが、コードの再公開はハウスルールに従う必要があります。
免責事項
これらの情報および投稿は、TradingViewが提供または承認する金融、投資、取引、またはその他の種類の助言もしくは推奨であることを意図したものではなく、またこれらに該当するものでもありません。詳細は利用規約をご覧ください。