@finatic/client 0.9.10 → 0.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/index.d.ts +473 -921
- package/dist/index.js +213 -480
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +214 -481
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -131,6 +131,9 @@ declare class BaseAPI {
|
|
|
131
131
|
* https://openapi-generator.tech
|
|
132
132
|
* Do not edit the class manually.
|
|
133
133
|
*/
|
|
134
|
+
/**
|
|
135
|
+
* Broker-provided account number (top-level).
|
|
136
|
+
*/
|
|
134
137
|
interface Accountnumber {
|
|
135
138
|
}
|
|
136
139
|
|
|
@@ -413,6 +416,182 @@ interface BrokerInfo {
|
|
|
413
416
|
interface Buyingpower {
|
|
414
417
|
}
|
|
415
418
|
|
|
419
|
+
/**
|
|
420
|
+
* Finatic FastAPI Backend
|
|
421
|
+
* FinaticAPI REST API
|
|
422
|
+
*
|
|
423
|
+
* The version of the OpenAPI document: 1.0.0
|
|
424
|
+
*
|
|
425
|
+
*
|
|
426
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
427
|
+
* https://openapi-generator.tech
|
|
428
|
+
* Do not edit the class manually.
|
|
429
|
+
*/
|
|
430
|
+
/**
|
|
431
|
+
* Cancel-order payload enriched with NinjaTrader-specific extras.
|
|
432
|
+
*/
|
|
433
|
+
interface NinjaTraderOrderCancelQueryParams {
|
|
434
|
+
/**
|
|
435
|
+
* Broker-assigned order identifier
|
|
436
|
+
*/
|
|
437
|
+
'orderId': string;
|
|
438
|
+
'clOrdId'?: string | null;
|
|
439
|
+
'customTag50'?: string | null;
|
|
440
|
+
'activationTime'?: string | null;
|
|
441
|
+
'isAutomated'?: boolean | null;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* Finatic FastAPI Backend
|
|
446
|
+
* FinaticAPI REST API
|
|
447
|
+
*
|
|
448
|
+
* The version of the OpenAPI document: 1.0.0
|
|
449
|
+
*
|
|
450
|
+
*
|
|
451
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
452
|
+
* https://openapi-generator.tech
|
|
453
|
+
* Do not edit the class manually.
|
|
454
|
+
*/
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* NinjaTrader cancel-order request body. Attributes ---------- broker : Literal[\"ninja_trader\"] Discriminator; must be ``\"ninja_trader\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : NinjaTraderOrderCancelQueryParamsUnion NinjaTrader-specific cancel parameters. Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
458
|
+
*/
|
|
459
|
+
interface NinjaTraderOrderCancelRequest {
|
|
460
|
+
'broker': NinjaTraderOrderCancelRequestBrokerEnum;
|
|
461
|
+
'accountNumber': Accountnumber;
|
|
462
|
+
'order': NinjaTraderOrderCancelQueryParams;
|
|
463
|
+
}
|
|
464
|
+
declare enum NinjaTraderOrderCancelRequestBrokerEnum {
|
|
465
|
+
NinjaTrader = "ninja_trader"
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* Finatic FastAPI Backend
|
|
470
|
+
* FinaticAPI REST API
|
|
471
|
+
*
|
|
472
|
+
* The version of the OpenAPI document: 1.0.0
|
|
473
|
+
*
|
|
474
|
+
*
|
|
475
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
476
|
+
* https://openapi-generator.tech
|
|
477
|
+
* Do not edit the class manually.
|
|
478
|
+
*/
|
|
479
|
+
/**
|
|
480
|
+
* Cancel order query params for Robinhood. **NOTE:** This file is a template and was auto-generated. You must review and tailor the fields to pull from the full JSON query params model in the `src/finatic_broker_factory/brokers/robinhood/executors/raw/robinhood_order_cancel_raw_query_params.py` file. The goal is to offer a type-safe yet convenient schema that callers can use without worrying about the full raw REST payload - the executor layer will translate this higher-level model into the wire-level counterpart defined in `executors/raw/robinhood_order_cancel_raw_query_params.py`. Extends the core OrderCancelQueryParams with asset_type for routing to the correct cancel function. The order_id field is inherited from the core model. Matches the function signatures: - cancel_stock_order(orderID): Cancel a specific order - cancel_option_order(orderID): Cancel a specific option order - cancel_crypto_order(orderID): Cancel a specific crypto order
|
|
481
|
+
*/
|
|
482
|
+
interface RobinhoodOrderCancelQueryParams {
|
|
483
|
+
/**
|
|
484
|
+
* Broker-assigned order identifier
|
|
485
|
+
*/
|
|
486
|
+
'orderId': string;
|
|
487
|
+
/**
|
|
488
|
+
* Asset type for routing to correct cancel function (EQUITY, EQUITY_OPTION, or CRYPTO)
|
|
489
|
+
*/
|
|
490
|
+
'assetType'?: RobinhoodOrderCancelQueryParamsAssetTypeEnum;
|
|
491
|
+
}
|
|
492
|
+
declare enum RobinhoodOrderCancelQueryParamsAssetTypeEnum {
|
|
493
|
+
Equity = "equity",
|
|
494
|
+
EquityOption = "equity_option",
|
|
495
|
+
Crypto = "crypto"
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Finatic FastAPI Backend
|
|
500
|
+
* FinaticAPI REST API
|
|
501
|
+
*
|
|
502
|
+
* The version of the OpenAPI document: 1.0.0
|
|
503
|
+
*
|
|
504
|
+
*
|
|
505
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
506
|
+
* https://openapi-generator.tech
|
|
507
|
+
* Do not edit the class manually.
|
|
508
|
+
*/
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* Robinhood cancel-order request body. Attributes ---------- broker : Literal[\"robinhood\"] Discriminator; must be ``\"robinhood\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : RobinhoodOrderCancelQueryParamsUnion Robinhood-specific cancel parameters (e.g. order identifier). Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
512
|
+
*/
|
|
513
|
+
interface RobinhoodOrderCancelRequest {
|
|
514
|
+
'broker': RobinhoodOrderCancelRequestBrokerEnum;
|
|
515
|
+
'accountNumber': Accountnumber;
|
|
516
|
+
'order': RobinhoodOrderCancelQueryParams;
|
|
517
|
+
}
|
|
518
|
+
declare enum RobinhoodOrderCancelRequestBrokerEnum {
|
|
519
|
+
Robinhood = "robinhood"
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
/**
|
|
523
|
+
* Finatic FastAPI Backend
|
|
524
|
+
* FinaticAPI REST API
|
|
525
|
+
*
|
|
526
|
+
* The version of the OpenAPI document: 1.0.0
|
|
527
|
+
*
|
|
528
|
+
*
|
|
529
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
530
|
+
* https://openapi-generator.tech
|
|
531
|
+
* Do not edit the class manually.
|
|
532
|
+
*/
|
|
533
|
+
/**
|
|
534
|
+
* Cancel-order payload enriched with TastyTrade-specific *account_number*.
|
|
535
|
+
*/
|
|
536
|
+
interface TastyTradeOrderCancelQueryParams {
|
|
537
|
+
/**
|
|
538
|
+
* Broker-assigned order identifier
|
|
539
|
+
*/
|
|
540
|
+
'orderId': string;
|
|
541
|
+
/**
|
|
542
|
+
* TastyTrade account number owning the order.
|
|
543
|
+
*/
|
|
544
|
+
'accountNumber': number;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* Finatic FastAPI Backend
|
|
549
|
+
* FinaticAPI REST API
|
|
550
|
+
*
|
|
551
|
+
* The version of the OpenAPI document: 1.0.0
|
|
552
|
+
*
|
|
553
|
+
*
|
|
554
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
555
|
+
* https://openapi-generator.tech
|
|
556
|
+
* Do not edit the class manually.
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* TastyTrade cancel-order request body. Attributes ---------- broker : Literal[\"tasty_trade\"] Discriminator; must be ``\"tasty_trade\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : TastyTradeOrderCancelQueryParams TastyTrade-specific cancel parameters. Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
561
|
+
*/
|
|
562
|
+
interface TastyTradeOrderCancelRequest {
|
|
563
|
+
'broker': TastyTradeOrderCancelRequestBrokerEnum;
|
|
564
|
+
'accountNumber': Accountnumber;
|
|
565
|
+
'order': TastyTradeOrderCancelQueryParams;
|
|
566
|
+
}
|
|
567
|
+
declare enum TastyTradeOrderCancelRequestBrokerEnum {
|
|
568
|
+
TastyTrade = "tasty_trade"
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* Finatic FastAPI Backend
|
|
573
|
+
* FinaticAPI REST API
|
|
574
|
+
*
|
|
575
|
+
* The version of the OpenAPI document: 1.0.0
|
|
576
|
+
*
|
|
577
|
+
*
|
|
578
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
579
|
+
* https://openapi-generator.tech
|
|
580
|
+
* Do not edit the class manually.
|
|
581
|
+
*/
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* @type CancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest
|
|
585
|
+
* Broker-specific parameters object for *cancel order* operations
|
|
586
|
+
*/
|
|
587
|
+
type CancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest = {
|
|
588
|
+
broker: 'ninja_trader';
|
|
589
|
+
} & NinjaTraderOrderCancelRequest | {
|
|
590
|
+
broker: 'robinhood';
|
|
591
|
+
} & RobinhoodOrderCancelRequest | {
|
|
592
|
+
broker: 'tasty_trade';
|
|
593
|
+
} & TastyTradeOrderCancelRequest;
|
|
594
|
+
|
|
416
595
|
/**
|
|
417
596
|
* Finatic FastAPI Backend
|
|
418
597
|
* FinaticAPI REST API
|
|
@@ -2110,34 +2289,6 @@ interface FinaticAPIErrorResponse {
|
|
|
2110
2289
|
};
|
|
2111
2290
|
}
|
|
2112
2291
|
|
|
2113
|
-
/**
|
|
2114
|
-
* Finatic FastAPI Backend
|
|
2115
|
-
* FinaticAPI REST API
|
|
2116
|
-
*
|
|
2117
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2118
|
-
*
|
|
2119
|
-
*
|
|
2120
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2121
|
-
* https://openapi-generator.tech
|
|
2122
|
-
* Do not edit the class manually.
|
|
2123
|
-
*/
|
|
2124
|
-
|
|
2125
|
-
/**
|
|
2126
|
-
* One leg within a spread for option orders. Used by order_option_spread() function. Matches the structure expected by the raw query params layer.
|
|
2127
|
-
*/
|
|
2128
|
-
interface FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLeg {
|
|
2129
|
-
'expirationDate': string;
|
|
2130
|
-
'strike': number;
|
|
2131
|
-
'optionType': BrokerDataOptionTypeEnum;
|
|
2132
|
-
'effect': FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLegEffectEnum;
|
|
2133
|
-
'action': BrokerDataOrderSideEnum;
|
|
2134
|
-
'ratioQuantity'?: number;
|
|
2135
|
-
}
|
|
2136
|
-
declare enum FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLegEffectEnum {
|
|
2137
|
-
Open = "open",
|
|
2138
|
-
Close = "close"
|
|
2139
|
-
}
|
|
2140
|
-
|
|
2141
2292
|
/**
|
|
2142
2293
|
* Finatic FastAPI Backend
|
|
2143
2294
|
* FinaticAPI REST API
|
|
@@ -3593,34 +3744,36 @@ type Timeinforce1 = {
|
|
|
3593
3744
|
*/
|
|
3594
3745
|
|
|
3595
3746
|
/**
|
|
3596
|
-
*
|
|
3747
|
+
* Parameters for a NinjaTrader limit order.
|
|
3597
3748
|
*/
|
|
3598
|
-
interface
|
|
3599
|
-
|
|
3600
|
-
'
|
|
3601
|
-
'
|
|
3602
|
-
'pegDifference'?: number | null;
|
|
3749
|
+
interface NinjaTraderLimitOrderPlaceQueryParams {
|
|
3750
|
+
[key: string]: any;
|
|
3751
|
+
'accountSpec'?: string | null;
|
|
3752
|
+
'isAutomated'?: boolean;
|
|
3603
3753
|
'activationTime'?: string | null;
|
|
3604
3754
|
'text'?: string | null;
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
'
|
|
3609
|
-
'orderType': NinjaTraderLimitOrderModifyQueryParamsOrderTypeEnum;
|
|
3610
|
-
'assetType': NinjaTraderLimitOrderModifyQueryParamsAssetTypeEnum;
|
|
3755
|
+
'pegDifference'?: number | null;
|
|
3756
|
+
'orderType': NinjaTraderLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
3757
|
+
'assetType': NinjaTraderLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
3758
|
+
'action': NinjaTraderLimitOrderPlaceQueryParamsActionEnum;
|
|
3611
3759
|
'timeInForce': Timeinforce1;
|
|
3612
|
-
'
|
|
3760
|
+
'symbol': string;
|
|
3761
|
+
'orderQty': number;
|
|
3613
3762
|
'price': number;
|
|
3614
3763
|
}
|
|
3615
|
-
declare enum
|
|
3764
|
+
declare enum NinjaTraderLimitOrderPlaceQueryParamsOrderTypeEnum {
|
|
3616
3765
|
Limit = "limit"
|
|
3617
3766
|
}
|
|
3618
|
-
declare enum
|
|
3767
|
+
declare enum NinjaTraderLimitOrderPlaceQueryParamsAssetTypeEnum {
|
|
3619
3768
|
Equity = "equity",
|
|
3620
3769
|
EquityOption = "equity_option",
|
|
3621
3770
|
Crypto = "crypto",
|
|
3622
3771
|
Forex = "forex"
|
|
3623
3772
|
}
|
|
3773
|
+
declare enum NinjaTraderLimitOrderPlaceQueryParamsActionEnum {
|
|
3774
|
+
Buy = "buy",
|
|
3775
|
+
Sell = "sell"
|
|
3776
|
+
}
|
|
3624
3777
|
|
|
3625
3778
|
/**
|
|
3626
3779
|
* Finatic FastAPI Backend
|
|
@@ -3635,33 +3788,35 @@ declare enum NinjaTraderLimitOrderModifyQueryParamsAssetTypeEnum {
|
|
|
3635
3788
|
*/
|
|
3636
3789
|
|
|
3637
3790
|
/**
|
|
3638
|
-
*
|
|
3791
|
+
* Parameters for a NinjaTrader market order.
|
|
3639
3792
|
*/
|
|
3640
|
-
interface
|
|
3641
|
-
|
|
3642
|
-
'
|
|
3643
|
-
'
|
|
3644
|
-
'pegDifference'?: number | null;
|
|
3793
|
+
interface NinjaTraderMarketOrderPlaceQueryParams {
|
|
3794
|
+
[key: string]: any;
|
|
3795
|
+
'accountSpec'?: string | null;
|
|
3796
|
+
'isAutomated'?: boolean;
|
|
3645
3797
|
'activationTime'?: string | null;
|
|
3646
3798
|
'text'?: string | null;
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
'
|
|
3651
|
-
'orderType': NinjaTraderMarketOrderModifyQueryParamsOrderTypeEnum;
|
|
3652
|
-
'assetType': NinjaTraderMarketOrderModifyQueryParamsAssetTypeEnum;
|
|
3799
|
+
'pegDifference'?: number | null;
|
|
3800
|
+
'orderType': NinjaTraderMarketOrderPlaceQueryParamsOrderTypeEnum;
|
|
3801
|
+
'assetType': NinjaTraderMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
3802
|
+
'action': NinjaTraderMarketOrderPlaceQueryParamsActionEnum;
|
|
3653
3803
|
'timeInForce': Timeinforce1;
|
|
3654
|
-
'
|
|
3804
|
+
'symbol': string;
|
|
3805
|
+
'orderQty': number;
|
|
3655
3806
|
}
|
|
3656
|
-
declare enum
|
|
3807
|
+
declare enum NinjaTraderMarketOrderPlaceQueryParamsOrderTypeEnum {
|
|
3657
3808
|
Market = "market"
|
|
3658
3809
|
}
|
|
3659
|
-
declare enum
|
|
3810
|
+
declare enum NinjaTraderMarketOrderPlaceQueryParamsAssetTypeEnum {
|
|
3660
3811
|
Equity = "equity",
|
|
3661
3812
|
EquityOption = "equity_option",
|
|
3662
3813
|
Crypto = "crypto",
|
|
3663
3814
|
Forex = "forex"
|
|
3664
3815
|
}
|
|
3816
|
+
declare enum NinjaTraderMarketOrderPlaceQueryParamsActionEnum {
|
|
3817
|
+
Buy = "buy",
|
|
3818
|
+
Sell = "sell"
|
|
3819
|
+
}
|
|
3665
3820
|
|
|
3666
3821
|
/**
|
|
3667
3822
|
* Finatic FastAPI Backend
|
|
@@ -3674,35 +3829,7 @@ declare enum NinjaTraderMarketOrderModifyQueryParamsAssetTypeEnum {
|
|
|
3674
3829
|
* https://openapi-generator.tech
|
|
3675
3830
|
* Do not edit the class manually.
|
|
3676
3831
|
*/
|
|
3677
|
-
|
|
3678
|
-
/**
|
|
3679
|
-
* Stop-order modification payload for NinjaTrader.
|
|
3680
|
-
*/
|
|
3681
|
-
interface NinjaTraderStopOrderModifyQueryParams {
|
|
3682
|
-
'orderQty'?: number | null;
|
|
3683
|
-
'clOrdId'?: string | null;
|
|
3684
|
-
'maxShow'?: number | null;
|
|
3685
|
-
'pegDifference'?: number | null;
|
|
3686
|
-
'activationTime'?: string | null;
|
|
3687
|
-
'text'?: string | null;
|
|
3688
|
-
/**
|
|
3689
|
-
* Broker-assigned order identifier
|
|
3690
|
-
*/
|
|
3691
|
-
'orderId': string;
|
|
3692
|
-
'orderType': NinjaTraderStopOrderModifyQueryParamsOrderTypeEnum;
|
|
3693
|
-
'assetType': NinjaTraderStopOrderModifyQueryParamsAssetTypeEnum;
|
|
3694
|
-
'timeInForce': Timeinforce1;
|
|
3695
|
-
'isAutomated'?: boolean | null;
|
|
3696
|
-
'stopPrice': number;
|
|
3697
|
-
}
|
|
3698
|
-
declare enum NinjaTraderStopOrderModifyQueryParamsOrderTypeEnum {
|
|
3699
|
-
Stop = "stop"
|
|
3700
|
-
}
|
|
3701
|
-
declare enum NinjaTraderStopOrderModifyQueryParamsAssetTypeEnum {
|
|
3702
|
-
Equity = "equity",
|
|
3703
|
-
EquityOption = "equity_option",
|
|
3704
|
-
Crypto = "crypto",
|
|
3705
|
-
Forex = "forex"
|
|
3832
|
+
interface Timeinforce2 {
|
|
3706
3833
|
}
|
|
3707
3834
|
|
|
3708
3835
|
/**
|
|
@@ -3717,733 +3844,32 @@ declare enum NinjaTraderStopOrderModifyQueryParamsAssetTypeEnum {
|
|
|
3717
3844
|
* Do not edit the class manually.
|
|
3718
3845
|
*/
|
|
3719
3846
|
|
|
3720
|
-
/**
|
|
3721
|
-
*
|
|
3722
|
-
*/
|
|
3723
|
-
interface
|
|
3724
|
-
|
|
3725
|
-
'
|
|
3726
|
-
'
|
|
3727
|
-
'
|
|
3728
|
-
'
|
|
3729
|
-
'
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
'orderId': string;
|
|
3734
|
-
'orderType': NinjaTraderTrailingStopOrderModifyQueryParamsOrderTypeEnum;
|
|
3735
|
-
'assetType': NinjaTraderTrailingStopOrderModifyQueryParamsAssetTypeEnum;
|
|
3736
|
-
'timeInForce': Timeinforce1;
|
|
3737
|
-
'isAutomated'?: boolean | null;
|
|
3738
|
-
'stopPrice': number;
|
|
3739
|
-
}
|
|
3740
|
-
declare enum NinjaTraderTrailingStopOrderModifyQueryParamsOrderTypeEnum {
|
|
3741
|
-
TrailingStop = "trailing_stop"
|
|
3742
|
-
}
|
|
3743
|
-
declare enum NinjaTraderTrailingStopOrderModifyQueryParamsAssetTypeEnum {
|
|
3744
|
-
Equity = "equity",
|
|
3745
|
-
EquityOption = "equity_option",
|
|
3746
|
-
Crypto = "crypto",
|
|
3747
|
-
Forex = "forex"
|
|
3748
|
-
}
|
|
3749
|
-
|
|
3750
|
-
/**
|
|
3751
|
-
* Finatic FastAPI Backend
|
|
3752
|
-
* FinaticAPI REST API
|
|
3753
|
-
*
|
|
3754
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3755
|
-
*
|
|
3756
|
-
*
|
|
3757
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3758
|
-
* https://openapi-generator.tech
|
|
3759
|
-
* Do not edit the class manually.
|
|
3760
|
-
*/
|
|
3761
|
-
|
|
3762
|
-
/**
|
|
3763
|
-
* @type Order3
|
|
3764
|
-
*/
|
|
3765
|
-
type Order3 = {
|
|
3766
|
-
orderType: 'limit';
|
|
3767
|
-
} & NinjaTraderLimitOrderModifyQueryParams | {
|
|
3768
|
-
orderType: 'market';
|
|
3769
|
-
} & NinjaTraderMarketOrderModifyQueryParams | {
|
|
3770
|
-
orderType: 'stop';
|
|
3771
|
-
} & NinjaTraderStopOrderModifyQueryParams | {
|
|
3772
|
-
orderType: 'trailing_stop';
|
|
3773
|
-
} & NinjaTraderTrailingStopOrderModifyQueryParams;
|
|
3774
|
-
|
|
3775
|
-
/**
|
|
3776
|
-
* Finatic FastAPI Backend
|
|
3777
|
-
* FinaticAPI REST API
|
|
3778
|
-
*
|
|
3779
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3780
|
-
*
|
|
3781
|
-
*
|
|
3782
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3783
|
-
* https://openapi-generator.tech
|
|
3784
|
-
* Do not edit the class manually.
|
|
3785
|
-
*/
|
|
3786
|
-
|
|
3787
|
-
interface NinjaTraderOrderModifyRequest {
|
|
3788
|
-
'broker': NinjaTraderOrderModifyRequestBrokerEnum;
|
|
3789
|
-
'order': Order3;
|
|
3790
|
-
}
|
|
3791
|
-
declare enum NinjaTraderOrderModifyRequestBrokerEnum {
|
|
3792
|
-
NinjaTrader = "ninja_trader"
|
|
3793
|
-
}
|
|
3794
|
-
|
|
3795
|
-
/**
|
|
3796
|
-
* Finatic FastAPI Backend
|
|
3797
|
-
* FinaticAPI REST API
|
|
3798
|
-
*
|
|
3799
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3800
|
-
*
|
|
3801
|
-
*
|
|
3802
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3803
|
-
* https://openapi-generator.tech
|
|
3804
|
-
* Do not edit the class manually.
|
|
3805
|
-
*/
|
|
3806
|
-
|
|
3807
|
-
/**
|
|
3808
|
-
* Limit order modification with Robinhood-specific extras.
|
|
3809
|
-
*/
|
|
3810
|
-
interface RobinhoodLimitOrderModifyQueryParams {
|
|
3811
|
-
[key: string]: any;
|
|
3812
|
-
/**
|
|
3813
|
-
* Allow trading during extended hours (premium users only)
|
|
3814
|
-
*/
|
|
3815
|
-
'extendedHours'?: boolean;
|
|
3816
|
-
/**
|
|
3817
|
-
* Market hours to trade in
|
|
3818
|
-
*/
|
|
3819
|
-
'marketHours'?: RobinhoodLimitOrderModifyQueryParamsMarketHoursEnum;
|
|
3820
|
-
'direction'?: RobinhoodLimitOrderModifyQueryParamsDirectionEnum | null;
|
|
3821
|
-
'spread'?: Array<FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLeg> | null;
|
|
3822
|
-
'positionEffect'?: RobinhoodLimitOrderModifyQueryParamsPositionEffectEnum | null;
|
|
3823
|
-
'creditOrDebit'?: RobinhoodLimitOrderModifyQueryParamsCreditOrDebitEnum | null;
|
|
3824
|
-
'expirationDate'?: string | null;
|
|
3825
|
-
'strike'?: number | null;
|
|
3826
|
-
'optionType'?: RobinhoodLimitOrderModifyQueryParamsOptionTypeEnum | null;
|
|
3827
|
-
/**
|
|
3828
|
-
* Whether quantityOrPrice represents quantity or price
|
|
3829
|
-
*/
|
|
3830
|
-
'amountIn'?: RobinhoodLimitOrderModifyQueryParamsAmountInEnum;
|
|
3831
|
-
/**
|
|
3832
|
-
* Broker-assigned order identifier
|
|
3833
|
-
*/
|
|
3834
|
-
'orderId': string;
|
|
3835
|
-
'orderType': RobinhoodLimitOrderModifyQueryParamsOrderTypeEnum;
|
|
3836
|
-
'assetType': RobinhoodLimitOrderModifyQueryParamsAssetTypeEnum;
|
|
3837
|
-
'timeInForce': Timeinforce1;
|
|
3838
|
-
'isAutomated'?: boolean | null;
|
|
3839
|
-
'price': number;
|
|
3840
|
-
}
|
|
3841
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsMarketHoursEnum {
|
|
3842
|
-
RegularHours = "regular_hours",
|
|
3843
|
-
AllDayHours = "all_day_hours",
|
|
3844
|
-
ExtendedHours = "extended_hours"
|
|
3845
|
-
}
|
|
3846
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsDirectionEnum {
|
|
3847
|
-
Debit = "debit",
|
|
3848
|
-
Credit = "credit"
|
|
3849
|
-
}
|
|
3850
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsPositionEffectEnum {
|
|
3851
|
-
Open = "open",
|
|
3852
|
-
Close = "close"
|
|
3853
|
-
}
|
|
3854
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsCreditOrDebitEnum {
|
|
3855
|
-
Debit = "debit",
|
|
3856
|
-
Credit = "credit"
|
|
3857
|
-
}
|
|
3858
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsOptionTypeEnum {
|
|
3859
|
-
Call = "call",
|
|
3860
|
-
Put = "put",
|
|
3861
|
-
Both = "both"
|
|
3862
|
-
}
|
|
3863
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsAmountInEnum {
|
|
3864
|
-
Quantity = "quantity",
|
|
3865
|
-
Price = "price"
|
|
3866
|
-
}
|
|
3867
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsOrderTypeEnum {
|
|
3868
|
-
Limit = "limit"
|
|
3869
|
-
}
|
|
3870
|
-
declare enum RobinhoodLimitOrderModifyQueryParamsAssetTypeEnum {
|
|
3871
|
-
Equity = "equity",
|
|
3872
|
-
EquityOption = "equity_option",
|
|
3873
|
-
Crypto = "crypto",
|
|
3874
|
-
Forex = "forex"
|
|
3875
|
-
}
|
|
3876
|
-
|
|
3877
|
-
/**
|
|
3878
|
-
* Finatic FastAPI Backend
|
|
3879
|
-
* FinaticAPI REST API
|
|
3880
|
-
*
|
|
3881
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3882
|
-
*
|
|
3883
|
-
*
|
|
3884
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3885
|
-
* https://openapi-generator.tech
|
|
3886
|
-
* Do not edit the class manually.
|
|
3887
|
-
*/
|
|
3888
|
-
|
|
3889
|
-
/**
|
|
3890
|
-
* Market order modification with Robinhood-specific extras.
|
|
3891
|
-
*/
|
|
3892
|
-
interface RobinhoodMarketOrderModifyQueryParams {
|
|
3893
|
-
[key: string]: any;
|
|
3894
|
-
/**
|
|
3895
|
-
* Allow trading during extended hours (premium users only)
|
|
3896
|
-
*/
|
|
3897
|
-
'extendedHours'?: boolean;
|
|
3898
|
-
/**
|
|
3899
|
-
* Market hours to trade in
|
|
3900
|
-
*/
|
|
3901
|
-
'marketHours'?: RobinhoodMarketOrderModifyQueryParamsMarketHoursEnum;
|
|
3902
|
-
'direction'?: RobinhoodMarketOrderModifyQueryParamsDirectionEnum | null;
|
|
3903
|
-
'spread'?: Array<FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLeg> | null;
|
|
3904
|
-
'positionEffect'?: RobinhoodMarketOrderModifyQueryParamsPositionEffectEnum | null;
|
|
3905
|
-
'creditOrDebit'?: RobinhoodMarketOrderModifyQueryParamsCreditOrDebitEnum | null;
|
|
3906
|
-
'expirationDate'?: string | null;
|
|
3907
|
-
'strike'?: number | null;
|
|
3908
|
-
'optionType'?: RobinhoodMarketOrderModifyQueryParamsOptionTypeEnum | null;
|
|
3909
|
-
/**
|
|
3910
|
-
* Whether quantityOrPrice represents quantity or price
|
|
3911
|
-
*/
|
|
3912
|
-
'amountIn'?: RobinhoodMarketOrderModifyQueryParamsAmountInEnum;
|
|
3913
|
-
/**
|
|
3914
|
-
* Broker-assigned order identifier
|
|
3915
|
-
*/
|
|
3916
|
-
'orderId': string;
|
|
3917
|
-
'orderType': RobinhoodMarketOrderModifyQueryParamsOrderTypeEnum;
|
|
3918
|
-
'assetType': RobinhoodMarketOrderModifyQueryParamsAssetTypeEnum;
|
|
3919
|
-
'timeInForce': Timeinforce1;
|
|
3920
|
-
'isAutomated'?: boolean | null;
|
|
3921
|
-
}
|
|
3922
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsMarketHoursEnum {
|
|
3923
|
-
RegularHours = "regular_hours",
|
|
3924
|
-
AllDayHours = "all_day_hours",
|
|
3925
|
-
ExtendedHours = "extended_hours"
|
|
3926
|
-
}
|
|
3927
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsDirectionEnum {
|
|
3928
|
-
Debit = "debit",
|
|
3929
|
-
Credit = "credit"
|
|
3930
|
-
}
|
|
3931
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsPositionEffectEnum {
|
|
3932
|
-
Open = "open",
|
|
3933
|
-
Close = "close"
|
|
3934
|
-
}
|
|
3935
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsCreditOrDebitEnum {
|
|
3936
|
-
Debit = "debit",
|
|
3937
|
-
Credit = "credit"
|
|
3938
|
-
}
|
|
3939
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsOptionTypeEnum {
|
|
3940
|
-
Call = "call",
|
|
3941
|
-
Put = "put",
|
|
3942
|
-
Both = "both"
|
|
3943
|
-
}
|
|
3944
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsAmountInEnum {
|
|
3945
|
-
Quantity = "quantity",
|
|
3946
|
-
Price = "price"
|
|
3947
|
-
}
|
|
3948
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsOrderTypeEnum {
|
|
3949
|
-
Market = "market"
|
|
3950
|
-
}
|
|
3951
|
-
declare enum RobinhoodMarketOrderModifyQueryParamsAssetTypeEnum {
|
|
3952
|
-
Equity = "equity",
|
|
3953
|
-
EquityOption = "equity_option",
|
|
3954
|
-
Crypto = "crypto",
|
|
3955
|
-
Forex = "forex"
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
/**
|
|
3959
|
-
* Finatic FastAPI Backend
|
|
3960
|
-
* FinaticAPI REST API
|
|
3961
|
-
*
|
|
3962
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3963
|
-
*
|
|
3964
|
-
*
|
|
3965
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3966
|
-
* https://openapi-generator.tech
|
|
3967
|
-
* Do not edit the class manually.
|
|
3968
|
-
*/
|
|
3969
|
-
|
|
3970
|
-
/**
|
|
3971
|
-
* Stop order modification with Robinhood-specific extras.
|
|
3972
|
-
*/
|
|
3973
|
-
interface RobinhoodStopOrderModifyQueryParams {
|
|
3974
|
-
[key: string]: any;
|
|
3975
|
-
/**
|
|
3976
|
-
* Allow trading during extended hours (premium users only)
|
|
3977
|
-
*/
|
|
3978
|
-
'extendedHours'?: boolean;
|
|
3979
|
-
/**
|
|
3980
|
-
* Market hours to trade in
|
|
3981
|
-
*/
|
|
3982
|
-
'marketHours'?: RobinhoodStopOrderModifyQueryParamsMarketHoursEnum;
|
|
3983
|
-
'direction'?: RobinhoodStopOrderModifyQueryParamsDirectionEnum | null;
|
|
3984
|
-
'spread'?: Array<FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLeg> | null;
|
|
3985
|
-
'positionEffect'?: RobinhoodStopOrderModifyQueryParamsPositionEffectEnum | null;
|
|
3986
|
-
'creditOrDebit'?: RobinhoodStopOrderModifyQueryParamsCreditOrDebitEnum | null;
|
|
3987
|
-
'expirationDate'?: string | null;
|
|
3988
|
-
'strike'?: number | null;
|
|
3989
|
-
'optionType'?: RobinhoodStopOrderModifyQueryParamsOptionTypeEnum | null;
|
|
3990
|
-
/**
|
|
3991
|
-
* Whether quantityOrPrice represents quantity or price
|
|
3992
|
-
*/
|
|
3993
|
-
'amountIn'?: RobinhoodStopOrderModifyQueryParamsAmountInEnum;
|
|
3994
|
-
/**
|
|
3995
|
-
* Broker-assigned order identifier
|
|
3996
|
-
*/
|
|
3997
|
-
'orderId': string;
|
|
3998
|
-
'orderType': RobinhoodStopOrderModifyQueryParamsOrderTypeEnum;
|
|
3999
|
-
'assetType': RobinhoodStopOrderModifyQueryParamsAssetTypeEnum;
|
|
4000
|
-
'timeInForce': Timeinforce1;
|
|
4001
|
-
'isAutomated'?: boolean | null;
|
|
4002
|
-
'stopPrice': number;
|
|
4003
|
-
}
|
|
4004
|
-
declare enum RobinhoodStopOrderModifyQueryParamsMarketHoursEnum {
|
|
4005
|
-
RegularHours = "regular_hours",
|
|
4006
|
-
AllDayHours = "all_day_hours",
|
|
4007
|
-
ExtendedHours = "extended_hours"
|
|
4008
|
-
}
|
|
4009
|
-
declare enum RobinhoodStopOrderModifyQueryParamsDirectionEnum {
|
|
4010
|
-
Debit = "debit",
|
|
4011
|
-
Credit = "credit"
|
|
4012
|
-
}
|
|
4013
|
-
declare enum RobinhoodStopOrderModifyQueryParamsPositionEffectEnum {
|
|
4014
|
-
Open = "open",
|
|
4015
|
-
Close = "close"
|
|
4016
|
-
}
|
|
4017
|
-
declare enum RobinhoodStopOrderModifyQueryParamsCreditOrDebitEnum {
|
|
4018
|
-
Debit = "debit",
|
|
4019
|
-
Credit = "credit"
|
|
4020
|
-
}
|
|
4021
|
-
declare enum RobinhoodStopOrderModifyQueryParamsOptionTypeEnum {
|
|
4022
|
-
Call = "call",
|
|
4023
|
-
Put = "put",
|
|
4024
|
-
Both = "both"
|
|
4025
|
-
}
|
|
4026
|
-
declare enum RobinhoodStopOrderModifyQueryParamsAmountInEnum {
|
|
4027
|
-
Quantity = "quantity",
|
|
4028
|
-
Price = "price"
|
|
4029
|
-
}
|
|
4030
|
-
declare enum RobinhoodStopOrderModifyQueryParamsOrderTypeEnum {
|
|
4031
|
-
Stop = "stop"
|
|
4032
|
-
}
|
|
4033
|
-
declare enum RobinhoodStopOrderModifyQueryParamsAssetTypeEnum {
|
|
4034
|
-
Equity = "equity",
|
|
4035
|
-
EquityOption = "equity_option",
|
|
4036
|
-
Crypto = "crypto",
|
|
4037
|
-
Forex = "forex"
|
|
4038
|
-
}
|
|
4039
|
-
|
|
4040
|
-
/**
|
|
4041
|
-
* Finatic FastAPI Backend
|
|
4042
|
-
* FinaticAPI REST API
|
|
4043
|
-
*
|
|
4044
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4045
|
-
*
|
|
4046
|
-
*
|
|
4047
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4048
|
-
* https://openapi-generator.tech
|
|
4049
|
-
* Do not edit the class manually.
|
|
4050
|
-
*/
|
|
4051
|
-
|
|
4052
|
-
/**
|
|
4053
|
-
* Trailing stop order modification with Robinhood-specific extras.
|
|
4054
|
-
*/
|
|
4055
|
-
interface RobinhoodTrailingStopOrderModifyQueryParams {
|
|
4056
|
-
[key: string]: any;
|
|
4057
|
-
/**
|
|
4058
|
-
* Allow trading during extended hours (premium users only)
|
|
4059
|
-
*/
|
|
4060
|
-
'extendedHours'?: boolean;
|
|
4061
|
-
/**
|
|
4062
|
-
* Market hours to trade in
|
|
4063
|
-
*/
|
|
4064
|
-
'marketHours'?: RobinhoodTrailingStopOrderModifyQueryParamsMarketHoursEnum;
|
|
4065
|
-
'direction'?: RobinhoodTrailingStopOrderModifyQueryParamsDirectionEnum | null;
|
|
4066
|
-
'spread'?: Array<FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLeg> | null;
|
|
4067
|
-
'positionEffect'?: RobinhoodTrailingStopOrderModifyQueryParamsPositionEffectEnum | null;
|
|
4068
|
-
'creditOrDebit'?: RobinhoodTrailingStopOrderModifyQueryParamsCreditOrDebitEnum | null;
|
|
4069
|
-
'expirationDate'?: string | null;
|
|
4070
|
-
'strike'?: number | null;
|
|
4071
|
-
'optionType'?: RobinhoodTrailingStopOrderModifyQueryParamsOptionTypeEnum | null;
|
|
4072
|
-
/**
|
|
4073
|
-
* Whether quantityOrPrice represents quantity or price
|
|
4074
|
-
*/
|
|
4075
|
-
'amountIn'?: RobinhoodTrailingStopOrderModifyQueryParamsAmountInEnum;
|
|
4076
|
-
/**
|
|
4077
|
-
* Broker-assigned order identifier
|
|
4078
|
-
*/
|
|
4079
|
-
'orderId': string;
|
|
4080
|
-
'orderType': RobinhoodTrailingStopOrderModifyQueryParamsOrderTypeEnum;
|
|
4081
|
-
'assetType': RobinhoodTrailingStopOrderModifyQueryParamsAssetTypeEnum;
|
|
4082
|
-
'timeInForce': Timeinforce1;
|
|
4083
|
-
'isAutomated'?: boolean | null;
|
|
4084
|
-
'stopPrice': number;
|
|
4085
|
-
}
|
|
4086
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsMarketHoursEnum {
|
|
4087
|
-
RegularHours = "regular_hours",
|
|
4088
|
-
AllDayHours = "all_day_hours",
|
|
4089
|
-
ExtendedHours = "extended_hours"
|
|
4090
|
-
}
|
|
4091
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsDirectionEnum {
|
|
4092
|
-
Debit = "debit",
|
|
4093
|
-
Credit = "credit"
|
|
4094
|
-
}
|
|
4095
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsPositionEffectEnum {
|
|
4096
|
-
Open = "open",
|
|
4097
|
-
Close = "close"
|
|
4098
|
-
}
|
|
4099
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsCreditOrDebitEnum {
|
|
4100
|
-
Debit = "debit",
|
|
4101
|
-
Credit = "credit"
|
|
4102
|
-
}
|
|
4103
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsOptionTypeEnum {
|
|
4104
|
-
Call = "call",
|
|
4105
|
-
Put = "put",
|
|
4106
|
-
Both = "both"
|
|
4107
|
-
}
|
|
4108
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsAmountInEnum {
|
|
4109
|
-
Quantity = "quantity",
|
|
4110
|
-
Price = "price"
|
|
4111
|
-
}
|
|
4112
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsOrderTypeEnum {
|
|
4113
|
-
TrailingStop = "trailing_stop"
|
|
4114
|
-
}
|
|
4115
|
-
declare enum RobinhoodTrailingStopOrderModifyQueryParamsAssetTypeEnum {
|
|
4116
|
-
Equity = "equity",
|
|
4117
|
-
EquityOption = "equity_option",
|
|
4118
|
-
Crypto = "crypto",
|
|
4119
|
-
Forex = "forex"
|
|
4120
|
-
}
|
|
4121
|
-
|
|
4122
|
-
/**
|
|
4123
|
-
* Finatic FastAPI Backend
|
|
4124
|
-
* FinaticAPI REST API
|
|
4125
|
-
*
|
|
4126
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4127
|
-
*
|
|
4128
|
-
*
|
|
4129
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4130
|
-
* https://openapi-generator.tech
|
|
4131
|
-
* Do not edit the class manually.
|
|
4132
|
-
*/
|
|
4133
|
-
|
|
4134
|
-
/**
|
|
4135
|
-
* @type Order5
|
|
4136
|
-
*/
|
|
4137
|
-
type Order5 = {
|
|
4138
|
-
orderType: 'limit';
|
|
4139
|
-
} & RobinhoodLimitOrderModifyQueryParams | {
|
|
4140
|
-
orderType: 'market';
|
|
4141
|
-
} & RobinhoodMarketOrderModifyQueryParams | {
|
|
4142
|
-
orderType: 'stop';
|
|
4143
|
-
} & RobinhoodStopOrderModifyQueryParams | {
|
|
4144
|
-
orderType: 'trailing_stop';
|
|
4145
|
-
} & RobinhoodTrailingStopOrderModifyQueryParams;
|
|
4146
|
-
|
|
4147
|
-
/**
|
|
4148
|
-
* Finatic FastAPI Backend
|
|
4149
|
-
* FinaticAPI REST API
|
|
4150
|
-
*
|
|
4151
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4152
|
-
*
|
|
4153
|
-
*
|
|
4154
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4155
|
-
* https://openapi-generator.tech
|
|
4156
|
-
* Do not edit the class manually.
|
|
4157
|
-
*/
|
|
4158
|
-
|
|
4159
|
-
interface RobinhoodOrderModifyRequest {
|
|
4160
|
-
'broker': RobinhoodOrderModifyRequestBrokerEnum;
|
|
4161
|
-
'order': Order5;
|
|
4162
|
-
}
|
|
4163
|
-
declare enum RobinhoodOrderModifyRequestBrokerEnum {
|
|
4164
|
-
Robinhood = "robinhood"
|
|
4165
|
-
}
|
|
4166
|
-
|
|
4167
|
-
/**
|
|
4168
|
-
* Finatic FastAPI Backend
|
|
4169
|
-
* FinaticAPI REST API
|
|
4170
|
-
*
|
|
4171
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4172
|
-
*
|
|
4173
|
-
*
|
|
4174
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4175
|
-
* https://openapi-generator.tech
|
|
4176
|
-
* Do not edit the class manually.
|
|
4177
|
-
*/
|
|
4178
|
-
|
|
4179
|
-
/**
|
|
4180
|
-
* Limit-order modification payload.
|
|
4181
|
-
*/
|
|
4182
|
-
interface TastyTradeLimitOrderModifyQueryParams {
|
|
4183
|
-
'accountNumber': number;
|
|
4184
|
-
'automated-source'?: boolean;
|
|
4185
|
-
'external-identifier'?: string | null;
|
|
4186
|
-
'partition-key'?: string | null;
|
|
4187
|
-
'preflight-id'?: string | null;
|
|
4188
|
-
'source'?: string | null;
|
|
4189
|
-
/**
|
|
4190
|
-
* Broker-assigned order identifier
|
|
4191
|
-
*/
|
|
4192
|
-
'orderId': string;
|
|
4193
|
-
'orderType': TastyTradeLimitOrderModifyQueryParamsOrderTypeEnum;
|
|
4194
|
-
'assetType': TastyTradeLimitOrderModifyQueryParamsAssetTypeEnum;
|
|
4195
|
-
'timeInForce': Timeinforce1;
|
|
4196
|
-
'isAutomated'?: boolean | null;
|
|
4197
|
-
'price': number;
|
|
4198
|
-
}
|
|
4199
|
-
declare enum TastyTradeLimitOrderModifyQueryParamsOrderTypeEnum {
|
|
4200
|
-
Limit = "limit"
|
|
4201
|
-
}
|
|
4202
|
-
declare enum TastyTradeLimitOrderModifyQueryParamsAssetTypeEnum {
|
|
4203
|
-
Equity = "equity",
|
|
4204
|
-
EquityOption = "equity_option",
|
|
4205
|
-
Crypto = "crypto",
|
|
4206
|
-
Forex = "forex"
|
|
4207
|
-
}
|
|
4208
|
-
|
|
4209
|
-
/**
|
|
4210
|
-
* Finatic FastAPI Backend
|
|
4211
|
-
* FinaticAPI REST API
|
|
4212
|
-
*
|
|
4213
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4214
|
-
*
|
|
4215
|
-
*
|
|
4216
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4217
|
-
* https://openapi-generator.tech
|
|
4218
|
-
* Do not edit the class manually.
|
|
4219
|
-
*/
|
|
4220
|
-
|
|
4221
|
-
/**
|
|
4222
|
-
* Market-order modification payload.
|
|
4223
|
-
*/
|
|
4224
|
-
interface TastyTradeMarketOrderModifyQueryParams {
|
|
4225
|
-
'accountNumber': number;
|
|
4226
|
-
'automated-source'?: boolean;
|
|
4227
|
-
'external-identifier'?: string | null;
|
|
4228
|
-
'partition-key'?: string | null;
|
|
4229
|
-
'preflight-id'?: string | null;
|
|
4230
|
-
'source'?: string | null;
|
|
4231
|
-
/**
|
|
4232
|
-
* Broker-assigned order identifier
|
|
4233
|
-
*/
|
|
4234
|
-
'orderId': string;
|
|
4235
|
-
'orderType': TastyTradeMarketOrderModifyQueryParamsOrderTypeEnum;
|
|
4236
|
-
'assetType': TastyTradeMarketOrderModifyQueryParamsAssetTypeEnum;
|
|
4237
|
-
'timeInForce': Timeinforce1;
|
|
4238
|
-
'isAutomated'?: boolean | null;
|
|
4239
|
-
}
|
|
4240
|
-
declare enum TastyTradeMarketOrderModifyQueryParamsOrderTypeEnum {
|
|
4241
|
-
Market = "market"
|
|
4242
|
-
}
|
|
4243
|
-
declare enum TastyTradeMarketOrderModifyQueryParamsAssetTypeEnum {
|
|
4244
|
-
Equity = "equity",
|
|
4245
|
-
EquityOption = "equity_option",
|
|
4246
|
-
Crypto = "crypto",
|
|
4247
|
-
Forex = "forex"
|
|
4248
|
-
}
|
|
4249
|
-
|
|
4250
|
-
/**
|
|
4251
|
-
* Finatic FastAPI Backend
|
|
4252
|
-
* FinaticAPI REST API
|
|
4253
|
-
*
|
|
4254
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4255
|
-
*
|
|
4256
|
-
*
|
|
4257
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4258
|
-
* https://openapi-generator.tech
|
|
4259
|
-
* Do not edit the class manually.
|
|
4260
|
-
*/
|
|
4261
|
-
|
|
4262
|
-
/**
|
|
4263
|
-
* Stop-order modification payload.
|
|
4264
|
-
*/
|
|
4265
|
-
interface TastyTradeStopOrderModifyQueryParams {
|
|
4266
|
-
'accountNumber': number;
|
|
4267
|
-
'automated-source'?: boolean;
|
|
4268
|
-
'external-identifier'?: string | null;
|
|
4269
|
-
'partition-key'?: string | null;
|
|
4270
|
-
'preflight-id'?: string | null;
|
|
4271
|
-
'source'?: string | null;
|
|
4272
|
-
/**
|
|
4273
|
-
* Broker-assigned order identifier
|
|
4274
|
-
*/
|
|
4275
|
-
'orderId': string;
|
|
4276
|
-
'orderType': TastyTradeStopOrderModifyQueryParamsOrderTypeEnum;
|
|
4277
|
-
'assetType': TastyTradeStopOrderModifyQueryParamsAssetTypeEnum;
|
|
4278
|
-
'timeInForce': Timeinforce1;
|
|
4279
|
-
'isAutomated'?: boolean | null;
|
|
4280
|
-
'stopPrice': number;
|
|
4281
|
-
}
|
|
4282
|
-
declare enum TastyTradeStopOrderModifyQueryParamsOrderTypeEnum {
|
|
4283
|
-
Stop = "stop"
|
|
4284
|
-
}
|
|
4285
|
-
declare enum TastyTradeStopOrderModifyQueryParamsAssetTypeEnum {
|
|
4286
|
-
Equity = "equity",
|
|
4287
|
-
EquityOption = "equity_option",
|
|
4288
|
-
Crypto = "crypto",
|
|
4289
|
-
Forex = "forex"
|
|
4290
|
-
}
|
|
4291
|
-
|
|
4292
|
-
/**
|
|
4293
|
-
* Finatic FastAPI Backend
|
|
4294
|
-
* FinaticAPI REST API
|
|
4295
|
-
*
|
|
4296
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4297
|
-
*
|
|
4298
|
-
*
|
|
4299
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4300
|
-
* https://openapi-generator.tech
|
|
4301
|
-
* Do not edit the class manually.
|
|
4302
|
-
*/
|
|
4303
|
-
|
|
4304
|
-
/**
|
|
4305
|
-
* Trailing-stop modification payload.
|
|
4306
|
-
*/
|
|
4307
|
-
interface TastyTradeTrailingStopOrderModifyQueryParams {
|
|
4308
|
-
'accountNumber': number;
|
|
4309
|
-
'automated-source'?: boolean;
|
|
4310
|
-
'external-identifier'?: string | null;
|
|
4311
|
-
'partition-key'?: string | null;
|
|
4312
|
-
'preflight-id'?: string | null;
|
|
4313
|
-
'source'?: string | null;
|
|
4314
|
-
/**
|
|
4315
|
-
* Broker-assigned order identifier
|
|
4316
|
-
*/
|
|
4317
|
-
'orderId': string;
|
|
4318
|
-
'orderType': TastyTradeTrailingStopOrderModifyQueryParamsOrderTypeEnum;
|
|
4319
|
-
'assetType': TastyTradeTrailingStopOrderModifyQueryParamsAssetTypeEnum;
|
|
4320
|
-
'timeInForce': Timeinforce1;
|
|
4321
|
-
'isAutomated'?: boolean | null;
|
|
4322
|
-
'stopPrice': number;
|
|
4323
|
-
}
|
|
4324
|
-
declare enum TastyTradeTrailingStopOrderModifyQueryParamsOrderTypeEnum {
|
|
4325
|
-
TrailingStop = "trailing_stop"
|
|
4326
|
-
}
|
|
4327
|
-
declare enum TastyTradeTrailingStopOrderModifyQueryParamsAssetTypeEnum {
|
|
4328
|
-
Equity = "equity",
|
|
4329
|
-
EquityOption = "equity_option",
|
|
4330
|
-
Crypto = "crypto",
|
|
4331
|
-
Forex = "forex"
|
|
4332
|
-
}
|
|
4333
|
-
|
|
4334
|
-
/**
|
|
4335
|
-
* Finatic FastAPI Backend
|
|
4336
|
-
* FinaticAPI REST API
|
|
4337
|
-
*
|
|
4338
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4339
|
-
*
|
|
4340
|
-
*
|
|
4341
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4342
|
-
* https://openapi-generator.tech
|
|
4343
|
-
* Do not edit the class manually.
|
|
4344
|
-
*/
|
|
4345
|
-
|
|
4346
|
-
/**
|
|
4347
|
-
* @type Order4
|
|
4348
|
-
*/
|
|
4349
|
-
type Order4 = {
|
|
4350
|
-
orderType: 'limit';
|
|
4351
|
-
} & TastyTradeLimitOrderModifyQueryParams | {
|
|
4352
|
-
orderType: 'market';
|
|
4353
|
-
} & TastyTradeMarketOrderModifyQueryParams | {
|
|
4354
|
-
orderType: 'stop';
|
|
4355
|
-
} & TastyTradeStopOrderModifyQueryParams | {
|
|
4356
|
-
orderType: 'trailing_stop';
|
|
4357
|
-
} & TastyTradeTrailingStopOrderModifyQueryParams;
|
|
4358
|
-
|
|
4359
|
-
/**
|
|
4360
|
-
* Finatic FastAPI Backend
|
|
4361
|
-
* FinaticAPI REST API
|
|
4362
|
-
*
|
|
4363
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4364
|
-
*
|
|
4365
|
-
*
|
|
4366
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4367
|
-
* https://openapi-generator.tech
|
|
4368
|
-
* Do not edit the class manually.
|
|
4369
|
-
*/
|
|
4370
|
-
|
|
4371
|
-
interface TastyTradeOrderModifyRequest {
|
|
4372
|
-
'broker': TastyTradeOrderModifyRequestBrokerEnum;
|
|
4373
|
-
'order': Order4;
|
|
4374
|
-
}
|
|
4375
|
-
declare enum TastyTradeOrderModifyRequestBrokerEnum {
|
|
4376
|
-
TastyTrade = "tasty_trade"
|
|
4377
|
-
}
|
|
4378
|
-
|
|
4379
|
-
/**
|
|
4380
|
-
* Finatic FastAPI Backend
|
|
4381
|
-
* FinaticAPI REST API
|
|
4382
|
-
*
|
|
4383
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4384
|
-
*
|
|
4385
|
-
*
|
|
4386
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4387
|
-
* https://openapi-generator.tech
|
|
4388
|
-
* Do not edit the class manually.
|
|
4389
|
-
*/
|
|
4390
|
-
|
|
4391
|
-
/**
|
|
4392
|
-
* @type ModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest
|
|
4393
|
-
* Broker-specific parameters object for *modify order* operations
|
|
4394
|
-
*/
|
|
4395
|
-
type ModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest = {
|
|
4396
|
-
broker: 'ninja_trader';
|
|
4397
|
-
} & NinjaTraderOrderModifyRequest | {
|
|
4398
|
-
broker: 'robinhood';
|
|
4399
|
-
} & RobinhoodOrderModifyRequest | {
|
|
4400
|
-
broker: 'tasty_trade';
|
|
4401
|
-
} & TastyTradeOrderModifyRequest;
|
|
4402
|
-
|
|
4403
|
-
/**
|
|
4404
|
-
* Finatic FastAPI Backend
|
|
4405
|
-
* FinaticAPI REST API
|
|
4406
|
-
*
|
|
4407
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4408
|
-
*
|
|
4409
|
-
*
|
|
4410
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4411
|
-
* https://openapi-generator.tech
|
|
4412
|
-
* Do not edit the class manually.
|
|
4413
|
-
*/
|
|
4414
|
-
|
|
4415
|
-
/**
|
|
4416
|
-
* Parameters for a NinjaTrader limit order.
|
|
4417
|
-
*/
|
|
4418
|
-
interface NinjaTraderLimitOrderPlaceQueryParams {
|
|
4419
|
-
[key: string]: any;
|
|
4420
|
-
'accountSpec'?: string | null;
|
|
4421
|
-
'isAutomated'?: boolean;
|
|
4422
|
-
'activationTime'?: string | null;
|
|
4423
|
-
'text'?: string | null;
|
|
4424
|
-
'pegDifference'?: number | null;
|
|
4425
|
-
'accountNumber': Accountnumber;
|
|
4426
|
-
'orderType': NinjaTraderLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
4427
|
-
'assetType': NinjaTraderLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
4428
|
-
'action': NinjaTraderLimitOrderPlaceQueryParamsActionEnum;
|
|
4429
|
-
'timeInForce': Timeinforce1;
|
|
4430
|
-
'symbol': string;
|
|
4431
|
-
'orderQty': number;
|
|
4432
|
-
'price': number;
|
|
3847
|
+
/**
|
|
3848
|
+
* Core fields shared by every *modify order* operation. When used as the API request body (delta), all fields are optional and at least one must be present. Subclasses override with required discriminators for the full params union passed to the broker after merge.
|
|
3849
|
+
*/
|
|
3850
|
+
interface OrderModifyQueryParamsBase {
|
|
3851
|
+
[key: string]: any;
|
|
3852
|
+
'orderId'?: string | null;
|
|
3853
|
+
'orderType'?: OrderModifyQueryParamsBaseOrderTypeEnum | null;
|
|
3854
|
+
'assetType'?: OrderModifyQueryParamsBaseAssetTypeEnum | null;
|
|
3855
|
+
'timeInForce'?: Timeinforce2 | null;
|
|
3856
|
+
'isAutomated'?: boolean | null;
|
|
3857
|
+
'price'?: number | null;
|
|
3858
|
+
'stopPrice'?: number | null;
|
|
3859
|
+
'orderQty'?: number | null;
|
|
4433
3860
|
}
|
|
4434
|
-
declare enum
|
|
4435
|
-
|
|
3861
|
+
declare enum OrderModifyQueryParamsBaseOrderTypeEnum {
|
|
3862
|
+
Market = "market",
|
|
3863
|
+
Limit = "limit",
|
|
3864
|
+
Stop = "stop",
|
|
3865
|
+
TrailingStop = "trailing_stop"
|
|
4436
3866
|
}
|
|
4437
|
-
declare enum
|
|
3867
|
+
declare enum OrderModifyQueryParamsBaseAssetTypeEnum {
|
|
4438
3868
|
Equity = "equity",
|
|
4439
3869
|
EquityOption = "equity_option",
|
|
4440
3870
|
Crypto = "crypto",
|
|
4441
3871
|
Forex = "forex"
|
|
4442
3872
|
}
|
|
4443
|
-
declare enum NinjaTraderLimitOrderPlaceQueryParamsActionEnum {
|
|
4444
|
-
Buy = "buy",
|
|
4445
|
-
Sell = "sell"
|
|
4446
|
-
}
|
|
4447
3873
|
|
|
4448
3874
|
/**
|
|
4449
3875
|
* Finatic FastAPI Backend
|
|
@@ -4458,35 +3884,15 @@ declare enum NinjaTraderLimitOrderPlaceQueryParamsActionEnum {
|
|
|
4458
3884
|
*/
|
|
4459
3885
|
|
|
4460
3886
|
/**
|
|
4461
|
-
*
|
|
3887
|
+
* NinjaTrader modify-order request body (partial update). Attributes ---------- broker : Literal[\"ninja_trader\"] Discriminator; must be ``\"ninja_trader\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : OrderModifyQueryParamsBase Delta of fields to change; backend merges with existing order. Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
4462
3888
|
*/
|
|
4463
|
-
interface
|
|
4464
|
-
|
|
4465
|
-
'accountSpec'?: string | null;
|
|
4466
|
-
'isAutomated'?: boolean;
|
|
4467
|
-
'activationTime'?: string | null;
|
|
4468
|
-
'text'?: string | null;
|
|
4469
|
-
'pegDifference'?: number | null;
|
|
3889
|
+
interface NinjaTraderOrderModifyRequest {
|
|
3890
|
+
'broker': NinjaTraderOrderModifyRequestBrokerEnum;
|
|
4470
3891
|
'accountNumber': Accountnumber;
|
|
4471
|
-
'
|
|
4472
|
-
'assetType': NinjaTraderMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
4473
|
-
'action': NinjaTraderMarketOrderPlaceQueryParamsActionEnum;
|
|
4474
|
-
'timeInForce': Timeinforce1;
|
|
4475
|
-
'symbol': string;
|
|
4476
|
-
'orderQty': number;
|
|
4477
|
-
}
|
|
4478
|
-
declare enum NinjaTraderMarketOrderPlaceQueryParamsOrderTypeEnum {
|
|
4479
|
-
Market = "market"
|
|
3892
|
+
'order': OrderModifyQueryParamsBase;
|
|
4480
3893
|
}
|
|
4481
|
-
declare enum
|
|
4482
|
-
|
|
4483
|
-
EquityOption = "equity_option",
|
|
4484
|
-
Crypto = "crypto",
|
|
4485
|
-
Forex = "forex"
|
|
4486
|
-
}
|
|
4487
|
-
declare enum NinjaTraderMarketOrderPlaceQueryParamsActionEnum {
|
|
4488
|
-
Buy = "buy",
|
|
4489
|
-
Sell = "sell"
|
|
3894
|
+
declare enum NinjaTraderOrderModifyRequestBrokerEnum {
|
|
3895
|
+
NinjaTrader = "ninja_trader"
|
|
4490
3896
|
}
|
|
4491
3897
|
|
|
4492
3898
|
/**
|
|
@@ -4511,7 +3917,6 @@ interface NinjaTraderStopOrderPlaceQueryParams {
|
|
|
4511
3917
|
'activationTime'?: string | null;
|
|
4512
3918
|
'text'?: string | null;
|
|
4513
3919
|
'pegDifference'?: number | null;
|
|
4514
|
-
'accountNumber': Accountnumber;
|
|
4515
3920
|
'orderType': NinjaTraderStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
4516
3921
|
'assetType': NinjaTraderStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
4517
3922
|
'action': NinjaTraderStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -4556,7 +3961,6 @@ interface NinjaTraderTrailingStopOrderPlaceQueryParams {
|
|
|
4556
3961
|
'activationTime'?: string | null;
|
|
4557
3962
|
'text'?: string | null;
|
|
4558
3963
|
'pegDifference'?: number | null;
|
|
4559
|
-
'accountNumber': Accountnumber;
|
|
4560
3964
|
'orderType': NinjaTraderTrailingStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
4561
3965
|
'assetType': NinjaTraderTrailingStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
4562
3966
|
'action': NinjaTraderTrailingStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -4617,10 +4021,11 @@ type Order = {
|
|
|
4617
4021
|
*/
|
|
4618
4022
|
|
|
4619
4023
|
/**
|
|
4620
|
-
*
|
|
4024
|
+
* NinjaTrader place-order request body. Attributes ---------- broker : Literal[\"ninja_trader\"] Discriminator; must be ``\"ninja_trader\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : NinjaTraderOrderPlaceQueryParamsUnion NinjaTrader-specific order parameters (equity, etc.; may include accountSpec, isAutomated). Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``. JSON schema examples are attached in model_config for OpenAPI docs.
|
|
4621
4025
|
*/
|
|
4622
4026
|
interface NinjaTraderOrderPlaceRequest {
|
|
4623
4027
|
'broker': NinjaTraderOrderPlaceRequestBrokerEnum;
|
|
4028
|
+
'accountNumber': Accountnumber;
|
|
4624
4029
|
'order': Order;
|
|
4625
4030
|
}
|
|
4626
4031
|
declare enum NinjaTraderOrderPlaceRequestBrokerEnum {
|
|
@@ -4668,7 +4073,6 @@ declare enum RobinhoodOptionSpreadLegPositionEffectEnum {
|
|
|
4668
4073
|
*/
|
|
4669
4074
|
|
|
4670
4075
|
interface Order1 {
|
|
4671
|
-
'accountNumber': Accountnumber;
|
|
4672
4076
|
'orderType': Order1OrderTypeEnum;
|
|
4673
4077
|
'assetType'?: Order1AssetTypeEnum;
|
|
4674
4078
|
'action': Order1ActionEnum;
|
|
@@ -4752,7 +4156,6 @@ declare enum Order1AmountInEnum {
|
|
|
4752
4156
|
*/
|
|
4753
4157
|
interface RobinhoodEquityLimitOrderPlaceQueryParams {
|
|
4754
4158
|
[key: string]: any;
|
|
4755
|
-
'accountNumber': Accountnumber;
|
|
4756
4159
|
'orderType': RobinhoodEquityLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
4757
4160
|
'assetType'?: RobinhoodEquityLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
4758
4161
|
'action': RobinhoodEquityLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -4802,7 +4205,6 @@ declare enum RobinhoodEquityLimitOrderPlaceQueryParamsMarketHoursEnum {
|
|
|
4802
4205
|
*/
|
|
4803
4206
|
interface RobinhoodEquityMarketOrderPlaceQueryParams {
|
|
4804
4207
|
[key: string]: any;
|
|
4805
|
-
'accountNumber': Accountnumber;
|
|
4806
4208
|
'orderType': RobinhoodEquityMarketOrderPlaceQueryParamsOrderTypeEnum;
|
|
4807
4209
|
'assetType'?: RobinhoodEquityMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
4808
4210
|
'action': RobinhoodEquityMarketOrderPlaceQueryParamsActionEnum;
|
|
@@ -4851,7 +4253,6 @@ declare enum RobinhoodEquityMarketOrderPlaceQueryParamsMarketHoursEnum {
|
|
|
4851
4253
|
*/
|
|
4852
4254
|
interface RobinhoodEquityStopLimitOrderPlaceQueryParams {
|
|
4853
4255
|
[key: string]: any;
|
|
4854
|
-
'accountNumber': Accountnumber;
|
|
4855
4256
|
'orderType': RobinhoodEquityStopLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
4856
4257
|
'assetType'?: RobinhoodEquityStopLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
4857
4258
|
'action': RobinhoodEquityStopLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -4902,7 +4303,6 @@ declare enum RobinhoodEquityStopLimitOrderPlaceQueryParamsMarketHoursEnum {
|
|
|
4902
4303
|
*/
|
|
4903
4304
|
interface RobinhoodEquityStopOrderPlaceQueryParams {
|
|
4904
4305
|
[key: string]: any;
|
|
4905
|
-
'accountNumber': Accountnumber;
|
|
4906
4306
|
'orderType': RobinhoodEquityStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
4907
4307
|
'assetType'?: RobinhoodEquityStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
4908
4308
|
'action': RobinhoodEquityStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -4952,7 +4352,6 @@ declare enum RobinhoodEquityStopOrderPlaceQueryParamsMarketHoursEnum {
|
|
|
4952
4352
|
*/
|
|
4953
4353
|
interface RobinhoodEquityTrailingStopOrderPlaceQueryParams {
|
|
4954
4354
|
[key: string]: any;
|
|
4955
|
-
'accountNumber': Accountnumber;
|
|
4956
4355
|
'orderType': RobinhoodEquityTrailingStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
4957
4356
|
'assetType'?: RobinhoodEquityTrailingStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
4958
4357
|
'action': RobinhoodEquityTrailingStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5029,7 +4428,6 @@ type Order1AnyOf = {
|
|
|
5029
4428
|
*/
|
|
5030
4429
|
interface RobinhoodOptionLimitOrderPlaceQueryParams {
|
|
5031
4430
|
[key: string]: any;
|
|
5032
|
-
'accountNumber': Accountnumber;
|
|
5033
4431
|
'orderType': RobinhoodOptionLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
5034
4432
|
'assetType'?: RobinhoodOptionLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
5035
4433
|
'action': RobinhoodOptionLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -5090,7 +4488,6 @@ declare enum RobinhoodOptionLimitOrderPlaceQueryParamsOptionTypeEnum {
|
|
|
5090
4488
|
*/
|
|
5091
4489
|
interface RobinhoodOptionMarketOrderPlaceQueryParams {
|
|
5092
4490
|
[key: string]: any;
|
|
5093
|
-
'accountNumber': Accountnumber;
|
|
5094
4491
|
'orderType': RobinhoodOptionMarketOrderPlaceQueryParamsOrderTypeEnum;
|
|
5095
4492
|
'assetType'?: RobinhoodOptionMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
5096
4493
|
'action': RobinhoodOptionMarketOrderPlaceQueryParamsActionEnum;
|
|
@@ -5150,7 +4547,6 @@ declare enum RobinhoodOptionMarketOrderPlaceQueryParamsOptionTypeEnum {
|
|
|
5150
4547
|
*/
|
|
5151
4548
|
interface RobinhoodOptionStopLimitOrderPlaceQueryParams {
|
|
5152
4549
|
[key: string]: any;
|
|
5153
|
-
'accountNumber': Accountnumber;
|
|
5154
4550
|
'orderType': RobinhoodOptionStopLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
5155
4551
|
'assetType'?: RobinhoodOptionStopLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
5156
4552
|
'action': RobinhoodOptionStopLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -5212,7 +4608,6 @@ declare enum RobinhoodOptionStopLimitOrderPlaceQueryParamsOptionTypeEnum {
|
|
|
5212
4608
|
*/
|
|
5213
4609
|
interface RobinhoodOptionStopOrderPlaceQueryParams {
|
|
5214
4610
|
[key: string]: any;
|
|
5215
|
-
'accountNumber': Accountnumber;
|
|
5216
4611
|
'orderType': RobinhoodOptionStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5217
4612
|
'assetType'?: RobinhoodOptionStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5218
4613
|
'action': RobinhoodOptionStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5273,7 +4668,6 @@ declare enum RobinhoodOptionStopOrderPlaceQueryParamsOptionTypeEnum {
|
|
|
5273
4668
|
*/
|
|
5274
4669
|
interface RobinhoodOptionTrailingStopOrderPlaceQueryParams {
|
|
5275
4670
|
[key: string]: any;
|
|
5276
|
-
'accountNumber': Accountnumber;
|
|
5277
4671
|
'orderType': RobinhoodOptionTrailingStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5278
4672
|
'assetType'?: RobinhoodOptionTrailingStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5279
4673
|
'action': RobinhoodOptionTrailingStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5361,7 +4755,6 @@ type Order1AnyOf1 = {
|
|
|
5361
4755
|
*/
|
|
5362
4756
|
interface RobinhoodCryptoLimitOrderPlaceQueryParams {
|
|
5363
4757
|
[key: string]: any;
|
|
5364
|
-
'accountNumber': Accountnumber;
|
|
5365
4758
|
'orderType': RobinhoodCryptoLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
5366
4759
|
'assetType'?: RobinhoodCryptoLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
5367
4760
|
'action': RobinhoodCryptoLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -5406,7 +4799,6 @@ declare enum RobinhoodCryptoLimitOrderPlaceQueryParamsAmountInEnum {
|
|
|
5406
4799
|
*/
|
|
5407
4800
|
interface RobinhoodCryptoMarketOrderPlaceQueryParams {
|
|
5408
4801
|
[key: string]: any;
|
|
5409
|
-
'accountNumber': Accountnumber;
|
|
5410
4802
|
'orderType': RobinhoodCryptoMarketOrderPlaceQueryParamsOrderTypeEnum;
|
|
5411
4803
|
'assetType'?: RobinhoodCryptoMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
5412
4804
|
'action': RobinhoodCryptoMarketOrderPlaceQueryParamsActionEnum;
|
|
@@ -5450,7 +4842,6 @@ declare enum RobinhoodCryptoMarketOrderPlaceQueryParamsAmountInEnum {
|
|
|
5450
4842
|
*/
|
|
5451
4843
|
interface RobinhoodCryptoStopLimitOrderPlaceQueryParams {
|
|
5452
4844
|
[key: string]: any;
|
|
5453
|
-
'accountNumber': Accountnumber;
|
|
5454
4845
|
'orderType': RobinhoodCryptoStopLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
5455
4846
|
'assetType'?: RobinhoodCryptoStopLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
5456
4847
|
'action': RobinhoodCryptoStopLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -5496,7 +4887,6 @@ declare enum RobinhoodCryptoStopLimitOrderPlaceQueryParamsAmountInEnum {
|
|
|
5496
4887
|
*/
|
|
5497
4888
|
interface RobinhoodCryptoStopOrderPlaceQueryParams {
|
|
5498
4889
|
[key: string]: any;
|
|
5499
|
-
'accountNumber': Accountnumber;
|
|
5500
4890
|
'orderType': RobinhoodCryptoStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5501
4891
|
'assetType'?: RobinhoodCryptoStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5502
4892
|
'action': RobinhoodCryptoStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5541,7 +4931,6 @@ declare enum RobinhoodCryptoStopOrderPlaceQueryParamsAmountInEnum {
|
|
|
5541
4931
|
*/
|
|
5542
4932
|
interface RobinhoodCryptoTrailingStopOrderPlaceQueryParams {
|
|
5543
4933
|
[key: string]: any;
|
|
5544
|
-
'accountNumber': Accountnumber;
|
|
5545
4934
|
'orderType': RobinhoodCryptoTrailingStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5546
4935
|
'assetType'?: RobinhoodCryptoTrailingStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5547
4936
|
'action': RobinhoodCryptoTrailingStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5621,7 +5010,6 @@ interface TastyTradeLimitOrderPlaceQueryParams {
|
|
|
5621
5010
|
'source'?: string | null;
|
|
5622
5011
|
'value-effect'?: TastyTradeLimitOrderPlaceQueryParamsValueEffectEnum | null;
|
|
5623
5012
|
'legs'?: Array<object> | null;
|
|
5624
|
-
'accountNumber': Accountnumber;
|
|
5625
5013
|
'orderType': TastyTradeLimitOrderPlaceQueryParamsOrderTypeEnum;
|
|
5626
5014
|
'assetType': TastyTradeLimitOrderPlaceQueryParamsAssetTypeEnum;
|
|
5627
5015
|
'action': TastyTradeLimitOrderPlaceQueryParamsActionEnum;
|
|
@@ -5677,7 +5065,6 @@ interface TastyTradeMarketOrderPlaceQueryParams {
|
|
|
5677
5065
|
'source'?: string | null;
|
|
5678
5066
|
'value-effect'?: TastyTradeMarketOrderPlaceQueryParamsValueEffectEnum | null;
|
|
5679
5067
|
'legs'?: Array<object> | null;
|
|
5680
|
-
'accountNumber': Accountnumber;
|
|
5681
5068
|
'orderType': TastyTradeMarketOrderPlaceQueryParamsOrderTypeEnum;
|
|
5682
5069
|
'assetType': TastyTradeMarketOrderPlaceQueryParamsAssetTypeEnum;
|
|
5683
5070
|
'action': TastyTradeMarketOrderPlaceQueryParamsActionEnum;
|
|
@@ -5732,7 +5119,6 @@ interface TastyTradeStopOrderPlaceQueryParams {
|
|
|
5732
5119
|
'source'?: string | null;
|
|
5733
5120
|
'value-effect'?: TastyTradeStopOrderPlaceQueryParamsValueEffectEnum | null;
|
|
5734
5121
|
'legs'?: Array<object> | null;
|
|
5735
|
-
'accountNumber': Accountnumber;
|
|
5736
5122
|
'orderType': TastyTradeStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5737
5123
|
'assetType': TastyTradeStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5738
5124
|
'action': TastyTradeStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5788,7 +5174,6 @@ interface TastyTradeTrailingStopOrderPlaceQueryParams {
|
|
|
5788
5174
|
'source'?: string | null;
|
|
5789
5175
|
'value-effect'?: TastyTradeTrailingStopOrderPlaceQueryParamsValueEffectEnum | null;
|
|
5790
5176
|
'legs'?: Array<object> | null;
|
|
5791
|
-
'accountNumber': Accountnumber;
|
|
5792
5177
|
'orderType': TastyTradeTrailingStopOrderPlaceQueryParamsOrderTypeEnum;
|
|
5793
5178
|
'assetType': TastyTradeTrailingStopOrderPlaceQueryParamsAssetTypeEnum;
|
|
5794
5179
|
'action': TastyTradeTrailingStopOrderPlaceQueryParamsActionEnum;
|
|
@@ -5857,10 +5242,35 @@ type Order2 = {
|
|
|
5857
5242
|
*/
|
|
5858
5243
|
|
|
5859
5244
|
/**
|
|
5860
|
-
*
|
|
5245
|
+
* Modify request with top-level broker, account_number, and partial order.
|
|
5246
|
+
*/
|
|
5247
|
+
interface OrderRequest {
|
|
5248
|
+
'broker': OrderRequestBrokerEnum;
|
|
5249
|
+
'accountNumber': Accountnumber;
|
|
5250
|
+
'order': OrderModifyQueryParamsBase;
|
|
5251
|
+
}
|
|
5252
|
+
declare enum OrderRequestBrokerEnum {
|
|
5253
|
+
Robinhood = "robinhood"
|
|
5254
|
+
}
|
|
5255
|
+
|
|
5256
|
+
/**
|
|
5257
|
+
* Finatic FastAPI Backend
|
|
5258
|
+
* FinaticAPI REST API
|
|
5259
|
+
*
|
|
5260
|
+
* The version of the OpenAPI document: 1.0.0
|
|
5261
|
+
*
|
|
5262
|
+
*
|
|
5263
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5264
|
+
* https://openapi-generator.tech
|
|
5265
|
+
* Do not edit the class manually.
|
|
5266
|
+
*/
|
|
5267
|
+
|
|
5268
|
+
/**
|
|
5269
|
+
* Robinhood place-order request body. Attributes ---------- broker : Literal[\"robinhood\"] Discriminator; must be ``\"robinhood\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : RobinhoodOrderPlaceQueryParamsUnion Robinhood-specific order parameters (equity, equity_option, or crypto wire schema). Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``. JSON schema examples are attached in model_config for OpenAPI docs.
|
|
5861
5270
|
*/
|
|
5862
5271
|
interface RobinhoodOrderPlaceRequest {
|
|
5863
5272
|
'broker': RobinhoodOrderPlaceRequestBrokerEnum;
|
|
5273
|
+
'accountNumber': Accountnumber;
|
|
5864
5274
|
'order': Order1;
|
|
5865
5275
|
}
|
|
5866
5276
|
declare enum RobinhoodOrderPlaceRequestBrokerEnum {
|
|
@@ -5880,10 +5290,11 @@ declare enum RobinhoodOrderPlaceRequestBrokerEnum {
|
|
|
5880
5290
|
*/
|
|
5881
5291
|
|
|
5882
5292
|
/**
|
|
5883
|
-
*
|
|
5293
|
+
* TastyTrade place-order request body. Attributes ---------- broker : Literal[\"tasty_trade\"] Discriminator; must be ``\"tasty_trade\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : TastyTradeOrderPlaceQueryParamsUnion TastyTrade-specific order parameters (equity, options, etc.). Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
5884
5294
|
*/
|
|
5885
5295
|
interface TastyTradeOrderPlaceRequest {
|
|
5886
5296
|
'broker': TastyTradeOrderPlaceRequestBrokerEnum;
|
|
5297
|
+
'accountNumber': Accountnumber;
|
|
5887
5298
|
'order': Order2;
|
|
5888
5299
|
}
|
|
5889
5300
|
declare enum TastyTradeOrderPlaceRequestBrokerEnum {
|
|
@@ -5914,6 +5325,30 @@ type PlaceOrderApiBetaBrokersOrdersPostRequest = {
|
|
|
5914
5325
|
broker: 'tasty_trade';
|
|
5915
5326
|
} & TastyTradeOrderPlaceRequest;
|
|
5916
5327
|
|
|
5328
|
+
/**
|
|
5329
|
+
* Finatic FastAPI Backend
|
|
5330
|
+
* FinaticAPI REST API
|
|
5331
|
+
*
|
|
5332
|
+
* The version of the OpenAPI document: 1.0.0
|
|
5333
|
+
*
|
|
5334
|
+
*
|
|
5335
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5336
|
+
* https://openapi-generator.tech
|
|
5337
|
+
* Do not edit the class manually.
|
|
5338
|
+
*/
|
|
5339
|
+
|
|
5340
|
+
/**
|
|
5341
|
+
* Robinhood modify-order request body (partial update). Attributes ---------- broker : Literal[\"robinhood\"] Discriminator; must be ``\"robinhood\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : OrderModifyQueryParamsBase Delta of fields to change; backend merges with existing order. Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
5342
|
+
*/
|
|
5343
|
+
interface RobinhoodOrderModifyRequest {
|
|
5344
|
+
'broker': RobinhoodOrderModifyRequestBrokerEnum;
|
|
5345
|
+
'accountNumber': Accountnumber;
|
|
5346
|
+
'order': OrderModifyQueryParamsBase;
|
|
5347
|
+
}
|
|
5348
|
+
declare enum RobinhoodOrderModifyRequestBrokerEnum {
|
|
5349
|
+
Robinhood = "robinhood"
|
|
5350
|
+
}
|
|
5351
|
+
|
|
5917
5352
|
/**
|
|
5918
5353
|
* Finatic FastAPI Backend
|
|
5919
5354
|
* FinaticAPI REST API
|
|
@@ -5932,12 +5367,63 @@ interface SessionStartRequest {
|
|
|
5932
5367
|
'user_id'?: string | null;
|
|
5933
5368
|
}
|
|
5934
5369
|
|
|
5370
|
+
/**
|
|
5371
|
+
* Finatic FastAPI Backend
|
|
5372
|
+
* FinaticAPI REST API
|
|
5373
|
+
*
|
|
5374
|
+
* The version of the OpenAPI document: 1.0.0
|
|
5375
|
+
*
|
|
5376
|
+
*
|
|
5377
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5378
|
+
* https://openapi-generator.tech
|
|
5379
|
+
* Do not edit the class manually.
|
|
5380
|
+
*/
|
|
5381
|
+
|
|
5382
|
+
/**
|
|
5383
|
+
* TastyTrade modify-order request body (partial update). Attributes ---------- broker : Literal[\"tasty_trade\"] Discriminator; must be ``\"tasty_trade\"``. account_number : str | int Broker-provided account number (top-level). Serialized as ``accountNumber``. order : OrderModifyQueryParamsBase Delta of fields to change; backend merges with existing order. Notes ----- Uses ``extra=\"forbid\"`` and ``populate_by_name=True``.
|
|
5384
|
+
*/
|
|
5385
|
+
interface TastyTradeOrderModifyRequest {
|
|
5386
|
+
'broker': TastyTradeOrderModifyRequestBrokerEnum;
|
|
5387
|
+
'accountNumber': Accountnumber;
|
|
5388
|
+
'order': OrderModifyQueryParamsBase;
|
|
5389
|
+
}
|
|
5390
|
+
declare enum TastyTradeOrderModifyRequestBrokerEnum {
|
|
5391
|
+
TastyTrade = "tasty_trade"
|
|
5392
|
+
}
|
|
5393
|
+
|
|
5394
|
+
/**
|
|
5395
|
+
* Finatic FastAPI Backend
|
|
5396
|
+
* FinaticAPI REST API
|
|
5397
|
+
*
|
|
5398
|
+
* The version of the OpenAPI document: 1.0.0
|
|
5399
|
+
*
|
|
5400
|
+
*
|
|
5401
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5402
|
+
* https://openapi-generator.tech
|
|
5403
|
+
* Do not edit the class manually.
|
|
5404
|
+
*/
|
|
5405
|
+
|
|
5406
|
+
/**
|
|
5407
|
+
* @type Timeinforce2AnyOf
|
|
5408
|
+
*/
|
|
5409
|
+
type Timeinforce2AnyOf = {
|
|
5410
|
+
timeInForce: 'day';
|
|
5411
|
+
} & DayTIF | {
|
|
5412
|
+
timeInForce: 'fok';
|
|
5413
|
+
} & FOKTIF | {
|
|
5414
|
+
timeInForce: 'gtc';
|
|
5415
|
+
} & GTCTIF | {
|
|
5416
|
+
timeInForce: 'gtd';
|
|
5417
|
+
} & GTDTIF | {
|
|
5418
|
+
timeInForce: 'ioc';
|
|
5419
|
+
} & IOCTIF;
|
|
5420
|
+
|
|
5935
5421
|
/**
|
|
5936
5422
|
* BrokersApi - interface
|
|
5937
5423
|
*/
|
|
5938
5424
|
interface BrokersApiInterface {
|
|
5939
5425
|
/**
|
|
5940
|
-
* Cancel an existing order.
|
|
5426
|
+
* Cancel an existing order. Request must include broker and account_number in the body; order_id is in the path. Connection is resolved by broker and account_number.
|
|
5941
5427
|
* @summary Cancel Order
|
|
5942
5428
|
* @param {BrokersApiCancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest} requestParameters Request parameters.
|
|
5943
5429
|
* @param {*} [options] Override http request option.
|
|
@@ -6047,7 +5533,7 @@ interface BrokersApiInterface {
|
|
|
6047
5533
|
*/
|
|
6048
5534
|
listBrokerConnectionsApiBetaBrokersConnectionsGet(options?: RawAxiosRequestConfig): AxiosPromise<FinaticResponseListUserBrokerConnectionWithPermissions>;
|
|
6049
5535
|
/**
|
|
6050
|
-
* Modify an existing order.
|
|
5536
|
+
* Modify an existing order. Request must include broker and account_number in the body; order_id is in the path. Connection is resolved by broker and account_number. The order object is a partial update.
|
|
6051
5537
|
* @summary Modify Order
|
|
6052
5538
|
* @param {BrokersApiModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest} requestParameters Request parameters.
|
|
6053
5539
|
* @param {*} [options] Override http request option.
|
|
@@ -6055,7 +5541,7 @@ interface BrokersApiInterface {
|
|
|
6055
5541
|
*/
|
|
6056
5542
|
modifyOrderApiBetaBrokersOrdersOrderIdPatch(requestParameters: BrokersApiModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest, options?: RawAxiosRequestConfig): AxiosPromise<FinaticResponseOrderActionResult>;
|
|
6057
5543
|
/**
|
|
6058
|
-
* Place a new order through the specified broker. Creates an order using the broker connection associated with your account. The order
|
|
5544
|
+
* Place a new order through the specified broker. Creates an order using the broker connection associated with your account. Request uses top-level broker, account_number, and order. The order object includes common fields (symbol, quantity, order type, etc.) shared across brokers plus broker-specific fields—see the broker-specific tabs for details.
|
|
6059
5545
|
* @summary Place Order
|
|
6060
5546
|
* @param {BrokersApiPlaceOrderApiBetaBrokersOrdersPostRequest} requestParameters Request parameters.
|
|
6061
5547
|
* @param {*} [options] Override http request option.
|
|
@@ -6068,9 +5554,10 @@ interface BrokersApiInterface {
|
|
|
6068
5554
|
*/
|
|
6069
5555
|
interface BrokersApiCancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest {
|
|
6070
5556
|
/**
|
|
6071
|
-
*
|
|
5557
|
+
* Broker-provided order ID to cancel
|
|
6072
5558
|
*/
|
|
6073
5559
|
readonly orderId: string;
|
|
5560
|
+
readonly cancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest?: CancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest | null;
|
|
6074
5561
|
}
|
|
6075
5562
|
/**
|
|
6076
5563
|
* Request parameters for disconnectCompanyFromBrokerApiBetaBrokersDisconnectCompanyConnectionIdDelete operation in BrokersApi.
|
|
@@ -6444,18 +5931,14 @@ interface BrokersApiGetTransactionsApiBetaBrokersDataTransactionsGetRequest {
|
|
|
6444
5931
|
*/
|
|
6445
5932
|
interface BrokersApiModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest {
|
|
6446
5933
|
/**
|
|
6447
|
-
*
|
|
5934
|
+
* Broker-provided order ID to modify
|
|
6448
5935
|
*/
|
|
6449
5936
|
readonly orderId: string;
|
|
6450
|
-
|
|
6451
|
-
* Account number owning the order
|
|
6452
|
-
*/
|
|
6453
|
-
readonly accountNumber?: string | null;
|
|
5937
|
+
readonly orderRequest: OrderRequest;
|
|
6454
5938
|
/**
|
|
6455
5939
|
* Temporary bypass for testing: specify connection ID directly
|
|
6456
5940
|
*/
|
|
6457
5941
|
readonly connectionId?: string | null;
|
|
6458
|
-
readonly modifyOrderApiBetaBrokersOrdersOrderIdPatchRequest?: ModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest | null;
|
|
6459
5942
|
}
|
|
6460
5943
|
/**
|
|
6461
5944
|
* Request parameters for placeOrderApiBetaBrokersOrdersPost operation in BrokersApi.
|
|
@@ -6472,7 +5955,7 @@ interface BrokersApiPlaceOrderApiBetaBrokersOrdersPostRequest {
|
|
|
6472
5955
|
*/
|
|
6473
5956
|
declare class BrokersApi extends BaseAPI implements BrokersApiInterface {
|
|
6474
5957
|
/**
|
|
6475
|
-
* Cancel an existing order.
|
|
5958
|
+
* Cancel an existing order. Request must include broker and account_number in the body; order_id is in the path. Connection is resolved by broker and account_number.
|
|
6476
5959
|
* @summary Cancel Order
|
|
6477
5960
|
* @param {BrokersApiCancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest} requestParameters Request parameters.
|
|
6478
5961
|
* @param {*} [options] Override http request option.
|
|
@@ -6582,7 +6065,7 @@ declare class BrokersApi extends BaseAPI implements BrokersApiInterface {
|
|
|
6582
6065
|
*/
|
|
6583
6066
|
listBrokerConnectionsApiBetaBrokersConnectionsGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<FinaticResponseListUserBrokerConnectionWithPermissions, any, {}>>;
|
|
6584
6067
|
/**
|
|
6585
|
-
* Modify an existing order.
|
|
6068
|
+
* Modify an existing order. Request must include broker and account_number in the body; order_id is in the path. Connection is resolved by broker and account_number. The order object is a partial update.
|
|
6586
6069
|
* @summary Modify Order
|
|
6587
6070
|
* @param {BrokersApiModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest} requestParameters Request parameters.
|
|
6588
6071
|
* @param {*} [options] Override http request option.
|
|
@@ -6590,7 +6073,7 @@ declare class BrokersApi extends BaseAPI implements BrokersApiInterface {
|
|
|
6590
6073
|
*/
|
|
6591
6074
|
modifyOrderApiBetaBrokersOrdersOrderIdPatch(requestParameters: BrokersApiModifyOrderApiBetaBrokersOrdersOrderIdPatchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<FinaticResponseOrderActionResult, any, {}>>;
|
|
6592
6075
|
/**
|
|
6593
|
-
* Place a new order through the specified broker. Creates an order using the broker connection associated with your account. The order
|
|
6076
|
+
* Place a new order through the specified broker. Creates an order using the broker connection associated with your account. Request uses top-level broker, account_number, and order. The order object includes common fields (symbol, quantity, order type, etc.) shared across brokers plus broker-specific fields—see the broker-specific tabs for details.
|
|
6594
6077
|
* @summary Place Order
|
|
6595
6078
|
* @param {BrokersApiPlaceOrderApiBetaBrokersOrdersPostRequest} requestParameters Request parameters.
|
|
6596
6079
|
* @param {*} [options] Override http request option.
|
|
@@ -7100,33 +6583,43 @@ interface PlaceOrderParams {
|
|
|
7100
6583
|
/** Order quantity */
|
|
7101
6584
|
orderQty: number;
|
|
7102
6585
|
};
|
|
6586
|
+
/** Temporary bypass for testing: specify connection ID directly */
|
|
6587
|
+
connectionId?: string;
|
|
7103
6588
|
}
|
|
7104
6589
|
interface CancelOrderParams {
|
|
7105
|
-
/**
|
|
6590
|
+
/** Broker-provided order ID to cancel */
|
|
7106
6591
|
orderId: string;
|
|
6592
|
+
/** Broker identifier (robinhood, tasty_trade, ninja_trader) */
|
|
6593
|
+
broker: string;
|
|
6594
|
+
/** Account number for the order */
|
|
6595
|
+
accountNumber: number;
|
|
7107
6596
|
}
|
|
7108
6597
|
interface ModifyOrderParams {
|
|
7109
|
-
/**
|
|
6598
|
+
/** Broker-provided order ID to modify */
|
|
7110
6599
|
orderId: string;
|
|
7111
6600
|
/** Broker identifier (robinhood, tasty_trade, ninja_trader) */
|
|
7112
6601
|
broker: string;
|
|
7113
6602
|
/** Account number for the order */
|
|
7114
6603
|
accountNumber: number;
|
|
7115
|
-
/**
|
|
6604
|
+
/** Delta: only include fields you want to change (at least one required) */
|
|
7116
6605
|
order: {
|
|
7117
|
-
/**
|
|
7118
|
-
|
|
7119
|
-
/**
|
|
7120
|
-
|
|
7121
|
-
/**
|
|
7122
|
-
|
|
7123
|
-
/** Time in force
|
|
7124
|
-
|
|
7125
|
-
/**
|
|
7126
|
-
|
|
7127
|
-
/**
|
|
7128
|
-
|
|
6606
|
+
/** Order quantity (optional) */
|
|
6607
|
+
orderQty?: number;
|
|
6608
|
+
/** Limit price (optional) */
|
|
6609
|
+
price?: number;
|
|
6610
|
+
/** Stop price (optional) */
|
|
6611
|
+
stopPrice?: number;
|
|
6612
|
+
/** Time in force (optional) */
|
|
6613
|
+
time_in_force?: string;
|
|
6614
|
+
/** Order type (optional) */
|
|
6615
|
+
orderType?: string;
|
|
6616
|
+
/** Asset type (optional) */
|
|
6617
|
+
assetType?: string;
|
|
6618
|
+
/** Expire time ISO 8601 (optional) */
|
|
6619
|
+
expireTime?: string;
|
|
7129
6620
|
};
|
|
6621
|
+
/** Temporary bypass for testing: specify connection ID directly */
|
|
6622
|
+
connectionId?: string;
|
|
7130
6623
|
}
|
|
7131
6624
|
/**
|
|
7132
6625
|
* Brokers wrapper functions.
|
|
@@ -7755,13 +7248,9 @@ declare class BrokersWrapper {
|
|
|
7755
7248
|
* Place a new order through the specified broker.
|
|
7756
7249
|
*
|
|
7757
7250
|
* Creates an order using the broker connection associated with your account.
|
|
7758
|
-
*
|
|
7759
|
-
*
|
|
7760
|
-
*
|
|
7761
|
-
* Common order fields include: broker, accountNumber, orderType, assetType,
|
|
7762
|
-
* action, timeInForce, symbol, and orderQty. Additional broker-specific fields
|
|
7763
|
-
* can be included in the order object - see the broker-specific tabs in the
|
|
7764
|
-
* parameters section for details.
|
|
7251
|
+
* Request uses top-level broker, account_number, and order. The order object
|
|
7252
|
+
* includes common fields (symbol, quantity, order type, etc.) shared across
|
|
7253
|
+
* brokers plus broker-specific fields—see the broker-specific tabs for details.
|
|
7765
7254
|
* @param params.broker {string} Broker identifier (robinhood, tasty_trade, ninja_trader)
|
|
7766
7255
|
* @param params.accountNumber {number} Account number for the order
|
|
7767
7256
|
* @param params.order.orderType {string} Type of order (market, limit, etc.)
|
|
@@ -7770,6 +7259,7 @@ declare class BrokersWrapper {
|
|
|
7770
7259
|
* @param params.order.timeInForce {string} Time in force for the order
|
|
7771
7260
|
* @param params.order.symbol {string} Trading symbol
|
|
7772
7261
|
* @param params.order.orderQty {number} Order quantity
|
|
7262
|
+
* @param params.connectionId {string} (optional) Temporary bypass for testing: specify connection ID directly
|
|
7773
7263
|
* @returns {Promise<FinaticResponse<OrderActionResult>>} Standard response with success/Error/Warning structure
|
|
7774
7264
|
*
|
|
7775
7265
|
* Generated from: POST /api/beta/brokers/orders
|
|
@@ -7797,6 +7287,23 @@ declare class BrokersWrapper {
|
|
|
7797
7287
|
* console.error('Error:', result.error.message);
|
|
7798
7288
|
* }
|
|
7799
7289
|
* ```
|
|
7290
|
+
* @example
|
|
7291
|
+
* ```typescript-client
|
|
7292
|
+
* // Full example with optional parameters
|
|
7293
|
+
* const result = await finatic.placeOrder({
|
|
7294
|
+
connectionId: 'example-id'
|
|
7295
|
+
* });
|
|
7296
|
+
*
|
|
7297
|
+
* // Handle response with warnings
|
|
7298
|
+
* if (result.success) {
|
|
7299
|
+
* console.log('Data:', result.success.data);
|
|
7300
|
+
* if (result.warning && result.warning.length > 0) {
|
|
7301
|
+
* console.warn('Warnings:', result.warning);
|
|
7302
|
+
* }
|
|
7303
|
+
* } else if (result.error) {
|
|
7304
|
+
* console.error('Error:', result.error.message, result.error.code);
|
|
7305
|
+
* }
|
|
7306
|
+
* ```
|
|
7800
7307
|
*/
|
|
7801
7308
|
placeOrder(params: PlaceOrderParams): Promise<FinaticResponse$2<OrderActionResult>>;
|
|
7802
7309
|
/**
|
|
@@ -7804,9 +7311,11 @@ declare class BrokersWrapper {
|
|
|
7804
7311
|
*
|
|
7805
7312
|
* Cancel an existing order.
|
|
7806
7313
|
*
|
|
7807
|
-
*
|
|
7808
|
-
* resolved
|
|
7809
|
-
* @param params.orderId {string}
|
|
7314
|
+
* Request must include broker and account_number in the body; order_id is in the path.
|
|
7315
|
+
* Connection is resolved by broker and account_number.
|
|
7316
|
+
* @param params.orderId {string} Broker-provided order ID to cancel
|
|
7317
|
+
* @param params.broker {string} Broker identifier (robinhood, tasty_trade, ninja_trader)
|
|
7318
|
+
* @param params.accountNumber {number} Account number for the order
|
|
7810
7319
|
* @returns {Promise<FinaticResponse<OrderActionResult>>} Standard response with success/Error/Warning structure
|
|
7811
7320
|
*
|
|
7812
7321
|
* Generated from: DELETE /api/beta/brokers/orders/{order_id}
|
|
@@ -7833,18 +7342,19 @@ declare class BrokersWrapper {
|
|
|
7833
7342
|
*
|
|
7834
7343
|
* Modify an existing order.
|
|
7835
7344
|
*
|
|
7836
|
-
*
|
|
7837
|
-
*
|
|
7838
|
-
*
|
|
7839
|
-
* @param params.orderId {string} Order ID
|
|
7345
|
+
* Request must include broker and account_number in the body; order_id is in the path.
|
|
7346
|
+
* Connection is resolved by broker and account_number. The order object is a partial update.
|
|
7347
|
+
* @param params.orderId {string} Broker-provided order ID to modify
|
|
7840
7348
|
* @param params.broker {string} Broker identifier (robinhood, tasty_trade, ninja_trader)
|
|
7841
7349
|
* @param params.accountNumber {number} Account number for the order
|
|
7842
|
-
* @param params.order.
|
|
7843
|
-
* @param params.order.
|
|
7844
|
-
* @param params.order.
|
|
7845
|
-
* @param params.order.
|
|
7846
|
-
* @param params.order.
|
|
7847
|
-
* @param params.order.
|
|
7350
|
+
* @param params.order.orderQty {number} (optional) Order quantity (optional)
|
|
7351
|
+
* @param params.order.price {number} (optional) Limit price (optional)
|
|
7352
|
+
* @param params.order.stopPrice {number} (optional) Stop price (optional)
|
|
7353
|
+
* @param params.order.time_in_force {string} (optional) Time in force (optional)
|
|
7354
|
+
* @param params.order.orderType {string} (optional) Order type (optional)
|
|
7355
|
+
* @param params.order.assetType {string} (optional) Asset type (optional)
|
|
7356
|
+
* @param params.order.expireTime {string} (optional) Expire time ISO 8601 (optional)
|
|
7357
|
+
* @param params.connectionId {string} (optional) Temporary bypass for testing: specify connection ID directly
|
|
7848
7358
|
* @returns {Promise<FinaticResponse<OrderActionResult>>} Standard response with success/Error/Warning structure
|
|
7849
7359
|
*
|
|
7850
7360
|
* Generated from: PATCH /api/beta/brokers/orders/{order_id}
|
|
@@ -7864,6 +7374,24 @@ declare class BrokersWrapper {
|
|
|
7864
7374
|
* console.error('Error:', result.error.message);
|
|
7865
7375
|
* }
|
|
7866
7376
|
* ```
|
|
7377
|
+
* @example
|
|
7378
|
+
* ```typescript-client
|
|
7379
|
+
* // Full example with optional parameters
|
|
7380
|
+
* const result = await finatic.modifyOrder({
|
|
7381
|
+
orderId: 'example-id',
|
|
7382
|
+
connectionId: 'example-id'
|
|
7383
|
+
* });
|
|
7384
|
+
*
|
|
7385
|
+
* // Handle response with warnings
|
|
7386
|
+
* if (result.success) {
|
|
7387
|
+
* console.log('Data:', result.success.data);
|
|
7388
|
+
* if (result.warning && result.warning.length > 0) {
|
|
7389
|
+
* console.warn('Warnings:', result.warning);
|
|
7390
|
+
* }
|
|
7391
|
+
* } else if (result.error) {
|
|
7392
|
+
* console.error('Error:', result.error.message, result.error.code);
|
|
7393
|
+
* }
|
|
7394
|
+
* ```
|
|
7867
7395
|
*/
|
|
7868
7396
|
modifyOrder(params: ModifyOrderParams): Promise<FinaticResponse$2<OrderActionResult>>;
|
|
7869
7397
|
}
|
|
@@ -9653,13 +9181,9 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9653
9181
|
* Place a new order through the specified broker.
|
|
9654
9182
|
*
|
|
9655
9183
|
* Creates an order using the broker connection associated with your account.
|
|
9656
|
-
*
|
|
9657
|
-
*
|
|
9658
|
-
*
|
|
9659
|
-
* Common order fields include: broker, accountNumber, orderType, assetType,
|
|
9660
|
-
* action, timeInForce, symbol, and orderQty. Additional broker-specific fields
|
|
9661
|
-
* can be included in the order object - see the broker-specific tabs in the
|
|
9662
|
-
* parameters section for details.
|
|
9184
|
+
* Request uses top-level broker, account_number, and order. The order object
|
|
9185
|
+
* includes common fields (symbol, quantity, order type, etc.) shared across
|
|
9186
|
+
* brokers plus broker-specific fields—see the broker-specific tabs for details.
|
|
9663
9187
|
* @methodId place_order_api_beta_brokers_orders_post
|
|
9664
9188
|
* @category brokers
|
|
9665
9189
|
* @example
|
|
@@ -9685,6 +9209,21 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9685
9209
|
* }
|
|
9686
9210
|
* ```
|
|
9687
9211
|
* @example
|
|
9212
|
+
* ```typescript-client
|
|
9213
|
+
* // Full example with optional parameters
|
|
9214
|
+
* const result = await finatic.placeOrder({ connectionId: 'example-id' });
|
|
9215
|
+
*
|
|
9216
|
+
* // Handle response with warnings
|
|
9217
|
+
* if (result.success) {
|
|
9218
|
+
* console.log('Data:', result.success.data);
|
|
9219
|
+
* if (result.warning && result.warning.length > 0) {
|
|
9220
|
+
* console.warn('Warnings:', result.warning);
|
|
9221
|
+
* }
|
|
9222
|
+
* } else if (result.error) {
|
|
9223
|
+
* console.error('Error:', result.error.message, result.error.code);
|
|
9224
|
+
* }
|
|
9225
|
+
* ```
|
|
9226
|
+
* @example
|
|
9688
9227
|
* ```typescript-server
|
|
9689
9228
|
* // Example with no parameters
|
|
9690
9229
|
* const result = await finatic.placeOrder();
|
|
@@ -9725,8 +9264,8 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9725
9264
|
*
|
|
9726
9265
|
* Cancel an existing order.
|
|
9727
9266
|
*
|
|
9728
|
-
*
|
|
9729
|
-
* resolved
|
|
9267
|
+
* Request must include broker and account_number in the body; order_id is in the path.
|
|
9268
|
+
* Connection is resolved by broker and account_number.
|
|
9730
9269
|
* @methodId cancel_order_api_beta_brokers_orders__order_id__delete
|
|
9731
9270
|
* @category brokers
|
|
9732
9271
|
* @example
|
|
@@ -9773,9 +9312,8 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9773
9312
|
*
|
|
9774
9313
|
* Modify an existing order.
|
|
9775
9314
|
*
|
|
9776
|
-
*
|
|
9777
|
-
*
|
|
9778
|
-
* fields shared across brokers and broker-specific fields available per broker.
|
|
9315
|
+
* Request must include broker and account_number in the body; order_id is in the path.
|
|
9316
|
+
* Connection is resolved by broker and account_number. The order object is a partial update.
|
|
9779
9317
|
* @methodId modify_order_api_beta_brokers_orders__order_id__patch
|
|
9780
9318
|
* @category brokers
|
|
9781
9319
|
* @example
|
|
@@ -9791,6 +9329,21 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9791
9329
|
* }
|
|
9792
9330
|
* ```
|
|
9793
9331
|
* @example
|
|
9332
|
+
* ```typescript-client
|
|
9333
|
+
* // Full example with optional parameters
|
|
9334
|
+
* const result = await finatic.modifyOrder({ orderId: 'example-id', connectionId: 'example-id' });
|
|
9335
|
+
*
|
|
9336
|
+
* // Handle response with warnings
|
|
9337
|
+
* if (result.success) {
|
|
9338
|
+
* console.log('Data:', result.success.data);
|
|
9339
|
+
* if (result.warning && result.warning.length > 0) {
|
|
9340
|
+
* console.warn('Warnings:', result.warning);
|
|
9341
|
+
* }
|
|
9342
|
+
* } else if (result.error) {
|
|
9343
|
+
* console.error('Error:', result.error.message, result.error.code);
|
|
9344
|
+
* }
|
|
9345
|
+
* ```
|
|
9346
|
+
* @example
|
|
9794
9347
|
* ```typescript-server
|
|
9795
9348
|
* // Minimal example with required parameters only
|
|
9796
9349
|
* const result = await finatic.modifyOrder({ orderId: 'example-id' });
|
|
@@ -9820,7 +9373,6 @@ declare class FinaticConnect$1 extends EventEmitter {
|
|
|
9820
9373
|
* # Full example with optional parameters
|
|
9821
9374
|
* result = await finatic.modify_order(
|
|
9822
9375
|
* order_id='example',
|
|
9823
|
-
account_number='example',
|
|
9824
9376
|
connection_id='example'
|
|
9825
9377
|
* )
|
|
9826
9378
|
*
|
|
@@ -10461,5 +10013,5 @@ declare class FinaticConnect extends FinaticConnect$1 {
|
|
|
10461
10013
|
static readonly __CUSTOM_CLASS__ = true;
|
|
10462
10014
|
}
|
|
10463
10015
|
|
|
10464
|
-
export { ApiError, BrokerDataAccountTypeEnum, BrokerDataAssetTypeEnum, BrokerDataOptionTypeEnum, BrokerDataOrderSideEnum, BrokerDataPositionStatusEnum, BrokersWrapper, CompanyWrapper, Configuration, DayTIFTimeInForceEnum, EventEmitter, FDXAssetType, FDXOrderClass, FDXOrderEventType, FDXOrderGroupType, FDXOrderSide, FDXOrderStatus, FDXOrderType, FDXPositionSide, FDXPositionStatus, FDXSecurityIdType, FDXTimeInForce, FOKTIFTimeInForceEnum, FinaticBrokerFactoryBrokersRobinhoodExecutorsConsumerRobinhoodOrderModifyQueryParamsRobinhoodOptionSpreadLegEffectEnum, FinaticConnect, FinaticError, GTCTIFTimeInForceEnum, GTDTIFTimeInForceEnum, IOCTIFTimeInForceEnum, NinjaTraderLimitOrderModifyQueryParamsAssetTypeEnum, NinjaTraderLimitOrderModifyQueryParamsOrderTypeEnum, NinjaTraderLimitOrderPlaceQueryParamsActionEnum, NinjaTraderLimitOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderLimitOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderMarketOrderModifyQueryParamsAssetTypeEnum, NinjaTraderMarketOrderModifyQueryParamsOrderTypeEnum, NinjaTraderMarketOrderPlaceQueryParamsActionEnum, NinjaTraderMarketOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderMarketOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderOrderModifyRequestBrokerEnum, NinjaTraderOrderPlaceRequestBrokerEnum, NinjaTraderStopOrderModifyQueryParamsAssetTypeEnum, NinjaTraderStopOrderModifyQueryParamsOrderTypeEnum, NinjaTraderStopOrderPlaceQueryParamsActionEnum, NinjaTraderStopOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderStopOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderTrailingStopOrderModifyQueryParamsAssetTypeEnum, NinjaTraderTrailingStopOrderModifyQueryParamsOrderTypeEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsActionEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsOrderTypeEnum, Order1ActionEnum, Order1AmountInEnum, Order1AssetTypeEnum, Order1CreditOrDebitEnum, Order1DirectionEnum, Order1MarketHoursEnum, Order1OptionTypeEnum, Order1OrderTypeEnum, Order1PositionEffectEnum, PaginatedData, RobinhoodCryptoLimitOrderPlaceQueryParamsActionEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsActionEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoStopOrderPlaceQueryParamsActionEnum, RobinhoodCryptoStopOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityLimitOrderPlaceQueryParamsActionEnum, RobinhoodEquityLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityLimitOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityMarketOrderPlaceQueryParamsActionEnum, RobinhoodEquityMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityMarketOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityStopOrderPlaceQueryParamsActionEnum, RobinhoodEquityStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityStopOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodLimitOrderModifyQueryParamsAmountInEnum, RobinhoodLimitOrderModifyQueryParamsAssetTypeEnum, RobinhoodLimitOrderModifyQueryParamsCreditOrDebitEnum, RobinhoodLimitOrderModifyQueryParamsDirectionEnum, RobinhoodLimitOrderModifyQueryParamsMarketHoursEnum, RobinhoodLimitOrderModifyQueryParamsOptionTypeEnum, RobinhoodLimitOrderModifyQueryParamsOrderTypeEnum, RobinhoodLimitOrderModifyQueryParamsPositionEffectEnum, RobinhoodMarketOrderModifyQueryParamsAmountInEnum, RobinhoodMarketOrderModifyQueryParamsAssetTypeEnum, RobinhoodMarketOrderModifyQueryParamsCreditOrDebitEnum, RobinhoodMarketOrderModifyQueryParamsDirectionEnum, RobinhoodMarketOrderModifyQueryParamsMarketHoursEnum, RobinhoodMarketOrderModifyQueryParamsOptionTypeEnum, RobinhoodMarketOrderModifyQueryParamsOrderTypeEnum, RobinhoodMarketOrderModifyQueryParamsPositionEffectEnum, RobinhoodOptionLimitOrderPlaceQueryParamsActionEnum, RobinhoodOptionLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionLimitOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionLimitOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionMarketOrderPlaceQueryParamsActionEnum, RobinhoodOptionMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionMarketOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionMarketOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionSpreadLegPositionEffectEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionStopOrderPlaceQueryParamsActionEnum, RobinhoodOptionStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionStopOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionStopOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOrderModifyRequestBrokerEnum, RobinhoodOrderPlaceRequestBrokerEnum, RobinhoodStopOrderModifyQueryParamsAmountInEnum, RobinhoodStopOrderModifyQueryParamsAssetTypeEnum, RobinhoodStopOrderModifyQueryParamsCreditOrDebitEnum, RobinhoodStopOrderModifyQueryParamsDirectionEnum, RobinhoodStopOrderModifyQueryParamsMarketHoursEnum, RobinhoodStopOrderModifyQueryParamsOptionTypeEnum, RobinhoodStopOrderModifyQueryParamsOrderTypeEnum, RobinhoodStopOrderModifyQueryParamsPositionEffectEnum, RobinhoodTrailingStopOrderModifyQueryParamsAmountInEnum, RobinhoodTrailingStopOrderModifyQueryParamsAssetTypeEnum, RobinhoodTrailingStopOrderModifyQueryParamsCreditOrDebitEnum, RobinhoodTrailingStopOrderModifyQueryParamsDirectionEnum, RobinhoodTrailingStopOrderModifyQueryParamsMarketHoursEnum, RobinhoodTrailingStopOrderModifyQueryParamsOptionTypeEnum, RobinhoodTrailingStopOrderModifyQueryParamsOrderTypeEnum, RobinhoodTrailingStopOrderModifyQueryParamsPositionEffectEnum, SessionStatus, SessionWrapper, TastyTradeLimitOrderModifyQueryParamsAssetTypeEnum, TastyTradeLimitOrderModifyQueryParamsOrderTypeEnum, TastyTradeLimitOrderPlaceQueryParamsActionEnum, TastyTradeLimitOrderPlaceQueryParamsAssetTypeEnum, TastyTradeLimitOrderPlaceQueryParamsOrderTypeEnum, TastyTradeLimitOrderPlaceQueryParamsPriceEffectEnum, TastyTradeLimitOrderPlaceQueryParamsValueEffectEnum, TastyTradeMarketOrderModifyQueryParamsAssetTypeEnum, TastyTradeMarketOrderModifyQueryParamsOrderTypeEnum, TastyTradeMarketOrderPlaceQueryParamsActionEnum, TastyTradeMarketOrderPlaceQueryParamsAssetTypeEnum, TastyTradeMarketOrderPlaceQueryParamsOrderTypeEnum, TastyTradeMarketOrderPlaceQueryParamsPriceEffectEnum, TastyTradeMarketOrderPlaceQueryParamsValueEffectEnum, TastyTradeOrderModifyRequestBrokerEnum, TastyTradeOrderPlaceRequestBrokerEnum, TastyTradeStopOrderModifyQueryParamsAssetTypeEnum, TastyTradeStopOrderModifyQueryParamsOrderTypeEnum, TastyTradeStopOrderPlaceQueryParamsActionEnum, TastyTradeStopOrderPlaceQueryParamsAssetTypeEnum, TastyTradeStopOrderPlaceQueryParamsOrderTypeEnum, TastyTradeStopOrderPlaceQueryParamsPriceEffectEnum, TastyTradeStopOrderPlaceQueryParamsValueEffectEnum, TastyTradeTrailingStopOrderModifyQueryParamsAssetTypeEnum, TastyTradeTrailingStopOrderModifyQueryParamsOrderTypeEnum, TastyTradeTrailingStopOrderPlaceQueryParamsActionEnum, TastyTradeTrailingStopOrderPlaceQueryParamsAssetTypeEnum, TastyTradeTrailingStopOrderPlaceQueryParamsOrderTypeEnum, TastyTradeTrailingStopOrderPlaceQueryParamsPriceEffectEnum, TastyTradeTrailingStopOrderPlaceQueryParamsValueEffectEnum, ValidationError, addErrorInterceptor, addRequestInterceptor, addResponseInterceptor, appendBrokerFilterToURL, appendThemeToURL, applyErrorInterceptors, applyRequestInterceptors, applyResponseInterceptors, coerceEnumValue, convertToPlainObject, defaultConfig, generateCacheKey, generateRequestId, getCache, getConfig, getLogger, handleError, numberSchema, retryApiCall, stringSchema, unwrapAxiosResponse, validateParams };
|
|
10465
|
-
export type { Accountnumber, Accounts, ValidationError$1 as ApiValidationError, Assettype, Availablebalance, Availabletowithdraw, Averagebuyprice, Averagefillprice, Averagesellprice, BrokerInfo, Buyingpower, Cashbalance, Closedquantity, Closepriceavg, Commission, Commission1, Commissionshare, ConfigurationParameters, Costbasis, Costbasis1, Costbasiswithcommission, Costbasiswithcommission1, Currentbalance, Currentprice, DayTIF, DisconnectCompanyFromBrokerConnectionResult, ErrorInterceptor, Eventtype, FDXBrokerOrder, FDXBrokerOrderEvent, FDXBrokerOrderFill, FDXBrokerOrderGroup, FDXBrokerPosition, FDXBrokerPositionLot, FDXBrokerPositionLotFill, FDXBrokerTransaction, FDXOrderGroupOrder, FDXOrderLeg, FOKTIF, Filledquantity, Fillprice, Fillquantity, FinaticAPIErrorResponse,
|
|
10016
|
+
export { ApiError, BrokerDataAccountTypeEnum, BrokerDataAssetTypeEnum, BrokerDataOptionTypeEnum, BrokerDataOrderSideEnum, BrokerDataPositionStatusEnum, BrokersWrapper, CompanyWrapper, Configuration, DayTIFTimeInForceEnum, EventEmitter, FDXAssetType, FDXOrderClass, FDXOrderEventType, FDXOrderGroupType, FDXOrderSide, FDXOrderStatus, FDXOrderType, FDXPositionSide, FDXPositionStatus, FDXSecurityIdType, FDXTimeInForce, FOKTIFTimeInForceEnum, FinaticConnect, FinaticError, GTCTIFTimeInForceEnum, GTDTIFTimeInForceEnum, IOCTIFTimeInForceEnum, NinjaTraderLimitOrderPlaceQueryParamsActionEnum, NinjaTraderLimitOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderLimitOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderMarketOrderPlaceQueryParamsActionEnum, NinjaTraderMarketOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderMarketOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderOrderCancelRequestBrokerEnum, NinjaTraderOrderModifyRequestBrokerEnum, NinjaTraderOrderPlaceRequestBrokerEnum, NinjaTraderStopOrderPlaceQueryParamsActionEnum, NinjaTraderStopOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderStopOrderPlaceQueryParamsOrderTypeEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsActionEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsAssetTypeEnum, NinjaTraderTrailingStopOrderPlaceQueryParamsOrderTypeEnum, Order1ActionEnum, Order1AmountInEnum, Order1AssetTypeEnum, Order1CreditOrDebitEnum, Order1DirectionEnum, Order1MarketHoursEnum, Order1OptionTypeEnum, Order1OrderTypeEnum, Order1PositionEffectEnum, OrderModifyQueryParamsBaseAssetTypeEnum, OrderModifyQueryParamsBaseOrderTypeEnum, OrderRequestBrokerEnum, PaginatedData, RobinhoodCryptoLimitOrderPlaceQueryParamsActionEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsActionEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoStopOrderPlaceQueryParamsActionEnum, RobinhoodCryptoStopOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsAmountInEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodCryptoTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityLimitOrderPlaceQueryParamsActionEnum, RobinhoodEquityLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityLimitOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityMarketOrderPlaceQueryParamsActionEnum, RobinhoodEquityMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityMarketOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityStopOrderPlaceQueryParamsActionEnum, RobinhoodEquityStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityStopOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsMarketHoursEnum, RobinhoodEquityTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsActionEnum, RobinhoodOptionLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionLimitOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionLimitOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionLimitOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionMarketOrderPlaceQueryParamsActionEnum, RobinhoodOptionMarketOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionMarketOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionMarketOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionMarketOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionSpreadLegPositionEffectEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsActionEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionStopLimitOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionStopOrderPlaceQueryParamsActionEnum, RobinhoodOptionStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionStopOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionStopOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionStopOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsActionEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsAssetTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsCreditOrDebitEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsDirectionEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsOptionTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsOrderTypeEnum, RobinhoodOptionTrailingStopOrderPlaceQueryParamsPositionEffectEnum, RobinhoodOrderCancelQueryParamsAssetTypeEnum, RobinhoodOrderCancelRequestBrokerEnum, RobinhoodOrderModifyRequestBrokerEnum, RobinhoodOrderPlaceRequestBrokerEnum, SessionStatus, SessionWrapper, TastyTradeLimitOrderPlaceQueryParamsActionEnum, TastyTradeLimitOrderPlaceQueryParamsAssetTypeEnum, TastyTradeLimitOrderPlaceQueryParamsOrderTypeEnum, TastyTradeLimitOrderPlaceQueryParamsPriceEffectEnum, TastyTradeLimitOrderPlaceQueryParamsValueEffectEnum, TastyTradeMarketOrderPlaceQueryParamsActionEnum, TastyTradeMarketOrderPlaceQueryParamsAssetTypeEnum, TastyTradeMarketOrderPlaceQueryParamsOrderTypeEnum, TastyTradeMarketOrderPlaceQueryParamsPriceEffectEnum, TastyTradeMarketOrderPlaceQueryParamsValueEffectEnum, TastyTradeOrderCancelRequestBrokerEnum, TastyTradeOrderModifyRequestBrokerEnum, TastyTradeOrderPlaceRequestBrokerEnum, TastyTradeStopOrderPlaceQueryParamsActionEnum, TastyTradeStopOrderPlaceQueryParamsAssetTypeEnum, TastyTradeStopOrderPlaceQueryParamsOrderTypeEnum, TastyTradeStopOrderPlaceQueryParamsPriceEffectEnum, TastyTradeStopOrderPlaceQueryParamsValueEffectEnum, TastyTradeTrailingStopOrderPlaceQueryParamsActionEnum, TastyTradeTrailingStopOrderPlaceQueryParamsAssetTypeEnum, TastyTradeTrailingStopOrderPlaceQueryParamsOrderTypeEnum, TastyTradeTrailingStopOrderPlaceQueryParamsPriceEffectEnum, TastyTradeTrailingStopOrderPlaceQueryParamsValueEffectEnum, ValidationError, addErrorInterceptor, addRequestInterceptor, addResponseInterceptor, appendBrokerFilterToURL, appendThemeToURL, applyErrorInterceptors, applyRequestInterceptors, applyResponseInterceptors, coerceEnumValue, convertToPlainObject, defaultConfig, generateCacheKey, generateRequestId, getCache, getConfig, getLogger, handleError, numberSchema, retryApiCall, stringSchema, unwrapAxiosResponse, validateParams };
|
|
10017
|
+
export type { Accountnumber, Accounts, ValidationError$1 as ApiValidationError, Assettype, Availablebalance, Availabletowithdraw, Averagebuyprice, Averagefillprice, Averagesellprice, BrokerInfo, Buyingpower, CancelOrderApiBetaBrokersOrdersOrderIdDeleteRequest, Cashbalance, Closedquantity, Closepriceavg, Commission, Commission1, Commissionshare, ConfigurationParameters, Costbasis, Costbasis1, Costbasiswithcommission, Costbasiswithcommission1, Currentbalance, Currentprice, DayTIF, DisconnectCompanyFromBrokerConnectionResult, ErrorInterceptor, Eventtype, FDXBrokerOrder, FDXBrokerOrderEvent, FDXBrokerOrderFill, FDXBrokerOrderGroup, FDXBrokerPosition, FDXBrokerPositionLot, FDXBrokerPositionLotFill, FDXBrokerTransaction, FDXOrderGroupOrder, FDXOrderLeg, FOKTIF, Filledquantity, Fillprice, Fillquantity, FinaticAPIErrorResponse, FinaticConnectOptions, FinaticResponse$3 as FinaticResponse, FinaticResponseAccounts, FinaticResponseDisconnectCompanyFromBrokerConnectionResult, FinaticResponseListBrokerInfo, FinaticResponseListFDXBrokerOrder, FinaticResponseListFDXBrokerOrderEvent, FinaticResponseListFDXBrokerOrderFill, FinaticResponseListFDXBrokerOrderGroup, FinaticResponseListFDXBrokerPosition, FinaticResponseListFDXBrokerPositionLot, FinaticResponseListFDXBrokerPositionLotFill, FinaticResponseListFDXBrokerTransaction, FinaticResponseListLegacyBrokerAccount, FinaticResponseListLegacyBrokerBalance, FinaticResponseListUserBrokerConnectionWithPermissions, FinaticResponseOrderActionResult, FinaticResponseSessionResponseData, FinaticResponseSessionUserResponse, FinaticapiCoreStandardModelsAbstractResponsesFinaticResponsePortalUrlResponse2, FinaticapiCoreStandardModelsAbstractResponsesFinaticResponseTokenResponseData2, Futureunderlyingassettype, GTCTIF, GTDTIF, Grouptype, HTTPValidationError, IOCTIF, Initialmargin, InterceptorChain, LegacyBrokerAccount, LegacyBrokerBalance, Limitprice, LocationInner, LogLevel, Logger, Maintenancemargin, Marketvalue, Netliquidationvalue, NinjaTraderLimitOrderPlaceQueryParams, NinjaTraderMarketOrderPlaceQueryParams, NinjaTraderOrderCancelQueryParams, NinjaTraderOrderCancelRequest, NinjaTraderOrderModifyRequest, NinjaTraderOrderPlaceRequest, NinjaTraderStopOrderPlaceQueryParams, NinjaTraderTrailingStopOrderPlaceQueryParams, Notional, Openprice, Openquantity, Order, Order1, Order1AnyOf, Order1AnyOf1, Order1AnyOf2, Order2, OrderActionResult, OrderModifyQueryParamsBase, OrderRequest, Orderclass, Orderstatus, Ordertype, PaginationMeta, ParsedFinaticError, Pendingbalance, PlaceOrderApiBetaBrokersOrdersPostRequest, PortalUrlResponse, Previousstatus, Price, Quantity, Quantity1, Quantity2, Realizedprofitloss, Realizedprofitloss1, Realizedprofitlosspercent, Realizedprofitlosswithcommission, Realizedprofitlosswithcommission1, Remainingquantity, Remainingquantity1, RequestInterceptor, ResponseInterceptor, RetryOptions, RobinhoodCryptoLimitOrderPlaceQueryParams, RobinhoodCryptoMarketOrderPlaceQueryParams, RobinhoodCryptoStopLimitOrderPlaceQueryParams, RobinhoodCryptoStopOrderPlaceQueryParams, RobinhoodCryptoTrailingStopOrderPlaceQueryParams, RobinhoodEquityLimitOrderPlaceQueryParams, RobinhoodEquityMarketOrderPlaceQueryParams, RobinhoodEquityStopLimitOrderPlaceQueryParams, RobinhoodEquityStopOrderPlaceQueryParams, RobinhoodEquityTrailingStopOrderPlaceQueryParams, RobinhoodOptionLimitOrderPlaceQueryParams, RobinhoodOptionMarketOrderPlaceQueryParams, RobinhoodOptionSpreadLeg, RobinhoodOptionStopLimitOrderPlaceQueryParams, RobinhoodOptionStopOrderPlaceQueryParams, RobinhoodOptionTrailingStopOrderPlaceQueryParams, RobinhoodOrderCancelQueryParams, RobinhoodOrderCancelRequest, RobinhoodOrderModifyRequest, RobinhoodOrderPlaceRequest, SdkConfig, Securityidtype, SessionResponseData, SessionStartRequest, SessionUserResponse, Side, Side1, Side2, Side3, Status, Status1, Stopprice, Strikeprice, SuccessPayloadAccounts, SuccessPayloadDisconnectCompanyFromBrokerConnectionResult, SuccessPayloadListBrokerInfo, SuccessPayloadListFDXBrokerOrder, SuccessPayloadListFDXBrokerOrderEvent, SuccessPayloadListFDXBrokerOrderFill, SuccessPayloadListFDXBrokerOrderGroup, SuccessPayloadListFDXBrokerPosition, SuccessPayloadListFDXBrokerPositionLot, SuccessPayloadListFDXBrokerPositionLotFill, SuccessPayloadListFDXBrokerTransaction, SuccessPayloadListLegacyBrokerAccount, SuccessPayloadListLegacyBrokerBalance, SuccessPayloadListUserBrokerConnectionWithPermissions, SuccessPayloadOrderActionResult, SuccessPayloadPortalUrlResponse, SuccessPayloadSessionResponseData, SuccessPayloadSessionUserResponse, SuccessPayloadTokenResponseData, TastyTradeLimitOrderPlaceQueryParams, TastyTradeMarketOrderPlaceQueryParams, TastyTradeOrderCancelQueryParams, TastyTradeOrderCancelRequest, TastyTradeOrderModifyRequest, TastyTradeOrderPlaceRequest, TastyTradeStopOrderPlaceQueryParams, TastyTradeTrailingStopOrderPlaceQueryParams, Timeinforce, Timeinforce1, Timeinforce2, Timeinforce2AnyOf, TokenResponseData, Totalcashvalue, Totalrealizedpnl, Transactionamount, Units, Unrealizedprofitloss, Unrealizedprofitlosspercent, UserBrokerConnectionWithPermissions };
|