rustrade-execution 0.2.0

Stream private account data from financial venues, and execute (live or mock) orders.
Documentation
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
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
//! IBKR Execution Client Integration Tests
//!
//! These tests require IB Gateway or TWS running on localhost:4002 (paper account).
//!
//! # Status
//!
//! **NOT TESTED in CI.** IBKR has not confirmed permission to use credentials
//! for CI, and requires IB Gateway/TWS running locally.
//!
//! **Tested locally:** All execution tests (Tier 0) run on paper trading accounts
//! — no market data subscriptions needed.
//!
//! # Safety
//!
//! **All tests use paper trading accounts only.** The `IBKR_PAPER_ACCOUNT` env var is required
//! and tests connect to port 4002 (Gateway paper) or 7497 (TWS paper). Never configure these
//! tests to use a live trading account.
//!
//! # Prerequisites
//!
//! 1. IB Gateway or TWS running with API enabled
//! 2. Paper trading account (set IBKR_PAPER_ACCOUNT env var)
//! 3. Port 4002 (Gateway paper) or 7497 (TWS paper)
//!
//! # Running
//!
//! ```bash
//! # Run all IBKR integration tests
//! IBKR_PAPER_ACCOUNT=<account_id> cargo test --test ibkr_execution --features ibkr -- --ignored
//!
//! # Run specific test
//! IBKR_PAPER_ACCOUNT=<account_id> cargo test --test ibkr_execution --features ibkr test_connection -- --ignored
//! ```
//!
//! # Subscription Tiers
//!
//! Tests are organized by the market data subscriptions required to run them.
//!
//! ## Tier 0: Paper Account Only (FREE)
//!
//! No market data subscriptions needed — just a paper trading account.
//!
//! | Test | Description |
//! |------|-------------|
//! | `test_connection` | Connect to IB Gateway |
//! | `test_contract_registration` | Register contracts in local registry |
//! | `test_fetch_balances` | Fetch account balances |
//! | `test_account_snapshot` | Fetch full account snapshot |
//! | `test_fetch_open_orders` | Fetch currently open orders |
//! | `test_account_stream` | Stream account events |
//! | `test_fetch_trades` | Fetch historical trades |
//! | `test_order_id_mapping_cleanup` | Test stale order cleanup |
//! | `test_place_and_cancel_limit_order` | Place and cancel limit order |
//! | `test_order_without_registered_contract` | Verify rejection for unknown contract |
//! | `test_cancel_nonexistent_order` | Verify rejection for unknown order |
//! | `test_cancel_produces_cancelled_not_expired` | Verify Cancelled vs Expired state |
//! | `test_place_and_cancel_stop_order` | Stop order lifecycle |
//! | `test_place_and_cancel_stop_limit_order` | Stop-limit order lifecycle |
//! | `test_place_and_cancel_trailing_stop_percentage` | Trailing stop (%) lifecycle |
//! | `test_place_and_cancel_trailing_stop_limit_absolute` | Trailing stop-limit ($) lifecycle |
//! | `test_place_and_cancel_bracket_order` | Bracket order with OCA |
//! | `test_bracket_order_oca_group_linkage` | Verify OCA group linkage |
//! | `test_place_and_cancel_gtd_order` | Good-Till-Date order |
//! | `test_place_moo_order_premarket` | Market-on-Open (timing-sensitive) |
//! | `test_place_loo_order_premarket` | Limit-on-Open (timing-sensitive) |

#![cfg(feature = "ibkr")]
#![allow(clippy::unwrap_used, clippy::expect_used)] // Integration tests: panics are the correct failure mode

use rust_decimal_macros::dec;
use rustrade_execution::{
    AccountEventKind,
    client::{
        ExecutionClient,
        ibkr::{IbkrClient, IbkrConfig, contract::stock_contract},
    },
    order::{
        OrderKey, OrderKind, TimeInForce, TrailingOffsetType,
        id::{ClientOrderId, StrategyId},
        request::RequestOpen,
        state::{ActiveOrderState, InactiveOrderState, OrderState},
    },
};
use rustrade_instrument::{
    Side, asset::name::AssetNameExchange, exchange::ExchangeId,
    instrument::name::InstrumentNameExchange,
};
use serial_test::serial;
use std::time::Duration;
use tokio_stream::StreamExt;
use tracing_subscriber::{EnvFilter, fmt};

