nautilus_model/instruments/equity.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
// -------------------------------------------------------------------------------------------------
// Copyright (C) 2015-2024 Nautech Systems Pty Ltd. All rights reserved.
// https://nautechsystems.io
//
// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
use std::hash::{Hash, Hasher};
use nautilus_core::{
correctness::{check_equal_u8, check_positive_i64, 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, Money, Price, Quantity},
};
/// Represents a generic equity instrument.
#[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 Equity {
/// The instrument ID.
pub id: InstrumentId,
/// The raw/local/native symbol for the instrument, assigned by the venue.
pub raw_symbol: Symbol,
/// The instruments International Securities Identification Number (ISIN).
pub isin: Option<Ustr>,
/// The futures contract currency.
pub currency: Currency,
/// The price decimal precision.
pub price_precision: u8,
/// The minimum price increment (tick size).
pub price_increment: Price,
/// The initial (order) margin requirement in percentage of order value.
pub margin_init: Decimal,
/// The maintenance (position) margin in percentage of position value.
pub margin_maint: Decimal,
/// The fee rate for liquidity makers as a percentage of order value.
pub maker_fee: Decimal,
/// The fee rate for liquidity takers as a percentage of order value.
pub taker_fee: Decimal,
/// The rounded lot unit size (standard/board).
pub lot_size: Option<Quantity>,
/// The maximum allowable order quantity.
pub max_quantity: Option<Quantity>,
/// The minimum allowable order quantity.
pub min_quantity: Option<Quantity>,
/// The maximum allowable quoted price.
pub max_price: Option<Price>,
/// The minimum allowable quoted price.
pub min_price: Option<Price>,
/// UNIX timestamp (nanoseconds) when the data event occurred.
pub ts_event: UnixNanos,
/// UNIX timestamp (nanoseconds) when the data object was initialized.
pub ts_init: UnixNanos,
}
impl Equity {
/// Creates a new [`Equity`] instance with correctness checking.
///
/// # Notes
///
/// PyO3 requires a `Result` type for proper error handling and stacktrace printing in Python.
#[allow(clippy::too_many_arguments)]
pub fn new_checked(
id: InstrumentId,
raw_symbol: Symbol,
isin: Option<Ustr>,
currency: Currency,
price_precision: u8,
price_increment: Price,
lot_size: Option<Quantity>,
max_quantity: Option<Quantity>,
min_quantity: Option<Quantity>,
max_price: Option<Price>,
min_price: Option<Price>,
margin_init: Option<Decimal>,
margin_maint: Option<Decimal>,
maker_fee: Option<Decimal>,
taker_fee: Option<Decimal>,
ts_event: UnixNanos,
ts_init: UnixNanos,
) -> anyhow::Result<Self> {
check_valid_string_optional(isin.map(|u| u.as_str()), stringify!(isin))?;
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,
isin,
currency,
price_precision,
price_increment,
lot_size,
max_quantity,
min_quantity,
max_price,
min_price,
margin_init: margin_init.unwrap_or_default(),
margin_maint: margin_maint.unwrap_or_default(),
maker_fee: maker_fee.unwrap_or_default(),
taker_fee: taker_fee.unwrap_or_default(),
ts_event,
ts_init,
})
}
/// Creates a new [`Equity`] instance.
#[allow(clippy::too_many_arguments)]
pub fn new(
id: InstrumentId,
raw_symbol: Symbol,
isin: Option<Ustr>,
currency: Currency,
price_precision: u8,
price_increment: Price,
lot_size: Option<Quantity>,
max_quantity: Option<Quantity>,
min_quantity: Option<Quantity>,
max_price: Option<Price>,
min_price: Option<Price>,
margin_init: Option<Decimal>,
margin_maint: Option<Decimal>,
maker_fee: Option<Decimal>,
taker_fee: Option<Decimal>,
ts_event: UnixNanos,
ts_init: UnixNanos,
) -> Self {
Self::new_checked(
id,
raw_symbol,
isin,
currency,
price_precision,
price_increment,
lot_size,
max_quantity,
min_quantity,
max_price,
min_price,
margin_init,
margin_maint,
maker_fee,
taker_fee,
ts_event,
ts_init,
)
.expect(FAILED)
}
}
impl PartialEq<Self> for Equity {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}
impl Eq for Equity {}
impl Hash for Equity {
fn hash<H: Hasher>(&self, state: &mut H) {
self.id.hash(state);
}
}
impl Instrument for Equity {
fn into_any(self) -> InstrumentAny {
InstrumentAny::Equity(self)
}
fn id(&self) -> InstrumentId {
self.id
}
fn raw_symbol(&self) -> Symbol {
self.raw_symbol
}
fn asset_class(&self) -> AssetClass {
AssetClass::Equity
}
fn instrument_class(&self) -> InstrumentClass {
InstrumentClass::Spot
}
fn underlying(&self) -> Option<Ustr> {
None
}
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> {
self.isin
}
fn option_kind(&self) -> Option<OptionKind> {
None
}
fn exchange(&self) -> Option<Ustr> {
None
}
fn strike_price(&self) -> Option<Price> {
None
}
fn activation_ns(&self) -> Option<UnixNanos> {
None
}
fn expiration_ns(&self) -> Option<UnixNanos> {
None
}
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 {
Quantity::from(1)
}
fn lot_size(&self) -> Option<Quantity> {
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
}
}
////////////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////////////
#[cfg(test)]
mod tests {
use rstest::rstest;
use crate::instruments::{stubs::*, Equity};
#[rstest]
fn test_equality(equity_aapl: Equity) {
let cloned = equity_aapl;
assert_eq!(equity_aapl, cloned);
}
}