nautilus_model/instruments/
options_spread.rsuse std::hash::{Hash, Hasher};
use nautilus_core::{
correctness::{
check_equal_u8, check_positive_i64, check_valid_string, check_valid_string_optional, FAILED,
},
nanos::UnixNanos,
};
use rust_decimal::Decimal;
use serde::{Deserialize, Serialize};
use ustr::Ustr;
use super::{any::InstrumentAny, Instrument};
use crate::{
enums::{AssetClass, InstrumentClass, OptionKind},
identifiers::{InstrumentId, Symbol},
types::{currency::Currency, money::Money, price::Price, quantity::Quantity},
};
#[repr(C)]
#[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.model")
)]
#[cfg_attr(feature = "trivial_copy", derive(Copy))]
pub struct OptionsSpread {
pub id: InstrumentId,
pub raw_symbol: Symbol,
pub asset_class: AssetClass,
pub exchange: Option<Ustr>,
pub underlying: Ustr,
pub strategy_type: Ustr,
pub activation_ns: UnixNanos,
pub expiration_ns: UnixNanos,
pub currency: Currency,
pub price_precision: u8,
pub price_increment: Price,
pub size_increment: Quantity,
pub size_precision: u8,
pub multiplier: Quantity,
pub lot_size: Quantity,
pub margin_init: Decimal,
pub margin_maint: Decimal,
pub max_quantity: Option<Quantity>,
pub min_quantity: Option<Quantity>,
pub max_price: Option<Price>,
pub min_price: Option<Price>,
pub ts_event: UnixNanos,
pub ts_init: UnixNanos,
}
impl OptionsSpread {
#[allow(clippy::too_many_arguments)]
pub fn new_checked(
id: InstrumentId,
raw_symbol: Symbol,
asset_class: AssetClass,
exchange: Option<Ustr>,
underlying: Ustr,
strategy_type: Ustr,
activation_ns: UnixNanos,
expiration_ns: UnixNanos,
currency: Currency,
price_precision: u8,
price_increment: Price,
multiplier: Quantity,
lot_size: Quantity,
margin_init: Option<Decimal>,
margin_maint: Option<Decimal>,
max_quantity: Option<Quantity>,
min_quantity: Option<Quantity>,
max_price: Option<Price>,
min_price: Option<Price>,
ts_event: UnixNanos,
ts_init: UnixNanos,
) -> anyhow::Result<Self> {
check_valid_string_optional(exchange.map(|u| u.as_str()), stringify!(isin))?;
check_valid_string(strategy_type.as_str(), stringify!(strategy_type))?;
check_equal_u8(
price_precision,
price_increment.precision,
stringify!(price_precision),
stringify!(price_increment.precision),
)?;
check_positive_i64(price_increment.raw, stringify!(price_increment.raw))?;
Ok(Self {
id,
raw_symbol,
asset_class,
exchange,
underlying,
strategy_type,
activation_ns,
expiration_ns,
currency,
price_precision,
price_increment,
size_precision: 0,
size_increment: Quantity::from("1"),
multiplier,
lot_size,
margin_init: margin_init.unwrap_or(0.into()),
margin_maint: margin_maint.unwrap_or(0.into()),
max_quantity,
min_quantity: Some(min_quantity.unwrap_or(1.into())),
max_price,
min_price,
ts_event,
ts_init,
})
}
#[allow(clippy::too_many_arguments)]
pub fn new(
id: InstrumentId,
raw_symbol: Symbol,
asset_class: AssetClass,
exchange: Option<Ustr>,
underlying: Ustr,
strategy_type: Ustr,
activation_ns: UnixNanos,
expiration_ns: UnixNanos,
currency: Currency,
price_precision: u8,
price_increment: Price,
multiplier: Quantity,
lot_size: Quantity,
margin_init: Option<Decimal>,
margin_maint: Option<Decimal>,
max_quantity: Option<Quantity>,
min_quantity: Option<Quantity>,
max_price: Option<Price>,
min_price: Option<Price>,
ts_event: UnixNanos,
ts_init: UnixNanos,
) -> Self {
Self::new_checked(
id,
raw_symbol,
asset_class,
exchange,
underlying,
strategy_type,
activation_ns,
expiration_ns,
currency,
price_precision,
price_increment,
multiplier,
lot_size,
margin_init,
margin_maint,
max_quantity,
min_quantity,
max_price,
min_price,
ts_event,
ts_init,
)
.expect(FAILED)
}
}
impl PartialEq<Self> for OptionsSpread {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}
impl Eq for OptionsSpread {}
impl Hash for OptionsSpread {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
}
}
impl Instrument for OptionsSpread {
fn into_any(self) -> InstrumentAny {
InstrumentAny::OptionsSpread(self)
}
fn id(&self) -> InstrumentId {
self.id
}
fn raw_symbol(&self) -> Symbol {
self.raw_symbol
}
fn asset_class(&self) -> AssetClass {
self.asset_class
}
fn instrument_class(&self) -> InstrumentClass {
InstrumentClass::OptionSpread
}
fn underlying(&self) -> Option<Ustr> {
Some(self.underlying)
}
fn base_currency(&self) -> Option<Currency> {
None
}
fn quote_currency(&self) -> Currency {
self.currency
}
fn settlement_currency(&self) -> Currency {
self.currency
}
fn isin(&self) -> Option<Ustr> {
None
}
fn option_kind(&self) -> Option<OptionKind> {
None
}
fn exchange(&self) -> Option<Ustr> {
self.exchange
}
fn strike_price(&self) -> Option<Price> {
None
}
fn activation_ns(&self) -> Option<UnixNanos> {
Some(self.activation_ns)
}
fn expiration_ns(&self) -> Option<UnixNanos> {
Some(self.expiration_ns)
}
fn is_inverse(&self) -> bool {
false
}
fn price_precision(&self) -> u8 {
self.price_precision
}
fn size_precision(&self) -> u8 {
0
}
fn price_increment(&self) -> Price {
self.price_increment
}
fn size_increment(&self) -> Quantity {
Quantity::from(1)
}
fn multiplier(&self) -> Quantity {
self.multiplier
}
fn lot_size(&self) -> Option<Quantity> {
Some(self.lot_size)
}
fn max_quantity(&self) -> Option<Quantity> {
self.max_quantity
}
fn min_quantity(&self) -> Option<Quantity> {
self.min_quantity
}
fn max_notional(&self) -> Option<Money> {
None
}
fn min_notional(&self) -> Option<Money> {
None
}
fn max_price(&self) -> Option<Price> {
self.max_price
}
fn min_price(&self) -> Option<Price> {
self.min_price
}
fn ts_event(&self) -> UnixNanos {
self.ts_event
}
fn ts_init(&self) -> UnixNanos {
self.ts_init
}
}
#[cfg(test)]
mod tests {
use rstest::rstest;
use crate::instruments::{options_spread::OptionsSpread, stubs::*};
#[rstest]
fn test_equality(options_spread: OptionsSpread) {
assert_eq!(options_spread, options_spread.clone());
}
}