fn init_logging() {
    let _ = fmt()
        .with_env_filter(
            EnvFilter::builder()
                .with_default_directive(tracing::Level::DEBUG.into())
                .from_env_lossy(),
        )
        .try_init();
}

fn test_client_id_base() -> i32 {
    std::env::var("IBKR_CLIENT_ID")
        .ok()
        .and_then(|id| id.parse().ok())
        .unwrap_or(200)
}

fn test_config(client_id_offset: i32) -> IbkrConfig {
    IbkrConfig {
        host: "127.0.0.1".to_string(),
        port: std::env::var("IBKR_PORT")
            .ok()
            .and_then(|p| p.parse().ok())
            .unwrap_or(4002),
        client_id: test_client_id_base() + client_id_offset,
        account: std::env::var("IBKR_PAPER_ACCOUNT").expect("IBKR_PAPER_ACCOUNT env var required"),
        contracts: vec![],
    }
}

fn aapl_instrument() -> InstrumentNameExchange {
    "AAPL".into()
}

/// Connect to IB, wrapping the blocking call in spawn_blocking.
async fn connect_client(config: IbkrConfig) -> Result<IbkrClient, String> {
    tokio::task::spawn_blocking(move || IbkrClient::connect_sync(config).map_err(|e| e.to_string()))
        .await
        .map_err(|e| format!("task join: {e}"))?
}

// ============================================================================
// Connection Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_connection() {
    init_logging();

    let config = test_config(0);
    let client = connect_client(config).await;

    assert!(client.is_ok(), "Failed to connect: {:?}", client.err());
    let client = client.unwrap();

    assert_eq!(IbkrClient::EXCHANGE, ExchangeId::Ibkr);
    assert_eq!(client.contract_registry().len(), 0);
}

#[tokio::test]
#[ignore]
#[serial]
async fn test_contract_registration() {
    init_logging();

    let config = test_config(1);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");

    client.register_contract(aapl_name.clone(), aapl_contract);

    assert_eq!(client.contract_registry().len(), 1);
    assert!(
        client
            .contract_registry()
            .get_contract(&aapl_name)
            .is_some()
    );
}

// ============================================================================
// Account Snapshot Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_fetch_balances() {
    init_logging();

    let config = test_config(2);
    let client = connect_client(config).await.expect("connection failed");

    let assets: Vec<AssetNameExchange> = vec![];
    let result = client.fetch_balances(&assets).await;

    assert!(result.is_ok(), "fetch_balances failed: {:?}", result.err());

    let balances = result.unwrap();
    println!("Fetched {} balance(s)", balances.len());
    for balance in &balances {
        println!(
            "  {}: total={}, free={}",
            balance.asset, balance.balance.total, balance.balance.free
        );
    }
}

#[tokio::test]
#[ignore]
#[serial]
async fn test_account_snapshot() {
    init_logging();

    let config = test_config(3);
    let client = connect_client(config).await.expect("connection failed");

    let assets: Vec<AssetNameExchange> = vec![];
    let instruments: Vec<InstrumentNameExchange> = vec![];

    let result = client.account_snapshot(&assets, &instruments).await;

    assert!(
        result.is_ok(),
        "account_snapshot failed: {:?}",
        result.err()
    );

    let snapshot = result.unwrap();
    println!("Exchange: {:?}", snapshot.exchange);
    println!("Balances: {}", snapshot.balances.len());
    println!("Instruments: {}", snapshot.instruments.len());
}

// ============================================================================
// Open Orders Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_fetch_open_orders() {
    init_logging();

    let config = test_config(4);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let instruments: Vec<InstrumentNameExchange> = vec![];
    let result = client.fetch_open_orders(&instruments).await;

    assert!(
        result.is_ok(),
        "fetch_open_orders failed: {:?}",
        result.err()
    );

    let orders = result.unwrap();
    println!("Open orders: {}", orders.len());
    for order in &orders {
        println!(
            "  {:?} {} {} @ {:?}",
            order.side, order.quantity, order.key.instrument, order.price
        );
    }
}

