use nautilus_core::python::{IntoPyObjectNautilusExt, to_pyruntime_err, to_pyvalue_err};
use pyo3::{basic::CompareOp, prelude::*, types::PyDict};
use crate::{
accounts::{Account, BettingAccount},
enums::{AccountType, LiquiditySide, OrderSide},
events::{AccountState, OrderFilled},
identifiers::AccountId,
position::Position,
python::instruments::pyobject_to_instrument_any,
types::{Currency, Money, Price, Quantity},
};
#[pymethods]
#[pyo3_stub_gen::derive::gen_stub_pymethods]
impl BettingAccount {
#[new]
#[pyo3(signature = (event, calculate_account_state))]
pub fn py_new(event: AccountState, calculate_account_state: bool) -> Self {
Self::new(event, calculate_account_state)
}
fn __richcmp__(&self, other: &Self, op: CompareOp, py: Python<'_>) -> Py<PyAny> {
match op {
CompareOp::Eq => self.eq(other).into_py_any_unwrap(py),
CompareOp::Ne => self.ne(other).into_py_any_unwrap(py),
_ => py.NotImplemented(),
}
}
fn __repr__(&self) -> String {
format!(
"{}(id={}, type={}, base={})",
stringify!(BettingAccount),
self.id,
self.account_type,
self.base_currency.map_or_else(
|| "None".to_string(),
|base_currency| format!("{}", base_currency.code)
),
)
}
#[getter]
#[pyo3(name = "id")]
fn py_id(&self) -> AccountId {
self.id
}
#[getter]
#[pyo3(name = "account_type")]
fn py_account_type(&self) -> AccountType {
self.account_type
}
#[getter]
#[pyo3(name = "base_currency")]
fn py_base_currency(&self) -> Option<Currency> {
self.base_currency
}
#[getter]
#[pyo3(name = "last_event")]
fn py_last_event(&self) -> Option<AccountState> {
self.last_event()
}
#[getter]
#[pyo3(name = "event_count")]
fn py_event_count(&self) -> usize {
self.event_count()
}
#[getter]
#[pyo3(name = "events")]
fn py_events(&self) -> Vec<AccountState> {
self.events()
}
#[getter]
#[pyo3(name = "calculate_account_state")]
fn py_calculate_account_state(&self) -> bool {
self.calculate_account_state
}
#[pyo3(name = "balance_total")]
#[pyo3(signature = (currency=None))]
fn py_balance_total(&self, currency: Option<Currency>) -> Option<Money> {
self.balance_total(currency)
}
#[pyo3(name = "balances_total")]
fn py_balances_total(&self) -> std::collections::HashMap<Currency, Money> {
self.balances_total().into_iter().collect()
}
#[pyo3(name = "balance_free")]
#[pyo3(signature = (currency=None))]
fn py_balance_free(&self, currency: Option<Currency>) -> Option<Money> {
self.balance_free(currency)
}
#[pyo3(name = "balances_free")]
fn py_balances_free(&self) -> std::collections::HashMap<Currency, Money> {
self.balances_free().into_iter().collect()
}
#[pyo3(name = "balance_locked")]
#[pyo3(signature = (currency=None))]
fn py_balance_locked(&self, currency: Option<Currency>) -> Option<Money> {
self.balance_locked(currency)
}
#[pyo3(name = "balances_locked")]
fn py_balances_locked(&self) -> std::collections::HashMap<Currency, Money> {
self.balances_locked().into_iter().collect()
}
#[pyo3(name = "apply")]
fn py_apply(&mut self, event: AccountState) -> PyResult<()> {
self.apply(event).map_err(to_pyruntime_err)
}
#[pyo3(name = "calculate_balance_locked")]
#[pyo3(signature = (instrument, side, quantity, price, use_quote_for_inverse=None))]
fn py_calculate_balance_locked(
&mut self,
instrument: Py<PyAny>,
side: OrderSide,
quantity: Quantity,
price: Price,
use_quote_for_inverse: Option<bool>,
py: Python,
) -> PyResult<Money> {
let instrument = pyobject_to_instrument_any(py, instrument)?;
self.calculate_balance_locked(&instrument, side, quantity, price, use_quote_for_inverse)
.map_err(to_pyvalue_err)
}
#[pyo3(name = "calculate_commission")]
#[pyo3(signature = (instrument, last_qty, last_px, liquidity_side, use_quote_for_inverse=None))]
fn py_calculate_commission(
&self,
instrument: Py<PyAny>,
last_qty: Quantity,
last_px: Price,
liquidity_side: LiquiditySide,
use_quote_for_inverse: Option<bool>,
py: Python,
) -> PyResult<Money> {
if liquidity_side == LiquiditySide::NoLiquiditySide {
return Err(to_pyvalue_err("Invalid liquidity side"));
}
let instrument = pyobject_to_instrument_any(py, instrument)?;
self.calculate_commission(
&instrument,
last_qty,
last_px,
liquidity_side,
use_quote_for_inverse,
)
.map_err(to_pyvalue_err)
}
#[pyo3(name = "calculate_pnls")]
#[pyo3(signature = (instrument, fill, position=None))]
fn py_calculate_pnls(
&self,
instrument: Py<PyAny>,
fill: OrderFilled,
position: Option<Position>,
py: Python,
) -> PyResult<Vec<Money>> {
let instrument = pyobject_to_instrument_any(py, instrument)?;
self.calculate_pnls(&instrument, &fill, position)
.map_err(to_pyvalue_err)
}
#[pyo3(name = "balance_impact")]
fn py_balance_impact(
&self,
instrument: Py<PyAny>,
quantity: Quantity,
price: Price,
order_side: OrderSide,
py: Python,
) -> PyResult<Money> {
let instrument = pyobject_to_instrument_any(py, instrument)?;
Ok(self.balance_impact(&instrument, quantity, price, order_side))
}
#[pyo3(name = "to_dict")]
fn py_to_dict(&self, py: Python<'_>) -> PyResult<Py<PyAny>> {
let dict = PyDict::new(py);
dict.set_item("type", "BettingAccount")?;
dict.set_item("calculate_account_state", self.calculate_account_state)?;
let events_list: PyResult<Vec<Py<PyAny>>> =
self.events.iter().map(|item| item.py_to_dict(py)).collect();
dict.set_item("events", events_list.unwrap())?;
Ok(dict.into())
}
}