-
Notifications
You must be signed in to change notification settings - Fork 547
/
Copy pathobv.pyx
101 lines (83 loc) · 2.89 KB
/
obv.pyx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -------------------------------------------------------------------------------------------------
# Copyright (C) 2015-2025 Nautech Systems Pty Ltd. All rights reserved.
# https://nautechsystems.io
#
# Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -------------------------------------------------------------------------------------------------
from collections import deque
from nautilus_trader.core.correctness cimport Condition
from nautilus_trader.indicators.base.indicator cimport Indicator
from nautilus_trader.model.data cimport Bar
cdef class OnBalanceVolume(Indicator):
"""
An indicator which calculates the momentum of relative positive or negative
volume.
Parameters
----------
period : int
The period for the indicator, zero indicates no window (>= 0).
Raises
------
ValueError
If `period` is negative (< 0).
"""
def __init__(self, int period=0):
Condition.not_negative(period, "period")
super().__init__(params=[period])
self.period = period
self._obv = deque(maxlen=None if period == 0 else period)
self.value = 0
cpdef void handle_bar(self, Bar bar):
"""
Update the indicator with the given bar.
Parameters
----------
bar : Bar
The update bar.
"""
Condition.not_none(bar, "bar")
self.update_raw(
bar.open.as_double(),
bar.close.as_double(),
bar.volume.as_double(),
)
cpdef void update_raw(
self,
double open,
double close,
double volume,
):
"""
Update the indicator with the given raw values.
Parameters
----------
open : double
The high price.
close : double
The low price.
volume : double
The close price.
"""
if close > open:
self._obv.append(volume)
elif close < open:
self._obv.append(-volume)
else:
self._obv.append(0)
self.value = sum(self._obv)
# Initialization logic
if not self.initialized:
self._set_has_inputs(True)
if (self.period == 0 and len(self._obv) > 0) or len(self._obv) >= self.period:
self._set_initialized(True)
cpdef void _reset(self):
self._obv.clear()
self.value = 0