mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-17 10:08:05 +00:00
Codacy cleanup
This commit is contained in:
@@ -47,9 +47,6 @@ public class OBV_Series : Single_TBars_Indicator
|
||||
if (TBar.c > this._lastclose) { _obv += TBar.v; }
|
||||
if (TBar.c < this._lastclose) { _obv -= TBar.v; }
|
||||
|
||||
// Unclear what the first value in OBV series is - currently set to volume[0]
|
||||
// if (this.Count == 0) { _obv = 0; }
|
||||
|
||||
this._lastlastobv = this._lastobv;
|
||||
this._lastobv = _obv;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user