JeroenHouttuin

Cumulative Force, Weighted OBV

Cumulative Force Indicator. Can also be seen as an OBV indicator that takes the price differences into account. In a regular OBV, a high volume bar can make a huge difference, even if the price went up only 0.01, and it it goes down 0.01 instead, that volume makes the OBV go down big time, even though in both cases hardly anything really happened. cForce is a more realistic view on where the money is flowing.

This is my first published script, so feel free to let me know if you see room for improvements.
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
////////////////////////////////////////////////////////////
//  Copyright by Playak v1.0 29/01/2015
// Cumulative Force Indicator. Can also be seen as an OBV
// indicator that takes the price differences into account.
// In a regular OBV, a high volume bar can make a huge difference,
// even if the price went up only 0.01, and it it goes down 0.01
// instead, that huge volume makes the OBV go down, even though
// hardly anything really happened.
////////////////////////////////////////////////////////////
study(title="Cumulative Force / Weighted OBV", shorttitle="cForce")
b = input(title="Close relative to open (default is relative to previous close)", type=bool, defval=false)
force = volume * (close - (b ? open: nz(close[1])))
xforce = cum(force)
plot(xforce)