nautilus_common/python/xrate.rs
1// -------------------------------------------------------------------------------------------------
2// Copyright (C) 2015-2026 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// -------------------------------------------------------------------------------------------------
15
16use ahash::HashMap;
17use nautilus_core::python::to_pyvalue_err;
18use nautilus_model::enums::PriceType;
19use pyo3::prelude::*;
20use ustr::Ustr;
21
22use crate::xrate::get_exchange_rate;
23
24/// Calculates the exchange rate between two currencies using provided bid and ask quotes.
25///
26/// # Errors
27///
28/// Returns an error if:
29/// - `price_type` is equal to `Last` or `Mark` (cannot calculate from quotes).
30/// - `quotes_bid` or `quotes_ask` is empty.
31/// - `quotes_bid` and `quotes_ask` lengths are not equal.
32/// - The bid or ask side of a pair is missing.
33#[pyfunction]
34#[pyo3(name = "get_exchange_rate")]
35#[pyo3(signature = (from_currency, to_currency, price_type, quotes_bid, quotes_ask))]
36pub fn py_get_exchange_rate(
37 from_currency: &str,
38 to_currency: &str,
39 price_type: PriceType,
40 quotes_bid: HashMap<String, f64>,
41 quotes_ask: HashMap<String, f64>,
42) -> PyResult<Option<f64>> {
43 get_exchange_rate(
44 Ustr::from(from_currency),
45 Ustr::from(to_currency),
46 price_type,
47 quotes_bid.into_iter().collect(),
48 quotes_ask.into_iter().collect(),
49 )
50 .map_err(to_pyvalue_err)
51}