// ============================================================================
// Order Lifecycle Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_limit_order() {
    init_logging();

    let config = test_config(5);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-strategy");
    let order_cid = ClientOrderId::new(format!(
        "test-order-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    let request_open = RequestOpen {
        side: Side::Buy,
        price: Some(dec!(1.00)),
        quantity: dec!(1),
        kind: OrderKind::Limit,
        time_in_force: TimeInForce::GoodUntilEndOfDay,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing limit order: BUY 1 AAPL @ $1.00 (won't fill)");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            // Brief delay before cancel - order is already Submitted so cancel should work
            // immediately, but small buffer avoids racing with IB's internal state machine
            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("Order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("Order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

// ============================================================================
// Account Stream Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_account_stream() {
    init_logging();

    let config = test_config(6);
    let client = connect_client(config).await.expect("connection failed");

    let assets: Vec<AssetNameExchange> = vec![];
    let instruments: Vec<InstrumentNameExchange> = vec![];

    let stream_result = client.account_stream(&assets, &instruments).await;

    assert!(
        stream_result.is_ok(),
        "account_stream failed: {:?}",
        stream_result.err()
    );

    let mut stream = stream_result.unwrap();

    println!("Account stream started. Waiting for events (5 second timeout)...");

    let timeout = tokio::time::timeout(Duration::from_secs(5), async {
        let mut count = 0;
        while let Some(event) = stream.next().await {
            println!("Event: {:?}", event.kind);
            count += 1;
            if count >= 3 {
                break;
            }
        }
        count
    })
    .await;

    match timeout {
        Ok(count) => println!("Received {} events", count),
        Err(_) => println!("Timeout reached (this is normal if no orders are active)"),
    }
}

// ============================================================================
// Historical Trades Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_fetch_trades() {
    init_logging();

    let config = test_config(7);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let since = chrono::Utc::now() - chrono::Duration::hours(24);
    let instruments: Vec<InstrumentNameExchange> = vec![];

    let result = client.fetch_trades(since, &instruments).await;

    assert!(result.is_ok(), "fetch_trades failed: {:?}", result.err());

    let trades = result.unwrap();
    println!("Trades in last 24h: {}", trades.len());
    for trade in trades.iter().take(5) {
        println!(
            "  {} {} {} @ {} (fees: {:?})",
            trade.time_exchange.format("%Y-%m-%d %H:%M:%S"),
            trade.side,
            trade.quantity,
            trade.price,
            trade.fees
        );
    }
}

// ============================================================================
// Order ID Mapping Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_order_id_mapping_cleanup() {
    init_logging();

    let config = test_config(8);
    let client = connect_client(config).await.expect("connection failed");

    assert_eq!(client.pending_execution_count(), 0);

    let cleared_execs = client.clear_stale_executions(Duration::from_secs(3600));
    let cleared_orders = client.clear_stale_order_ids(Duration::from_secs(3600));

    println!("Cleared {} stale executions", cleared_execs);
    println!("Cleared {} stale order IDs", cleared_orders);
}

// ============================================================================
// Edge Case Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

#[tokio::test]
#[ignore]
#[serial]
async fn test_order_without_registered_contract() {
    init_logging();

    let config = test_config(9);
    let client = connect_client(config).await.expect("connection failed");

    let unknown_instrument: InstrumentNameExchange = "UNKNOWN_SYMBOL".into();
    let strategy = StrategyId::new("test-strategy");
    let order_cid = ClientOrderId::new("test-order-unknown");

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &unknown_instrument,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    let request_open = RequestOpen {
        side: Side::Buy,
        price: Some(dec!(100.00)),
        quantity: dec!(1),
        kind: OrderKind::Limit,
        time_in_force: TimeInForce::GoodUntilEndOfDay,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key,
        state: request_open,
    };

    let response = client.open_order(open_request).await;

    assert!(response.is_some());
    let response = response.unwrap();

    assert!(
        response.state.is_failed(),
        "Expected rejection for unregistered contract"
    );
    println!("Order correctly rejected: {:?}", response.state);
}

#[tokio::test]
#[ignore]
#[serial]
async fn test_cancel_nonexistent_order() {
    init_logging();

    let config = test_config(10);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let strategy = StrategyId::new("test-strategy");
    let order_cid = ClientOrderId::new("nonexistent-order");

    let cancel_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy,
        cid: order_cid,
    };

    let cancel_request = rustrade_execution::order::OrderEvent {
        key: cancel_key,
        state: rustrade_execution::order::request::RequestCancel { id: None },
    };

    let response = client.cancel_order(cancel_request).await;

    assert!(response.is_some());
    let response = response.unwrap();

    assert!(
        response.state.is_err(),
        "Expected rejection for nonexistent order"
    );
    println!("Cancel correctly rejected: {:?}", response.state.err());
}

