Skip to main content

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::{AHashMap, HashMap};
17use nautilus_core::python::to_pyvalue_err;
18use nautilus_model::enums::PriceType;
19use pyo3::prelude::*;
20use rust_decimal::{Decimal, prelude::FromPrimitive};
21use ustr::Ustr;
22
23use crate::xrate::get_exchange_rate;
24
25/// Calculates the exchange rate between two currencies using provided bid and ask quotes.
26///
27/// This function builds a graph of direct conversion rates from the quotes and uses a DFS to
28/// accumulate the conversion rate along a valid conversion path. While a full Floyd–Warshall
29/// algorithm could compute all-pairs conversion rates, the DFS approach here provides a quick
30/// solution for a single conversion query.
31#[pyfunction]
32#[pyo3_stub_gen::derive::gen_stub_pyfunction(module = "nautilus_trader.common")]
33#[pyo3(name = "get_exchange_rate")]
34#[pyo3(signature = (from_currency, to_currency, price_type, quotes_bid, quotes_ask))]
35pub fn py_get_exchange_rate(
36    from_currency: &str,
37    to_currency: &str,
38    price_type: PriceType,
39    quotes_bid: HashMap<String, f64>,
40    quotes_ask: HashMap<String, f64>,
41) -> PyResult<Option<Decimal>> {
42    let quotes_bid = f64_quotes_to_decimal(quotes_bid).map_err(to_pyvalue_err)?;
43    let quotes_ask = f64_quotes_to_decimal(quotes_ask).map_err(to_pyvalue_err)?;
44
45    get_exchange_rate(
46        Ustr::from(from_currency),
47        Ustr::from(to_currency),
48        price_type,
49        quotes_bid,
50        quotes_ask,
51    )
52    .map_err(to_pyvalue_err)
53}
54
55fn f64_quotes_to_decimal(quotes: HashMap<String, f64>) -> anyhow::Result<AHashMap<Ustr, Decimal>> {
56    quotes
57        .into_iter()
58        .map(|(pair, value)| {
59            let rate = Decimal::from_f64(value).ok_or_else(|| {
60                anyhow::anyhow!("Invalid quote rate for pair {pair}, was {value}")
61            })?;
62            Ok((Ustr::from(&pair), rate))
63        })
64        .collect()
65}