Skip to main content

nautilus_model/python/instruments/
currency_pair.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 std::{
17    collections::hash_map::DefaultHasher,
18    hash::{Hash, Hasher},
19};
20
21use nautilus_core::{
22    from_pydict,
23    python::{IntoPyObjectNautilusExt, serialization::from_dict_pyo3, to_pyvalue_err},
24};
25use pyo3::{basic::CompareOp, prelude::*, types::PyDict};
26use rust_decimal::Decimal;
27
28use crate::{
29    identifiers::{InstrumentId, Symbol},
30    instruments::CurrencyPair,
31    types::{Currency, Money, Price, Quantity},
32};
33
34#[pymethods]
35#[pyo3_stub_gen::derive::gen_stub_pymethods]
36impl CurrencyPair {
37    /// Represents a generic currency pair instrument in a spot/cash market.
38    ///
39    /// Can represent both Fiat FX and Cryptocurrency pairs.
40    #[expect(clippy::too_many_arguments)]
41    #[new]
42    #[pyo3(signature = (instrument_id, raw_symbol, base_currency, quote_currency, price_precision, size_precision, price_increment, size_increment, ts_event, ts_init, multiplier=None, lot_size=None, max_quantity=None, min_quantity=None, max_notional=None, min_notional=None, max_price=None, min_price=None, margin_init=None, margin_maint=None, maker_fee=None, taker_fee=None, info=None))]
43    fn py_new(
44        instrument_id: InstrumentId,
45        raw_symbol: Symbol,
46        base_currency: Currency,
47        quote_currency: Currency,
48        price_precision: u8,
49        size_precision: u8,
50        price_increment: Price,
51        size_increment: Quantity,
52        ts_event: u64,
53        ts_init: u64,
54        multiplier: Option<Quantity>,
55        lot_size: Option<Quantity>,
56        max_quantity: Option<Quantity>,
57        min_quantity: Option<Quantity>,
58        max_notional: Option<Money>,
59        min_notional: Option<Money>,
60        max_price: Option<Price>,
61        min_price: Option<Price>,
62        margin_init: Option<Decimal>,
63        margin_maint: Option<Decimal>,
64        maker_fee: Option<Decimal>,
65        taker_fee: Option<Decimal>,
66        info: Option<Py<PyDict>>,
67    ) -> PyResult<Self> {
68        // Convert Python dict to Params
69        let info_map = if let Some(info_dict) = info {
70            Python::attach(|py| from_pydict(py, info_dict))?
71        } else {
72            None
73        };
74
75        Self::new_checked(
76            instrument_id,
77            raw_symbol,
78            base_currency,
79            quote_currency,
80            price_precision,
81            size_precision,
82            price_increment,
83            size_increment,
84            multiplier,
85            lot_size,
86            max_quantity,
87            min_quantity,
88            max_notional,
89            min_notional,
90            max_price,
91            min_price,
92            margin_init,
93            margin_maint,
94            maker_fee,
95            taker_fee,
96            info_map,
97            ts_event.into(),
98            ts_init.into(),
99        )
100        .map_err(to_pyvalue_err)
101    }
102
103    fn __richcmp__(&self, other: &Self, op: CompareOp, py: Python<'_>) -> Py<PyAny> {
104        match op {
105            CompareOp::Eq => self.eq(other).into_py_any_unwrap(py),
106            CompareOp::Ne => self.ne(other).into_py_any_unwrap(py),
107            _ => py.NotImplemented(),
108        }
109    }
110
111    fn __hash__(&self) -> isize {
112        let mut hasher = DefaultHasher::new();
113        self.hash(&mut hasher);
114        hasher.finish() as isize
115    }
116
117    #[getter]
118    fn type_name(&self) -> &'static str {
119        stringify!(CurrencyPair)
120    }
121
122    #[getter]
123    #[pyo3(name = "id")]
124    fn py_id(&self) -> InstrumentId {
125        self.id
126    }
127
128    #[getter]
129    #[pyo3(name = "raw_symbol")]
130    fn py_raw_symbol(&self) -> Symbol {
131        self.raw_symbol
132    }
133
134    #[getter]
135    #[pyo3(name = "base_currency")]
136    fn py_base_currency(&self) -> Currency {
137        self.base_currency
138    }
139
140    #[getter]
141    #[pyo3(name = "quote_currency")]
142    fn py_quote_currency(&self) -> Currency {
143        self.quote_currency
144    }
145
146    #[getter]
147    #[pyo3(name = "price_precision")]
148    fn py_price_precision(&self) -> u8 {
149        self.price_precision
150    }
151
152    #[getter]
153    #[pyo3(name = "size_precision")]
154    fn py_size_precision(&self) -> u8 {
155        self.size_precision
156    }
157
158    #[getter]
159    #[pyo3(name = "price_increment")]
160    fn py_price_increment(&self) -> Price {
161        self.price_increment
162    }
163
164    #[getter]
165    #[pyo3(name = "size_increment")]
166    fn py_size_increment(&self) -> Quantity {
167        self.size_increment
168    }
169
170    #[getter]
171    #[pyo3(name = "multiplier")]
172    fn py_multiplier(&self) -> Quantity {
173        self.multiplier
174    }
175
176    #[getter]
177    #[pyo3(name = "lot_size")]
178    fn py_lot_size(&self) -> Option<Quantity> {
179        self.lot_size
180    }
181
182    #[getter]
183    #[pyo3(name = "max_quantity")]
184    fn py_max_quantity(&self) -> Option<Quantity> {
185        self.max_quantity
186    }
187
188    #[getter]
189    #[pyo3(name = "min_quantity")]
190    fn py_min_quantity(&self) -> Option<Quantity> {
191        self.min_quantity
192    }
193
194    #[getter]
195    #[pyo3(name = "max_notional")]
196    fn py_max_notional(&self) -> Option<Money> {
197        self.max_notional
198    }
199
200    #[getter]
201    #[pyo3(name = "min_notional")]
202    fn py_min_notional(&self) -> Option<Money> {
203        self.min_notional
204    }
205
206    #[getter]
207    #[pyo3(name = "max_price")]
208    fn py_max_price(&self) -> Option<Price> {
209        self.max_price
210    }
211
212    #[getter]
213    #[pyo3(name = "min_price")]
214    fn py_min_price(&self) -> Option<Price> {
215        self.min_price
216    }
217
218    #[getter]
219    #[pyo3(name = "maker_fee")]
220    fn py_maker_fee(&self) -> Decimal {
221        self.maker_fee
222    }
223
224    #[getter]
225    #[pyo3(name = "taker_fee")]
226    fn py_taker_fee(&self) -> Decimal {
227        self.taker_fee
228    }
229
230    #[getter]
231    #[pyo3(name = "margin_maint")]
232    fn py_margin_maint(&self) -> Decimal {
233        self.margin_maint
234    }
235
236    #[getter]
237    #[pyo3(name = "margin_init")]
238    fn py_margin_init(&self) -> Decimal {
239        self.margin_init
240    }
241
242    #[getter]
243    #[pyo3(name = "ts_event")]
244    fn py_ts_event(&self) -> u64 {
245        self.ts_event.as_u64()
246    }
247
248    #[getter]
249    #[pyo3(name = "ts_init")]
250    fn py_ts_init(&self) -> u64 {
251        self.ts_init.as_u64()
252    }
253
254    #[getter]
255    #[pyo3(name = "info")]
256    fn py_info(&self, py: Python<'_>) -> PyResult<Py<PyDict>> {
257        // Convert HashMap<String, serde_json::Value> back to Python dict
258        if let Some(ref info_map) = self.info {
259            let py_dict = PyDict::new(py);
260
261            for (key, value) in info_map {
262                // Convert serde_json::Value back to Python object via JSON
263                let json_str = serde_json::to_string(value).map_err(to_pyvalue_err)?;
264                let py_value =
265                    PyModule::import(py, "json")?.call_method("loads", (json_str,), None)?;
266                py_dict.set_item(key, py_value)?;
267            }
268            Ok(py_dict.unbind())
269        } else {
270            Ok(PyDict::new(py).unbind())
271        }
272    }
273
274    #[staticmethod]
275    #[pyo3(name = "from_dict")]
276    fn py_from_dict(py: Python<'_>, values: Py<PyDict>) -> PyResult<Self> {
277        from_dict_pyo3(py, values)
278    }
279
280    #[pyo3(name = "to_dict")]
281    fn py_to_dict(&self, py: Python<'_>) -> PyResult<Py<PyAny>> {
282        let dict = PyDict::new(py);
283        dict.set_item("type", stringify!(CurrencyPair))?;
284        dict.set_item("id", self.id.to_string())?;
285        dict.set_item("raw_symbol", self.raw_symbol.to_string())?;
286        dict.set_item("base_currency", self.base_currency.code.to_string())?;
287        dict.set_item("quote_currency", self.quote_currency.code.to_string())?;
288        dict.set_item("price_precision", self.price_precision)?;
289        dict.set_item("size_precision", self.size_precision)?;
290        dict.set_item("price_increment", self.price_increment.to_string())?;
291        dict.set_item("size_increment", self.size_increment.to_string())?;
292        dict.set_item("multiplier", self.multiplier.to_string())?;
293        dict.set_item("maker_fee", self.maker_fee.to_string())?;
294        dict.set_item("taker_fee", self.taker_fee.to_string())?;
295        dict.set_item("margin_init", self.margin_init.to_string())?;
296        dict.set_item("margin_maint", self.margin_maint.to_string())?;
297        // Serialize info dict
298        if let Some(ref info_map) = self.info {
299            let info_dict = PyDict::new(py);
300
301            for (key, value) in info_map {
302                let json_str = serde_json::to_string(value).map_err(to_pyvalue_err)?;
303                let py_value =
304                    PyModule::import(py, "json")?.call_method("loads", (json_str,), None)?;
305                info_dict.set_item(key, py_value)?;
306            }
307            dict.set_item("info", info_dict)?;
308        } else {
309            dict.set_item("info", PyDict::new(py))?;
310        }
311        dict.set_item("ts_event", self.ts_event.as_u64())?;
312        dict.set_item("ts_init", self.ts_init.as_u64())?;
313        match self.lot_size {
314            Some(value) => dict.set_item("lot_size", value.to_string())?,
315            None => dict.set_item("lot_size", py.None())?,
316        }
317
318        match self.max_quantity {
319            Some(value) => dict.set_item("max_quantity", value.to_string())?,
320            None => dict.set_item("max_quantity", py.None())?,
321        }
322
323        match self.min_quantity {
324            Some(value) => dict.set_item("min_quantity", value.to_string())?,
325            None => dict.set_item("min_quantity", py.None())?,
326        }
327
328        match self.max_notional {
329            Some(value) => dict.set_item("max_notional", value.to_string())?,
330            None => dict.set_item("max_notional", py.None())?,
331        }
332
333        match self.min_notional {
334            Some(value) => dict.set_item("min_notional", value.to_string())?,
335            None => dict.set_item("min_notional", py.None())?,
336        }
337
338        match self.max_price {
339            Some(value) => dict.set_item("max_price", value.to_string())?,
340            None => dict.set_item("max_price", py.None())?,
341        }
342
343        match self.min_price {
344            Some(value) => dict.set_item("min_price", value.to_string())?,
345            None => dict.set_item("min_price", py.None())?,
346        }
347        Ok(dict.into())
348    }
349}