// ============================================================================
// Cancelled vs Expired Differentiation Tests — Tier 0: Paper Account Only (FREE)
// ============================================================================

/// Verifies that user-initiated cancel produces `Cancelled` state, not `Expired`.
///
/// This tests the pending_cancels tracking in `make_order_from_status`:
/// - DAY orders cancelled by user → Cancelled (tracked in pending_cancels)
/// - DAY orders expired at market close → Expired (not in pending_cancels)
#[tokio::test]
#[ignore]
#[serial]
async fn test_cancel_produces_cancelled_not_expired() {
    init_logging();

    let config = test_config(11);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let assets: Vec<AssetNameExchange> = vec![];
    let instruments: Vec<InstrumentNameExchange> = vec![];

    // Start account stream to observe order state changes
    let mut stream = client
        .account_stream(&assets, &instruments)
        .await
        .expect("account_stream failed");

    // Place a DAY order at $1 (won't fill)
    let strategy = StrategyId::new("test-cancel-vs-expire");
    let order_cid = ClientOrderId::new(format!(
        "cancel-test-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    let request_open = RequestOpen {
        side: Side::Buy,
        price: Some(dec!(1.00)),
        quantity: dec!(1),
        kind: OrderKind::Limit,
        time_in_force: TimeInForce::GoodUntilEndOfDay, // DAY order - would be Expired if not cancelled
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing DAY limit order: BUY 1 AAPL @ $1.00");
    let response = client.open_order(open_request).await;
    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    let exchange_order_id = match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Order placed: {:?}", open_state.id);
            open_state.id.clone()
        }
        other => panic!("Expected Open state, got: {:?}", other),
    };

    // Brief delay before cancel
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Cancel the order (this adds to pending_cancels)
    let cancel_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: response.key.strategy.clone(),
        cid: response.key.cid.clone(),
    };

    let cancel_request = rustrade_execution::order::OrderEvent {
        key: cancel_key,
        state: rustrade_execution::order::request::RequestCancel {
            id: Some(exchange_order_id.clone()),
        },
    };

    println!("Cancelling order...");
    let cancel_response = client.cancel_order(cancel_request).await;
    assert!(cancel_response.is_some(), "Expected cancel response");

    // Collect stream events and find the final order state
    println!("Waiting for stream to emit Cancelled state...");
    let mut found_cancelled = false;
    let mut found_expired = false;

    let timeout_result = tokio::time::timeout(Duration::from_secs(5), async {
        while let Some(event) = stream.next().await {
            if let AccountEventKind::OrderSnapshot(snapshot) = &event.kind {
                let order = snapshot.value();
                // Match on order ID to find our order
                if order.key.cid == order_cid {
                    println!("Order event: {:?}", order.state);
                    match &order.state {
                        OrderState::Inactive(InactiveOrderState::Cancelled(_)) => {
                            found_cancelled = true;
                            break;
                        }
                        OrderState::Inactive(InactiveOrderState::Expired(_)) => {
                            found_expired = true;
                            break;
                        }
                        _ => {}
                    }
                }
            }
        }
    })
    .await;

    if timeout_result.is_err() {
        println!("Timeout waiting for order state (this may happen if stream doesn't emit)");
    }

    // The key assertion: user cancel should produce Cancelled, not Expired
    if found_cancelled {
        println!("SUCCESS: Order state is Cancelled (correct for user-initiated cancel)");
    } else if found_expired {
        panic!("FAILURE: Order state is Expired (should be Cancelled for user-initiated cancel)");
    } else {
        println!("WARNING: No terminal state observed in stream (cancel_order response was OK)");
    }
}

