1// -------------------------------------------------------------------------------------------------
2// Copyright (C) 2015-2025 Nautech Systems Pty Ltd. All rights reserved.
3// https://nautechsystems.io
4//
5// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
6// You may not use this file except in compliance with the License.
7// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14// -------------------------------------------------------------------------------------------------
1516use nautilus_model::data::Bar;
17use pyo3::prelude::*;
1819use crate::{average::vwap::VolumeWeightedAveragePrice, indicator::Indicator};
2021#[pymethods]
22impl VolumeWeightedAveragePrice {
23#[new]
24 #[must_use]
25pub const fn py_new() -> Self {
26Self::new()
27 }
2829fn __repr__(&self) -> String {
30"VolumeWeightedAveragePrice".to_string()
31 }
3233#[getter]
34 #[pyo3(name = "name")]
35fn py_name(&self) -> String {
36self.name()
37 }
3839#[getter]
40 #[pyo3(name = "has_inputs")]
41fn py_has_inputs(&self) -> bool {
42self.has_inputs()
43 }
4445#[getter]
46 #[pyo3(name = "value")]
47const fn py_value(&self) -> f64 {
48self.value
49 }
5051#[getter]
52 #[pyo3(name = "initialized")]
53const fn py_initialized(&self) -> bool {
54self.initialized
55 }
5657#[pyo3(name = "handle_bar")]
58fn py_handle_bar(&mut self, bar: &Bar) {
59self.py_update_raw(
60 (&bar.close).into(),
61 (&bar.volume).into(),
62 bar.ts_init.as_f64(),
63 );
64 }
6566#[pyo3(name = "reset")]
67fn py_reset(&mut self) {
68self.reset();
69 }
7071#[pyo3(name = "update_raw")]
72fn py_update_raw(&mut self, value: f64, volume: f64, ts: f64) {
73self.update_raw(value, volume, ts);
74 }
75}