-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcontracts.rs
644 lines (586 loc) · 28.2 KB
/
contracts.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
use std::convert::From;
use std::fmt::Debug;
use std::string::ToString;
use log::{error, info};
use serde::Deserialize;
use serde::Serialize;
use tick_types::TickType;
use crate::client::DataStream;
use crate::client::ResponseContext;
use crate::encode_option_field;
use crate::messages::IncomingMessages;
use crate::messages::OutgoingMessages;
use crate::messages::RequestMessage;
use crate::messages::ResponseMessage;
use crate::Client;
use crate::{server_versions, Error, ToField};
pub(crate) mod decoders;
mod encoders;
pub mod tick_types;
#[cfg(test)]
pub(crate) mod contract_samples;
#[cfg(test)]
mod tests;
// Models
#[derive(Clone, Debug, PartialEq, Eq, Default, Serialize, Deserialize)]
/// SecurityType enumerates available security types
pub enum SecurityType {
/// Stock (or ETF)
#[default]
Stock,
/// Option
Option,
/// Future
Future,
/// Index
Index,
/// Futures option
FuturesOption,
/// Forex pair
ForexPair,
/// Combo
Spread,
/// Warrant
Warrant,
/// Bond
Bond,
/// Commodity
Commodity,
/// News
News,
/// Mutual fund
MutualFund,
/// Crypto currency
Crypto,
}
impl ToField for SecurityType {
fn to_field(&self) -> String {
self.to_string()
}
}
impl ToField for Option<SecurityType> {
fn to_field(&self) -> String {
encode_option_field(self)
}
}
impl std::fmt::Display for SecurityType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
SecurityType::Stock => write!(f, "STK"),
SecurityType::Option => write!(f, "OPT"),
SecurityType::Future => write!(f, "FUT"),
SecurityType::Index => write!(f, "IND"),
SecurityType::FuturesOption => write!(f, "FOP"),
SecurityType::ForexPair => write!(f, "CASH"),
SecurityType::Spread => write!(f, "BAG"),
SecurityType::Warrant => write!(f, "WAR"),
SecurityType::Bond => write!(f, "BOND"),
SecurityType::Commodity => write!(f, "CMDTY"),
SecurityType::News => write!(f, "NEWS"),
SecurityType::MutualFund => write!(f, "FUND"),
SecurityType::Crypto => write!(f, "CRYPTO"),
}
}
}
impl SecurityType {
pub fn from(name: &str) -> SecurityType {
match name {
"STK" => SecurityType::Stock,
"OPT" => SecurityType::Option,
"FUT" => SecurityType::Future,
"IND" => SecurityType::Index,
"FOP" => SecurityType::FuturesOption,
"CASH" => SecurityType::ForexPair,
"BAG" => SecurityType::Spread,
"WAR" => SecurityType::Warrant,
"BOND" => SecurityType::Bond,
"CMDTY" => SecurityType::Commodity,
"NEWS" => SecurityType::News,
"FUND" => SecurityType::MutualFund,
"CRYPTO" => SecurityType::Crypto,
unsupported => todo!("Unimplemented security type: {unsupported}"),
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
/// Contract describes an instrument's definition
pub struct Contract {
/// The unique IB contract identifier.
pub contract_id: i32,
/// The underlying's asset symbol.
pub symbol: String,
pub security_type: SecurityType,
/// The contract's last trading day or contract month (for Options and Futures).
/// Strings with format YYYYMM will be interpreted as the Contract Month whereas YYYYMMDD will be interpreted as Last Trading Day.
pub last_trade_date_or_contract_month: String,
/// The option's strike price.
pub strike: f64,
/// Either Put or Call (i.e. Options). Valid values are P, PUT, C, CALL.
pub right: String,
/// The instrument's multiplier (i.e. options, futures).
pub multiplier: String,
/// The destination exchange.
pub exchange: String,
/// The underlying's currency.
pub currency: String,
/// The contract's symbol within its primary exchange For options, this will be the OCC symbol.
pub local_symbol: String,
/// The contract's primary exchange.
/// For smart routed contracts, used to define contract in case of ambiguity.
/// Should be defined as native exchange of contract, e.g. ISLAND for MSFT For exchanges which contain a period in name, will only be part of exchange name prior to period, i.e. ENEXT for ENEXT.BE.
pub primary_exchange: String,
/// The trading class name for this contract. Available in TWS contract description window as well. For example, GBL Dec '13 future's trading class is "FGBL".
pub trading_class: String,
/// If set to true, contract details requests and historical data queries can be performed pertaining to expired futures contracts. Expired options or other instrument types are not available.
pub include_expired: bool,
/// Security's identifier when querying contract's details or placing orders ISIN - Example: Apple: US0378331005 CUSIP - Example: Apple: 037833100.
pub security_id_type: String,
/// Identifier of the security type.
pub security_id: String,
/// Description of the combo legs.
pub combo_legs_description: String,
pub combo_legs: Vec<ComboLeg>,
/// Delta and underlying price for Delta-Neutral combo orders. Underlying (STK or FUT), delta and underlying price goes into this attribute.
pub delta_neutral_contract: Option<DeltaNeutralContract>,
pub issuer_id: String,
pub description: String,
}
impl Contract {
/// Creates stock contract from specified symbol
/// currency defaults to USD and SMART exchange.
pub fn stock(symbol: &str) -> Contract {
Contract {
symbol: symbol.to_string(),
security_type: SecurityType::Stock,
currency: "USD".to_string(),
exchange: "SMART".to_string(),
..Default::default()
}
}
/// Creates futures contract from specified symbol
pub fn futures(symbol: &str) -> Contract {
Contract {
symbol: symbol.to_string(),
security_type: SecurityType::Future,
currency: "USD".to_string(),
..Default::default()
}
}
/// Creates Crypto contract from specified symbol
pub fn crypto(symbol: &str) -> Contract {
Contract {
symbol: symbol.to_string(),
security_type: SecurityType::Crypto,
currency: "USD".to_string(),
exchange: "PAXOS".to_string(),
..Default::default()
}
}
/// Creates News contract from specified provider code.
pub fn news(provider_code: &str) -> Contract {
Contract {
symbol: format!("{}:{}_ALL", provider_code, provider_code),
security_type: SecurityType::News,
exchange: provider_code.to_string(),
..Default::default()
}
}
/// Is Bag request
pub fn is_bag(&self) -> bool {
self.security_type == SecurityType::Spread
}
pub(crate) fn push_fields(&self, message: &mut RequestMessage) {
message.push_field(&self.contract_id);
message.push_field(&self.symbol);
message.push_field(&self.security_type);
message.push_field(&self.last_trade_date_or_contract_month);
message.push_field(&self.strike);
message.push_field(&self.right);
message.push_field(&self.multiplier);
message.push_field(&self.exchange);
message.push_field(&self.primary_exchange);
message.push_field(&self.currency);
message.push_field(&self.local_symbol);
message.push_field(&self.trading_class);
message.push_field(&self.include_expired);
}
}
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
// ComboLeg represents a leg within combo orders.
pub struct ComboLeg {
/// The Contract's IB's unique id.
pub contract_id: i32,
/// Select the relative number of contracts for the leg you are constructing. To help determine the ratio for a specific combination order, refer to the Interactive Analytics section of the User's Guide.
pub ratio: i32,
/// The side (buy or sell) of the leg:
pub action: String,
// The destination exchange to which the order will be routed.
pub exchange: String,
/// Specifies whether an order is an open or closing order.
/// For institutional customers to determine if this order is to open or close a position.
pub open_close: ComboLegOpenClose,
/// For stock legs when doing short selling. Set to 1 = clearing broker, 2 = third party.
pub short_sale_slot: i32,
/// When ShortSaleSlot is 2, this field shall contain the designated location.
pub designated_location: String,
// DOC_TODO.
pub exempt_code: i32,
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Serialize, Deserialize)]
/// OpenClose specifies whether an order is an open or closing order.
pub enum ComboLegOpenClose {
/// 0 - Same as the parent security. This is the only option for retail customers.
#[default]
Same = 0,
/// 1 - Open. This value is only valid for institutional customers.
Open = 1,
/// 2 - Close. This value is only valid for institutional customers.
Close = 2,
/// 3 - Unknown.
Unknown = 3,
}
impl ToField for ComboLegOpenClose {
fn to_field(&self) -> String {
(*self as u8).to_string()
}
}
impl From<i32> for ComboLegOpenClose {
// TODO - verify these values
fn from(val: i32) -> Self {
match val {
0 => Self::Same,
1 => Self::Open,
2 => Self::Close,
3 => Self::Unknown,
_ => panic!("unsupported value: {val}"),
}
}
}
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
/// Delta and underlying price for Delta-Neutral combo orders.
/// Underlying (STK or FUT), delta and underlying price goes into this attribute.
pub struct DeltaNeutralContract {
/// The unique contract identifier specifying the security. Used for Delta-Neutral Combo contracts.
pub contract_id: i32,
/// The underlying stock or future delta. Used for Delta-Neutral Combo contracts.
pub delta: f64,
/// The price of the underlying. Used for Delta-Neutral Combo contracts.
pub price: f64,
}
/// ContractDetails provides extended contract details.
#[derive(Debug, Default, Clone, PartialEq, Serialize, Deserialize)]
pub struct ContractDetails {
/// A fully-defined Contract object.
pub contract: Contract,
/// The market name for this product.
pub market_name: String,
/// The minimum allowed price variation. Note that many securities vary their minimum tick size according to their price. This value will only show the smallest of the different minimum tick sizes regardless of the product's price. Full information about the minimum increment price structure can be obtained with the reqMarketRule function or the IB Contract and Security Search site.
pub min_tick: f64,
/// Allows execution and strike prices to be reported consistently with market data, historical data and the order price, i.e. Z on LIFFE is reported in Index points and not GBP. In TWS versions prior to 972, the price magnifier is used in defining future option strike prices (e.g. in the API the strike is specified in dollars, but in TWS it is specified in cents). In TWS versions 972 and higher, the price magnifier is not used in defining futures option strike prices so they are consistent in TWS and the API.
pub price_magnifier: i32,
/// Supported order types for this product.
pub order_types: String,
/// Valid exchange fields when placing an order for this contract.
/// The list of exchanges will is provided in the same order as the corresponding MarketRuleIds list.
pub valid_exchanges: String,
/// For derivatives, the contract ID (conID) of the underlying instrument.
pub under_contract_id: i32,
/// Descriptive name of the product.
pub long_name: String,
/// Typically the contract month of the underlying for a Future contract.
pub contract_month: String,
/// The industry classification of the underlying/product. For example, Financial.
pub industry: String,
/// The industry category of the underlying. For example, InvestmentSvc.
pub category: String,
/// The industry subcategory of the underlying. For example, Brokerage.
pub subcategory: String,
/// The time zone for the trading hours of the product. For example, EST.
pub time_zone_id: String,
/// The trading hours of the product. This value will contain the trading hours of the current day as well as the next's. For example, 20090507:0700-1830,1830-2330;20090508:CLOSED. In TWS versions 965+ there is an option in the Global Configuration API settings to return 1 month of trading hours. In TWS version 970+, the format includes the date of the closing time to clarify potential ambiguity, ex: 20180323:0400-20180323:2000;20180326:0400-20180326:2000 The trading hours will correspond to the hours for the product on the associated exchange. The same instrument can have different hours on different exchanges.
pub trading_hours: String,
/// The liquid hours of the product. This value will contain the liquid hours (regular trading hours) of the contract on the specified exchange. Format for TWS versions until 969: 20090507:0700-1830,1830-2330;20090508:CLOSED. In TWS versions 965+ there is an option in the Global Configuration API settings to return 1 month of trading hours. In TWS v970 and above, the format includes the date of the closing time to clarify potential ambiguity, e.g. 20180323:0930-20180323:1600;20180326:0930-20180326:1600.
pub liquid_hours: String,
/// Contains the Economic Value Rule name and the respective optional argument. The two values should be separated by a colon. For example, aussieBond:YearsToExpiration=3. When the optional argument is not present, the first value will be followed by a colon.
pub ev_rule: String,
/// Tells you approximately how much the market value of a contract would change if the price were to change by 1. It cannot be used to get market value by multiplying the price by the approximate multiplier.
pub ev_multiplier: f64,
/// Aggregated group Indicates the smart-routing group to which a contract belongs. contracts which cannot be smart-routed have aggGroup = -1.
pub agg_group: i32,
/// A list of contract identifiers that the customer is allowed to view. CUSIP/ISIN/etc. For US stocks, receiving the ISIN requires the CUSIP market data subscription. For Bonds, the CUSIP or ISIN is input directly into the symbol field of the Contract class.
pub sec_id_list: Vec<TagValue>,
/// For derivatives, the symbol of the underlying contract.
pub under_symbol: String,
/// For derivatives, returns the underlying security type.
pub under_security_type: String,
/// The list of market rule IDs separated by comma Market rule IDs can be used to determine the minimum price increment at a given price.
pub market_rule_ids: String,
/// Real expiration date. Requires TWS 968+ and API v973.04+. Python API specifically requires API v973.06+.
pub real_expiration_date: String,
/// Last trade time.
pub last_trade_time: String,
/// Stock type.
pub stock_type: String,
/// The nine-character bond CUSIP. For Bonds only. Receiving CUSIPs requires a CUSIP market data subscription.
pub cusip: String,
/// Identifies the credit rating of the issuer. This field is not currently available from the TWS API. For Bonds only. A higher credit rating generally indicates a less risky investment. Bond ratings are from Moody's and S&P respectively. Not currently implemented due to bond market data restrictions.
pub ratings: String,
/// A description string containing further descriptive information about the bond. For Bonds only.
pub desc_append: String,
/// The type of bond, such as "CORP.".
pub bond_type: String,
/// The type of bond coupon. This field is currently not available from the TWS API. For Bonds only.
pub coupon_type: String,
/// If true, the bond can be called by the issuer under certain conditions. This field is currently not available from the TWS API. For Bonds only.
pub callable: bool,
/// Values are True or False. If true, the bond can be sold back to the issuer under certain conditions. This field is currently not available from the TWS API. For Bonds only.
pub putable: bool,
/// The interest rate used to calculate the amount you will receive in interest payments over the course of the year. This field is currently not available from the TWS API. For Bonds only.
pub coupon: f64,
/// Values are True or False. If true, the bond can be converted to stock under certain conditions. This field is currently not available from the TWS API. For Bonds only.
pub convertible: bool,
/// The date on which the issuer must repay the face value of the bond. This field is currently not available from the TWS API. For Bonds only. Not currently implemented due to bond market data restrictions.
pub maturity: String,
/// The date the bond was issued. This field is currently not available from the TWS API. For Bonds only. Not currently implemented due to bond market data restrictions.
pub issue_date: String,
/// Only if bond has embedded options. This field is currently not available from the TWS API. Refers to callable bonds and puttable bonds. Available in TWS description window for bonds.
pub next_option_date: String,
/// Type of embedded option. This field is currently not available from the TWS API. Only if bond has embedded options.
pub next_option_type: String,
/// Only if bond has embedded options. This field is currently not available from the TWS API. For Bonds only.
pub next_option_partial: bool,
/// If populated for the bond in IB's database. For Bonds only.
pub notes: String,
/// Order's minimal size.
pub min_size: f64,
/// Order's size increment.
pub size_increment: f64,
/// Order's suggested size increment.
pub suggested_size_increment: f64,
}
/// TagValue is a convenience struct to define key-value pairs.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct TagValue {
pub tag: String,
pub value: String,
}
impl ToField for Vec<TagValue> {
fn to_field(&self) -> String {
let mut values = Vec::new();
for tag_value in self {
values.push(format!("{}={};", tag_value.tag, tag_value.value))
}
values.concat()
}
}
/// Receives option specific market data.
/// TWS’s options model volatility, prices, and deltas, along with the present value of dividends expected on that options underlier.
#[derive(Debug, Default)]
pub struct OptionComputation {
/// Specifies the type of option computation.
pub field: TickType,
/// 0 – return based, 1- price based.
pub tick_attribute: Option<i32>,
/// The implied volatility calculated by the TWS option modeler, using the specified tick type value.
pub implied_volatility: Option<f64>,
/// The option delta value.
pub delta: Option<f64>,
/// The option price.
pub option_price: Option<f64>,
/// The present value of dividends expected on the option’s underlying.
pub present_value_dividend: Option<f64>,
/// The option gamma value.
pub gamma: Option<f64>,
/// The option vega value.
pub vega: Option<f64>,
/// The option theta value.
pub theta: Option<f64>,
/// The price of the underlying.
pub underlying_price: Option<f64>,
}
impl DataStream<OptionComputation> for OptionComputation {
const RESPONSE_MESSAGE_IDS: &[IncomingMessages] = &[IncomingMessages::TickOptionComputation];
fn decode(client: &Client, message: &mut ResponseMessage) -> Result<Self, Error> {
match message.message_type() {
IncomingMessages::TickOptionComputation => Ok(decoders::decode_option_computation(client.server_version, message)?),
message => Err(Error::Simple(format!("unexpected message: {message:?}"))),
}
}
fn cancel_message(_server_version: i32, request_id: Option<i32>, context: &ResponseContext) -> Result<RequestMessage, Error> {
let request_id = request_id.expect("request id required to cancel option calculations");
match context.request_type {
Some(OutgoingMessages::ReqCalcImpliedVolat) => {
encoders::encode_cancel_option_computation(OutgoingMessages::CancelImpliedVolatility, request_id)
}
Some(OutgoingMessages::ReqCalcOptionPrice) => encoders::encode_cancel_option_computation(OutgoingMessages::CancelOptionPrice, request_id),
_ => panic!("Unsupported request message type option computation cancel: {:?}", context.request_type),
}
}
}
// === API ===
// Requests contract information.
//
// Provides all the contracts matching the contract provided. It can also be used to retrieve complete options and futures chains. Though it is now (in API version > 9.72.12) advised to use reqSecDefOptParams for that purpose.
//
// # Arguments
// * `client` - [Client] with an active connection to gateway.
// * `contract` - The [Contract] used as sample to query the available contracts. Typically, it will contain the [Contract]'s symbol, currency, security_type, and exchange.
pub(crate) fn contract_details(client: &Client, contract: &Contract) -> Result<Vec<ContractDetails>, Error> {
verify_contract(client, contract)?;
let request_id = client.next_request_id();
let packet = encoders::encode_request_contract_data(client.server_version(), request_id, contract)?;
let responses = client.send_request(request_id, packet)?;
let mut contract_details: Vec<ContractDetails> = Vec::default();
// TODO create iterator
while let Some(Ok(mut message)) = responses.next() {
match message.message_type() {
IncomingMessages::ContractData => {
let decoded = decoders::decode_contract_details(client.server_version(), &mut message)?;
contract_details.push(decoded);
}
IncomingMessages::ContractDataEnd => {
break;
}
IncomingMessages::Error => {
error!("error: {message:?}");
return Err(Error::Simple(format!("contract_details {message:?}")));
}
_ => {
error!("unexpected message: {:?}", message);
}
}
}
Ok(contract_details)
}
fn verify_contract(client: &Client, contract: &Contract) -> Result<(), Error> {
if !contract.security_id_type.is_empty() || !contract.security_id.is_empty() {
client.check_server_version(
server_versions::SEC_ID_TYPE,
"It does not support security_id_type or security_id attributes",
)?
}
if !contract.trading_class.is_empty() {
client.check_server_version(
server_versions::TRADING_CLASS,
"It does not support the trading_class parameter when requesting contract details.",
)?
}
if !contract.primary_exchange.is_empty() {
client.check_server_version(
server_versions::LINKING,
"It does not support primary_exchange parameter when requesting contract details.",
)?
}
if !contract.issuer_id.is_empty() {
client.check_server_version(
server_versions::BOND_ISSUERID,
"It does not support issuer_id parameter when requesting contract details.",
)?
}
Ok(())
}
/// Contract data and list of derivative security types
#[derive(Debug)]
pub struct ContractDescription {
pub contract: Contract,
pub derivative_security_types: Vec<String>,
}
// Requests matching stock symbols.
//
// # Arguments
// * `client` - [Client] with an active connection to gateway.
// * `pattern` - Either start of ticker symbol or (for larger strings) company name.
pub(crate) fn matching_symbols(client: &Client, pattern: &str) -> Result<Vec<ContractDescription>, Error> {
client.check_server_version(server_versions::REQ_MATCHING_SYMBOLS, "It does not support matching symbols requests.")?;
let request_id = client.next_request_id();
let request = encoders::encode_request_matching_symbols(request_id, pattern)?;
let subscription = client.send_request(request_id, request)?;
if let Some(Ok(mut message)) = subscription.next() {
match message.message_type() {
IncomingMessages::SymbolSamples => {
return decoders::decode_contract_descriptions(client.server_version(), &mut message);
}
IncomingMessages::Error => {
// TODO custom error
error!("unexpected error: {:?}", message);
return Err(Error::Simple(format!("unexpected error: {message:?}")));
}
_ => {
info!("unexpected message: {:?}", message);
return Err(Error::Simple(format!("unexpected message: {message:?}")));
}
}
}
Ok(Vec::default())
}
#[derive(Debug, Default)]
pub struct MarketRule {
pub market_rule_id: i32,
pub price_increments: Vec<PriceIncrement>,
}
#[derive(Debug, Default)]
pub struct PriceIncrement {
pub low_edge: f64,
pub increment: f64,
}
/// Requests details about a given market rule
///
/// The market rule for an instrument on a particular exchange provides details about how the minimum price increment changes with price.
/// A list of market rule ids can be obtained by invoking [request_contract_details] on a particular contract. The returned market rule ID list will provide the market rule ID for the instrument in the correspond valid exchange list in [ContractDetails].
pub(crate) fn market_rule(client: &Client, market_rule_id: i32) -> Result<MarketRule, Error> {
client.check_server_version(server_versions::MARKET_RULES, "It does not support market rule requests.")?;
let request = encoders::encode_request_market_rule(market_rule_id)?;
let subscription = client.send_shared_request(OutgoingMessages::RequestMarketRule, request)?;
match subscription.next() {
Some(Ok(mut message)) => Ok(decoders::decode_market_rule(&mut message)?),
Some(Err(e)) => Err(e),
None => Err(Error::Simple("no market rule found".into())),
}
}
// Calculates an option’s price based on the provided volatility and its underlying’s price.
//
// # Arguments
// * `contract` - The [Contract] object for which the depth is being requested.
// * `volatility` - Hypothetical volatility.
// * `underlying_price` - Hypothetical option’s underlying price.
pub(crate) fn calculate_option_price(
client: &Client,
contract: &Contract,
volatility: f64,
underlying_price: f64,
) -> Result<OptionComputation, Error> {
client.check_server_version(server_versions::REQ_CALC_OPTION_PRICE, "It does not support calculation price requests.")?;
let request_id = client.next_request_id();
let message = encoders::encode_calculate_option_price(client.server_version(), request_id, contract, volatility, underlying_price)?;
let subscription = client.send_request(request_id, message)?;
match subscription.next() {
Some(Ok(mut message)) => OptionComputation::decode(client, &mut message),
Some(Err(e)) => Err(e),
None => Err(Error::Simple("no data for option calculation".into())),
}
}
// Calculates the implied volatility based on hypothetical option and its underlying prices.
//
// # Arguments
// * `contract` - The [Contract] object for which the depth is being requested.
// * `option_price` - Hypothetical option price.
// * `underlying_price` - Hypothetical option’s underlying price.
pub(crate) fn calculate_implied_volatility(
client: &Client,
contract: &Contract,
option_price: f64,
underlying_price: f64,
) -> Result<OptionComputation, Error> {
client.check_server_version(
server_versions::REQ_CALC_IMPLIED_VOLAT,
"It does not support calculate implied volatility.",
)?;
let request_id = client.next_request_id();
let message = encoders::encode_calculate_implied_volatility(client.server_version(), request_id, contract, option_price, underlying_price)?;
let subscription = client.send_request(request_id, message)?;
match subscription.next() {
Some(Ok(mut message)) => OptionComputation::decode(client, &mut message),
Some(Err(e)) => Err(e),
None => Err(Error::Simple("no data for option calculation".into())),
}
}