// ============================================================================
// Stop and Trailing Stop Order Tests (TG13 Phase 1 & 2) — Tier 0: Paper Account Only (FREE)
// ============================================================================

/// Test placing and cancelling a Stop order.
///
/// Uses a Sell Stop with trigger at $0.01 - since AAPL trades far above this,
/// the stop will never trigger and the order remains open for cancellation.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_stop_order() {
    init_logging();

    let config = test_config(12);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-stop-order");
    let order_cid = ClientOrderId::new(format!(
        "stop-order-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Sell Stop at $0.01 trigger - won't trigger since AAPL >> $0.01
    let request_open = RequestOpen {
        side: Side::Sell,
        price: None, // Stop orders have no limit price
        quantity: dec!(1),
        kind: OrderKind::Stop {
            trigger_price: dec!(0.01),
        },
        time_in_force: TimeInForce::GoodUntilEndOfDay,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing Stop order: SELL 1 AAPL @ Stop $0.01 (won't trigger)");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Stop order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling Stop order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("Stop order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("Stop order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

/// Test placing and cancelling a Stop-Limit order.
///
/// Uses a Sell StopLimit with trigger at $0.01 and limit at $0.01 -
/// since AAPL trades far above this, the stop will never trigger.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_stop_limit_order() {
    init_logging();

    let config = test_config(13);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-stop-limit-order");
    let order_cid = ClientOrderId::new(format!(
        "stop-limit-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Sell StopLimit: trigger at $0.01, limit at $0.01 - won't trigger
    let request_open = RequestOpen {
        side: Side::Sell,
        price: Some(dec!(0.01)), // Limit price (used when stop triggers)
        quantity: dec!(1),
        kind: OrderKind::StopLimit {
            trigger_price: dec!(0.01),
        },
        time_in_force: TimeInForce::GoodUntilEndOfDay,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing StopLimit order: SELL 1 AAPL @ Stop $0.01, Limit $0.01 (won't trigger)");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("StopLimit order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling StopLimit order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("StopLimit order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("StopLimit order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

/// Test placing and cancelling a TrailingStop order with percentage offset.
///
/// Uses a Sell TrailingStop with 50% trail - the stop price trails 50% below
/// the highest price seen. Since this creates a very wide trail, the order
/// won't trigger and remains open for cancellation.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_trailing_stop_percentage() {
    init_logging();

    let config = test_config(14);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-trailing-stop-pct");
    let order_cid = ClientOrderId::new(format!(
        "trail-stop-pct-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Sell TrailingStop with 50% percentage offset - won't trigger
    let request_open = RequestOpen {
        side: Side::Sell,
        price: None, // Trailing stop orders have no limit price
        quantity: dec!(1),
        kind: OrderKind::TrailingStop {
            offset: dec!(50), // 50% trailing offset
            offset_type: TrailingOffsetType::Percentage,
        },
        time_in_force: TimeInForce::GoodUntilCancelled { post_only: false },
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing TrailingStop order: SELL 1 AAPL @ 50% trail (won't trigger)");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("TrailingStop (percentage) order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling TrailingStop order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("TrailingStop (percentage) order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("TrailingStop order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

/// Test placing and cancelling a TrailingStopLimit order with absolute offset.
///
/// Uses a Sell TrailingStopLimit with $500 absolute trail and $1 limit offset -
/// the stop price trails $500 below the highest price seen. A $500 trailing
/// distance is far wider than typical intraday AAPL moves, so the stop won't
/// trigger and the order remains open for cancellation.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_trailing_stop_limit_absolute() {
    init_logging();

    let config = test_config(15);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-trailing-stop-limit-abs");
    let order_cid = ClientOrderId::new(format!(
        "trail-stop-limit-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Sell TrailingStopLimit: $500 absolute trail, $1 limit offset from stop
    let request_open = RequestOpen {
        side: Side::Sell,
        price: None, // Trailing stop limit uses limit_offset, not a fixed price
        quantity: dec!(1),
        kind: OrderKind::TrailingStopLimit {
            offset: dec!(500), // $500 trailing amount
            offset_type: TrailingOffsetType::Absolute,
            limit_offset: dec!(1), // Limit price = stop price - $1
        },
        time_in_force: TimeInForce::GoodUntilCancelled { post_only: false },
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!(
        "Placing TrailingStopLimit order: SELL 1 AAPL @ $500 trail, $1 limit offset (won't trigger)"
    );

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("TrailingStopLimit (absolute) order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling TrailingStopLimit order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("TrailingStopLimit (absolute) order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("TrailingStopLimit order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

// ============================================================================
// Bracket Order Tests (TG13 Phase 3) — Tier 0: Paper Account Only (FREE)
// ============================================================================

/// Test placing and cancelling a bracket order with OCA linkage.
///
/// Places a bracket order with:
/// - Entry: Buy limit at $1 (won't fill since AAPL >> $1)
/// - Take Profit: Sell limit at $2
/// - Stop Loss: Sell stop at $0.50
///
/// Verifies all three legs are accepted, then cancels the parent which
/// should cascade to cancel the children.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_bracket_order() {
    use rustrade_execution::client::ibkr::BracketOrderRequest;

    init_logging();

    let config = test_config(16);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-bracket-order");
    let parent_cid =
        ClientOrderId::new(format!("bracket-{}", chrono::Utc::now().timestamp_millis()));

    let request = BracketOrderRequest {
        instrument: aapl_name.clone(),
        strategy: strategy.clone(),
        parent_cid: parent_cid.clone(),
        side: Side::Buy,
        quantity: dec!(1),
        entry_price: dec!(1.00),       // Entry at $1 (won't fill)
        take_profit_price: dec!(2.00), // TP at $2
        stop_loss_price: dec!(0.50),   // SL at $0.50
        time_in_force: TimeInForce::GoodUntilEndOfDay,
    };

    println!("Placing bracket order: BUY 1 AAPL @ $1.00 entry, $2.00 TP, $0.50 SL");

    let result = client.open_bracket_order(request).await;

    // Check parent order
    match &result.parent.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Parent order placed successfully!");
            println!("  Client Order ID: {}", result.parent.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);
        }
        OrderState::Inactive(e) => {
            panic!("Parent order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected parent order state: {:?}", other);
        }
    }

    // Check take profit order
    match &result.take_profit.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Take profit order placed successfully!");
            println!("  Client Order ID: {}", result.take_profit.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);
        }
        OrderState::Inactive(e) => {
            panic!("Take profit order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected take profit order state: {:?}", other);
        }
    }

    // Check stop loss order
    match &result.stop_loss.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("Stop loss order placed successfully!");
            println!("  Client Order ID: {}", result.stop_loss.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);
        }
        OrderState::Inactive(e) => {
            panic!("Stop loss order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected stop loss order state: {:?}", other);
        }
    }

    // Brief delay before cancel
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Cancel the parent order - this should cascade to children via IB's parent_id linkage
    if let OrderState::Active(ActiveOrderState::Open(open_state)) = &result.parent.state {
        let cancel_key = OrderKey {
            exchange: ExchangeId::Ibkr,
            instrument: &aapl_name,
            strategy: result.parent.key.strategy.clone(),
            cid: result.parent.key.cid.clone(),
        };

        let cancel_request = rustrade_execution::order::OrderEvent {
            key: cancel_key,
            state: rustrade_execution::order::request::RequestCancel {
                id: Some(open_state.id.clone()),
            },
        };

        println!("Canceling bracket order (parent)...");
        let cancel_response = client.cancel_order(cancel_request).await;

        assert!(cancel_response.is_some(), "Expected cancel response");
        let cancel_response = cancel_response.unwrap();

        match &cancel_response.state {
            Ok(_cancelled) => {
                println!("Bracket order canceled successfully!");
                println!("  (Children should be auto-cancelled by IB via parent_id linkage)");
            }
            Err(e) => {
                panic!("Cancel rejected: {:?}", e);
            }
        }
    }
}

/// Test that bracket order OCA group is set correctly.
///
/// This test verifies the OCA linkage by checking that when we fetch open orders,
/// the TP and SL orders share the same OCA group identifier.
#[tokio::test]
#[ignore]
#[serial]
async fn test_bracket_order_oca_group_linkage() {
    use rustrade_execution::client::ibkr::BracketOrderRequest;

    init_logging();

    let config = test_config(17);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-bracket-oca");
    let parent_cid = ClientOrderId::new(format!(
        "bracket-oca-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let request = BracketOrderRequest {
        instrument: aapl_name.clone(),
        strategy: strategy.clone(),
        parent_cid: parent_cid.clone(),
        side: Side::Buy,
        quantity: dec!(1),
        entry_price: dec!(1.00),
        take_profit_price: dec!(2.00),
        stop_loss_price: dec!(0.50),
        time_in_force: TimeInForce::GoodUntilCancelled { post_only: false },
    };

    println!("Placing bracket order to verify OCA linkage...");
    let result = client.open_bracket_order(request).await;

    // Verify all three are active
    assert!(
        matches!(result.parent.state, OrderState::Active(_)),
        "Parent should be active"
    );
    assert!(
        matches!(result.take_profit.state, OrderState::Active(_)),
        "TP should be active"
    );
    assert!(
        matches!(result.stop_loss.state, OrderState::Active(_)),
        "SL should be active"
    );

    println!("All three legs placed successfully.");
    println!("  Parent CID: {}", result.parent.key.cid);
    println!(
        "  TP CID: {} (should end with _tp)",
        result.take_profit.key.cid
    );
    println!(
        "  SL CID: {} (should end with _sl)",
        result.stop_loss.key.cid
    );

    // Verify CID naming convention
    assert!(
        result.take_profit.key.cid.0.ends_with("_tp"),
        "TP CID should end with _tp"
    );
    assert!(
        result.stop_loss.key.cid.0.ends_with("_sl"),
        "SL CID should end with _sl"
    );

    // Brief delay before cleanup
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Cleanup: cancel the parent
    if let OrderState::Active(ActiveOrderState::Open(open_state)) = &result.parent.state {
        let cancel_key = OrderKey {
            exchange: ExchangeId::Ibkr,
            instrument: &aapl_name,
            strategy: result.parent.key.strategy.clone(),
            cid: result.parent.key.cid.clone(),
        };

        let cancel_request = rustrade_execution::order::OrderEvent {
            key: cancel_key,
            state: rustrade_execution::order::request::RequestCancel {
                id: Some(open_state.id.clone()),
            },
        };

        let _ = client.cancel_order(cancel_request).await;
        println!("Cleanup: bracket order cancelled.");
    }
}

// ============================================================================
// Extended Time-in-Force Tests (TG13 Phase 6) — Tier 0: Paper Account Only (FREE)
// ============================================================================

/// Test placing and cancelling a Good-Till-Date (GTD) order.
///
/// Uses a limit order with expiry set to tomorrow. The order won't fill at $1
/// and will be cancelled before expiry.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_and_cancel_gtd_order() {
    init_logging();

    let config = test_config(18);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-gtd-order");
    let order_cid = ClientOrderId::new(format!(
        "gtd-order-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // GTD order expiring tomorrow at 23:59:59 UTC
    let expiry = chrono::Utc::now() + chrono::Duration::days(1);
    let request_open = RequestOpen {
        side: Side::Buy,
        price: Some(dec!(1.00)),
        quantity: dec!(1),
        kind: OrderKind::Limit,
        time_in_force: TimeInForce::GoodTillDate { expiry },
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!(
        "Placing GTD limit order: BUY 1 AAPL @ $1.00, expires {}",
        expiry.format("%Y-%m-%d %H:%M:%S UTC")
    );

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("GTD order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling GTD order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            let cancel_response = cancel_response.unwrap();

            match &cancel_response.state {
                Ok(_cancelled) => {
                    println!("GTD order canceled successfully!");
                }
                Err(e) => {
                    panic!("Cancel rejected: {:?}", e);
                }
            }
        }
        OrderState::Inactive(e) => {
            panic!("GTD order rejected: {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

/// Test placing a Market-on-Open (MOO) order during pre-market.
///
/// Note: This test is timing-sensitive - it should be run during pre-market hours
/// (before 9:30 AM ET) for the order to be accepted. Running during regular hours
/// will result in rejection.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_moo_order_premarket() {
    init_logging();

    let config = test_config(19);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-moo-order");
    let order_cid = ClientOrderId::new(format!(
        "moo-order-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Market-on-Open order - only valid during pre-market
    let request_open = RequestOpen {
        side: Side::Buy,
        price: None, // Market orders have no limit price
        quantity: dec!(1),
        kind: OrderKind::Market,
        time_in_force: TimeInForce::AtOpen,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing MOO order: BUY 1 AAPL at market open");
    println!("Note: This test should be run during pre-market hours");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("MOO order placed successfully (pre-market)!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            // Cancel immediately to avoid execution at open
            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling MOO order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            match &cancel_response.unwrap().state {
                Ok(_) => println!("MOO order canceled successfully!"),
                Err(e) => panic!("Cancel rejected: {:?}", e),
            }
        }
        OrderState::Inactive(e) => {
            // This is expected if running outside pre-market hours
            println!("MOO order rejected (expected if not pre-market): {:?}", e);
            println!("Test is timing-sensitive - run during pre-market for success");
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}

/// Test placing a Limit-on-Open (LOO) order during pre-market.
///
/// Similar to MOO but with a limit price. The order will only fill if the
/// opening price is at or below the limit.
#[tokio::test]
#[ignore]
#[serial]
async fn test_place_loo_order_premarket() {
    init_logging();

    let config = test_config(20);
    let client = connect_client(config).await.expect("connection failed");

    let aapl_name = aapl_instrument();
    let aapl_contract = stock_contract("AAPL", "SMART", "USD");
    client.register_contract(aapl_name.clone(), aapl_contract);

    let strategy = StrategyId::new("test-loo-order");
    let order_cid = ClientOrderId::new(format!(
        "loo-order-{}",
        chrono::Utc::now().timestamp_millis()
    ));

    let order_key = OrderKey {
        exchange: ExchangeId::Ibkr,
        instrument: &aapl_name,
        strategy: strategy.clone(),
        cid: order_cid.clone(),
    };

    // Limit-on-Open at $1 - won't fill
    let request_open = RequestOpen {
        side: Side::Buy,
        price: Some(dec!(1.00)),
        quantity: dec!(1),
        kind: OrderKind::Limit,
        time_in_force: TimeInForce::AtOpen,
        position_id: None,
        reduce_only: false,
    };

    let open_request = rustrade_execution::order::OrderEvent {
        key: order_key.clone(),
        state: request_open,
    };

    println!("Placing LOO order: BUY 1 AAPL @ $1.00 at market open");

    let response = client.open_order(open_request).await;

    assert!(response.is_some(), "Expected order response");
    let response = response.unwrap();

    match &response.state {
        OrderState::Active(ActiveOrderState::Open(open_state)) => {
            println!("LOO order placed successfully!");
            println!("  Client Order ID: {}", response.key.cid);
            println!("  Exchange Order ID: {:?}", open_state.id);

            tokio::time::sleep(Duration::from_millis(100)).await;

            let cancel_key = OrderKey {
                exchange: ExchangeId::Ibkr,
                instrument: &aapl_name,
                strategy: response.key.strategy.clone(),
                cid: response.key.cid.clone(),
            };

            let cancel_request = rustrade_execution::order::OrderEvent {
                key: cancel_key,
                state: rustrade_execution::order::request::RequestCancel {
                    id: Some(open_state.id.clone()),
                },
            };

            println!("Canceling LOO order...");
            let cancel_response = client.cancel_order(cancel_request).await;

            assert!(cancel_response.is_some(), "Expected cancel response");
            match &cancel_response.unwrap().state {
                Ok(_) => println!("LOO order canceled successfully!"),
                Err(e) => panic!("Cancel rejected: {:?}", e),
            }
        }
        OrderState::Inactive(e) => {
            println!("LOO order rejected (may be timing-related): {:?}", e);
        }
        other => {
            panic!("Unexpected order state: {:?}", other);
        }
    }
}