nautilus_model/enums.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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
// -------------------------------------------------------------------------------------------------
// 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.
// -------------------------------------------------------------------------------------------------
//! Enumerations for the trading domain model.
use std::str::FromStr;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use strum::{AsRefStr, Display, EnumIter, EnumString, FromRepr};
use crate::enum_strum_serde;
pub trait FromU8 {
fn from_u8(value: u8) -> Option<Self>
where
Self: Sized;
}
pub trait FromU16 {
fn from_u16(value: u16) -> Option<Self>
where
Self: Sized;
}
/// An account type provided by a trading venue or broker.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum AccountType {
/// An account with unleveraged cash assets only.
Cash = 1,
/// An account which facilitates trading on margin, using account assets as collateral.
Margin = 2,
/// An account specific to betting markets.
Betting = 3,
}
/// An aggregation source for derived data.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum AggregationSource {
/// The data is externally aggregated (outside the Nautilus system boundary).
External = 1,
/// The data is internally aggregated (inside the Nautilus system boundary).
Internal = 2,
}
/// The side for the aggressing order of a trade in a market.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum AggressorSide {
/// There was no specific aggressor for the trade.
#[default]
NoAggressor = 0,
/// The BUY order was the aggressor for the trade.
Buyer = 1,
/// The SELL order was the aggressor for the trade.
Seller = 2,
}
impl FromU8 for AggressorSide {
fn from_u8(value: u8) -> Option<Self> {
match value {
0 => Some(Self::NoAggressor),
1 => Some(Self::Buyer),
2 => Some(Self::Seller),
_ => None,
}
}
}
/// A broad financial market asset class.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
#[allow(non_camel_case_types)]
pub enum AssetClass {
/// Foreign exchange (FOREX) assets.
FX = 1,
/// Equity / stock assets.
Equity = 2,
/// Commodity assets.
Commodity = 3,
/// Debt based assets.
Debt = 4,
/// Index based assets (baskets).
Index = 5,
/// Cryptocurrency or crypto token assets.
Cryptocurrency = 6,
/// Alternative assets.
Alternative = 7,
}
impl FromU8 for AssetClass {
fn from_u8(value: u8) -> Option<Self> {
match value {
1 => Some(Self::FX),
2 => Some(Self::Equity),
3 => Some(Self::Commodity),
4 => Some(Self::Debt),
5 => Some(Self::Index),
6 => Some(Self::Cryptocurrency),
7 => Some(Self::Alternative),
_ => None,
}
}
}
/// The instrument class.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum InstrumentClass {
/// A spot market instrument class. The current market price of an instrument that is bought or sold for immediate delivery and payment.
Spot = 1,
/// A swap instrument class. A derivative contract through which two parties exchange the cash flows or liabilities from two different financial instruments.
Swap = 2,
/// A futures contract instrument class. A legal agreement to buy or sell an asset at a predetermined price at a specified time in the future.
Future = 3,
/// A futures spread instrument class. A strategy involving the use of futures contracts to take advantage of price differentials between different contract months, underlying assets, or marketplaces.
FutureSpread = 4,
/// A forward derivative instrument class. A customized contract between two parties to buy or sell an asset at a specified price on a future date.
Forward = 5,
/// A contract-for-difference (CFD) instrument class. A contract between an investor and a CFD broker to exchange the difference in the value of a financial product between the time the contract opens and closes.
Cfd = 6,
/// A bond instrument class. A type of debt investment where an investor loans money to an entity (typically corporate or governmental) which borrows the funds for a defined period of time at a variable or fixed interest rate.
Bond = 7,
/// An options contract instrument class. A type of derivative that gives the holder the right, but not the obligation, to buy or sell an underlying asset at a predetermined price before or at a certain future date.
Option = 8,
/// An option spread instrument class. A strategy involving the purchase and/or sale of options on the same underlying asset with different strike prices or expiration dates to capitalize on expected market moves in a controlled cost environment.
OptionSpread = 9,
/// A warrant instrument class. A derivative that gives the holder the right, but not the obligation, to buy or sell a security—most commonly an equity—at a certain price before expiration.
Warrant = 10,
/// A warrant instrument class. A derivative that gives the holder the right, but not the obligation, to buy or sell a security—most commonly an equity—at a certain price before expiration.
SportsBetting = 11,
/// A binary option instrument class. A type of derivative where the payoff is either a fixed monetary amount or nothing, based on a yes/no proposition about an underlying event.
BinaryOption = 12,
}
/// The aggregation method through which a bar is generated and closed.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum BarAggregation {
/// Based on a number of ticks.
Tick = 1,
/// Based on the buy/sell imbalance of ticks.
TickImbalance = 2,
/// Based on sequential buy/sell runs of ticks.
TickRuns = 3,
/// Based on traded volume.
Volume = 4,
/// Based on the buy/sell imbalance of traded volume.
VolumeImbalance = 5,
/// Based on sequential runs of buy/sell traded volume.
VolumeRuns = 6,
/// Based on the 'notional' value of the instrument.
Value = 7,
/// Based on the buy/sell imbalance of trading by notional value.
ValueImbalance = 8,
/// Based on sequential buy/sell runs of trading by notional value.
ValueRuns = 9,
/// Based on time intervals with millisecond granularity.
Millisecond = 10,
/// Based on time intervals with second granularity.
Second = 11,
/// Based on time intervals with minute granularity.
Minute = 12,
/// Based on time intervals with hour granularity.
Hour = 13,
/// Based on time intervals with day granularity.
Day = 14,
/// Based on time intervals with week granularity.
Week = 15,
/// Based on time intervals with month granularity.
Month = 16,
}
/// The type of order book action for an order book event.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum BookAction {
/// An order is added to the book.
Add = 1,
/// An existing order in the book is updated/modified.
Update = 2,
/// An existing order in the book is deleted/canceled.
Delete = 3,
/// The state of the order book is cleared.
Clear = 4,
}
impl FromU8 for BookAction {
fn from_u8(value: u8) -> Option<Self> {
match value {
1 => Some(Self::Add),
2 => Some(Self::Update),
3 => Some(Self::Delete),
4 => Some(Self::Clear),
_ => None,
}
}
}
/// The order book type, representing the type of levels granularity and delta updating heuristics.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[allow(non_camel_case_types)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum BookType {
/// Top-of-book best bid/ask, one level per side.
L1_MBP = 1,
/// Market by price, one order per level (aggregated).
L2_MBP = 2,
/// Market by order, multiple orders per level (full granularity).
L3_MBO = 3,
}
impl FromU8 for BookType {
fn from_u8(value: u8) -> Option<Self> {
match value {
1 => Some(Self::L1_MBP),
2 => Some(Self::L2_MBP),
3 => Some(Self::L3_MBO),
_ => None,
}
}
}
/// The order contigency type which specifies the behavior of linked orders.
///
/// [FIX 5.0 SP2 : ContingencyType <1385> field](https://www.onixs.biz/fix-dictionary/5.0.sp2/tagnum_1385.html).
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum ContingencyType {
/// Not a contingent order.
#[default]
NoContingency = 0,
/// One-Cancels-the-Other.
Oco = 1,
/// One-Triggers-the-Other.
Oto = 2,
/// One-Updates-the-Other (by proportional quantity).
Ouo = 3,
}
/// The broad currency type.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum CurrencyType {
/// A type of cryptocurrency or crypto token.
Crypto = 1,
/// A type of currency issued by governments which is not backed by a commodity.
Fiat = 2,
/// A type of currency that is based on the value of an underlying commodity.
CommodityBacked = 3,
}
/// The type of event for an instrument close.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum InstrumentCloseType {
/// When the market session ended.
EndOfSession = 1,
/// When the instrument expiration was reached.
ContractExpired = 2,
}
/// The liqudity side for a trade.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
#[allow(clippy::enum_variant_names)]
pub enum LiquiditySide {
/// No liquidity side specified.
NoLiquiditySide = 0,
/// The order passively provided liqudity to the market to complete the trade (made a market).
Maker = 1,
/// The order aggressively took liqudity from the market to complete the trade.
Taker = 2,
}
/// The status of an individual market on a trading venue.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum MarketStatus {
/// The instrument is trading.
Open = 1,
/// The instrument is in a pre-open period.
Closed = 2,
/// Trading in the instrument has been paused.
Paused = 3,
/// Trading in the instrument has been halted.
// Halted = 4, # TODO: Unfortunately can't use this yet due to Cython (C enum namespacing)
/// Trading in the instrument has been suspended.
Suspended = 5,
/// Trading in the instrument is not available.
NotAvailable = 6,
}
/// An action affecting the status of an individual market on a trading venue.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum MarketStatusAction {
/// No change.
None = 0,
/// The instrument is in a pre-open period.
PreOpen = 1,
/// The instrument is in a pre-cross period.
PreCross = 2,
/// The instrument is quoting but not trading.
Quoting = 3,
/// The instrument is in a cross/auction.
Cross = 4,
/// The instrument is being opened through a trading rotation.
Rotation = 5,
/// A new price indication is available for the instrument.
NewPriceIndication = 6,
/// The instrument is trading.
Trading = 7,
/// Trading in the instrument has been halted.
Halt = 8,
/// Trading in the instrument has been paused.
Pause = 9,
/// Trading in the instrument has been suspended.
Suspend = 10,
/// The instrument is in a pre-close period.
PreClose = 11,
/// Trading in the instrument has closed.
Close = 12,
/// The instrument is in a post-close period.
PostClose = 13,
/// A change in short-selling restrictions.
ShortSellRestrictionChange = 14,
/// The instrument is not available for trading, either trading has closed or been halted.
NotAvailableForTrading = 15,
}
/// Convert the given `value` to an [`OrderSide`].
impl FromU16 for MarketStatusAction {
fn from_u16(value: u16) -> Option<Self> {
match value {
0 => Some(Self::None),
1 => Some(Self::PreOpen),
2 => Some(Self::PreCross),
3 => Some(Self::Quoting),
4 => Some(Self::Cross),
5 => Some(Self::Rotation),
6 => Some(Self::NewPriceIndication),
7 => Some(Self::Trading),
8 => Some(Self::Halt),
9 => Some(Self::Pause),
10 => Some(Self::Suspend),
11 => Some(Self::PreClose),
12 => Some(Self::Close),
13 => Some(Self::PostClose),
14 => Some(Self::ShortSellRestrictionChange),
15 => Some(Self::NotAvailableForTrading),
_ => None,
}
}
}
/// The order management system (OMS) type for a trading venue or trading strategy.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum OmsType {
/// There is no specific type of order management specified (will defer to the venue OMS).
#[default]
Unspecified = 0,
/// The netting type where there is one position per instrument.
Netting = 1,
/// The hedging type where there can be multiple positions per instrument.
/// This can be in LONG/SHORT directions, by position/ticket ID, or tracked virtually by
/// Nautilus.
Hedging = 2,
}
/// The kind of options contract.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum OptionKind {
/// A Call option gives the holder the right, but not the obligation, to buy an underlying asset at a specified strike price within a specified period of time.
Call = 1,
/// A Put option gives the holder the right, but not the obligation, to sell an underlying asset at a specified strike price within a specified period of time.
Put = 2,
}
/// The order side for a specific order, or action related to orders.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[allow(clippy::enum_variant_names)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum OrderSide {
/// No order side is specified.
#[default]
NoOrderSide = 0,
/// The order is a BUY.
Buy = 1,
/// The order is a SELL.
Sell = 2,
}
impl OrderSide {
#[must_use]
pub fn as_specified(&self) -> OrderSideSpecified {
match &self {
Self::Buy => OrderSideSpecified::Buy,
Self::Sell => OrderSideSpecified::Sell,
_ => panic!("Order invariant failed: side must be `Buy` or `Sell`"),
}
}
}
/// Convert the given `value` to an [`OrderSide`].
impl FromU8 for OrderSide {
fn from_u8(value: u8) -> Option<Self> {
match value {
0 => Some(Self::NoOrderSide),
1 => Some(Self::Buy),
2 => Some(Self::Sell),
_ => None,
}
}
}
/// The specified order side (BUY or SELL).
pub enum OrderSideSpecified {
/// The order is a BUY.
Buy = 1,
/// The order is a SELL.
Sell = 2,
}
impl OrderSideSpecified {
#[must_use]
pub fn as_order_side(&self) -> OrderSide {
match &self {
Self::Buy => OrderSide::Buy,
Self::Sell => OrderSide::Sell,
}
}
}
/// The status for a specific order.
///
/// An order is considered _open_ for the following status:
/// - `ACCEPTED`
/// - `TRIGGERED`
/// - `PENDING_UPDATE`
/// - `PENDING_CANCEL`
/// - `PARTIALLY_FILLED`
///
/// An order is considered _in-flight_ for the following status:
/// - `SUBMITTED`
/// - `PENDING_UPDATE`
/// - `PENDING_CANCEL`
///
/// An order is considered _closed_ for the following status:
/// - `DENIED`
/// - `REJECTED`
/// - `CANCELED`
/// - `EXPIRED`
/// - `FILLED`
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum OrderStatus {
/// The order is initialized (instantiated) within the Nautilus system.
Initialized = 1,
/// The order was denied by the Nautilus system, either for being invalid, unprocessable or exceeding a risk limit.
Denied = 2,
/// The order became emulated by the Nautilus system in the `OrderEmulator` component.
Emulated = 3,
/// The order was released by the Nautilus system from the `OrderEmulator` component.
Released = 4,
/// The order was submitted by the Nautilus system to the external service or trading venue (awaiting acknowledgement).
Submitted = 5,
/// The order was acknowledged by the trading venue as being received and valid (may now be working).
Accepted = 6,
/// The order was rejected by the trading venue.
Rejected = 7,
/// The order was canceled (closed/done).
Canceled = 8,
/// The order reached a GTD expiration (closed/done).
Expired = 9,
/// The order STOP price was triggered on a trading venue.
Triggered = 10,
/// The order is currently pending a request to modify on a trading venue.
PendingUpdate = 11,
/// The order is currently pending a request to cancel on a trading venue.
PendingCancel = 12,
/// The order has been partially filled on a trading venue.
PartiallyFilled = 13,
/// The order has been completely filled on a trading venue (closed/done).
Filled = 14,
}
/// The type of order.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum OrderType {
/// A market order to buy or sell at the best available price in the current market.
Market = 1,
/// A limit order to buy or sell at a specific price or better.
Limit = 2,
/// A stop market order to buy or sell once the price reaches the specified stop/trigger price. When the stop price is reached, the order effectively becomes a market order.
StopMarket = 3,
/// A stop limit order to buy or sell which combines the features of a stop order and a limit order. Once the stop/trigger price is reached, a stop-limit order effectively becomes a limit order.
StopLimit = 4,
/// A market-to-limit order is a market order that is to be executed as a limit order at the current best market price after reaching the market.
MarketToLimit = 5,
/// A market-if-touched order effectively becomes a market order when the specified trigger price is reached.
MarketIfTouched = 6,
/// A limit-if-touched order effectively becomes a limit order when the specified trigger price is reached.
LimitIfTouched = 7,
/// A trailing stop market order sets the stop/trigger price at a fixed "trailing offset" amount from the market.
TrailingStopMarket = 8,
/// A trailing stop limit order combines the features of a trailing stop order with those of a limit order.
TrailingStopLimit = 9,
}
/// The market side for a specific position, or action related to positions.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[allow(clippy::enum_variant_names)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum PositionSide {
/// No position side is specified (only valid in the context of a filter for actions involving positions).
#[default]
NoPositionSide = 0,
/// A neural/flat position, where no position is currently held in the market.
Flat = 1,
/// A long position in the market, typically acquired through one or many BUY orders.
Long = 2,
/// A short position in the market, typically acquired through one or many SELL orders.
Short = 3,
}
/// The type of price for an instrument in a market.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum PriceType {
/// A quoted order price where a buyer is willing to buy a quantity of an instrument.
Bid = 1,
/// A quoted order price where a seller is willing to sell a quantity of an instrument.
Ask = 2,
/// The midpoint between the best bid and best ask prices.
Mid = 3,
/// The last price at which a trade was made for an instrument.
Last = 4,
}
/// A record flag bit field, indicating event end and data information.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
#[allow(non_camel_case_types)]
pub enum RecordFlag {
/// Last message in the book event or packet from the venue for a given `instrument_id`.
F_LAST = 1 << 7, // 128
/// Top-of-book message, not an individual order.
F_TOB = 1 << 6, // 64
/// Message sourced from a replay, such as a snapshot server.
F_SNAPSHOT = 1 << 5, // 32
/// Aggregated price level message, not an individual order.
F_MBP = 1 << 4, // 16
/// Reserved for future use.
RESERVED_2 = 1 << 3, // 8
/// Reserved for future use.
RESERVED_1 = 1 << 2, // 4
}
impl RecordFlag {
/// Checks if the flag matches a given value.
#[must_use]
pub fn matches(self, value: u8) -> bool {
(self as u8) & value != 0
}
}
/// The 'Time in Force' instruction for an order.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum TimeInForce {
/// Good-Till-Canceled (GTC) - the order remains active until canceled.
Gtc = 1,
/// Immediate-Or-Cancel (IOC) - the order is filled as much as possible, the rest is canceled.
Ioc = 2,
/// Fill-Or-Kill (FOK) - the order must be executed in full immediately, or it is canceled.
Fok = 3,
/// Good-Till-Date/Time (GTD) - the order is active until a specified date or time.
Gtd = 4,
/// Day - the order is active until the end of the current trading session.
Day = 5,
/// At the Opening (ATO) - the order is scheduled to be executed at the market's opening.
AtTheOpen = 6,
/// At the Closing (ATC) - the order is scheduled to be executed at the market's closing.
AtTheClose = 7,
}
/// The trading state for a node.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum TradingState {
/// Normal trading operations.
Active = 1,
/// Trading is completely halted, no new order commands will be emitted.
Halted = 2,
/// Only order commands which would cancel order, or reduce position sizes are permitted.
Reducing = 3,
}
/// The trailing offset type for an order type which specifies a trailing stop/trigger or limit price.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum TrailingOffsetType {
/// No trailing offset type is specified (invalid for trailing type orders).
NoTrailingOffset = 0,
/// The trailing offset is based on a market price.
Price = 1,
/// The trailing offset is based on a percentage represented in basis points, of a market price.
BasisPoints = 2,
/// The trailing offset is based on the number of ticks from a market price.
Ticks = 3,
/// The trailing offset is based on a price tier set by a specific trading venue.
PriceTier = 4,
}
/// The trigger type for the stop/trigger price of an order.
#[repr(C)]
#[derive(
Copy,
Clone,
Debug,
Default,
Display,
Hash,
PartialEq,
Eq,
PartialOrd,
Ord,
AsRefStr,
FromRepr,
EnumIter,
EnumString,
)]
#[strum(ascii_case_insensitive)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
#[cfg_attr(
feature = "python",
pyo3::pyclass(eq, eq_int, module = "nautilus_trader.core.nautilus_pyo3.model.enums")
)]
pub enum TriggerType {
/// No trigger type is specified (invalid for orders with a trigger).
#[default]
NoTrigger = 0,
/// The default trigger type set by the trading venue.
Default = 1,
/// Based on the top-of-book quoted prices for the instrument.
BidAsk = 2,
/// Based on the last traded price for the instrument.
LastTrade = 3,
/// Based on a 'double match' of the last traded price for the instrument
DoubleLast = 4,
/// Based on a 'double match' of the bid/ask price for the instrument
DoubleBidAsk = 5,
/// Based on both the [`TriggerType::LastTrade`] and [`TriggerType::BidAsk`].
LastOrBidAsk = 6,
/// Based on the mid-point of the [`TriggerType::BidAsk`].
MidPoint = 7,
/// Based on the mark price for the instrument.
MarkPrice = 8,
/// Based on the index price for the instrument.
IndexPrice = 9,
}
enum_strum_serde!(AccountType);
enum_strum_serde!(AggregationSource);
enum_strum_serde!(AggressorSide);
enum_strum_serde!(AssetClass);
enum_strum_serde!(InstrumentClass);
enum_strum_serde!(BarAggregation);
enum_strum_serde!(BookAction);
enum_strum_serde!(BookType);
enum_strum_serde!(ContingencyType);
enum_strum_serde!(CurrencyType);
enum_strum_serde!(InstrumentCloseType);
enum_strum_serde!(LiquiditySide);
enum_strum_serde!(MarketStatus);
enum_strum_serde!(MarketStatusAction);
enum_strum_serde!(OmsType);
enum_strum_serde!(OptionKind);
enum_strum_serde!(OrderSide);
enum_strum_serde!(OrderStatus);
enum_strum_serde!(OrderType);
enum_strum_serde!(PositionSide);
enum_strum_serde!(PriceType);
enum_strum_serde!(RecordFlag);
enum_strum_serde!(TimeInForce);
enum_strum_serde!(TradingState);
enum_strum_serde!(TrailingOffsetType);
enum_strum_serde!(TriggerType);