@massive.com/client-js 10.2.0 → 10.4.0
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/dist/main.d.ts +1798 -185
- package/dist/main.js +1 -1
- package/massive.com-client-js-10.4.0.tgz +0 -0
- package/package.json +1 -1
- package/massive.com-client-js-10.2.0.tgz +0 -0
package/dist/main.d.ts
CHANGED
|
@@ -6762,6 +6762,18 @@ interface GetFuturesQuotes200ResponseResultsInner {
|
|
|
6762
6762
|
* @memberof GetFuturesQuotes200ResponseResultsInner
|
|
6763
6763
|
*/
|
|
6764
6764
|
'bid_timestamp'?: number;
|
|
6765
|
+
/**
|
|
6766
|
+
* The reporting sequence number.
|
|
6767
|
+
* @type {number}
|
|
6768
|
+
* @memberof GetFuturesQuotes200ResponseResultsInner
|
|
6769
|
+
*/
|
|
6770
|
+
'report_sequence': number;
|
|
6771
|
+
/**
|
|
6772
|
+
* The unique sequence number assigned to this quote by the exchange.
|
|
6773
|
+
* @type {number}
|
|
6774
|
+
* @memberof GetFuturesQuotes200ResponseResultsInner
|
|
6775
|
+
*/
|
|
6776
|
+
'sequence_number': number;
|
|
6765
6777
|
/**
|
|
6766
6778
|
* Also known as the trading date, the date of the end of the trading session, in YYYY-MM-DD format.
|
|
6767
6779
|
* @type {string}
|
|
@@ -6818,6 +6830,18 @@ interface GetFuturesTrades200ResponseResultsInner {
|
|
|
6818
6830
|
* @memberof GetFuturesTrades200ResponseResultsInner
|
|
6819
6831
|
*/
|
|
6820
6832
|
'price': number;
|
|
6833
|
+
/**
|
|
6834
|
+
* The reporting sequence number.
|
|
6835
|
+
* @type {number}
|
|
6836
|
+
* @memberof GetFuturesTrades200ResponseResultsInner
|
|
6837
|
+
*/
|
|
6838
|
+
'report_sequence': number;
|
|
6839
|
+
/**
|
|
6840
|
+
* The unique sequence number assigned to this trade.
|
|
6841
|
+
* @type {number}
|
|
6842
|
+
* @memberof GetFuturesTrades200ResponseResultsInner
|
|
6843
|
+
*/
|
|
6844
|
+
'sequence_number': number;
|
|
6821
6845
|
/**
|
|
6822
6846
|
* Also known as the trading date, the date of the end of the trading session, in YYYY-MM-DD format.
|
|
6823
6847
|
* @type {string}
|
|
@@ -7311,6 +7335,123 @@ interface GetFuturesVXProducts200ResponseResultsInner {
|
|
|
7311
7335
|
*/
|
|
7312
7336
|
'unit_of_measure_qty'?: number;
|
|
7313
7337
|
}
|
|
7338
|
+
/**
|
|
7339
|
+
*
|
|
7340
|
+
* @export
|
|
7341
|
+
* @interface GetFuturesVXQuotesNew200Response
|
|
7342
|
+
*/
|
|
7343
|
+
interface GetFuturesVXQuotesNew200Response {
|
|
7344
|
+
/**
|
|
7345
|
+
* If present, this value can be used to fetch the next page.
|
|
7346
|
+
* @type {string}
|
|
7347
|
+
* @memberof GetFuturesVXQuotesNew200Response
|
|
7348
|
+
*/
|
|
7349
|
+
'next_url'?: string;
|
|
7350
|
+
/**
|
|
7351
|
+
* A request id assigned by the server.
|
|
7352
|
+
* @type {string}
|
|
7353
|
+
* @memberof GetFuturesVXQuotesNew200Response
|
|
7354
|
+
*/
|
|
7355
|
+
'request_id': string;
|
|
7356
|
+
/**
|
|
7357
|
+
* The results for this request.
|
|
7358
|
+
* @type {Array<GetFuturesVXQuotesNew200ResponseResultsInner>}
|
|
7359
|
+
* @memberof GetFuturesVXQuotesNew200Response
|
|
7360
|
+
*/
|
|
7361
|
+
'results': Array<GetFuturesVXQuotesNew200ResponseResultsInner>;
|
|
7362
|
+
/**
|
|
7363
|
+
* The status of this request\'s response.
|
|
7364
|
+
* @type {string}
|
|
7365
|
+
* @memberof GetFuturesVXQuotesNew200Response
|
|
7366
|
+
*/
|
|
7367
|
+
'status': GetFuturesVXQuotesNew200ResponseStatusEnum;
|
|
7368
|
+
}
|
|
7369
|
+
/**
|
|
7370
|
+
* @export
|
|
7371
|
+
* @enum {string}
|
|
7372
|
+
*/
|
|
7373
|
+
declare enum GetFuturesVXQuotesNew200ResponseStatusEnum {
|
|
7374
|
+
Ok = "OK"
|
|
7375
|
+
}
|
|
7376
|
+
/**
|
|
7377
|
+
*
|
|
7378
|
+
* @export
|
|
7379
|
+
* @interface GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7380
|
+
*/
|
|
7381
|
+
interface GetFuturesVXQuotesNew200ResponseResultsInner {
|
|
7382
|
+
/**
|
|
7383
|
+
* The ask price.
|
|
7384
|
+
* @type {number}
|
|
7385
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7386
|
+
*/
|
|
7387
|
+
'ask_price'?: number;
|
|
7388
|
+
/**
|
|
7389
|
+
* The ask size.
|
|
7390
|
+
* @type {number}
|
|
7391
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7392
|
+
*/
|
|
7393
|
+
'ask_size'?: number;
|
|
7394
|
+
/**
|
|
7395
|
+
* The nanosecond accuracy Unix Timestamp when the ask price was submitted to the exchange.
|
|
7396
|
+
* @type {number}
|
|
7397
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7398
|
+
*/
|
|
7399
|
+
'ask_timestamp'?: number;
|
|
7400
|
+
/**
|
|
7401
|
+
* The bid price.
|
|
7402
|
+
* @type {number}
|
|
7403
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7404
|
+
*/
|
|
7405
|
+
'bid_price'?: number;
|
|
7406
|
+
/**
|
|
7407
|
+
* The bid size.
|
|
7408
|
+
* @type {number}
|
|
7409
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7410
|
+
*/
|
|
7411
|
+
'bid_size'?: number;
|
|
7412
|
+
/**
|
|
7413
|
+
* The nanosecond accuracy Unix Timestamp when the bid price was submitted to the exchange.
|
|
7414
|
+
* @type {number}
|
|
7415
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7416
|
+
*/
|
|
7417
|
+
'bid_timestamp'?: number;
|
|
7418
|
+
/**
|
|
7419
|
+
* The exchange ID. See <a href=\"https://massive.com/docs/rest/stocks/market-operations/exchanges\" alt=\"Exchanges\">Exchanges</a> for Massive\'s mapping of exchange IDs.
|
|
7420
|
+
* @type {number}
|
|
7421
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7422
|
+
*/
|
|
7423
|
+
'exchange'?: number;
|
|
7424
|
+
/**
|
|
7425
|
+
* The report sequence number.
|
|
7426
|
+
* @type {number}
|
|
7427
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7428
|
+
*/
|
|
7429
|
+
'report_sequence': number;
|
|
7430
|
+
/**
|
|
7431
|
+
* The sequence number represents the order in which quote events occurred for this ticker.
|
|
7432
|
+
* @type {number}
|
|
7433
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7434
|
+
*/
|
|
7435
|
+
'sequence_number': number;
|
|
7436
|
+
/**
|
|
7437
|
+
* The trade date representing the session end date for this quote. Used for partitioning and filtering quotes by trading session.
|
|
7438
|
+
* @type {string}
|
|
7439
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7440
|
+
*/
|
|
7441
|
+
'session_end_date': string;
|
|
7442
|
+
/**
|
|
7443
|
+
* The exchange symbol that this item is traded under.
|
|
7444
|
+
* @type {string}
|
|
7445
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7446
|
+
*/
|
|
7447
|
+
'ticker': string;
|
|
7448
|
+
/**
|
|
7449
|
+
* The nanosecond accuracy Exchange Unix Timestamp. This is the timestamp of when the quote was actually generated at the exchange.
|
|
7450
|
+
* @type {number}
|
|
7451
|
+
* @memberof GetFuturesVXQuotesNew200ResponseResultsInner
|
|
7452
|
+
*/
|
|
7453
|
+
'timestamp': number;
|
|
7454
|
+
}
|
|
7314
7455
|
/**
|
|
7315
7456
|
*
|
|
7316
7457
|
* @export
|
|
@@ -7688,6 +7829,111 @@ interface GetFuturesVXSnapshot200ResponseResultsInnerSession {
|
|
|
7688
7829
|
*/
|
|
7689
7830
|
'volume'?: number;
|
|
7690
7831
|
}
|
|
7832
|
+
/**
|
|
7833
|
+
*
|
|
7834
|
+
* @export
|
|
7835
|
+
* @interface GetFuturesVXTradesNew200Response
|
|
7836
|
+
*/
|
|
7837
|
+
interface GetFuturesVXTradesNew200Response {
|
|
7838
|
+
/**
|
|
7839
|
+
* If present, this value can be used to fetch the next page.
|
|
7840
|
+
* @type {string}
|
|
7841
|
+
* @memberof GetFuturesVXTradesNew200Response
|
|
7842
|
+
*/
|
|
7843
|
+
'next_url'?: string;
|
|
7844
|
+
/**
|
|
7845
|
+
* A request id assigned by the server.
|
|
7846
|
+
* @type {string}
|
|
7847
|
+
* @memberof GetFuturesVXTradesNew200Response
|
|
7848
|
+
*/
|
|
7849
|
+
'request_id': string;
|
|
7850
|
+
/**
|
|
7851
|
+
* The results for this request.
|
|
7852
|
+
* @type {Array<GetFuturesVXTradesNew200ResponseResultsInner>}
|
|
7853
|
+
* @memberof GetFuturesVXTradesNew200Response
|
|
7854
|
+
*/
|
|
7855
|
+
'results': Array<GetFuturesVXTradesNew200ResponseResultsInner>;
|
|
7856
|
+
/**
|
|
7857
|
+
* The status of this request\'s response.
|
|
7858
|
+
* @type {string}
|
|
7859
|
+
* @memberof GetFuturesVXTradesNew200Response
|
|
7860
|
+
*/
|
|
7861
|
+
'status': GetFuturesVXTradesNew200ResponseStatusEnum;
|
|
7862
|
+
}
|
|
7863
|
+
/**
|
|
7864
|
+
* @export
|
|
7865
|
+
* @enum {string}
|
|
7866
|
+
*/
|
|
7867
|
+
declare enum GetFuturesVXTradesNew200ResponseStatusEnum {
|
|
7868
|
+
Ok = "OK"
|
|
7869
|
+
}
|
|
7870
|
+
/**
|
|
7871
|
+
*
|
|
7872
|
+
* @export
|
|
7873
|
+
* @interface GetFuturesVXTradesNew200ResponseResultsInner
|
|
7874
|
+
*/
|
|
7875
|
+
interface GetFuturesVXTradesNew200ResponseResultsInner {
|
|
7876
|
+
/**
|
|
7877
|
+
* A list of condition codes.
|
|
7878
|
+
* @type {Array<number>}
|
|
7879
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7880
|
+
*/
|
|
7881
|
+
'conditions'?: Array<number>;
|
|
7882
|
+
/**
|
|
7883
|
+
* The trade correction indicator.
|
|
7884
|
+
* @type {number}
|
|
7885
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7886
|
+
*/
|
|
7887
|
+
'correction'?: number;
|
|
7888
|
+
/**
|
|
7889
|
+
* The exchange ID. See <a href=\"https://massive.com/docs/rest/stocks/market-operations/exchanges\" alt=\"Exchanges\">Exchanges</a> for Massive\'s mapping of exchange IDs.
|
|
7890
|
+
* @type {number}
|
|
7891
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7892
|
+
*/
|
|
7893
|
+
'exchange'?: number;
|
|
7894
|
+
/**
|
|
7895
|
+
* The price of the trade. This is the actual dollar value per whole contract of this trade. A trade of 100 contracts with a price of $2.00 would be worth a total dollar value of $200.00.
|
|
7896
|
+
* @type {number}
|
|
7897
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7898
|
+
*/
|
|
7899
|
+
'price': number;
|
|
7900
|
+
/**
|
|
7901
|
+
* The report sequence number.
|
|
7902
|
+
* @type {number}
|
|
7903
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7904
|
+
*/
|
|
7905
|
+
'report_sequence': number;
|
|
7906
|
+
/**
|
|
7907
|
+
* The sequence number represents the sequence in which trade events happened. These are increasing and unique per ticker symbol, but will not always be sequential (e.g., 1, 2, 6, 9, 10, 11). Values reset after each trading session/day.
|
|
7908
|
+
* @type {number}
|
|
7909
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7910
|
+
*/
|
|
7911
|
+
'sequence_number': number;
|
|
7912
|
+
/**
|
|
7913
|
+
* The trade date representing the session end date for this trade. Used for partitioning and filtering trades by trading session.
|
|
7914
|
+
* @type {string}
|
|
7915
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7916
|
+
*/
|
|
7917
|
+
'session_end_date': string;
|
|
7918
|
+
/**
|
|
7919
|
+
* The total number of contracts exchanged between buyers and sellers on a given trade.
|
|
7920
|
+
* @type {number}
|
|
7921
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7922
|
+
*/
|
|
7923
|
+
'size'?: number;
|
|
7924
|
+
/**
|
|
7925
|
+
* The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
7926
|
+
* @type {string}
|
|
7927
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7928
|
+
*/
|
|
7929
|
+
'ticker': string;
|
|
7930
|
+
/**
|
|
7931
|
+
* The time when the trade was generated at the exchange to nanosecond precision.
|
|
7932
|
+
* @type {number}
|
|
7933
|
+
* @memberof GetFuturesVXTradesNew200ResponseResultsInner
|
|
7934
|
+
*/
|
|
7935
|
+
'timestamp': number;
|
|
7936
|
+
}
|
|
7691
7937
|
/**
|
|
7692
7938
|
*
|
|
7693
7939
|
* @export
|
|
@@ -8450,6 +8696,122 @@ interface GetLastStocksQuote200ResponseResults {
|
|
|
8450
8696
|
*/
|
|
8451
8697
|
'z'?: number;
|
|
8452
8698
|
}
|
|
8699
|
+
/**
|
|
8700
|
+
*
|
|
8701
|
+
* @export
|
|
8702
|
+
* @interface GetLastStocksTrade200Response
|
|
8703
|
+
*/
|
|
8704
|
+
interface GetLastStocksTrade200Response {
|
|
8705
|
+
/**
|
|
8706
|
+
* A request id assigned by the server.
|
|
8707
|
+
* @type {string}
|
|
8708
|
+
* @memberof GetLastStocksTrade200Response
|
|
8709
|
+
*/
|
|
8710
|
+
'request_id': string;
|
|
8711
|
+
/**
|
|
8712
|
+
*
|
|
8713
|
+
* @type {GetLastStocksTrade200ResponseResults}
|
|
8714
|
+
* @memberof GetLastStocksTrade200Response
|
|
8715
|
+
*/
|
|
8716
|
+
'results'?: GetLastStocksTrade200ResponseResults;
|
|
8717
|
+
/**
|
|
8718
|
+
* The status of this request\'s response.
|
|
8719
|
+
* @type {string}
|
|
8720
|
+
* @memberof GetLastStocksTrade200Response
|
|
8721
|
+
*/
|
|
8722
|
+
'status': string;
|
|
8723
|
+
}
|
|
8724
|
+
/**
|
|
8725
|
+
*
|
|
8726
|
+
* @export
|
|
8727
|
+
* @interface GetLastStocksTrade200ResponseResults
|
|
8728
|
+
*/
|
|
8729
|
+
interface GetLastStocksTrade200ResponseResults {
|
|
8730
|
+
/**
|
|
8731
|
+
* The exchange symbol that this item is traded under.
|
|
8732
|
+
* @type {string}
|
|
8733
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8734
|
+
*/
|
|
8735
|
+
'T': string;
|
|
8736
|
+
/**
|
|
8737
|
+
* A list of condition codes.
|
|
8738
|
+
* @type {Array<number>}
|
|
8739
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8740
|
+
*/
|
|
8741
|
+
'c'?: Array<number>;
|
|
8742
|
+
/**
|
|
8743
|
+
* The size of the trade including the fractional component. This is represented as a decimal string.
|
|
8744
|
+
* @type {string}
|
|
8745
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8746
|
+
*/
|
|
8747
|
+
'ds': string;
|
|
8748
|
+
/**
|
|
8749
|
+
* The trade correction indicator.
|
|
8750
|
+
* @type {number}
|
|
8751
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8752
|
+
*/
|
|
8753
|
+
'e'?: number;
|
|
8754
|
+
/**
|
|
8755
|
+
* The nanosecond accuracy TRF(Trade Reporting Facility) Unix Timestamp. This is the timestamp of when the trade reporting facility received this message.
|
|
8756
|
+
* @type {number}
|
|
8757
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8758
|
+
*/
|
|
8759
|
+
'f'?: number;
|
|
8760
|
+
/**
|
|
8761
|
+
* The Trade ID which uniquely identifies a trade. These are unique per combination of ticker, exchange, and TRF. For example: A trade for AAPL executed on NYSE and a trade for AAPL executed on NASDAQ could potentially have the same Trade ID.
|
|
8762
|
+
* @type {string}
|
|
8763
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8764
|
+
*/
|
|
8765
|
+
'i': string;
|
|
8766
|
+
/**
|
|
8767
|
+
* The price of the trade. This is the actual dollar value per whole share of this trade. A trade of 100 shares with a price of $2.00 would be worth a total dollar value of $200.00.
|
|
8768
|
+
* @type {number}
|
|
8769
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8770
|
+
*/
|
|
8771
|
+
'p': number;
|
|
8772
|
+
/**
|
|
8773
|
+
* The sequence number represents the sequence in which message events happened. These are increasing and unique per ticker symbol, but will not always be sequential (e.g., 1, 2, 6, 9, 10, 11).
|
|
8774
|
+
* @type {number}
|
|
8775
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8776
|
+
*/
|
|
8777
|
+
'q': number;
|
|
8778
|
+
/**
|
|
8779
|
+
* The ID for the Trade Reporting Facility where the trade took place.
|
|
8780
|
+
* @type {number}
|
|
8781
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8782
|
+
*/
|
|
8783
|
+
'r'?: number;
|
|
8784
|
+
/**
|
|
8785
|
+
* The size of a trade (also known as volume).
|
|
8786
|
+
* @type {number}
|
|
8787
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8788
|
+
*/
|
|
8789
|
+
's'?: number;
|
|
8790
|
+
/**
|
|
8791
|
+
* The nanosecond accuracy SIP Unix Timestamp. This is the timestamp of when the SIP received this message from the exchange which produced it.
|
|
8792
|
+
* @type {number}
|
|
8793
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8794
|
+
*/
|
|
8795
|
+
't': number;
|
|
8796
|
+
/**
|
|
8797
|
+
* The exchange ID. See <a href=\"https://massive.com/docs/rest/stocks/market-operations/exchanges\" alt=\"Exchanges\">Exchanges</a> for Massive\'s mapping of exchange IDs.
|
|
8798
|
+
* @type {number}
|
|
8799
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8800
|
+
*/
|
|
8801
|
+
'x': number;
|
|
8802
|
+
/**
|
|
8803
|
+
* The nanosecond accuracy Participant/Exchange Unix Timestamp. This is the timestamp of when the quote was actually generated at the exchange.
|
|
8804
|
+
* @type {number}
|
|
8805
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8806
|
+
*/
|
|
8807
|
+
'y': number;
|
|
8808
|
+
/**
|
|
8809
|
+
* There are 3 tapes which define which exchange the ticker is listed on. These are integers in our objects which represent the letter of the alphabet. Eg: 1 = A, 2 = B, 3 = C. * Tape A is NYSE listed securities * Tape B is NYSE ARCA / NYSE American * Tape C is NASDAQ
|
|
8810
|
+
* @type {number}
|
|
8811
|
+
* @memberof GetLastStocksTrade200ResponseResults
|
|
8812
|
+
*/
|
|
8813
|
+
'z'?: number;
|
|
8814
|
+
}
|
|
8453
8815
|
/**
|
|
8454
8816
|
*
|
|
8455
8817
|
* @export
|
|
@@ -9894,6 +10256,12 @@ interface GetSnapshotSummary200ResponseResultsInnerSession {
|
|
|
9894
10256
|
* @memberof GetSnapshotSummary200ResponseResultsInnerSession
|
|
9895
10257
|
*/
|
|
9896
10258
|
'close': number;
|
|
10259
|
+
/**
|
|
10260
|
+
* The trading volume for the asset for the day with decimal precision. This field provides support for fractional shares, representing volume as a decimal string. This field is only returned for stocks snapshots.
|
|
10261
|
+
* @type {string}
|
|
10262
|
+
* @memberof GetSnapshotSummary200ResponseResultsInnerSession
|
|
10263
|
+
*/
|
|
10264
|
+
'decimal_volume'?: string;
|
|
9897
10265
|
/**
|
|
9898
10266
|
* Today\'s early trading change amount, difference between price and previous close if in early trading hours, otherwise difference between last price during early trading and previous close.
|
|
9899
10267
|
* @type {number}
|
|
@@ -10248,6 +10616,12 @@ interface GetSnapshots200ResponseResultsInnerLastMinute {
|
|
|
10248
10616
|
* @memberof GetSnapshots200ResponseResultsInnerLastMinute
|
|
10249
10617
|
*/
|
|
10250
10618
|
'close': number;
|
|
10619
|
+
/**
|
|
10620
|
+
* The trading volume for the minute aggregate with decimal precision. This field provides support for fractional shares, representing volume as a decimal string where the fractional part is expressed in millionths. This field is only returned for stocks snapshots.
|
|
10621
|
+
* @type {string}
|
|
10622
|
+
* @memberof GetSnapshots200ResponseResultsInnerLastMinute
|
|
10623
|
+
*/
|
|
10624
|
+
'decimal_volume'?: string;
|
|
10251
10625
|
/**
|
|
10252
10626
|
* The highest value for the minute aggregate.
|
|
10253
10627
|
* @type {number}
|
|
@@ -10366,6 +10740,12 @@ interface GetSnapshots200ResponseResultsInnerLastTrade {
|
|
|
10366
10740
|
* @memberof GetSnapshots200ResponseResultsInnerLastTrade
|
|
10367
10741
|
*/
|
|
10368
10742
|
'conditions'?: Array<number>;
|
|
10743
|
+
/**
|
|
10744
|
+
* The size of a trade, including fractional shares, represented as a decimal string where the fractional part is expressed in millionths. This field is only returned for stocks snapshots.
|
|
10745
|
+
* @type {string}
|
|
10746
|
+
* @memberof GetSnapshots200ResponseResultsInnerLastTrade
|
|
10747
|
+
*/
|
|
10748
|
+
'decimal_size'?: string;
|
|
10369
10749
|
/**
|
|
10370
10750
|
* The exchange ID. See <a href=\"https://massive.com/docs/rest/stocks/market-operations/exchanges\" alt=\"Exchanges\">Exchanges</a> for Massive\'s mapping of exchange IDs.
|
|
10371
10751
|
* @type {number}
|
|
@@ -10677,6 +11057,93 @@ interface GetStocksFilings10KVXSections200ResponseResultsInner {
|
|
|
10677
11057
|
*/
|
|
10678
11058
|
'ticker'?: string;
|
|
10679
11059
|
}
|
|
11060
|
+
/**
|
|
11061
|
+
*
|
|
11062
|
+
* @export
|
|
11063
|
+
* @interface GetStocksFilingsVXIndex200Response
|
|
11064
|
+
*/
|
|
11065
|
+
interface GetStocksFilingsVXIndex200Response {
|
|
11066
|
+
/**
|
|
11067
|
+
* If present, this value can be used to fetch the next page.
|
|
11068
|
+
* @type {string}
|
|
11069
|
+
* @memberof GetStocksFilingsVXIndex200Response
|
|
11070
|
+
*/
|
|
11071
|
+
'next_url'?: string;
|
|
11072
|
+
/**
|
|
11073
|
+
* A request id assigned by the server.
|
|
11074
|
+
* @type {string}
|
|
11075
|
+
* @memberof GetStocksFilingsVXIndex200Response
|
|
11076
|
+
*/
|
|
11077
|
+
'request_id': string;
|
|
11078
|
+
/**
|
|
11079
|
+
* The results for this request.
|
|
11080
|
+
* @type {Array<GetStocksFilingsVXIndex200ResponseResultsInner>}
|
|
11081
|
+
* @memberof GetStocksFilingsVXIndex200Response
|
|
11082
|
+
*/
|
|
11083
|
+
'results': Array<GetStocksFilingsVXIndex200ResponseResultsInner>;
|
|
11084
|
+
/**
|
|
11085
|
+
* The status of this request\'s response.
|
|
11086
|
+
* @type {string}
|
|
11087
|
+
* @memberof GetStocksFilingsVXIndex200Response
|
|
11088
|
+
*/
|
|
11089
|
+
'status': GetStocksFilingsVXIndex200ResponseStatusEnum;
|
|
11090
|
+
}
|
|
11091
|
+
/**
|
|
11092
|
+
* @export
|
|
11093
|
+
* @enum {string}
|
|
11094
|
+
*/
|
|
11095
|
+
declare enum GetStocksFilingsVXIndex200ResponseStatusEnum {
|
|
11096
|
+
Ok = "OK"
|
|
11097
|
+
}
|
|
11098
|
+
/**
|
|
11099
|
+
*
|
|
11100
|
+
* @export
|
|
11101
|
+
* @interface GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11102
|
+
*/
|
|
11103
|
+
interface GetStocksFilingsVXIndex200ResponseResultsInner {
|
|
11104
|
+
/**
|
|
11105
|
+
* SEC accession number uniquely identifying the filing (e.g., \'0000320193-24-000123\').
|
|
11106
|
+
* @type {string}
|
|
11107
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11108
|
+
*/
|
|
11109
|
+
'accession_number'?: string;
|
|
11110
|
+
/**
|
|
11111
|
+
* SEC Central Index Key (CIK) identifying the filing entity.
|
|
11112
|
+
* @type {string}
|
|
11113
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11114
|
+
*/
|
|
11115
|
+
'cik'?: string;
|
|
11116
|
+
/**
|
|
11117
|
+
* Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD).
|
|
11118
|
+
* @type {string}
|
|
11119
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11120
|
+
*/
|
|
11121
|
+
'filing_date'?: string;
|
|
11122
|
+
/**
|
|
11123
|
+
* Direct URL to the filing on the SEC EDGAR website.
|
|
11124
|
+
* @type {string}
|
|
11125
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11126
|
+
*/
|
|
11127
|
+
'filing_url'?: string;
|
|
11128
|
+
/**
|
|
11129
|
+
* SEC form type (e.g., \'10-K\', \'10-Q\', \'8-K\', \'S-1\', \'4\', etc.).
|
|
11130
|
+
* @type {string}
|
|
11131
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11132
|
+
*/
|
|
11133
|
+
'form_type'?: string;
|
|
11134
|
+
/**
|
|
11135
|
+
* Name of the company or entity that submitted the filing.
|
|
11136
|
+
* @type {string}
|
|
11137
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11138
|
+
*/
|
|
11139
|
+
'issuer_name'?: string;
|
|
11140
|
+
/**
|
|
11141
|
+
* Stock ticker symbol for the filing entity, if available.
|
|
11142
|
+
* @type {string}
|
|
11143
|
+
* @memberof GetStocksFilingsVXIndex200ResponseResultsInner
|
|
11144
|
+
*/
|
|
11145
|
+
'ticker'?: string;
|
|
11146
|
+
}
|
|
10680
11147
|
/**
|
|
10681
11148
|
*
|
|
10682
11149
|
* @export
|
|
@@ -11650,7 +12117,7 @@ interface GetStocksFinancialsV1Ratios200ResponseResultsInner {
|
|
|
11650
12117
|
* @type {number}
|
|
11651
12118
|
* @memberof GetStocksFinancialsV1Ratios200ResponseResultsInner
|
|
11652
12119
|
*/
|
|
11653
|
-
'price'
|
|
12120
|
+
'price'?: number;
|
|
11654
12121
|
/**
|
|
11655
12122
|
* Price-to-book ratio, calculated as stock price divided by book value per share, comparing market value to book value.
|
|
11656
12123
|
* @type {number}
|
|
@@ -12037,6 +12504,12 @@ interface GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay {
|
|
|
12037
12504
|
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay
|
|
12038
12505
|
*/
|
|
12039
12506
|
'c': number;
|
|
12507
|
+
/**
|
|
12508
|
+
* The volume including fractional shares, respresented as a string.
|
|
12509
|
+
* @type {string}
|
|
12510
|
+
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay
|
|
12511
|
+
*/
|
|
12512
|
+
'dv'?: string;
|
|
12040
12513
|
/**
|
|
12041
12514
|
* The highest price for the symbol in the given time period.
|
|
12042
12515
|
* @type {number}
|
|
@@ -12122,7 +12595,13 @@ interface GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade {
|
|
|
12122
12595
|
* @type {Array<number>}
|
|
12123
12596
|
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade
|
|
12124
12597
|
*/
|
|
12125
|
-
'c': Array<number>;
|
|
12598
|
+
'c': Array<number>;
|
|
12599
|
+
/**
|
|
12600
|
+
* The size of the trade including fractional shares, respresented as a string.
|
|
12601
|
+
* @type {string}
|
|
12602
|
+
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade
|
|
12603
|
+
*/
|
|
12604
|
+
'ds': string;
|
|
12126
12605
|
/**
|
|
12127
12606
|
* The Trade ID which uniquely identifies a trade. These are unique per combination of ticker, exchange, and TRF. For example: A trade for AAPL executed on NYSE and a trade for AAPL executed on NASDAQ could potentially have the same Trade ID.
|
|
12128
12607
|
* @type {string}
|
|
@@ -12172,6 +12651,18 @@ interface GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin {
|
|
|
12172
12651
|
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin
|
|
12173
12652
|
*/
|
|
12174
12653
|
'c': number;
|
|
12654
|
+
/**
|
|
12655
|
+
* The accumulated volume including fractional shares, respresented as a string.
|
|
12656
|
+
* @type {string}
|
|
12657
|
+
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin
|
|
12658
|
+
*/
|
|
12659
|
+
'dav': string;
|
|
12660
|
+
/**
|
|
12661
|
+
* The volume including fractional shares, respresented as a string.
|
|
12662
|
+
* @type {string}
|
|
12663
|
+
* @memberof GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin
|
|
12664
|
+
*/
|
|
12665
|
+
'dv'?: string;
|
|
12175
12666
|
/**
|
|
12176
12667
|
* The highest price for the symbol in the given time period.
|
|
12177
12668
|
* @type {number}
|
|
@@ -12394,6 +12885,12 @@ interface GetStocksTrades200ResponseResultsInner {
|
|
|
12394
12885
|
* @memberof GetStocksTrades200ResponseResultsInner
|
|
12395
12886
|
*/
|
|
12396
12887
|
'correction'?: number;
|
|
12888
|
+
/**
|
|
12889
|
+
* The size of the trade including the fractional component. This is represented as a decimal string.
|
|
12890
|
+
* @type {string}
|
|
12891
|
+
* @memberof GetStocksTrades200ResponseResultsInner
|
|
12892
|
+
*/
|
|
12893
|
+
'decimal_size': string;
|
|
12397
12894
|
/**
|
|
12398
12895
|
* The exchange ID. See <a href=\"https://massive.com/docs/rest/stocks/market-operations/exchanges\" alt=\"Exchanges\">Exchanges</a> for Massive\'s mapping of exchange IDs.
|
|
12399
12896
|
* @type {number}
|
|
@@ -13423,6 +13920,171 @@ interface GetTmxV1CorporateEvents200ResponseResultsInner {
|
|
|
13423
13920
|
*/
|
|
13424
13921
|
'url'?: string;
|
|
13425
13922
|
}
|
|
13923
|
+
/**
|
|
13924
|
+
*
|
|
13925
|
+
* @export
|
|
13926
|
+
* @interface GetV1ReferenceIpos200Response
|
|
13927
|
+
*/
|
|
13928
|
+
interface GetV1ReferenceIpos200Response {
|
|
13929
|
+
/**
|
|
13930
|
+
* If present, this value can be used to fetch the next page.
|
|
13931
|
+
* @type {string}
|
|
13932
|
+
* @memberof GetV1ReferenceIpos200Response
|
|
13933
|
+
*/
|
|
13934
|
+
'next_url'?: string;
|
|
13935
|
+
/**
|
|
13936
|
+
* A request id assigned by the server.
|
|
13937
|
+
* @type {string}
|
|
13938
|
+
* @memberof GetV1ReferenceIpos200Response
|
|
13939
|
+
*/
|
|
13940
|
+
'request_id': string;
|
|
13941
|
+
/**
|
|
13942
|
+
* The results for this request.
|
|
13943
|
+
* @type {Array<GetV1ReferenceIpos200ResponseResultsInner>}
|
|
13944
|
+
* @memberof GetV1ReferenceIpos200Response
|
|
13945
|
+
*/
|
|
13946
|
+
'results': Array<GetV1ReferenceIpos200ResponseResultsInner>;
|
|
13947
|
+
/**
|
|
13948
|
+
* The status of this request\'s response.
|
|
13949
|
+
* @type {string}
|
|
13950
|
+
* @memberof GetV1ReferenceIpos200Response
|
|
13951
|
+
*/
|
|
13952
|
+
'status': GetV1ReferenceIpos200ResponseStatusEnum;
|
|
13953
|
+
}
|
|
13954
|
+
/**
|
|
13955
|
+
* @export
|
|
13956
|
+
* @enum {string}
|
|
13957
|
+
*/
|
|
13958
|
+
declare enum GetV1ReferenceIpos200ResponseStatusEnum {
|
|
13959
|
+
Ok = "OK"
|
|
13960
|
+
}
|
|
13961
|
+
/**
|
|
13962
|
+
*
|
|
13963
|
+
* @export
|
|
13964
|
+
* @interface GetV1ReferenceIpos200ResponseResultsInner
|
|
13965
|
+
*/
|
|
13966
|
+
interface GetV1ReferenceIpos200ResponseResultsInner {
|
|
13967
|
+
/**
|
|
13968
|
+
* The date when the IPO event was announced.
|
|
13969
|
+
* @type {number}
|
|
13970
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
13971
|
+
*/
|
|
13972
|
+
'announced_date'?: number;
|
|
13973
|
+
/**
|
|
13974
|
+
* Underlying currency of the security.
|
|
13975
|
+
* @type {string}
|
|
13976
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
13977
|
+
*/
|
|
13978
|
+
'currency_code'?: string;
|
|
13979
|
+
/**
|
|
13980
|
+
* The price set by the company and its underwriters before the IPO goes live.
|
|
13981
|
+
* @type {number}
|
|
13982
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
13983
|
+
*/
|
|
13984
|
+
'final_issue_price'?: number;
|
|
13985
|
+
/**
|
|
13986
|
+
* The highest price within the IPO price range that the company might use to price the shares.
|
|
13987
|
+
* @type {number}
|
|
13988
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
13989
|
+
*/
|
|
13990
|
+
'highest_offer_price'?: number;
|
|
13991
|
+
/**
|
|
13992
|
+
* The status of the IPO.
|
|
13993
|
+
* @type {string}
|
|
13994
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
13995
|
+
*/
|
|
13996
|
+
'ipo_status'?: string;
|
|
13997
|
+
/**
|
|
13998
|
+
* International Securities Identification Number. This is a unique twelve-digit code that is assigned to every security issuance in the world.
|
|
13999
|
+
* @type {string}
|
|
14000
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14001
|
+
*/
|
|
14002
|
+
'isin'?: string;
|
|
14003
|
+
/**
|
|
14004
|
+
* Name of issuer.
|
|
14005
|
+
* @type {string}
|
|
14006
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14007
|
+
*/
|
|
14008
|
+
'issuer_name'?: string;
|
|
14009
|
+
/**
|
|
14010
|
+
* The date when the IPO event was last modified.
|
|
14011
|
+
* @type {number}
|
|
14012
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14013
|
+
*/
|
|
14014
|
+
'last_updated'?: number;
|
|
14015
|
+
/**
|
|
14016
|
+
* First trading date for the newly listed entity.
|
|
14017
|
+
* @type {number}
|
|
14018
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14019
|
+
*/
|
|
14020
|
+
'listing_date'?: number;
|
|
14021
|
+
/**
|
|
14022
|
+
* The minimum number of shares that an investor may apply for during an IPO.
|
|
14023
|
+
* @type {number}
|
|
14024
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14025
|
+
*/
|
|
14026
|
+
'lot_size'?: number;
|
|
14027
|
+
/**
|
|
14028
|
+
* The lowest price within the IPO price range that the company is willing to offer its shares to investors.
|
|
14029
|
+
* @type {number}
|
|
14030
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14031
|
+
*/
|
|
14032
|
+
'lowest_offer_price'?: number;
|
|
14033
|
+
/**
|
|
14034
|
+
* The upper limit of the shares that the company is offering to investors.
|
|
14035
|
+
* @type {number}
|
|
14036
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14037
|
+
*/
|
|
14038
|
+
'max_shares_offered'?: number;
|
|
14039
|
+
/**
|
|
14040
|
+
* The lower limit of shares that the company is willing to sell in the IPO.
|
|
14041
|
+
* @type {number}
|
|
14042
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14043
|
+
*/
|
|
14044
|
+
'min_shares_offered'?: number;
|
|
14045
|
+
/**
|
|
14046
|
+
* Market Identifier Code (MIC) of the primary exchange where the security is listed. The Market Identifier Code (MIC) (ISO 10383) is a unique identification code used to identify securities trading exchanges, regulated and non-regulated trading markets.
|
|
14047
|
+
* @type {string}
|
|
14048
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14049
|
+
*/
|
|
14050
|
+
'primary_exchange'?: string;
|
|
14051
|
+
/**
|
|
14052
|
+
* A brief description of the security. e.g. Class A Shares
|
|
14053
|
+
* @type {string}
|
|
14054
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14055
|
+
*/
|
|
14056
|
+
'security_description'?: string;
|
|
14057
|
+
/**
|
|
14058
|
+
* The classification of the stock. For example, CS stands for Common Stock.
|
|
14059
|
+
* @type {string}
|
|
14060
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14061
|
+
*/
|
|
14062
|
+
'security_type'?: string;
|
|
14063
|
+
/**
|
|
14064
|
+
* The total number of shares that the company has issued and are held by investors.
|
|
14065
|
+
* @type {number}
|
|
14066
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14067
|
+
*/
|
|
14068
|
+
'shares_outstanding'?: number;
|
|
14069
|
+
/**
|
|
14070
|
+
* The ticker symbol of the IPO event.
|
|
14071
|
+
* @type {string}
|
|
14072
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14073
|
+
*/
|
|
14074
|
+
'ticker'?: string;
|
|
14075
|
+
/**
|
|
14076
|
+
* The total amount raised by the company for IPO.
|
|
14077
|
+
* @type {number}
|
|
14078
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14079
|
+
*/
|
|
14080
|
+
'total_offer_size'?: number;
|
|
14081
|
+
/**
|
|
14082
|
+
* Nine-character alphanumeric code that uniquely identifies a financial security in North America.
|
|
14083
|
+
* @type {string}
|
|
14084
|
+
* @memberof GetV1ReferenceIpos200ResponseResultsInner
|
|
14085
|
+
*/
|
|
14086
|
+
'us_code'?: string;
|
|
14087
|
+
}
|
|
13426
14088
|
/**
|
|
13427
14089
|
*
|
|
13428
14090
|
* @export
|
|
@@ -15598,6 +16260,12 @@ interface SnapshotOHLCVVWOtc {
|
|
|
15598
16260
|
* @memberof SnapshotOHLCVVWOtc
|
|
15599
16261
|
*/
|
|
15600
16262
|
'c': number;
|
|
16263
|
+
/**
|
|
16264
|
+
* The volume including fractional shares, respresented as a string.
|
|
16265
|
+
* @type {string}
|
|
16266
|
+
* @memberof SnapshotOHLCVVWOtc
|
|
16267
|
+
*/
|
|
16268
|
+
'dv'?: string;
|
|
15601
16269
|
/**
|
|
15602
16270
|
* The highest price for the symbol in the given time period.
|
|
15603
16271
|
* @type {number}
|
|
@@ -15833,6 +16501,18 @@ interface StocksSnapshotMinute {
|
|
|
15833
16501
|
* @memberof StocksSnapshotMinute
|
|
15834
16502
|
*/
|
|
15835
16503
|
'c': number;
|
|
16504
|
+
/**
|
|
16505
|
+
* The accumulated volume including fractional shares, respresented as a string.
|
|
16506
|
+
* @type {string}
|
|
16507
|
+
* @memberof StocksSnapshotMinute
|
|
16508
|
+
*/
|
|
16509
|
+
'dav': string;
|
|
16510
|
+
/**
|
|
16511
|
+
* The volume including fractional shares, respresented as a string.
|
|
16512
|
+
* @type {string}
|
|
16513
|
+
* @memberof StocksSnapshotMinute
|
|
16514
|
+
*/
|
|
16515
|
+
'dv'?: string;
|
|
15836
16516
|
/**
|
|
15837
16517
|
* The highest price for the symbol in the given time period.
|
|
15838
16518
|
* @type {number}
|
|
@@ -15894,6 +16574,18 @@ interface StocksSnapshotMinuteOTC {
|
|
|
15894
16574
|
* @memberof StocksSnapshotMinuteOTC
|
|
15895
16575
|
*/
|
|
15896
16576
|
'c': number;
|
|
16577
|
+
/**
|
|
16578
|
+
* The accumulated volume including fractional shares, respresented as a string.
|
|
16579
|
+
* @type {string}
|
|
16580
|
+
* @memberof StocksSnapshotMinuteOTC
|
|
16581
|
+
*/
|
|
16582
|
+
'dav': string;
|
|
16583
|
+
/**
|
|
16584
|
+
* The volume including fractional shares, respresented as a string.
|
|
16585
|
+
* @type {string}
|
|
16586
|
+
* @memberof StocksSnapshotMinuteOTC
|
|
16587
|
+
*/
|
|
16588
|
+
'dv'?: string;
|
|
15897
16589
|
/**
|
|
15898
16590
|
* The highest price for the symbol in the given time period.
|
|
15899
16591
|
* @type {number}
|
|
@@ -15943,6 +16635,55 @@ interface StocksSnapshotMinuteOTC {
|
|
|
15943
16635
|
*/
|
|
15944
16636
|
'vw': number;
|
|
15945
16637
|
}
|
|
16638
|
+
/**
|
|
16639
|
+
*
|
|
16640
|
+
* @export
|
|
16641
|
+
* @interface StocksSnapshotPrevDay
|
|
16642
|
+
*/
|
|
16643
|
+
interface StocksSnapshotPrevDay {
|
|
16644
|
+
/**
|
|
16645
|
+
* The close price for the symbol in the given time period.
|
|
16646
|
+
* @type {number}
|
|
16647
|
+
* @memberof StocksSnapshotPrevDay
|
|
16648
|
+
*/
|
|
16649
|
+
'c': number;
|
|
16650
|
+
/**
|
|
16651
|
+
* The highest price for the symbol in the given time period.
|
|
16652
|
+
* @type {number}
|
|
16653
|
+
* @memberof StocksSnapshotPrevDay
|
|
16654
|
+
*/
|
|
16655
|
+
'h': number;
|
|
16656
|
+
/**
|
|
16657
|
+
* The lowest price for the symbol in the given time period.
|
|
16658
|
+
* @type {number}
|
|
16659
|
+
* @memberof StocksSnapshotPrevDay
|
|
16660
|
+
*/
|
|
16661
|
+
'l': number;
|
|
16662
|
+
/**
|
|
16663
|
+
* The open price for the symbol in the given time period.
|
|
16664
|
+
* @type {number}
|
|
16665
|
+
* @memberof StocksSnapshotPrevDay
|
|
16666
|
+
*/
|
|
16667
|
+
'o': number;
|
|
16668
|
+
/**
|
|
16669
|
+
* Whether or not this aggregate is for an OTC ticker. This field will be left off if false.
|
|
16670
|
+
* @type {boolean}
|
|
16671
|
+
* @memberof StocksSnapshotPrevDay
|
|
16672
|
+
*/
|
|
16673
|
+
'otc'?: boolean;
|
|
16674
|
+
/**
|
|
16675
|
+
* The trading volume of the symbol in the given time period.
|
|
16676
|
+
* @type {number}
|
|
16677
|
+
* @memberof StocksSnapshotPrevDay
|
|
16678
|
+
*/
|
|
16679
|
+
'v': number;
|
|
16680
|
+
/**
|
|
16681
|
+
* The volume weighted average price.
|
|
16682
|
+
* @type {number}
|
|
16683
|
+
* @memberof StocksSnapshotPrevDay
|
|
16684
|
+
*/
|
|
16685
|
+
'vw': number;
|
|
16686
|
+
}
|
|
15946
16687
|
/**
|
|
15947
16688
|
*
|
|
15948
16689
|
* @export
|
|
@@ -16455,11 +17196,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16455
17196
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
16456
17197
|
* @param {string} [tickerLt] Filter less than the value.
|
|
16457
17198
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
16458
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
16459
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
16460
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
16461
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
16462
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
17199
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17200
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17201
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17202
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17203
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
16463
17204
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
16464
17205
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16465
17206
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -16536,11 +17277,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16536
17277
|
* @param {string} [benzingaIdGte] Filter greater than or equal to the value.
|
|
16537
17278
|
* @param {string} [benzingaIdLt] Filter less than the value.
|
|
16538
17279
|
* @param {string} [benzingaIdLte] Filter less than or equal to the value.
|
|
16539
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds
|
|
16540
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
16541
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
16542
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
16543
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
17280
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17281
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17282
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17283
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17284
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
16544
17285
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'5000\'.
|
|
16545
17286
|
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
16546
17287
|
* @param {*} [options] Override http request option.
|
|
@@ -16581,12 +17322,12 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16581
17322
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
16582
17323
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
16583
17324
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
16584
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds
|
|
16585
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds
|
|
16586
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
16587
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
16588
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
16589
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
17325
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17326
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17327
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17328
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17329
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17330
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
16590
17331
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
16591
17332
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16592
17333
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -16706,11 +17447,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16706
17447
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
16707
17448
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
16708
17449
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
16709
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
16710
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
16711
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
16712
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
16713
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
17450
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17451
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17452
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17453
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17454
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
16714
17455
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
16715
17456
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
16716
17457
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -16749,11 +17490,11 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16749
17490
|
getBenzingaV1Ratings: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16750
17491
|
/**
|
|
16751
17492
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
16752
|
-
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds
|
|
16753
|
-
* @param {string} [publishedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
16754
|
-
* @param {string} [publishedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
16755
|
-
* @param {string} [publishedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
16756
|
-
* @param {string} [publishedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
17493
|
+
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17494
|
+
* @param {string} [publishedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17495
|
+
* @param {string} [publishedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17496
|
+
* @param {string} [publishedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
17497
|
+
* @param {string} [publishedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
16757
17498
|
* @param {string} [channels] Filter for arrays that contain the value.
|
|
16758
17499
|
* @param {string} [channelsAllOf] Filter for arrays that contain all of the values. Multiple values can be specified by using a comma separated list.
|
|
16759
17500
|
* @param {string} [channelsAnyOf] Filter for arrays that contain any of the values. Multiple values can be specified by using a comma separated list.
|
|
@@ -17508,6 +18249,21 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
17508
18249
|
* @throws {RequiredError}
|
|
17509
18250
|
*/
|
|
17510
18251
|
getFuturesVXProducts: (name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, tradingVenue?: string, tradingVenueAnyOf?: string, tradingVenueGt?: string, tradingVenueGte?: string, tradingVenueLt?: string, tradingVenueLte?: string, sector?: GetFuturesVXProductsSectorEnum, sectorAnyOf?: GetFuturesVXProductsSectorAnyOfEnum, subSector?: GetFuturesVXProductsSubSectorEnum, subSectorAnyOf?: GetFuturesVXProductsSubSectorAnyOfEnum, assetClass?: GetFuturesVXProductsAssetClassEnum, assetClassAnyOf?: GetFuturesVXProductsAssetClassAnyOfEnum, assetSubClass?: GetFuturesVXProductsAssetSubClassEnum, assetSubClassAnyOf?: GetFuturesVXProductsAssetSubClassAnyOfEnum, type?: GetFuturesVXProductsTypeEnum, typeAnyOf?: GetFuturesVXProductsTypeAnyOfEnum, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18252
|
+
/**
|
|
18253
|
+
*
|
|
18254
|
+
* @param {string} ticker The exchange symbol that this item is traded under.
|
|
18255
|
+
* @param {string} [timestamp] The nanosecond accuracy Exchange Unix Timestamp. This is the timestamp of when the quote was actually generated at the exchange. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18256
|
+
* @param {string} [timestampGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18257
|
+
* @param {string} [timestampGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18258
|
+
* @param {string} [timestampLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18259
|
+
* @param {string} [timestampLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18260
|
+
* @param {string} [sessionEndDate] The trade date representing the session end date for this quote. Used for partitioning and filtering quotes by trading session.
|
|
18261
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'49999\'.
|
|
18262
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18263
|
+
* @param {*} [options] Override http request option.
|
|
18264
|
+
* @throws {RequiredError}
|
|
18265
|
+
*/
|
|
18266
|
+
getFuturesVXQuotesNew: (ticker: string, timestamp?: string, timestampGt?: string, timestampGte?: string, timestampLt?: string, timestampLte?: string, sessionEndDate?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17511
18267
|
/**
|
|
17512
18268
|
* The Schedules API provides a unified way to retrieve trading schedules for futures markets, returning precise session open and close times, intraday breaks, and any adjustments for holidays or special events. You can request the full set of schedules for all products on a specific trading date or retrieve the schedule for a single product using its product code. All times are returned in Coordinated Universal Time (UTC), making it straightforward to align trading, execution, and operational workflows across systems. Use Cases: Schedule planning, market analysis, strategy alignment, risk and operations management.
|
|
17513
18269
|
* @summary Futures Schedules API
|
|
@@ -17556,6 +18312,42 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
17556
18312
|
* @throws {RequiredError}
|
|
17557
18313
|
*/
|
|
17558
18314
|
getFuturesVXSnapshot: (productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18315
|
+
/**
|
|
18316
|
+
* Retrieve a snapshot of the most recent futures contract data.
|
|
18317
|
+
* @summary futures_snapshot_v1 API
|
|
18318
|
+
* @param {string} [productCode] The code for the contracts\' underlying product.
|
|
18319
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18320
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
18321
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
18322
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
18323
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
18324
|
+
* @param {string} [ticker] The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
18325
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18326
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
18327
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
18328
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
18329
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
18330
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
18331
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
18332
|
+
* @param {*} [options] Override http request option.
|
|
18333
|
+
* @throws {RequiredError}
|
|
18334
|
+
*/
|
|
18335
|
+
getFuturesVXSnapshotNative: (productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18336
|
+
/**
|
|
18337
|
+
*
|
|
18338
|
+
* @param {string} ticker The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
18339
|
+
* @param {string} [timestamp] The time when the trade was generated at the exchange to nanosecond precision. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18340
|
+
* @param {string} [timestampGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18341
|
+
* @param {string} [timestampGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18342
|
+
* @param {string} [timestampLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18343
|
+
* @param {string} [timestampLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
18344
|
+
* @param {string} [sessionEndDate] The trade date representing the session end date for this trade. Used for partitioning and filtering trades by trading session.
|
|
18345
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'49999\'.
|
|
18346
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18347
|
+
* @param {*} [options] Override http request option.
|
|
18348
|
+
* @throws {RequiredError}
|
|
18349
|
+
*/
|
|
18350
|
+
getFuturesVXTradesNew: (ticker: string, timestamp?: string, timestampGt?: string, timestampGte?: string, timestampLt?: string, timestampLte?: string, sessionEndDate?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17559
18351
|
/**
|
|
17560
18352
|
* Get the daily open, high, low, and close (OHLC) for the entire cryptocurrency markets.
|
|
17561
18353
|
* @summary Grouped Daily (Bars)
|
|
@@ -18080,17 +18872,48 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
18080
18872
|
* @param {string} [filingDateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18081
18873
|
* @param {string} [filingDateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18082
18874
|
* @param {string} [filingDateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18083
|
-
* @param {string} [periodEnd] Period end date that the filing relates to (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
18084
|
-
* @param {string} [periodEndGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18085
|
-
* @param {string} [periodEndGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18086
|
-
* @param {string} [periodEndLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18087
|
-
* @param {string} [periodEndLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18088
|
-
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'9999\'.
|
|
18089
|
-
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'period_end\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18875
|
+
* @param {string} [periodEnd] Period end date that the filing relates to (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
18876
|
+
* @param {string} [periodEndGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18877
|
+
* @param {string} [periodEndGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18878
|
+
* @param {string} [periodEndLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18879
|
+
* @param {string} [periodEndLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18880
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'9999\'.
|
|
18881
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'period_end\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18882
|
+
* @param {*} [options] Override http request option.
|
|
18883
|
+
* @throws {RequiredError}
|
|
18884
|
+
*/
|
|
18885
|
+
getStocksFilings10KVXSections: (cik?: string, cikAnyOf?: string, cikGt?: string, cikGte?: string, cikLt?: string, cikLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, section?: GetStocksFilings10KVXSectionsSectionEnum, sectionAnyOf?: GetStocksFilings10KVXSectionsSectionAnyOfEnum, filingDate?: string, filingDateGt?: string, filingDateGte?: string, filingDateLt?: string, filingDateLte?: string, periodEnd?: string, periodEndGt?: string, periodEndGte?: string, periodEndLt?: string, periodEndLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18886
|
+
/**
|
|
18887
|
+
* SEC EDGAR master index providing metadata for all SEC filings including form types, filing dates, and direct links to source documents.
|
|
18888
|
+
* @param {string} [cik] SEC Central Index Key (CIK) identifying the filing entity.
|
|
18889
|
+
* @param {string} [cikAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18890
|
+
* @param {string} [cikGt] Filter greater than the value.
|
|
18891
|
+
* @param {string} [cikGte] Filter greater than or equal to the value.
|
|
18892
|
+
* @param {string} [cikLt] Filter less than the value.
|
|
18893
|
+
* @param {string} [cikLte] Filter less than or equal to the value.
|
|
18894
|
+
* @param {string} [ticker] Stock ticker symbol for the filing entity, if available.
|
|
18895
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18896
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
18897
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
18898
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
18899
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
18900
|
+
* @param {string} [formType] SEC form type (e.g., \'10-K\', \'10-Q\', \'8-K\', \'S-1\', \'4\', etc.).
|
|
18901
|
+
* @param {string} [formTypeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
18902
|
+
* @param {string} [formTypeGt] Filter greater than the value.
|
|
18903
|
+
* @param {string} [formTypeGte] Filter greater than or equal to the value.
|
|
18904
|
+
* @param {string} [formTypeLt] Filter less than the value.
|
|
18905
|
+
* @param {string} [formTypeLte] Filter less than or equal to the value.
|
|
18906
|
+
* @param {string} [filingDate] Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
18907
|
+
* @param {string} [filingDateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18908
|
+
* @param {string} [filingDateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18909
|
+
* @param {string} [filingDateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18910
|
+
* @param {string} [filingDateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
18911
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'1000\' if not specified. The maximum allowed limit is \'50000\'.
|
|
18912
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'filing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
18090
18913
|
* @param {*} [options] Override http request option.
|
|
18091
18914
|
* @throws {RequiredError}
|
|
18092
18915
|
*/
|
|
18093
|
-
|
|
18916
|
+
getStocksFilingsVXIndex: (cik?: string, cikAnyOf?: string, cikGt?: string, cikGte?: string, cikLt?: string, cikLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, formType?: string, formTypeAnyOf?: string, formTypeGt?: string, formTypeGte?: string, formTypeLt?: string, formTypeLte?: string, filingDate?: string, filingDateGt?: string, filingDateGte?: string, filingDateLt?: string, filingDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18094
18917
|
/**
|
|
18095
18918
|
* The risk factors identified in companies\' 10K filings.
|
|
18096
18919
|
* @param {string} [filingDate] Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD).
|
|
@@ -18764,6 +19587,39 @@ declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
18764
19587
|
* @throws {RequiredError}
|
|
18765
19588
|
*/
|
|
18766
19589
|
getTmxV1CorporateEvents: (date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, status?: string, statusAnyOf?: string, statusGt?: string, statusGte?: string, statusLt?: string, statusLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, isin?: string, isinAnyOf?: string, isinGt?: string, isinGte?: string, isinLt?: string, isinLte?: string, tradingVenue?: string, tradingVenueAnyOf?: string, tradingVenueGt?: string, tradingVenueGte?: string, tradingVenueLt?: string, tradingVenueLte?: string, tmxCompanyId?: number, tmxCompanyIdGt?: number, tmxCompanyIdGte?: number, tmxCompanyIdLt?: number, tmxCompanyIdLte?: number, tmxRecordId?: string, tmxRecordIdAnyOf?: string, tmxRecordIdGt?: string, tmxRecordIdGte?: string, tmxRecordIdLt?: string, tmxRecordIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19590
|
+
/**
|
|
19591
|
+
* Contains comprehensive data about Initial Public Offerings (IPOs) and direct listings for US stocks, tracking both historical and pending offerings with detailed pricing, share, and timing information.
|
|
19592
|
+
* @param {string} [ticker] The ticker symbol of the IPO event.
|
|
19593
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19594
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
19595
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
19596
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
19597
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
19598
|
+
* @param {string} [usCode] Nine-character alphanumeric code that uniquely identifies a financial security in North America.
|
|
19599
|
+
* @param {string} [usCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19600
|
+
* @param {string} [usCodeGt] Filter greater than the value.
|
|
19601
|
+
* @param {string} [usCodeGte] Filter greater than or equal to the value.
|
|
19602
|
+
* @param {string} [usCodeLt] Filter less than the value.
|
|
19603
|
+
* @param {string} [usCodeLte] Filter less than or equal to the value.
|
|
19604
|
+
* @param {string} [isin] International Securities Identification Number. This is a unique twelve-digit code that is assigned to every security issuance in the world.
|
|
19605
|
+
* @param {string} [isinAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19606
|
+
* @param {string} [isinGt] Filter greater than the value.
|
|
19607
|
+
* @param {string} [isinGte] Filter greater than or equal to the value.
|
|
19608
|
+
* @param {string} [isinLt] Filter less than the value.
|
|
19609
|
+
* @param {string} [isinLte] Filter less than or equal to the value.
|
|
19610
|
+
* @param {string} [listingDate] First trading date for the newly listed entity. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19611
|
+
* @param {string} [listingDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19612
|
+
* @param {string} [listingDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19613
|
+
* @param {string} [listingDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19614
|
+
* @param {string} [listingDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19615
|
+
* @param {GetV1ReferenceIposIpoStatusEnum} [ipoStatus] The status of the IPO.
|
|
19616
|
+
* @param {GetV1ReferenceIposIpoStatusAnyOfEnum} [ipoStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19617
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'1000\'.
|
|
19618
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'listing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
19619
|
+
* @param {*} [options] Override http request option.
|
|
19620
|
+
* @throws {RequiredError}
|
|
19621
|
+
*/
|
|
19622
|
+
getV1ReferenceIpos: (ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, usCode?: string, usCodeAnyOf?: string, usCodeGt?: string, usCodeGte?: string, usCodeLt?: string, usCodeLte?: string, isin?: string, isinAnyOf?: string, isinGt?: string, isinGte?: string, isinLt?: string, isinLte?: string, listingDate?: string, listingDateGt?: string, listingDateGte?: string, listingDateLt?: string, listingDateLte?: string, ipoStatus?: GetV1ReferenceIposIpoStatusEnum, ipoStatusAnyOf?: GetV1ReferenceIposIpoStatusAnyOfEnum, limit?: number, sort?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18767
19623
|
/**
|
|
18768
19624
|
* List all conditions that Massive uses.
|
|
18769
19625
|
* @summary Conditions
|
|
@@ -19055,11 +19911,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19055
19911
|
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
19056
19912
|
* @param {string} [tickerLt] Filter less than the value.
|
|
19057
19913
|
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
19058
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
19059
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
19060
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
19061
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
19062
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
19914
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19915
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19916
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19917
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19918
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19063
19919
|
* @param {string} [firm] The name of the research firm or investment bank issuing the rating.
|
|
19064
19920
|
* @param {string} [firmAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19065
19921
|
* @param {string} [firmGt] Filter greater than the value.
|
|
@@ -19136,11 +19992,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19136
19992
|
* @param {string} [benzingaIdGte] Filter greater than or equal to the value.
|
|
19137
19993
|
* @param {string} [benzingaIdLt] Filter less than the value.
|
|
19138
19994
|
* @param {string} [benzingaIdLte] Filter less than or equal to the value.
|
|
19139
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds
|
|
19140
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
19141
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
19142
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
19143
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
19995
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19996
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19997
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19998
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19999
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19144
20000
|
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'5000\'.
|
|
19145
20001
|
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
19146
20002
|
* @param {*} [options] Override http request option.
|
|
@@ -19181,12 +20037,12 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19181
20037
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
19182
20038
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
19183
20039
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
19184
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds
|
|
19185
|
-
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds
|
|
19186
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
19187
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
19188
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
19189
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
20040
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20041
|
+
* @param {string} [lastUpdatedAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20042
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20043
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20044
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20045
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19190
20046
|
* @param {string} [dateStatus] Indicates whether the date of the earnings report has been confirmed. Possible values include: projected, confirmed.
|
|
19191
20047
|
* @param {string} [dateStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19192
20048
|
* @param {string} [dateStatusGt] Filter greater than the value.
|
|
@@ -19306,11 +20162,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19306
20162
|
* @param {number} [importanceGte] Filter greater than or equal to the value. Value must be an integer.
|
|
19307
20163
|
* @param {number} [importanceLt] Filter less than the value. Value must be an integer.
|
|
19308
20164
|
* @param {number} [importanceLte] Filter less than or equal to the value. Value must be an integer.
|
|
19309
|
-
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
19310
|
-
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
19311
|
-
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
19312
|
-
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
19313
|
-
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
20165
|
+
* @param {string} [lastUpdated] The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20166
|
+
* @param {string} [lastUpdatedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20167
|
+
* @param {string} [lastUpdatedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20168
|
+
* @param {string} [lastUpdatedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20169
|
+
* @param {string} [lastUpdatedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19314
20170
|
* @param {string} [ratingAction] The description of the change in rating from the firm\'s last rating. Possible values include: downgrades, maintains, reinstates, reiterates, upgrades, assumes, initiates_coverage_on, terminates_coverage_on, removes, suspends, firm_dissolved.
|
|
19315
20171
|
* @param {string} [ratingActionAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
19316
20172
|
* @param {string} [ratingActionGt] Filter greater than the value.
|
|
@@ -19349,11 +20205,11 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
19349
20205
|
getBenzingaV1Ratings(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, importance?: number, importanceGt?: number, importanceGte?: number, importanceLt?: number, importanceLte?: number, lastUpdated?: string, lastUpdatedGt?: string, lastUpdatedGte?: string, lastUpdatedLt?: string, lastUpdatedLte?: string, ratingAction?: string, ratingActionAnyOf?: string, ratingActionGt?: string, ratingActionGte?: string, ratingActionLt?: string, ratingActionLte?: string, priceTargetAction?: string, priceTargetActionAnyOf?: string, priceTargetActionGt?: string, priceTargetActionGte?: string, priceTargetActionLt?: string, priceTargetActionLte?: string, benzingaId?: string, benzingaIdAnyOf?: string, benzingaIdGt?: string, benzingaIdGte?: string, benzingaIdLt?: string, benzingaIdLte?: string, benzingaAnalystId?: string, benzingaAnalystIdAnyOf?: string, benzingaAnalystIdGt?: string, benzingaAnalystIdGte?: string, benzingaAnalystIdLt?: string, benzingaAnalystIdLte?: string, benzingaFirmId?: string, benzingaFirmIdAnyOf?: string, benzingaFirmIdGt?: string, benzingaFirmIdGte?: string, benzingaFirmIdLt?: string, benzingaFirmIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetBenzingaV1Ratings200Response>>;
|
|
19350
20206
|
/**
|
|
19351
20207
|
* A comprehensive news article database from Benzinga, containing detailed information about financial news articles including metadata, content, and associated financial information.
|
|
19352
|
-
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds
|
|
19353
|
-
* @param {string} [publishedGt] Filter greater than the value. Value must be an integer timestamp in seconds
|
|
19354
|
-
* @param {string} [publishedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
19355
|
-
* @param {string} [publishedLt] Filter less than the value. Value must be an integer timestamp in seconds
|
|
19356
|
-
* @param {string} [publishedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
20208
|
+
* @param {string} [published] The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20209
|
+
* @param {string} [publishedGt] Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20210
|
+
* @param {string} [publishedGte] Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20211
|
+
* @param {string} [publishedLt] Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20212
|
+
* @param {string} [publishedLte] Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
19357
20213
|
* @param {string} [channels] Filter for arrays that contain the value.
|
|
19358
20214
|
* @param {string} [channelsAllOf] Filter for arrays that contain all of the values. Multiple values can be specified by using a comma separated list.
|
|
19359
20215
|
* @param {string} [channelsAnyOf] Filter for arrays that contain any of the values. Multiple values can be specified by using a comma separated list.
|
|
@@ -20108,6 +20964,21 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
20108
20964
|
* @throws {RequiredError}
|
|
20109
20965
|
*/
|
|
20110
20966
|
getFuturesVXProducts(name?: string, nameAnyOf?: string, nameGt?: string, nameGte?: string, nameLt?: string, nameLte?: string, productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, date?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, tradingVenue?: string, tradingVenueAnyOf?: string, tradingVenueGt?: string, tradingVenueGte?: string, tradingVenueLt?: string, tradingVenueLte?: string, sector?: GetFuturesVXProductsSectorEnum, sectorAnyOf?: GetFuturesVXProductsSectorAnyOfEnum, subSector?: GetFuturesVXProductsSubSectorEnum, subSectorAnyOf?: GetFuturesVXProductsSubSectorAnyOfEnum, assetClass?: GetFuturesVXProductsAssetClassEnum, assetClassAnyOf?: GetFuturesVXProductsAssetClassAnyOfEnum, assetSubClass?: GetFuturesVXProductsAssetSubClassEnum, assetSubClassAnyOf?: GetFuturesVXProductsAssetSubClassAnyOfEnum, type?: GetFuturesVXProductsTypeEnum, typeAnyOf?: GetFuturesVXProductsTypeAnyOfEnum, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXProducts200Response>>;
|
|
20967
|
+
/**
|
|
20968
|
+
*
|
|
20969
|
+
* @param {string} ticker The exchange symbol that this item is traded under.
|
|
20970
|
+
* @param {string} [timestamp] The nanosecond accuracy Exchange Unix Timestamp. This is the timestamp of when the quote was actually generated at the exchange. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20971
|
+
* @param {string} [timestampGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20972
|
+
* @param {string} [timestampGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20973
|
+
* @param {string} [timestampLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20974
|
+
* @param {string} [timestampLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
20975
|
+
* @param {string} [sessionEndDate] The trade date representing the session end date for this quote. Used for partitioning and filtering quotes by trading session.
|
|
20976
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'49999\'.
|
|
20977
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
20978
|
+
* @param {*} [options] Override http request option.
|
|
20979
|
+
* @throws {RequiredError}
|
|
20980
|
+
*/
|
|
20981
|
+
getFuturesVXQuotesNew(ticker: string, timestamp?: string, timestampGt?: string, timestampGte?: string, timestampLt?: string, timestampLte?: string, sessionEndDate?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXQuotesNew200Response>>;
|
|
20111
20982
|
/**
|
|
20112
20983
|
* The Schedules API provides a unified way to retrieve trading schedules for futures markets, returning precise session open and close times, intraday breaks, and any adjustments for holidays or special events. You can request the full set of schedules for all products on a specific trading date or retrieve the schedule for a single product using its product code. All times are returned in Coordinated Universal Time (UTC), making it straightforward to align trading, execution, and operational workflows across systems. Use Cases: Schedule planning, market analysis, strategy alignment, risk and operations management.
|
|
20113
20984
|
* @summary Futures Schedules API
|
|
@@ -20156,6 +21027,42 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
20156
21027
|
* @throws {RequiredError}
|
|
20157
21028
|
*/
|
|
20158
21029
|
getFuturesVXSnapshot(productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXSnapshot200Response>>;
|
|
21030
|
+
/**
|
|
21031
|
+
* Retrieve a snapshot of the most recent futures contract data.
|
|
21032
|
+
* @summary futures_snapshot_v1 API
|
|
21033
|
+
* @param {string} [productCode] The code for the contracts\' underlying product.
|
|
21034
|
+
* @param {string} [productCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21035
|
+
* @param {string} [productCodeGt] Filter greater than the value.
|
|
21036
|
+
* @param {string} [productCodeGte] Filter greater than or equal to the value.
|
|
21037
|
+
* @param {string} [productCodeLt] Filter less than the value.
|
|
21038
|
+
* @param {string} [productCodeLte] Filter less than or equal to the value.
|
|
21039
|
+
* @param {string} [ticker] The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
21040
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21041
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
21042
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
21043
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
21044
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
21045
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
21046
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
21047
|
+
* @param {*} [options] Override http request option.
|
|
21048
|
+
* @throws {RequiredError}
|
|
21049
|
+
*/
|
|
21050
|
+
getFuturesVXSnapshotNative(productCode?: string, productCodeAnyOf?: string, productCodeGt?: string, productCodeGte?: string, productCodeLt?: string, productCodeLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXSnapshot200Response>>;
|
|
21051
|
+
/**
|
|
21052
|
+
*
|
|
21053
|
+
* @param {string} ticker The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
21054
|
+
* @param {string} [timestamp] The time when the trade was generated at the exchange to nanosecond precision. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
21055
|
+
* @param {string} [timestampGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
21056
|
+
* @param {string} [timestampGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
21057
|
+
* @param {string} [timestampLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
21058
|
+
* @param {string} [timestampLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
21059
|
+
* @param {string} [sessionEndDate] The trade date representing the session end date for this trade. Used for partitioning and filtering trades by trading session.
|
|
21060
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'49999\'.
|
|
21061
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
21062
|
+
* @param {*} [options] Override http request option.
|
|
21063
|
+
* @throws {RequiredError}
|
|
21064
|
+
*/
|
|
21065
|
+
getFuturesVXTradesNew(ticker: string, timestamp?: string, timestampGt?: string, timestampGte?: string, timestampLt?: string, timestampLte?: string, sessionEndDate?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetFuturesVXTradesNew200Response>>;
|
|
20159
21066
|
/**
|
|
20160
21067
|
* Get the daily open, high, low, and close (OHLC) for the entire cryptocurrency markets.
|
|
20161
21068
|
* @summary Grouped Daily (Bars)
|
|
@@ -20346,7 +21253,7 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
20346
21253
|
* @param {*} [options] Override http request option.
|
|
20347
21254
|
* @throws {RequiredError}
|
|
20348
21255
|
*/
|
|
20349
|
-
getLastStocksTrade(stocksTicker: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<
|
|
21256
|
+
getLastStocksTrade(stocksTicker: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetLastStocksTrade200Response>>;
|
|
20350
21257
|
/**
|
|
20351
21258
|
* Get upcoming market holidays and their open/close times.
|
|
20352
21259
|
* @summary Market Holidays
|
|
@@ -20691,6 +21598,37 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
20691
21598
|
* @throws {RequiredError}
|
|
20692
21599
|
*/
|
|
20693
21600
|
getStocksFilings10KVXSections(cik?: string, cikAnyOf?: string, cikGt?: string, cikGte?: string, cikLt?: string, cikLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, section?: GetStocksFilings10KVXSectionsSectionEnum, sectionAnyOf?: GetStocksFilings10KVXSectionsSectionAnyOfEnum, filingDate?: string, filingDateGt?: string, filingDateGte?: string, filingDateLt?: string, filingDateLte?: string, periodEnd?: string, periodEndGt?: string, periodEndGte?: string, periodEndLt?: string, periodEndLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetStocksFilings10KVXSections200Response>>;
|
|
21601
|
+
/**
|
|
21602
|
+
* SEC EDGAR master index providing metadata for all SEC filings including form types, filing dates, and direct links to source documents.
|
|
21603
|
+
* @param {string} [cik] SEC Central Index Key (CIK) identifying the filing entity.
|
|
21604
|
+
* @param {string} [cikAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21605
|
+
* @param {string} [cikGt] Filter greater than the value.
|
|
21606
|
+
* @param {string} [cikGte] Filter greater than or equal to the value.
|
|
21607
|
+
* @param {string} [cikLt] Filter less than the value.
|
|
21608
|
+
* @param {string} [cikLte] Filter less than or equal to the value.
|
|
21609
|
+
* @param {string} [ticker] Stock ticker symbol for the filing entity, if available.
|
|
21610
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21611
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
21612
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
21613
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
21614
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
21615
|
+
* @param {string} [formType] SEC form type (e.g., \'10-K\', \'10-Q\', \'8-K\', \'S-1\', \'4\', etc.).
|
|
21616
|
+
* @param {string} [formTypeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
21617
|
+
* @param {string} [formTypeGt] Filter greater than the value.
|
|
21618
|
+
* @param {string} [formTypeGte] Filter greater than or equal to the value.
|
|
21619
|
+
* @param {string} [formTypeLt] Filter less than the value.
|
|
21620
|
+
* @param {string} [formTypeLte] Filter less than or equal to the value.
|
|
21621
|
+
* @param {string} [filingDate] Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
21622
|
+
* @param {string} [filingDateGt] Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
21623
|
+
* @param {string} [filingDateGte] Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
21624
|
+
* @param {string} [filingDateLt] Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
21625
|
+
* @param {string} [filingDateLte] Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
21626
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'1000\' if not specified. The maximum allowed limit is \'50000\'.
|
|
21627
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'filing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
21628
|
+
* @param {*} [options] Override http request option.
|
|
21629
|
+
* @throws {RequiredError}
|
|
21630
|
+
*/
|
|
21631
|
+
getStocksFilingsVXIndex(cik?: string, cikAnyOf?: string, cikGt?: string, cikGte?: string, cikLt?: string, cikLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, formType?: string, formTypeAnyOf?: string, formTypeGt?: string, formTypeGte?: string, formTypeLt?: string, formTypeLte?: string, filingDate?: string, filingDateGt?: string, filingDateGte?: string, filingDateLt?: string, filingDateLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetStocksFilingsVXIndex200Response>>;
|
|
20694
21632
|
/**
|
|
20695
21633
|
* The risk factors identified in companies\' 10K filings.
|
|
20696
21634
|
* @param {string} [filingDate] Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD).
|
|
@@ -21364,6 +22302,39 @@ declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
21364
22302
|
* @throws {RequiredError}
|
|
21365
22303
|
*/
|
|
21366
22304
|
getTmxV1CorporateEvents(date?: string, dateAnyOf?: string, dateGt?: string, dateGte?: string, dateLt?: string, dateLte?: string, type?: string, typeAnyOf?: string, typeGt?: string, typeGte?: string, typeLt?: string, typeLte?: string, status?: string, statusAnyOf?: string, statusGt?: string, statusGte?: string, statusLt?: string, statusLte?: string, ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, isin?: string, isinAnyOf?: string, isinGt?: string, isinGte?: string, isinLt?: string, isinLte?: string, tradingVenue?: string, tradingVenueAnyOf?: string, tradingVenueGt?: string, tradingVenueGte?: string, tradingVenueLt?: string, tradingVenueLte?: string, tmxCompanyId?: number, tmxCompanyIdGt?: number, tmxCompanyIdGte?: number, tmxCompanyIdLt?: number, tmxCompanyIdLte?: number, tmxRecordId?: string, tmxRecordIdAnyOf?: string, tmxRecordIdGt?: string, tmxRecordIdGte?: string, tmxRecordIdLt?: string, tmxRecordIdLte?: string, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetTmxV1CorporateEvents200Response>>;
|
|
22305
|
+
/**
|
|
22306
|
+
* Contains comprehensive data about Initial Public Offerings (IPOs) and direct listings for US stocks, tracking both historical and pending offerings with detailed pricing, share, and timing information.
|
|
22307
|
+
* @param {string} [ticker] The ticker symbol of the IPO event.
|
|
22308
|
+
* @param {string} [tickerAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22309
|
+
* @param {string} [tickerGt] Filter greater than the value.
|
|
22310
|
+
* @param {string} [tickerGte] Filter greater than or equal to the value.
|
|
22311
|
+
* @param {string} [tickerLt] Filter less than the value.
|
|
22312
|
+
* @param {string} [tickerLte] Filter less than or equal to the value.
|
|
22313
|
+
* @param {string} [usCode] Nine-character alphanumeric code that uniquely identifies a financial security in North America.
|
|
22314
|
+
* @param {string} [usCodeAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22315
|
+
* @param {string} [usCodeGt] Filter greater than the value.
|
|
22316
|
+
* @param {string} [usCodeGte] Filter greater than or equal to the value.
|
|
22317
|
+
* @param {string} [usCodeLt] Filter less than the value.
|
|
22318
|
+
* @param {string} [usCodeLte] Filter less than or equal to the value.
|
|
22319
|
+
* @param {string} [isin] International Securities Identification Number. This is a unique twelve-digit code that is assigned to every security issuance in the world.
|
|
22320
|
+
* @param {string} [isinAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22321
|
+
* @param {string} [isinGt] Filter greater than the value.
|
|
22322
|
+
* @param {string} [isinGte] Filter greater than or equal to the value.
|
|
22323
|
+
* @param {string} [isinLt] Filter less than the value.
|
|
22324
|
+
* @param {string} [isinLte] Filter less than or equal to the value.
|
|
22325
|
+
* @param {string} [listingDate] First trading date for the newly listed entity. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22326
|
+
* @param {string} [listingDateGt] Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22327
|
+
* @param {string} [listingDateGte] Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22328
|
+
* @param {string} [listingDateLt] Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22329
|
+
* @param {string} [listingDateLte] Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22330
|
+
* @param {GetV1ReferenceIposIpoStatusEnum} [ipoStatus] The status of the IPO.
|
|
22331
|
+
* @param {GetV1ReferenceIposIpoStatusAnyOfEnum} [ipoStatusAnyOf] Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
22332
|
+
* @param {number} [limit] Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'1000\'.
|
|
22333
|
+
* @param {string} [sort] A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'listing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
22334
|
+
* @param {*} [options] Override http request option.
|
|
22335
|
+
* @throws {RequiredError}
|
|
22336
|
+
*/
|
|
22337
|
+
getV1ReferenceIpos(ticker?: string, tickerAnyOf?: string, tickerGt?: string, tickerGte?: string, tickerLt?: string, tickerLte?: string, usCode?: string, usCodeAnyOf?: string, usCodeGt?: string, usCodeGte?: string, usCodeLt?: string, usCodeLte?: string, isin?: string, isinAnyOf?: string, isinGt?: string, isinGte?: string, isinLt?: string, isinLte?: string, listingDate?: string, listingDateGt?: string, listingDateGte?: string, listingDateLt?: string, listingDateLte?: string, ipoStatus?: GetV1ReferenceIposIpoStatusEnum, ipoStatusAnyOf?: GetV1ReferenceIposIpoStatusAnyOfEnum, limit?: number, sort?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetV1ReferenceIpos200Response>>;
|
|
21367
22338
|
/**
|
|
21368
22339
|
* List all conditions that Massive uses.
|
|
21369
22340
|
* @summary Conditions
|
|
@@ -21986,6 +22957,13 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
21986
22957
|
* @throws {RequiredError}
|
|
21987
22958
|
*/
|
|
21988
22959
|
getFuturesVXProducts(requestParameters?: DefaultApiGetFuturesVXProductsRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXProducts200Response>;
|
|
22960
|
+
/**
|
|
22961
|
+
*
|
|
22962
|
+
* @param {DefaultApiGetFuturesVXQuotesNewRequest} requestParameters Request parameters.
|
|
22963
|
+
* @param {*} [options] Override http request option.
|
|
22964
|
+
* @throws {RequiredError}
|
|
22965
|
+
*/
|
|
22966
|
+
getFuturesVXQuotesNew(requestParameters: DefaultApiGetFuturesVXQuotesNewRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXQuotesNew200Response>;
|
|
21989
22967
|
/**
|
|
21990
22968
|
* The Schedules API provides a unified way to retrieve trading schedules for futures markets, returning precise session open and close times, intraday breaks, and any adjustments for holidays or special events. You can request the full set of schedules for all products on a specific trading date or retrieve the schedule for a single product using its product code. All times are returned in Coordinated Universal Time (UTC), making it straightforward to align trading, execution, and operational workflows across systems. Use Cases: Schedule planning, market analysis, strategy alignment, risk and operations management.
|
|
21991
22969
|
* @summary Futures Schedules API
|
|
@@ -22002,6 +22980,21 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
22002
22980
|
* @throws {RequiredError}
|
|
22003
22981
|
*/
|
|
22004
22982
|
getFuturesVXSnapshot(requestParameters?: DefaultApiGetFuturesVXSnapshotRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXSnapshot200Response>;
|
|
22983
|
+
/**
|
|
22984
|
+
* Retrieve a snapshot of the most recent futures contract data.
|
|
22985
|
+
* @summary futures_snapshot_v1 API
|
|
22986
|
+
* @param {DefaultApiGetFuturesVXSnapshotNativeRequest} requestParameters Request parameters.
|
|
22987
|
+
* @param {*} [options] Override http request option.
|
|
22988
|
+
* @throws {RequiredError}
|
|
22989
|
+
*/
|
|
22990
|
+
getFuturesVXSnapshotNative(requestParameters?: DefaultApiGetFuturesVXSnapshotNativeRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXSnapshot200Response>;
|
|
22991
|
+
/**
|
|
22992
|
+
*
|
|
22993
|
+
* @param {DefaultApiGetFuturesVXTradesNewRequest} requestParameters Request parameters.
|
|
22994
|
+
* @param {*} [options] Override http request option.
|
|
22995
|
+
* @throws {RequiredError}
|
|
22996
|
+
*/
|
|
22997
|
+
getFuturesVXTradesNew(requestParameters: DefaultApiGetFuturesVXTradesNewRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXTradesNew200Response>;
|
|
22005
22998
|
/**
|
|
22006
22999
|
* Get the daily open, high, low, and close (OHLC) for the entire cryptocurrency markets.
|
|
22007
23000
|
* @summary Grouped Daily (Bars)
|
|
@@ -22121,7 +23114,7 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
22121
23114
|
* @param {*} [options] Override http request option.
|
|
22122
23115
|
* @throws {RequiredError}
|
|
22123
23116
|
*/
|
|
22124
|
-
getLastStocksTrade(requestParameters: DefaultApiGetLastStocksTradeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
23117
|
+
getLastStocksTrade(requestParameters: DefaultApiGetLastStocksTradeRequest, options?: RawAxiosRequestConfig): Promise<GetLastStocksTrade200Response>;
|
|
22125
23118
|
/**
|
|
22126
23119
|
* Get upcoming market holidays and their open/close times.
|
|
22127
23120
|
* @summary Market Holidays
|
|
@@ -22318,6 +23311,13 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
22318
23311
|
* @throws {RequiredError}
|
|
22319
23312
|
*/
|
|
22320
23313
|
getStocksFilings10KVXSections(requestParameters?: DefaultApiGetStocksFilings10KVXSectionsRequest, options?: RawAxiosRequestConfig): Promise<GetStocksFilings10KVXSections200Response>;
|
|
23314
|
+
/**
|
|
23315
|
+
* SEC EDGAR master index providing metadata for all SEC filings including form types, filing dates, and direct links to source documents.
|
|
23316
|
+
* @param {DefaultApiGetStocksFilingsVXIndexRequest} requestParameters Request parameters.
|
|
23317
|
+
* @param {*} [options] Override http request option.
|
|
23318
|
+
* @throws {RequiredError}
|
|
23319
|
+
*/
|
|
23320
|
+
getStocksFilingsVXIndex(requestParameters?: DefaultApiGetStocksFilingsVXIndexRequest, options?: RawAxiosRequestConfig): Promise<GetStocksFilingsVXIndex200Response>;
|
|
22321
23321
|
/**
|
|
22322
23322
|
* The risk factors identified in companies\' 10K filings.
|
|
22323
23323
|
* @param {DefaultApiGetStocksFilingsVXRiskFactorsRequest} requestParameters Request parameters.
|
|
@@ -22489,6 +23489,13 @@ declare const DefaultApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
22489
23489
|
* @throws {RequiredError}
|
|
22490
23490
|
*/
|
|
22491
23491
|
getTmxV1CorporateEvents(requestParameters?: DefaultApiGetTmxV1CorporateEventsRequest, options?: RawAxiosRequestConfig): Promise<GetTmxV1CorporateEvents200Response>;
|
|
23492
|
+
/**
|
|
23493
|
+
* Contains comprehensive data about Initial Public Offerings (IPOs) and direct listings for US stocks, tracking both historical and pending offerings with detailed pricing, share, and timing information.
|
|
23494
|
+
* @param {DefaultApiGetV1ReferenceIposRequest} requestParameters Request parameters.
|
|
23495
|
+
* @param {*} [options] Override http request option.
|
|
23496
|
+
* @throws {RequiredError}
|
|
23497
|
+
*/
|
|
23498
|
+
getV1ReferenceIpos(requestParameters?: DefaultApiGetV1ReferenceIposRequest, options?: RawAxiosRequestConfig): Promise<GetV1ReferenceIpos200Response>;
|
|
22492
23499
|
/**
|
|
22493
23500
|
* List all conditions that Massive uses.
|
|
22494
23501
|
* @summary Conditions
|
|
@@ -22822,31 +23829,31 @@ interface DefaultApiGetBenzingaV1AnalystInsightsRequest {
|
|
|
22822
23829
|
*/
|
|
22823
23830
|
readonly tickerLte?: string;
|
|
22824
23831
|
/**
|
|
22825
|
-
* The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
23832
|
+
* The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22826
23833
|
* @type {string}
|
|
22827
23834
|
* @memberof DefaultApiGetBenzingaV1AnalystInsights
|
|
22828
23835
|
*/
|
|
22829
23836
|
readonly lastUpdated?: string;
|
|
22830
23837
|
/**
|
|
22831
|
-
* Filter greater than the value. Value must be an integer timestamp in seconds
|
|
23838
|
+
* Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22832
23839
|
* @type {string}
|
|
22833
23840
|
* @memberof DefaultApiGetBenzingaV1AnalystInsights
|
|
22834
23841
|
*/
|
|
22835
23842
|
readonly lastUpdatedGt?: string;
|
|
22836
23843
|
/**
|
|
22837
|
-
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
23844
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22838
23845
|
* @type {string}
|
|
22839
23846
|
* @memberof DefaultApiGetBenzingaV1AnalystInsights
|
|
22840
23847
|
*/
|
|
22841
23848
|
readonly lastUpdatedGte?: string;
|
|
22842
23849
|
/**
|
|
22843
|
-
* Filter less than the value. Value must be an integer timestamp in seconds
|
|
23850
|
+
* Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22844
23851
|
* @type {string}
|
|
22845
23852
|
* @memberof DefaultApiGetBenzingaV1AnalystInsights
|
|
22846
23853
|
*/
|
|
22847
23854
|
readonly lastUpdatedLt?: string;
|
|
22848
23855
|
/**
|
|
22849
|
-
* Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
23856
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
22850
23857
|
* @type {string}
|
|
22851
23858
|
* @memberof DefaultApiGetBenzingaV1AnalystInsights
|
|
22852
23859
|
*/
|
|
@@ -23250,31 +24257,31 @@ interface DefaultApiGetBenzingaV1BullsBearsSayRequest {
|
|
|
23250
24257
|
*/
|
|
23251
24258
|
readonly benzingaIdLte?: string;
|
|
23252
24259
|
/**
|
|
23253
|
-
* The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds
|
|
24260
|
+
* The timestamp (formatted as an ISO 8601 timestamp) when the bull/bear case was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23254
24261
|
* @type {string}
|
|
23255
24262
|
* @memberof DefaultApiGetBenzingaV1BullsBearsSay
|
|
23256
24263
|
*/
|
|
23257
24264
|
readonly lastUpdated?: string;
|
|
23258
24265
|
/**
|
|
23259
|
-
* Filter greater than the value. Value must be an integer timestamp in seconds
|
|
24266
|
+
* Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23260
24267
|
* @type {string}
|
|
23261
24268
|
* @memberof DefaultApiGetBenzingaV1BullsBearsSay
|
|
23262
24269
|
*/
|
|
23263
24270
|
readonly lastUpdatedGt?: string;
|
|
23264
24271
|
/**
|
|
23265
|
-
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
24272
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23266
24273
|
* @type {string}
|
|
23267
24274
|
* @memberof DefaultApiGetBenzingaV1BullsBearsSay
|
|
23268
24275
|
*/
|
|
23269
24276
|
readonly lastUpdatedGte?: string;
|
|
23270
24277
|
/**
|
|
23271
|
-
* Filter less than the value. Value must be an integer timestamp in seconds
|
|
24278
|
+
* Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23272
24279
|
* @type {string}
|
|
23273
24280
|
* @memberof DefaultApiGetBenzingaV1BullsBearsSay
|
|
23274
24281
|
*/
|
|
23275
24282
|
readonly lastUpdatedLt?: string;
|
|
23276
24283
|
/**
|
|
23277
|
-
* Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
24284
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23278
24285
|
* @type {string}
|
|
23279
24286
|
* @memberof DefaultApiGetBenzingaV1BullsBearsSay
|
|
23280
24287
|
*/
|
|
@@ -23462,37 +24469,37 @@ interface DefaultApiGetBenzingaV1EarningsRequest {
|
|
|
23462
24469
|
*/
|
|
23463
24470
|
readonly importanceLte?: number;
|
|
23464
24471
|
/**
|
|
23465
|
-
* The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds
|
|
24472
|
+
* The timestamp (formatted as an ISO 8601 timestamp) when the record was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23466
24473
|
* @type {string}
|
|
23467
24474
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23468
24475
|
*/
|
|
23469
24476
|
readonly lastUpdated?: string;
|
|
23470
24477
|
/**
|
|
23471
|
-
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds
|
|
24478
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23472
24479
|
* @type {string}
|
|
23473
24480
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23474
24481
|
*/
|
|
23475
24482
|
readonly lastUpdatedAnyOf?: string;
|
|
23476
24483
|
/**
|
|
23477
|
-
* Filter greater than the value. Value must be an integer timestamp in seconds
|
|
24484
|
+
* Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23478
24485
|
* @type {string}
|
|
23479
24486
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23480
24487
|
*/
|
|
23481
24488
|
readonly lastUpdatedGt?: string;
|
|
23482
24489
|
/**
|
|
23483
|
-
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
24490
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23484
24491
|
* @type {string}
|
|
23485
24492
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23486
24493
|
*/
|
|
23487
24494
|
readonly lastUpdatedGte?: string;
|
|
23488
24495
|
/**
|
|
23489
|
-
* Filter less than the value. Value must be an integer timestamp in seconds
|
|
24496
|
+
* Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23490
24497
|
* @type {string}
|
|
23491
24498
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23492
24499
|
*/
|
|
23493
24500
|
readonly lastUpdatedLt?: string;
|
|
23494
24501
|
/**
|
|
23495
|
-
* Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
24502
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
23496
24503
|
* @type {string}
|
|
23497
24504
|
* @memberof DefaultApiGetBenzingaV1Earnings
|
|
23498
24505
|
*/
|
|
@@ -24125,31 +25132,31 @@ interface DefaultApiGetBenzingaV1RatingsRequest {
|
|
|
24125
25132
|
*/
|
|
24126
25133
|
readonly importanceLte?: number;
|
|
24127
25134
|
/**
|
|
24128
|
-
* The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds
|
|
25135
|
+
* The timestamp (formatted as an ISO 8601 timestamp) when the rating was last updated in the system. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24129
25136
|
* @type {string}
|
|
24130
25137
|
* @memberof DefaultApiGetBenzingaV1Ratings
|
|
24131
25138
|
*/
|
|
24132
25139
|
readonly lastUpdated?: string;
|
|
24133
25140
|
/**
|
|
24134
|
-
* Filter greater than the value. Value must be an integer timestamp in seconds
|
|
25141
|
+
* Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24135
25142
|
* @type {string}
|
|
24136
25143
|
* @memberof DefaultApiGetBenzingaV1Ratings
|
|
24137
25144
|
*/
|
|
24138
25145
|
readonly lastUpdatedGt?: string;
|
|
24139
25146
|
/**
|
|
24140
|
-
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
25147
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24141
25148
|
* @type {string}
|
|
24142
25149
|
* @memberof DefaultApiGetBenzingaV1Ratings
|
|
24143
25150
|
*/
|
|
24144
25151
|
readonly lastUpdatedGte?: string;
|
|
24145
25152
|
/**
|
|
24146
|
-
* Filter less than the value. Value must be an integer timestamp in seconds
|
|
25153
|
+
* Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24147
25154
|
* @type {string}
|
|
24148
25155
|
* @memberof DefaultApiGetBenzingaV1Ratings
|
|
24149
25156
|
*/
|
|
24150
25157
|
readonly lastUpdatedLt?: string;
|
|
24151
25158
|
/**
|
|
24152
|
-
* Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
25159
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24153
25160
|
* @type {string}
|
|
24154
25161
|
* @memberof DefaultApiGetBenzingaV1Ratings
|
|
24155
25162
|
*/
|
|
@@ -24354,31 +25361,31 @@ interface DefaultApiGetBenzingaV1RatingsRequest {
|
|
|
24354
25361
|
*/
|
|
24355
25362
|
interface DefaultApiGetBenzingaV2NewsRequest {
|
|
24356
25363
|
/**
|
|
24357
|
-
* The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds
|
|
25364
|
+
* The timestamp (formatted as an ISO 8601 timestamp) when the news article was originally published. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24358
25365
|
* @type {string}
|
|
24359
25366
|
* @memberof DefaultApiGetBenzingaV2News
|
|
24360
25367
|
*/
|
|
24361
25368
|
readonly published?: string;
|
|
24362
25369
|
/**
|
|
24363
|
-
* Filter greater than the value. Value must be an integer timestamp in seconds
|
|
25370
|
+
* Filter greater than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24364
25371
|
* @type {string}
|
|
24365
25372
|
* @memberof DefaultApiGetBenzingaV2News
|
|
24366
25373
|
*/
|
|
24367
25374
|
readonly publishedGt?: string;
|
|
24368
25375
|
/**
|
|
24369
|
-
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds
|
|
25376
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24370
25377
|
* @type {string}
|
|
24371
25378
|
* @memberof DefaultApiGetBenzingaV2News
|
|
24372
25379
|
*/
|
|
24373
25380
|
readonly publishedGte?: string;
|
|
24374
25381
|
/**
|
|
24375
|
-
* Filter less than the value. Value must be an integer timestamp in seconds
|
|
25382
|
+
* Filter less than the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24376
25383
|
* @type {string}
|
|
24377
25384
|
* @memberof DefaultApiGetBenzingaV2News
|
|
24378
25385
|
*/
|
|
24379
25386
|
readonly publishedLt?: string;
|
|
24380
25387
|
/**
|
|
24381
|
-
* Filter less than or equal to the value. Value must be an integer timestamp in seconds
|
|
25388
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in seconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
24382
25389
|
* @type {string}
|
|
24383
25390
|
* @memberof DefaultApiGetBenzingaV2News
|
|
24384
25391
|
*/
|
|
@@ -27591,6 +28598,67 @@ interface DefaultApiGetFuturesVXProductsRequest {
|
|
|
27591
28598
|
*/
|
|
27592
28599
|
readonly sort?: string;
|
|
27593
28600
|
}
|
|
28601
|
+
/**
|
|
28602
|
+
* Request parameters for getFuturesVXQuotesNew operation in DefaultApi.
|
|
28603
|
+
* @export
|
|
28604
|
+
* @interface DefaultApiGetFuturesVXQuotesNewRequest
|
|
28605
|
+
*/
|
|
28606
|
+
interface DefaultApiGetFuturesVXQuotesNewRequest {
|
|
28607
|
+
/**
|
|
28608
|
+
* The exchange symbol that this item is traded under.
|
|
28609
|
+
* @type {string}
|
|
28610
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28611
|
+
*/
|
|
28612
|
+
readonly ticker: string;
|
|
28613
|
+
/**
|
|
28614
|
+
* The nanosecond accuracy Exchange Unix Timestamp. This is the timestamp of when the quote was actually generated at the exchange. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28615
|
+
* @type {string}
|
|
28616
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28617
|
+
*/
|
|
28618
|
+
readonly timestamp?: string;
|
|
28619
|
+
/**
|
|
28620
|
+
* Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28621
|
+
* @type {string}
|
|
28622
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28623
|
+
*/
|
|
28624
|
+
readonly timestampGt?: string;
|
|
28625
|
+
/**
|
|
28626
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28627
|
+
* @type {string}
|
|
28628
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28629
|
+
*/
|
|
28630
|
+
readonly timestampGte?: string;
|
|
28631
|
+
/**
|
|
28632
|
+
* Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28633
|
+
* @type {string}
|
|
28634
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28635
|
+
*/
|
|
28636
|
+
readonly timestampLt?: string;
|
|
28637
|
+
/**
|
|
28638
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28639
|
+
* @type {string}
|
|
28640
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28641
|
+
*/
|
|
28642
|
+
readonly timestampLte?: string;
|
|
28643
|
+
/**
|
|
28644
|
+
* The trade date representing the session end date for this quote. Used for partitioning and filtering quotes by trading session.
|
|
28645
|
+
* @type {string}
|
|
28646
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28647
|
+
*/
|
|
28648
|
+
readonly sessionEndDate?: string;
|
|
28649
|
+
/**
|
|
28650
|
+
* Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'49999\'.
|
|
28651
|
+
* @type {number}
|
|
28652
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28653
|
+
*/
|
|
28654
|
+
readonly limit?: number;
|
|
28655
|
+
/**
|
|
28656
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
28657
|
+
* @type {string}
|
|
28658
|
+
* @memberof DefaultApiGetFuturesVXQuotesNew
|
|
28659
|
+
*/
|
|
28660
|
+
readonly sort?: string;
|
|
28661
|
+
}
|
|
27594
28662
|
/**
|
|
27595
28663
|
* Request parameters for getFuturesVXSchedules operation in DefaultApi.
|
|
27596
28664
|
* @export
|
|
@@ -27670,142 +28738,294 @@ interface DefaultApiGetFuturesVXSchedulesRequest {
|
|
|
27670
28738
|
*/
|
|
27671
28739
|
readonly sessionEndDateLte?: string;
|
|
27672
28740
|
/**
|
|
27673
|
-
* The trading venue (MIC) for the exchange on which this schedule\'s product trades.
|
|
28741
|
+
* The trading venue (MIC) for the exchange on which this schedule\'s product trades.
|
|
28742
|
+
* @type {string}
|
|
28743
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28744
|
+
*/
|
|
28745
|
+
readonly tradingVenue?: string;
|
|
28746
|
+
/**
|
|
28747
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
28748
|
+
* @type {string}
|
|
28749
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28750
|
+
*/
|
|
28751
|
+
readonly tradingVenueAnyOf?: string;
|
|
28752
|
+
/**
|
|
28753
|
+
* Filter greater than the value.
|
|
28754
|
+
* @type {string}
|
|
28755
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28756
|
+
*/
|
|
28757
|
+
readonly tradingVenueGt?: string;
|
|
28758
|
+
/**
|
|
28759
|
+
* Filter greater than or equal to the value.
|
|
28760
|
+
* @type {string}
|
|
28761
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28762
|
+
*/
|
|
28763
|
+
readonly tradingVenueGte?: string;
|
|
28764
|
+
/**
|
|
28765
|
+
* Filter less than the value.
|
|
28766
|
+
* @type {string}
|
|
28767
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28768
|
+
*/
|
|
28769
|
+
readonly tradingVenueLt?: string;
|
|
28770
|
+
/**
|
|
28771
|
+
* Filter less than or equal to the value.
|
|
28772
|
+
* @type {string}
|
|
28773
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28774
|
+
*/
|
|
28775
|
+
readonly tradingVenueLte?: string;
|
|
28776
|
+
/**
|
|
28777
|
+
* Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'1000\'.
|
|
28778
|
+
* @type {number}
|
|
28779
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28780
|
+
*/
|
|
28781
|
+
readonly limit?: number;
|
|
28782
|
+
/**
|
|
28783
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'product_code\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
28784
|
+
* @type {string}
|
|
28785
|
+
* @memberof DefaultApiGetFuturesVXSchedules
|
|
28786
|
+
*/
|
|
28787
|
+
readonly sort?: string;
|
|
28788
|
+
}
|
|
28789
|
+
/**
|
|
28790
|
+
* Request parameters for getFuturesVXSnapshot operation in DefaultApi.
|
|
28791
|
+
* @export
|
|
28792
|
+
* @interface DefaultApiGetFuturesVXSnapshotRequest
|
|
28793
|
+
*/
|
|
28794
|
+
interface DefaultApiGetFuturesVXSnapshotRequest {
|
|
28795
|
+
/**
|
|
28796
|
+
* The code for the contracts\' underlying product.
|
|
28797
|
+
* @type {string}
|
|
28798
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28799
|
+
*/
|
|
28800
|
+
readonly productCode?: string;
|
|
28801
|
+
/**
|
|
28802
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
28803
|
+
* @type {string}
|
|
28804
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28805
|
+
*/
|
|
28806
|
+
readonly productCodeAnyOf?: string;
|
|
28807
|
+
/**
|
|
28808
|
+
* Filter greater than the value.
|
|
28809
|
+
* @type {string}
|
|
28810
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28811
|
+
*/
|
|
28812
|
+
readonly productCodeGt?: string;
|
|
28813
|
+
/**
|
|
28814
|
+
* Filter greater than or equal to the value.
|
|
28815
|
+
* @type {string}
|
|
28816
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28817
|
+
*/
|
|
28818
|
+
readonly productCodeGte?: string;
|
|
28819
|
+
/**
|
|
28820
|
+
* Filter less than the value.
|
|
28821
|
+
* @type {string}
|
|
28822
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28823
|
+
*/
|
|
28824
|
+
readonly productCodeLt?: string;
|
|
28825
|
+
/**
|
|
28826
|
+
* Filter less than or equal to the value.
|
|
28827
|
+
* @type {string}
|
|
28828
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
28829
|
+
*/
|
|
28830
|
+
readonly productCodeLte?: string;
|
|
28831
|
+
/**
|
|
28832
|
+
* The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
27674
28833
|
* @type {string}
|
|
27675
|
-
* @memberof
|
|
28834
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27676
28835
|
*/
|
|
27677
|
-
readonly
|
|
28836
|
+
readonly ticker?: string;
|
|
27678
28837
|
/**
|
|
27679
28838
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
27680
28839
|
* @type {string}
|
|
27681
|
-
* @memberof
|
|
28840
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27682
28841
|
*/
|
|
27683
|
-
readonly
|
|
28842
|
+
readonly tickerAnyOf?: string;
|
|
27684
28843
|
/**
|
|
27685
28844
|
* Filter greater than the value.
|
|
27686
28845
|
* @type {string}
|
|
27687
|
-
* @memberof
|
|
28846
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27688
28847
|
*/
|
|
27689
|
-
readonly
|
|
28848
|
+
readonly tickerGt?: string;
|
|
27690
28849
|
/**
|
|
27691
28850
|
* Filter greater than or equal to the value.
|
|
27692
28851
|
* @type {string}
|
|
27693
|
-
* @memberof
|
|
28852
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27694
28853
|
*/
|
|
27695
|
-
readonly
|
|
28854
|
+
readonly tickerGte?: string;
|
|
27696
28855
|
/**
|
|
27697
28856
|
* Filter less than the value.
|
|
27698
28857
|
* @type {string}
|
|
27699
|
-
* @memberof
|
|
28858
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27700
28859
|
*/
|
|
27701
|
-
readonly
|
|
28860
|
+
readonly tickerLt?: string;
|
|
27702
28861
|
/**
|
|
27703
28862
|
* Filter less than or equal to the value.
|
|
27704
28863
|
* @type {string}
|
|
27705
|
-
* @memberof
|
|
28864
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27706
28865
|
*/
|
|
27707
|
-
readonly
|
|
28866
|
+
readonly tickerLte?: string;
|
|
27708
28867
|
/**
|
|
27709
|
-
* Limit the maximum number of results returned. Defaults to \'
|
|
28868
|
+
* Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
27710
28869
|
* @type {number}
|
|
27711
|
-
* @memberof
|
|
28870
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27712
28871
|
*/
|
|
27713
28872
|
readonly limit?: number;
|
|
27714
28873
|
/**
|
|
27715
|
-
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
28874
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
27716
28875
|
* @type {string}
|
|
27717
|
-
* @memberof
|
|
28876
|
+
* @memberof DefaultApiGetFuturesVXSnapshot
|
|
27718
28877
|
*/
|
|
27719
28878
|
readonly sort?: string;
|
|
27720
28879
|
}
|
|
27721
28880
|
/**
|
|
27722
|
-
* Request parameters for
|
|
28881
|
+
* Request parameters for getFuturesVXSnapshotNative operation in DefaultApi.
|
|
27723
28882
|
* @export
|
|
27724
|
-
* @interface
|
|
28883
|
+
* @interface DefaultApiGetFuturesVXSnapshotNativeRequest
|
|
27725
28884
|
*/
|
|
27726
|
-
interface
|
|
28885
|
+
interface DefaultApiGetFuturesVXSnapshotNativeRequest {
|
|
27727
28886
|
/**
|
|
27728
28887
|
* The code for the contracts\' underlying product.
|
|
27729
28888
|
* @type {string}
|
|
27730
|
-
* @memberof
|
|
28889
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27731
28890
|
*/
|
|
27732
28891
|
readonly productCode?: string;
|
|
27733
28892
|
/**
|
|
27734
28893
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
27735
28894
|
* @type {string}
|
|
27736
|
-
* @memberof
|
|
28895
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27737
28896
|
*/
|
|
27738
28897
|
readonly productCodeAnyOf?: string;
|
|
27739
28898
|
/**
|
|
27740
28899
|
* Filter greater than the value.
|
|
27741
28900
|
* @type {string}
|
|
27742
|
-
* @memberof
|
|
28901
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27743
28902
|
*/
|
|
27744
28903
|
readonly productCodeGt?: string;
|
|
27745
28904
|
/**
|
|
27746
28905
|
* Filter greater than or equal to the value.
|
|
27747
28906
|
* @type {string}
|
|
27748
|
-
* @memberof
|
|
28907
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27749
28908
|
*/
|
|
27750
28909
|
readonly productCodeGte?: string;
|
|
27751
28910
|
/**
|
|
27752
28911
|
* Filter less than the value.
|
|
27753
28912
|
* @type {string}
|
|
27754
|
-
* @memberof
|
|
28913
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27755
28914
|
*/
|
|
27756
28915
|
readonly productCodeLt?: string;
|
|
27757
28916
|
/**
|
|
27758
28917
|
* Filter less than or equal to the value.
|
|
27759
28918
|
* @type {string}
|
|
27760
|
-
* @memberof
|
|
28919
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27761
28920
|
*/
|
|
27762
28921
|
readonly productCodeLte?: string;
|
|
27763
28922
|
/**
|
|
27764
28923
|
* The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
27765
28924
|
* @type {string}
|
|
27766
|
-
* @memberof
|
|
28925
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27767
28926
|
*/
|
|
27768
28927
|
readonly ticker?: string;
|
|
27769
28928
|
/**
|
|
27770
28929
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
27771
28930
|
* @type {string}
|
|
27772
|
-
* @memberof
|
|
28931
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27773
28932
|
*/
|
|
27774
28933
|
readonly tickerAnyOf?: string;
|
|
27775
28934
|
/**
|
|
27776
28935
|
* Filter greater than the value.
|
|
27777
28936
|
* @type {string}
|
|
27778
|
-
* @memberof
|
|
28937
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27779
28938
|
*/
|
|
27780
28939
|
readonly tickerGt?: string;
|
|
27781
28940
|
/**
|
|
27782
28941
|
* Filter greater than or equal to the value.
|
|
27783
28942
|
* @type {string}
|
|
27784
|
-
* @memberof
|
|
28943
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27785
28944
|
*/
|
|
27786
28945
|
readonly tickerGte?: string;
|
|
27787
28946
|
/**
|
|
27788
28947
|
* Filter less than the value.
|
|
27789
28948
|
* @type {string}
|
|
27790
|
-
* @memberof
|
|
28949
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27791
28950
|
*/
|
|
27792
28951
|
readonly tickerLt?: string;
|
|
27793
28952
|
/**
|
|
27794
28953
|
* Filter less than or equal to the value.
|
|
27795
28954
|
* @type {string}
|
|
27796
|
-
* @memberof
|
|
28955
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27797
28956
|
*/
|
|
27798
28957
|
readonly tickerLte?: string;
|
|
27799
28958
|
/**
|
|
27800
28959
|
* Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'50000\'.
|
|
27801
28960
|
* @type {number}
|
|
27802
|
-
* @memberof
|
|
28961
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
27803
28962
|
*/
|
|
27804
28963
|
readonly limit?: number;
|
|
27805
28964
|
/**
|
|
27806
28965
|
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'ticker\' if not specified. The sort order defaults to \'asc\' if not specified.
|
|
27807
28966
|
* @type {string}
|
|
27808
|
-
* @memberof
|
|
28967
|
+
* @memberof DefaultApiGetFuturesVXSnapshotNative
|
|
28968
|
+
*/
|
|
28969
|
+
readonly sort?: string;
|
|
28970
|
+
}
|
|
28971
|
+
/**
|
|
28972
|
+
* Request parameters for getFuturesVXTradesNew operation in DefaultApi.
|
|
28973
|
+
* @export
|
|
28974
|
+
* @interface DefaultApiGetFuturesVXTradesNewRequest
|
|
28975
|
+
*/
|
|
28976
|
+
interface DefaultApiGetFuturesVXTradesNewRequest {
|
|
28977
|
+
/**
|
|
28978
|
+
* The futures contract identifier, including the base symbol and contract expiration (e.g., ESZ24 for the December 2024 S&P 500 E-mini contract).
|
|
28979
|
+
* @type {string}
|
|
28980
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
28981
|
+
*/
|
|
28982
|
+
readonly ticker: string;
|
|
28983
|
+
/**
|
|
28984
|
+
* The time when the trade was generated at the exchange to nanosecond precision. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28985
|
+
* @type {string}
|
|
28986
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
28987
|
+
*/
|
|
28988
|
+
readonly timestamp?: string;
|
|
28989
|
+
/**
|
|
28990
|
+
* Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28991
|
+
* @type {string}
|
|
28992
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
28993
|
+
*/
|
|
28994
|
+
readonly timestampGt?: string;
|
|
28995
|
+
/**
|
|
28996
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
28997
|
+
* @type {string}
|
|
28998
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
28999
|
+
*/
|
|
29000
|
+
readonly timestampGte?: string;
|
|
29001
|
+
/**
|
|
29002
|
+
* Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
29003
|
+
* @type {string}
|
|
29004
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
29005
|
+
*/
|
|
29006
|
+
readonly timestampLt?: string;
|
|
29007
|
+
/**
|
|
29008
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
29009
|
+
* @type {string}
|
|
29010
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
29011
|
+
*/
|
|
29012
|
+
readonly timestampLte?: string;
|
|
29013
|
+
/**
|
|
29014
|
+
* The trade date representing the session end date for this trade. Used for partitioning and filtering trades by trading session.
|
|
29015
|
+
* @type {string}
|
|
29016
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
29017
|
+
*/
|
|
29018
|
+
readonly sessionEndDate?: string;
|
|
29019
|
+
/**
|
|
29020
|
+
* Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'49999\'.
|
|
29021
|
+
* @type {number}
|
|
29022
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
29023
|
+
*/
|
|
29024
|
+
readonly limit?: number;
|
|
29025
|
+
/**
|
|
29026
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'timestamp\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
29027
|
+
* @type {string}
|
|
29028
|
+
* @memberof DefaultApiGetFuturesVXTradesNew
|
|
27809
29029
|
*/
|
|
27810
29030
|
readonly sort?: string;
|
|
27811
29031
|
}
|
|
@@ -29448,172 +30668,329 @@ interface DefaultApiGetStocksEMARequest {
|
|
|
29448
30668
|
*/
|
|
29449
30669
|
readonly timestampLte?: string;
|
|
29450
30670
|
/**
|
|
29451
|
-
* Range by timestamp.
|
|
30671
|
+
* Range by timestamp.
|
|
30672
|
+
* @type {string}
|
|
30673
|
+
* @memberof DefaultApiGetStocksEMA
|
|
30674
|
+
*/
|
|
30675
|
+
readonly timestampLt?: string;
|
|
30676
|
+
}
|
|
30677
|
+
/**
|
|
30678
|
+
* Request parameters for getStocksFilings10KVXSections operation in DefaultApi.
|
|
30679
|
+
* @export
|
|
30680
|
+
* @interface DefaultApiGetStocksFilings10KVXSectionsRequest
|
|
30681
|
+
*/
|
|
30682
|
+
interface DefaultApiGetStocksFilings10KVXSectionsRequest {
|
|
30683
|
+
/**
|
|
30684
|
+
* SEC Central Index Key (10 digits, zero-padded).
|
|
30685
|
+
* @type {string}
|
|
30686
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30687
|
+
*/
|
|
30688
|
+
readonly cik?: string;
|
|
30689
|
+
/**
|
|
30690
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
30691
|
+
* @type {string}
|
|
30692
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30693
|
+
*/
|
|
30694
|
+
readonly cikAnyOf?: string;
|
|
30695
|
+
/**
|
|
30696
|
+
* Filter greater than the value.
|
|
30697
|
+
* @type {string}
|
|
30698
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30699
|
+
*/
|
|
30700
|
+
readonly cikGt?: string;
|
|
30701
|
+
/**
|
|
30702
|
+
* Filter greater than or equal to the value.
|
|
30703
|
+
* @type {string}
|
|
30704
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30705
|
+
*/
|
|
30706
|
+
readonly cikGte?: string;
|
|
30707
|
+
/**
|
|
30708
|
+
* Filter less than the value.
|
|
30709
|
+
* @type {string}
|
|
30710
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30711
|
+
*/
|
|
30712
|
+
readonly cikLt?: string;
|
|
30713
|
+
/**
|
|
30714
|
+
* Filter less than or equal to the value.
|
|
30715
|
+
* @type {string}
|
|
30716
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30717
|
+
*/
|
|
30718
|
+
readonly cikLte?: string;
|
|
30719
|
+
/**
|
|
30720
|
+
* Stock ticker symbol for the company.
|
|
30721
|
+
* @type {string}
|
|
30722
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30723
|
+
*/
|
|
30724
|
+
readonly ticker?: string;
|
|
30725
|
+
/**
|
|
30726
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
30727
|
+
* @type {string}
|
|
30728
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30729
|
+
*/
|
|
30730
|
+
readonly tickerAnyOf?: string;
|
|
30731
|
+
/**
|
|
30732
|
+
* Filter greater than the value.
|
|
30733
|
+
* @type {string}
|
|
30734
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30735
|
+
*/
|
|
30736
|
+
readonly tickerGt?: string;
|
|
30737
|
+
/**
|
|
30738
|
+
* Filter greater than or equal to the value.
|
|
30739
|
+
* @type {string}
|
|
30740
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30741
|
+
*/
|
|
30742
|
+
readonly tickerGte?: string;
|
|
30743
|
+
/**
|
|
30744
|
+
* Filter less than the value.
|
|
30745
|
+
* @type {string}
|
|
30746
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30747
|
+
*/
|
|
30748
|
+
readonly tickerLt?: string;
|
|
30749
|
+
/**
|
|
30750
|
+
* Filter less than or equal to the value.
|
|
30751
|
+
* @type {string}
|
|
30752
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30753
|
+
*/
|
|
30754
|
+
readonly tickerLte?: string;
|
|
30755
|
+
/**
|
|
30756
|
+
* Standardized section identifier from the filing (e.g. \'business\', \'risk_factors\', etc.).
|
|
30757
|
+
* @type {'business' | 'risk_factors'}
|
|
30758
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30759
|
+
*/
|
|
30760
|
+
readonly section?: GetStocksFilings10KVXSectionsSectionEnum;
|
|
30761
|
+
/**
|
|
30762
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
30763
|
+
* @type {'business' | 'risk_factors'}
|
|
30764
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30765
|
+
*/
|
|
30766
|
+
readonly sectionAnyOf?: GetStocksFilings10KVXSectionsSectionAnyOfEnum;
|
|
30767
|
+
/**
|
|
30768
|
+
* Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
30769
|
+
* @type {string}
|
|
30770
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30771
|
+
*/
|
|
30772
|
+
readonly filingDate?: string;
|
|
30773
|
+
/**
|
|
30774
|
+
* Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30775
|
+
* @type {string}
|
|
30776
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30777
|
+
*/
|
|
30778
|
+
readonly filingDateGt?: string;
|
|
30779
|
+
/**
|
|
30780
|
+
* Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30781
|
+
* @type {string}
|
|
30782
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30783
|
+
*/
|
|
30784
|
+
readonly filingDateGte?: string;
|
|
30785
|
+
/**
|
|
30786
|
+
* Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30787
|
+
* @type {string}
|
|
30788
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30789
|
+
*/
|
|
30790
|
+
readonly filingDateLt?: string;
|
|
30791
|
+
/**
|
|
30792
|
+
* Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30793
|
+
* @type {string}
|
|
30794
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30795
|
+
*/
|
|
30796
|
+
readonly filingDateLte?: string;
|
|
30797
|
+
/**
|
|
30798
|
+
* Period end date that the filing relates to (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
30799
|
+
* @type {string}
|
|
30800
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30801
|
+
*/
|
|
30802
|
+
readonly periodEnd?: string;
|
|
30803
|
+
/**
|
|
30804
|
+
* Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30805
|
+
* @type {string}
|
|
30806
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30807
|
+
*/
|
|
30808
|
+
readonly periodEndGt?: string;
|
|
30809
|
+
/**
|
|
30810
|
+
* Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30811
|
+
* @type {string}
|
|
30812
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30813
|
+
*/
|
|
30814
|
+
readonly periodEndGte?: string;
|
|
30815
|
+
/**
|
|
30816
|
+
* Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30817
|
+
* @type {string}
|
|
30818
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30819
|
+
*/
|
|
30820
|
+
readonly periodEndLt?: string;
|
|
30821
|
+
/**
|
|
30822
|
+
* Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
30823
|
+
* @type {string}
|
|
30824
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30825
|
+
*/
|
|
30826
|
+
readonly periodEndLte?: string;
|
|
30827
|
+
/**
|
|
30828
|
+
* Limit the maximum number of results returned. Defaults to \'100\' if not specified. The maximum allowed limit is \'9999\'.
|
|
30829
|
+
* @type {number}
|
|
30830
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
30831
|
+
*/
|
|
30832
|
+
readonly limit?: number;
|
|
30833
|
+
/**
|
|
30834
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'period_end\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
29452
30835
|
* @type {string}
|
|
29453
|
-
* @memberof
|
|
30836
|
+
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
29454
30837
|
*/
|
|
29455
|
-
readonly
|
|
30838
|
+
readonly sort?: string;
|
|
29456
30839
|
}
|
|
29457
30840
|
/**
|
|
29458
|
-
* Request parameters for
|
|
30841
|
+
* Request parameters for getStocksFilingsVXIndex operation in DefaultApi.
|
|
29459
30842
|
* @export
|
|
29460
|
-
* @interface
|
|
30843
|
+
* @interface DefaultApiGetStocksFilingsVXIndexRequest
|
|
29461
30844
|
*/
|
|
29462
|
-
interface
|
|
30845
|
+
interface DefaultApiGetStocksFilingsVXIndexRequest {
|
|
29463
30846
|
/**
|
|
29464
|
-
* SEC Central Index Key (
|
|
30847
|
+
* SEC Central Index Key (CIK) identifying the filing entity.
|
|
29465
30848
|
* @type {string}
|
|
29466
|
-
* @memberof
|
|
30849
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29467
30850
|
*/
|
|
29468
30851
|
readonly cik?: string;
|
|
29469
30852
|
/**
|
|
29470
30853
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
29471
30854
|
* @type {string}
|
|
29472
|
-
* @memberof
|
|
30855
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29473
30856
|
*/
|
|
29474
30857
|
readonly cikAnyOf?: string;
|
|
29475
30858
|
/**
|
|
29476
30859
|
* Filter greater than the value.
|
|
29477
30860
|
* @type {string}
|
|
29478
|
-
* @memberof
|
|
30861
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29479
30862
|
*/
|
|
29480
30863
|
readonly cikGt?: string;
|
|
29481
30864
|
/**
|
|
29482
30865
|
* Filter greater than or equal to the value.
|
|
29483
30866
|
* @type {string}
|
|
29484
|
-
* @memberof
|
|
30867
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29485
30868
|
*/
|
|
29486
30869
|
readonly cikGte?: string;
|
|
29487
30870
|
/**
|
|
29488
30871
|
* Filter less than the value.
|
|
29489
30872
|
* @type {string}
|
|
29490
|
-
* @memberof
|
|
30873
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29491
30874
|
*/
|
|
29492
30875
|
readonly cikLt?: string;
|
|
29493
30876
|
/**
|
|
29494
30877
|
* Filter less than or equal to the value.
|
|
29495
30878
|
* @type {string}
|
|
29496
|
-
* @memberof
|
|
30879
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29497
30880
|
*/
|
|
29498
30881
|
readonly cikLte?: string;
|
|
29499
30882
|
/**
|
|
29500
|
-
* Stock ticker symbol for the
|
|
30883
|
+
* Stock ticker symbol for the filing entity, if available.
|
|
29501
30884
|
* @type {string}
|
|
29502
|
-
* @memberof
|
|
30885
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29503
30886
|
*/
|
|
29504
30887
|
readonly ticker?: string;
|
|
29505
30888
|
/**
|
|
29506
30889
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
29507
30890
|
* @type {string}
|
|
29508
|
-
* @memberof
|
|
30891
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29509
30892
|
*/
|
|
29510
30893
|
readonly tickerAnyOf?: string;
|
|
29511
30894
|
/**
|
|
29512
30895
|
* Filter greater than the value.
|
|
29513
30896
|
* @type {string}
|
|
29514
|
-
* @memberof
|
|
30897
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29515
30898
|
*/
|
|
29516
30899
|
readonly tickerGt?: string;
|
|
29517
30900
|
/**
|
|
29518
30901
|
* Filter greater than or equal to the value.
|
|
29519
30902
|
* @type {string}
|
|
29520
|
-
* @memberof
|
|
30903
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29521
30904
|
*/
|
|
29522
30905
|
readonly tickerGte?: string;
|
|
29523
30906
|
/**
|
|
29524
30907
|
* Filter less than the value.
|
|
29525
30908
|
* @type {string}
|
|
29526
|
-
* @memberof
|
|
30909
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29527
30910
|
*/
|
|
29528
30911
|
readonly tickerLt?: string;
|
|
29529
30912
|
/**
|
|
29530
30913
|
* Filter less than or equal to the value.
|
|
29531
30914
|
* @type {string}
|
|
29532
|
-
* @memberof
|
|
30915
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29533
30916
|
*/
|
|
29534
30917
|
readonly tickerLte?: string;
|
|
29535
30918
|
/**
|
|
29536
|
-
*
|
|
29537
|
-
* @type {
|
|
29538
|
-
* @memberof
|
|
30919
|
+
* SEC form type (e.g., \'10-K\', \'10-Q\', \'8-K\', \'S-1\', \'4\', etc.).
|
|
30920
|
+
* @type {string}
|
|
30921
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29539
30922
|
*/
|
|
29540
|
-
readonly
|
|
30923
|
+
readonly formType?: string;
|
|
29541
30924
|
/**
|
|
29542
30925
|
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
29543
|
-
* @type {'business' | 'risk_factors'}
|
|
29544
|
-
* @memberof DefaultApiGetStocksFilings10KVXSections
|
|
29545
|
-
*/
|
|
29546
|
-
readonly sectionAnyOf?: GetStocksFilings10KVXSectionsSectionAnyOfEnum;
|
|
29547
|
-
/**
|
|
29548
|
-
* Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
29549
30926
|
* @type {string}
|
|
29550
|
-
* @memberof
|
|
30927
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29551
30928
|
*/
|
|
29552
|
-
readonly
|
|
30929
|
+
readonly formTypeAnyOf?: string;
|
|
29553
30930
|
/**
|
|
29554
|
-
* Filter greater than the value.
|
|
30931
|
+
* Filter greater than the value.
|
|
29555
30932
|
* @type {string}
|
|
29556
|
-
* @memberof
|
|
30933
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29557
30934
|
*/
|
|
29558
|
-
readonly
|
|
30935
|
+
readonly formTypeGt?: string;
|
|
29559
30936
|
/**
|
|
29560
|
-
* Filter greater than or equal to the value.
|
|
30937
|
+
* Filter greater than or equal to the value.
|
|
29561
30938
|
* @type {string}
|
|
29562
|
-
* @memberof
|
|
30939
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29563
30940
|
*/
|
|
29564
|
-
readonly
|
|
30941
|
+
readonly formTypeGte?: string;
|
|
29565
30942
|
/**
|
|
29566
|
-
* Filter less than the value.
|
|
30943
|
+
* Filter less than the value.
|
|
29567
30944
|
* @type {string}
|
|
29568
|
-
* @memberof
|
|
30945
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29569
30946
|
*/
|
|
29570
|
-
readonly
|
|
30947
|
+
readonly formTypeLt?: string;
|
|
29571
30948
|
/**
|
|
29572
|
-
* Filter less than or equal to the value.
|
|
30949
|
+
* Filter less than or equal to the value.
|
|
29573
30950
|
* @type {string}
|
|
29574
|
-
* @memberof
|
|
30951
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29575
30952
|
*/
|
|
29576
|
-
readonly
|
|
30953
|
+
readonly formTypeLte?: string;
|
|
29577
30954
|
/**
|
|
29578
|
-
*
|
|
30955
|
+
* Date when the filing was submitted to the SEC (formatted as YYYY-MM-DD). Value must be formatted \'yyyy-mm-dd\'.
|
|
29579
30956
|
* @type {string}
|
|
29580
|
-
* @memberof
|
|
30957
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29581
30958
|
*/
|
|
29582
|
-
readonly
|
|
30959
|
+
readonly filingDate?: string;
|
|
29583
30960
|
/**
|
|
29584
30961
|
* Filter greater than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
29585
30962
|
* @type {string}
|
|
29586
|
-
* @memberof
|
|
30963
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29587
30964
|
*/
|
|
29588
|
-
readonly
|
|
30965
|
+
readonly filingDateGt?: string;
|
|
29589
30966
|
/**
|
|
29590
30967
|
* Filter greater than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
29591
30968
|
* @type {string}
|
|
29592
|
-
* @memberof
|
|
30969
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29593
30970
|
*/
|
|
29594
|
-
readonly
|
|
30971
|
+
readonly filingDateGte?: string;
|
|
29595
30972
|
/**
|
|
29596
30973
|
* Filter less than the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
29597
30974
|
* @type {string}
|
|
29598
|
-
* @memberof
|
|
30975
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29599
30976
|
*/
|
|
29600
|
-
readonly
|
|
30977
|
+
readonly filingDateLt?: string;
|
|
29601
30978
|
/**
|
|
29602
30979
|
* Filter less than or equal to the value. Value must be formatted \'yyyy-mm-dd\'.
|
|
29603
30980
|
* @type {string}
|
|
29604
|
-
* @memberof
|
|
30981
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29605
30982
|
*/
|
|
29606
|
-
readonly
|
|
30983
|
+
readonly filingDateLte?: string;
|
|
29607
30984
|
/**
|
|
29608
|
-
* Limit the maximum number of results returned. Defaults to \'
|
|
30985
|
+
* Limit the maximum number of results returned. Defaults to \'1000\' if not specified. The maximum allowed limit is \'50000\'.
|
|
29609
30986
|
* @type {number}
|
|
29610
|
-
* @memberof
|
|
30987
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29611
30988
|
*/
|
|
29612
30989
|
readonly limit?: number;
|
|
29613
30990
|
/**
|
|
29614
|
-
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'
|
|
30991
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'filing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
29615
30992
|
* @type {string}
|
|
29616
|
-
* @memberof
|
|
30993
|
+
* @memberof DefaultApiGetStocksFilingsVXIndex
|
|
29617
30994
|
*/
|
|
29618
30995
|
readonly sort?: string;
|
|
29619
30996
|
}
|
|
@@ -32928,6 +34305,175 @@ interface DefaultApiGetTmxV1CorporateEventsRequest {
|
|
|
32928
34305
|
*/
|
|
32929
34306
|
readonly sort?: string;
|
|
32930
34307
|
}
|
|
34308
|
+
/**
|
|
34309
|
+
* Request parameters for getV1ReferenceIpos operation in DefaultApi.
|
|
34310
|
+
* @export
|
|
34311
|
+
* @interface DefaultApiGetV1ReferenceIposRequest
|
|
34312
|
+
*/
|
|
34313
|
+
interface DefaultApiGetV1ReferenceIposRequest {
|
|
34314
|
+
/**
|
|
34315
|
+
* The ticker symbol of the IPO event.
|
|
34316
|
+
* @type {string}
|
|
34317
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34318
|
+
*/
|
|
34319
|
+
readonly ticker?: string;
|
|
34320
|
+
/**
|
|
34321
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
34322
|
+
* @type {string}
|
|
34323
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34324
|
+
*/
|
|
34325
|
+
readonly tickerAnyOf?: string;
|
|
34326
|
+
/**
|
|
34327
|
+
* Filter greater than the value.
|
|
34328
|
+
* @type {string}
|
|
34329
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34330
|
+
*/
|
|
34331
|
+
readonly tickerGt?: string;
|
|
34332
|
+
/**
|
|
34333
|
+
* Filter greater than or equal to the value.
|
|
34334
|
+
* @type {string}
|
|
34335
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34336
|
+
*/
|
|
34337
|
+
readonly tickerGte?: string;
|
|
34338
|
+
/**
|
|
34339
|
+
* Filter less than the value.
|
|
34340
|
+
* @type {string}
|
|
34341
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34342
|
+
*/
|
|
34343
|
+
readonly tickerLt?: string;
|
|
34344
|
+
/**
|
|
34345
|
+
* Filter less than or equal to the value.
|
|
34346
|
+
* @type {string}
|
|
34347
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34348
|
+
*/
|
|
34349
|
+
readonly tickerLte?: string;
|
|
34350
|
+
/**
|
|
34351
|
+
* Nine-character alphanumeric code that uniquely identifies a financial security in North America.
|
|
34352
|
+
* @type {string}
|
|
34353
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34354
|
+
*/
|
|
34355
|
+
readonly usCode?: string;
|
|
34356
|
+
/**
|
|
34357
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
34358
|
+
* @type {string}
|
|
34359
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34360
|
+
*/
|
|
34361
|
+
readonly usCodeAnyOf?: string;
|
|
34362
|
+
/**
|
|
34363
|
+
* Filter greater than the value.
|
|
34364
|
+
* @type {string}
|
|
34365
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34366
|
+
*/
|
|
34367
|
+
readonly usCodeGt?: string;
|
|
34368
|
+
/**
|
|
34369
|
+
* Filter greater than or equal to the value.
|
|
34370
|
+
* @type {string}
|
|
34371
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34372
|
+
*/
|
|
34373
|
+
readonly usCodeGte?: string;
|
|
34374
|
+
/**
|
|
34375
|
+
* Filter less than the value.
|
|
34376
|
+
* @type {string}
|
|
34377
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34378
|
+
*/
|
|
34379
|
+
readonly usCodeLt?: string;
|
|
34380
|
+
/**
|
|
34381
|
+
* Filter less than or equal to the value.
|
|
34382
|
+
* @type {string}
|
|
34383
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34384
|
+
*/
|
|
34385
|
+
readonly usCodeLte?: string;
|
|
34386
|
+
/**
|
|
34387
|
+
* International Securities Identification Number. This is a unique twelve-digit code that is assigned to every security issuance in the world.
|
|
34388
|
+
* @type {string}
|
|
34389
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34390
|
+
*/
|
|
34391
|
+
readonly isin?: string;
|
|
34392
|
+
/**
|
|
34393
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
34394
|
+
* @type {string}
|
|
34395
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34396
|
+
*/
|
|
34397
|
+
readonly isinAnyOf?: string;
|
|
34398
|
+
/**
|
|
34399
|
+
* Filter greater than the value.
|
|
34400
|
+
* @type {string}
|
|
34401
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34402
|
+
*/
|
|
34403
|
+
readonly isinGt?: string;
|
|
34404
|
+
/**
|
|
34405
|
+
* Filter greater than or equal to the value.
|
|
34406
|
+
* @type {string}
|
|
34407
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34408
|
+
*/
|
|
34409
|
+
readonly isinGte?: string;
|
|
34410
|
+
/**
|
|
34411
|
+
* Filter less than the value.
|
|
34412
|
+
* @type {string}
|
|
34413
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34414
|
+
*/
|
|
34415
|
+
readonly isinLt?: string;
|
|
34416
|
+
/**
|
|
34417
|
+
* Filter less than or equal to the value.
|
|
34418
|
+
* @type {string}
|
|
34419
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34420
|
+
*/
|
|
34421
|
+
readonly isinLte?: string;
|
|
34422
|
+
/**
|
|
34423
|
+
* First trading date for the newly listed entity. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
34424
|
+
* @type {string}
|
|
34425
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34426
|
+
*/
|
|
34427
|
+
readonly listingDate?: string;
|
|
34428
|
+
/**
|
|
34429
|
+
* Filter greater than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
34430
|
+
* @type {string}
|
|
34431
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34432
|
+
*/
|
|
34433
|
+
readonly listingDateGt?: string;
|
|
34434
|
+
/**
|
|
34435
|
+
* Filter greater than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
34436
|
+
* @type {string}
|
|
34437
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34438
|
+
*/
|
|
34439
|
+
readonly listingDateGte?: string;
|
|
34440
|
+
/**
|
|
34441
|
+
* Filter less than the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
34442
|
+
* @type {string}
|
|
34443
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34444
|
+
*/
|
|
34445
|
+
readonly listingDateLt?: string;
|
|
34446
|
+
/**
|
|
34447
|
+
* Filter less than or equal to the value. Value must be an integer timestamp in nanoseconds, formatted \'yyyy-mm-dd\', or ISO 8601/RFC 3339 (e.g. \'2024-05-28T20:27:41Z\').
|
|
34448
|
+
* @type {string}
|
|
34449
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34450
|
+
*/
|
|
34451
|
+
readonly listingDateLte?: string;
|
|
34452
|
+
/**
|
|
34453
|
+
* The status of the IPO.
|
|
34454
|
+
* @type {'direct_listing_process' | 'history' | 'new' | 'pending' | 'postponed' | 'rumor' | 'withdrawn'}
|
|
34455
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34456
|
+
*/
|
|
34457
|
+
readonly ipoStatus?: GetV1ReferenceIposIpoStatusEnum;
|
|
34458
|
+
/**
|
|
34459
|
+
* Filter equal to any of the values. Multiple values can be specified by using a comma separated list.
|
|
34460
|
+
* @type {'direct_listing_process' | 'history' | 'new' | 'pending' | 'postponed' | 'rumor' | 'withdrawn'}
|
|
34461
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34462
|
+
*/
|
|
34463
|
+
readonly ipoStatusAnyOf?: GetV1ReferenceIposIpoStatusAnyOfEnum;
|
|
34464
|
+
/**
|
|
34465
|
+
* Limit the maximum number of results returned. Defaults to \'10\' if not specified. The maximum allowed limit is \'1000\'.
|
|
34466
|
+
* @type {number}
|
|
34467
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34468
|
+
*/
|
|
34469
|
+
readonly limit?: number;
|
|
34470
|
+
/**
|
|
34471
|
+
* A comma separated list of sort columns. For each column, append \'.asc\' or \'.desc\' to specify the sort direction. The sort column defaults to \'listing_date\' if not specified. The sort order defaults to \'desc\' if not specified.
|
|
34472
|
+
* @type {string}
|
|
34473
|
+
* @memberof DefaultApiGetV1ReferenceIpos
|
|
34474
|
+
*/
|
|
34475
|
+
readonly sort?: string;
|
|
34476
|
+
}
|
|
32931
34477
|
/**
|
|
32932
34478
|
* Request parameters for listConditions operation in DefaultApi.
|
|
32933
34479
|
* @export
|
|
@@ -34319,6 +35865,14 @@ declare class DefaultApi extends BaseAPI {
|
|
|
34319
35865
|
* @memberof DefaultApi
|
|
34320
35866
|
*/
|
|
34321
35867
|
getFuturesVXProducts(requestParameters?: DefaultApiGetFuturesVXProductsRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXProducts200Response>;
|
|
35868
|
+
/**
|
|
35869
|
+
*
|
|
35870
|
+
* @param {DefaultApiGetFuturesVXQuotesNewRequest} requestParameters Request parameters.
|
|
35871
|
+
* @param {*} [options] Override http request option.
|
|
35872
|
+
* @throws {RequiredError}
|
|
35873
|
+
* @memberof DefaultApi
|
|
35874
|
+
*/
|
|
35875
|
+
getFuturesVXQuotesNew(requestParameters: DefaultApiGetFuturesVXQuotesNewRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXQuotesNew200Response>;
|
|
34322
35876
|
/**
|
|
34323
35877
|
* The Schedules API provides a unified way to retrieve trading schedules for futures markets, returning precise session open and close times, intraday breaks, and any adjustments for holidays or special events. You can request the full set of schedules for all products on a specific trading date or retrieve the schedule for a single product using its product code. All times are returned in Coordinated Universal Time (UTC), making it straightforward to align trading, execution, and operational workflows across systems. Use Cases: Schedule planning, market analysis, strategy alignment, risk and operations management.
|
|
34324
35878
|
* @summary Futures Schedules API
|
|
@@ -34337,6 +35891,23 @@ declare class DefaultApi extends BaseAPI {
|
|
|
34337
35891
|
* @memberof DefaultApi
|
|
34338
35892
|
*/
|
|
34339
35893
|
getFuturesVXSnapshot(requestParameters?: DefaultApiGetFuturesVXSnapshotRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXSnapshot200Response>;
|
|
35894
|
+
/**
|
|
35895
|
+
* Retrieve a snapshot of the most recent futures contract data.
|
|
35896
|
+
* @summary futures_snapshot_v1 API
|
|
35897
|
+
* @param {DefaultApiGetFuturesVXSnapshotNativeRequest} requestParameters Request parameters.
|
|
35898
|
+
* @param {*} [options] Override http request option.
|
|
35899
|
+
* @throws {RequiredError}
|
|
35900
|
+
* @memberof DefaultApi
|
|
35901
|
+
*/
|
|
35902
|
+
getFuturesVXSnapshotNative(requestParameters?: DefaultApiGetFuturesVXSnapshotNativeRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXSnapshot200Response>;
|
|
35903
|
+
/**
|
|
35904
|
+
*
|
|
35905
|
+
* @param {DefaultApiGetFuturesVXTradesNewRequest} requestParameters Request parameters.
|
|
35906
|
+
* @param {*} [options] Override http request option.
|
|
35907
|
+
* @throws {RequiredError}
|
|
35908
|
+
* @memberof DefaultApi
|
|
35909
|
+
*/
|
|
35910
|
+
getFuturesVXTradesNew(requestParameters: DefaultApiGetFuturesVXTradesNewRequest, options?: RawAxiosRequestConfig): Promise<GetFuturesVXTradesNew200Response>;
|
|
34340
35911
|
/**
|
|
34341
35912
|
* Get the daily open, high, low, and close (OHLC) for the entire cryptocurrency markets.
|
|
34342
35913
|
* @summary Grouped Daily (Bars)
|
|
@@ -34471,7 +36042,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
34471
36042
|
* @throws {RequiredError}
|
|
34472
36043
|
* @memberof DefaultApi
|
|
34473
36044
|
*/
|
|
34474
|
-
getLastStocksTrade(requestParameters: DefaultApiGetLastStocksTradeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
36045
|
+
getLastStocksTrade(requestParameters: DefaultApiGetLastStocksTradeRequest, options?: RawAxiosRequestConfig): Promise<GetLastStocksTrade200Response>;
|
|
34475
36046
|
/**
|
|
34476
36047
|
* Get upcoming market holidays and their open/close times.
|
|
34477
36048
|
* @summary Market Holidays
|
|
@@ -34693,6 +36264,14 @@ declare class DefaultApi extends BaseAPI {
|
|
|
34693
36264
|
* @memberof DefaultApi
|
|
34694
36265
|
*/
|
|
34695
36266
|
getStocksFilings10KVXSections(requestParameters?: DefaultApiGetStocksFilings10KVXSectionsRequest, options?: RawAxiosRequestConfig): Promise<GetStocksFilings10KVXSections200Response>;
|
|
36267
|
+
/**
|
|
36268
|
+
* SEC EDGAR master index providing metadata for all SEC filings including form types, filing dates, and direct links to source documents.
|
|
36269
|
+
* @param {DefaultApiGetStocksFilingsVXIndexRequest} requestParameters Request parameters.
|
|
36270
|
+
* @param {*} [options] Override http request option.
|
|
36271
|
+
* @throws {RequiredError}
|
|
36272
|
+
* @memberof DefaultApi
|
|
36273
|
+
*/
|
|
36274
|
+
getStocksFilingsVXIndex(requestParameters?: DefaultApiGetStocksFilingsVXIndexRequest, options?: RawAxiosRequestConfig): Promise<GetStocksFilingsVXIndex200Response>;
|
|
34696
36275
|
/**
|
|
34697
36276
|
* The risk factors identified in companies\' 10K filings.
|
|
34698
36277
|
* @param {DefaultApiGetStocksFilingsVXRiskFactorsRequest} requestParameters Request parameters.
|
|
@@ -34887,6 +36466,14 @@ declare class DefaultApi extends BaseAPI {
|
|
|
34887
36466
|
* @memberof DefaultApi
|
|
34888
36467
|
*/
|
|
34889
36468
|
getTmxV1CorporateEvents(requestParameters?: DefaultApiGetTmxV1CorporateEventsRequest, options?: RawAxiosRequestConfig): Promise<GetTmxV1CorporateEvents200Response>;
|
|
36469
|
+
/**
|
|
36470
|
+
* Contains comprehensive data about Initial Public Offerings (IPOs) and direct listings for US stocks, tracking both historical and pending offerings with detailed pricing, share, and timing information.
|
|
36471
|
+
* @param {DefaultApiGetV1ReferenceIposRequest} requestParameters Request parameters.
|
|
36472
|
+
* @param {*} [options] Override http request option.
|
|
36473
|
+
* @throws {RequiredError}
|
|
36474
|
+
* @memberof DefaultApi
|
|
36475
|
+
*/
|
|
36476
|
+
getV1ReferenceIpos(requestParameters?: DefaultApiGetV1ReferenceIposRequest, options?: RawAxiosRequestConfig): Promise<GetV1ReferenceIpos200Response>;
|
|
34890
36477
|
/**
|
|
34891
36478
|
* List all conditions that Massive uses.
|
|
34892
36479
|
* @summary Conditions
|
|
@@ -36189,6 +37776,32 @@ declare enum GetStocksV1SplitsAdjustmentTypeAnyOfEnum {
|
|
|
36189
37776
|
ReverseSplit = "reverse_split",
|
|
36190
37777
|
StockDividend = "stock_dividend"
|
|
36191
37778
|
}
|
|
37779
|
+
/**
|
|
37780
|
+
* @export
|
|
37781
|
+
* @enum {string}
|
|
37782
|
+
*/
|
|
37783
|
+
declare enum GetV1ReferenceIposIpoStatusEnum {
|
|
37784
|
+
DirectListingProcess = "direct_listing_process",
|
|
37785
|
+
History = "history",
|
|
37786
|
+
New = "new",
|
|
37787
|
+
Pending = "pending",
|
|
37788
|
+
Postponed = "postponed",
|
|
37789
|
+
Rumor = "rumor",
|
|
37790
|
+
Withdrawn = "withdrawn"
|
|
37791
|
+
}
|
|
37792
|
+
/**
|
|
37793
|
+
* @export
|
|
37794
|
+
* @enum {string}
|
|
37795
|
+
*/
|
|
37796
|
+
declare enum GetV1ReferenceIposIpoStatusAnyOfEnum {
|
|
37797
|
+
DirectListingProcess = "direct_listing_process",
|
|
37798
|
+
History = "history",
|
|
37799
|
+
New = "new",
|
|
37800
|
+
Pending = "pending",
|
|
37801
|
+
Postponed = "postponed",
|
|
37802
|
+
Rumor = "rumor",
|
|
37803
|
+
Withdrawn = "withdrawn"
|
|
37804
|
+
}
|
|
36192
37805
|
/**
|
|
36193
37806
|
* @export
|
|
36194
37807
|
* @enum {string}
|
|
@@ -36775,4 +38388,4 @@ declare const MassiveClient: (apiKey: string, restApiBase?: string, websocketApi
|
|
|
36775
38388
|
pagination: boolean;
|
|
36776
38389
|
}) => IMassiveClient;
|
|
36777
38390
|
|
|
36778
|
-
export { type Company, type ConditionTypeMap, Configuration, type ConfigurationParameters, type CryptoExchangeInner, type CryptoGroupedResults, type CryptoHistoricTrades, type CryptoLastTrade, type CryptoLastTradeLast, type CryptoOpenClose, type CryptoSnapshotMinute, type CryptoSnapshotTicker, type CryptoSnapshotTickerFullBook, type CryptoSnapshotTickers, type CryptoTick, DefaultApi, DefaultApiAxiosParamCreator, type DefaultApiDeprecatedGetCryptoSnapshotTickerBookRequest, type DefaultApiDeprecatedGetHistoricCryptoTradesRequest, type DefaultApiDeprecatedGetHistoricForexQuotesRequest, type DefaultApiDeprecatedGetHistoricStocksQuotesRequest, type DefaultApiDeprecatedGetHistoricStocksTradesRequest, DefaultApiFactory, DefaultApiFp, type DefaultApiGetBenzingaV1AnalystInsightsRequest, type DefaultApiGetBenzingaV1AnalystsRequest, type DefaultApiGetBenzingaV1BullsBearsSayRequest, type DefaultApiGetBenzingaV1ConsensusRatingsRequest, type DefaultApiGetBenzingaV1EarningsRequest, type DefaultApiGetBenzingaV1FirmsRequest, type DefaultApiGetBenzingaV1GuidanceRequest, type DefaultApiGetBenzingaV1RatingsRequest, type DefaultApiGetBenzingaV2NewsRequest, type DefaultApiGetCryptoAggregatesRequest, type DefaultApiGetCryptoEMARequest, type DefaultApiGetCryptoMACDRequest, type DefaultApiGetCryptoOpenCloseRequest, type DefaultApiGetCryptoRSIRequest, type DefaultApiGetCryptoSMARequest, type DefaultApiGetCryptoSnapshotDirectionRequest, type DefaultApiGetCryptoSnapshotTickerRequest, type DefaultApiGetCryptoSnapshotTickersRequest, type DefaultApiGetCryptoTradesRequest, type DefaultApiGetCryptoV1ExchangesRequest, type DefaultApiGetCurrencyConversionRequest, type DefaultApiGetEtfGlobalV1AnalyticsRequest, type DefaultApiGetEtfGlobalV1ConstituentsRequest, type DefaultApiGetEtfGlobalV1FundFlowsRequest, type DefaultApiGetEtfGlobalV1ProfilesRequest, type DefaultApiGetEtfGlobalV1TaxonomiesRequest, type DefaultApiGetEventsRequest, type DefaultApiGetFedV1InflationExpectationsRequest, type DefaultApiGetFedV1InflationRequest, type DefaultApiGetFedV1LaborMarketRequest, type DefaultApiGetFedV1TreasuryYieldsRequest, type DefaultApiGetForexAggregatesRequest, type DefaultApiGetForexEMARequest, type DefaultApiGetForexMACDRequest, type DefaultApiGetForexQuotesRequest, type DefaultApiGetForexRSIRequest, type DefaultApiGetForexSMARequest, type DefaultApiGetForexSnapshotDirectionRequest, type DefaultApiGetForexSnapshotTickerRequest, type DefaultApiGetForexSnapshotTickersRequest, type DefaultApiGetForexV1ExchangesRequest, type DefaultApiGetFuturesAggregatesRequest, type DefaultApiGetFuturesQuotesRequest, type DefaultApiGetFuturesTradesRequest, type DefaultApiGetFuturesVXContractsRequest, type DefaultApiGetFuturesVXExchangesRequest, type DefaultApiGetFuturesVXMarketStatusRequest, type DefaultApiGetFuturesVXProductsRequest, type DefaultApiGetFuturesVXSchedulesRequest, type DefaultApiGetFuturesVXSnapshotRequest, type DefaultApiGetGroupedCryptoAggregatesRequest, type DefaultApiGetGroupedForexAggregatesRequest, type DefaultApiGetGroupedStocksAggregatesRequest, type DefaultApiGetIndicesAggregatesRequest, type DefaultApiGetIndicesEMARequest, type DefaultApiGetIndicesMACDRequest, type DefaultApiGetIndicesOpenCloseRequest, type DefaultApiGetIndicesRSIRequest, type DefaultApiGetIndicesSMARequest, type DefaultApiGetIndicesSnapshotRequest, type DefaultApiGetLastCryptoTradeRequest, type DefaultApiGetLastCurrencyQuoteRequest, type DefaultApiGetLastOptionsTradeRequest, type DefaultApiGetLastStocksQuoteRequest, type DefaultApiGetLastStocksTradeRequest, type DefaultApiGetOptionContractRequest, type DefaultApiGetOptionsAggregatesRequest, type DefaultApiGetOptionsChainRequest, type DefaultApiGetOptionsContractRequest, type DefaultApiGetOptionsEMARequest, type DefaultApiGetOptionsMACDRequest, type DefaultApiGetOptionsOpenCloseRequest, type DefaultApiGetOptionsQuotesRequest, type DefaultApiGetOptionsRSIRequest, type DefaultApiGetOptionsSMARequest, type DefaultApiGetOptionsTradesRequest, type DefaultApiGetOptionsV1ExchangesRequest, type DefaultApiGetPreviousCryptoAggregatesRequest, type DefaultApiGetPreviousForexAggregatesRequest, type DefaultApiGetPreviousIndicesAggregatesRequest, type DefaultApiGetPreviousOptionsAggregatesRequest, type DefaultApiGetPreviousStocksAggregatesRequest, type DefaultApiGetRelatedCompaniesRequest, type DefaultApiGetSnapshotSummaryRequest, type DefaultApiGetSnapshotsRequest, type DefaultApiGetStocksAggregatesRequest, type DefaultApiGetStocksEMARequest, type DefaultApiGetStocksFilings10KVXSectionsRequest, type DefaultApiGetStocksFilingsVXRiskFactorsRequest, type DefaultApiGetStocksFinancialsV1BalanceSheetsRequest, type DefaultApiGetStocksFinancialsV1CashFlowStatementsRequest, type DefaultApiGetStocksFinancialsV1IncomeStatementsRequest, type DefaultApiGetStocksFinancialsV1RatiosRequest, type DefaultApiGetStocksMACDRequest, type DefaultApiGetStocksOpenCloseRequest, type DefaultApiGetStocksQuotesRequest, type DefaultApiGetStocksRSIRequest, type DefaultApiGetStocksSMARequest, type DefaultApiGetStocksSnapshotDirectionRequest, type DefaultApiGetStocksSnapshotTickerRequest, type DefaultApiGetStocksSnapshotTickersRequest, type DefaultApiGetStocksTaxonomiesVXRiskFactorsRequest, type DefaultApiGetStocksTradesRequest, type DefaultApiGetStocksV1DividendsRequest, type DefaultApiGetStocksV1ExchangesRequest, type DefaultApiGetStocksV1ShortInterestRequest, type DefaultApiGetStocksV1ShortVolumeRequest, type DefaultApiGetStocksV1SplitsRequest, type DefaultApiGetStocksVXFloatRequest, type DefaultApiGetTickerRequest, type DefaultApiGetTmxV1CorporateEventsRequest, type DefaultApiListConditionsRequest, type DefaultApiListDividendsRequest, type DefaultApiListExchangesRequest, type DefaultApiListFinancialsRequest, type DefaultApiListIPOsRequest, type DefaultApiListNewsRequest, type DefaultApiListOptionsContractsRequest, type DefaultApiListStockSplitsRequest, type DefaultApiListTickerTypesRequest, type DefaultApiListTickersRequest, type DeprecatedGetCryptoSnapshotTickerBook200Response, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfData, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfDataAsksInner, type DeprecatedGetHistoricCryptoTrades200Response, type DeprecatedGetHistoricCryptoTrades200ResponseAllOfTicksInner, type DeprecatedGetHistoricForexQuotes200Response, type DeprecatedGetHistoricForexQuotes200ResponseAllOfTicksInner, type DeprecatedGetHistoricStocksQuotes200Response, type DeprecatedGetHistoricStocksQuotes200ResponseAllOfResultsInner, type DeprecatedGetHistoricStocksTrades200Response, type DeprecatedGetHistoricStocksTrades200ResponseAllOfResultsInner, type ExchangeInner, type Financial, type Financials, FinancialsPeriodEnum, type ForexConversion, type ForexConversionLast, type ForexGroupedResults, type ForexHistoricTrades, type ForexPairLastQuote, type ForexPreviousClose, type ForexSnapshotLastQuote, type ForexSnapshotPrevDay, type ForexSnapshotTicker, type ForexSnapshotTickers, type ForexTickerResults, type GetBenzingaV1AnalystInsights200Response, type GetBenzingaV1AnalystInsights200ResponseResultsInner, GetBenzingaV1AnalystInsights200ResponseStatusEnum, type GetBenzingaV1AnalystInsights400Response, GetBenzingaV1AnalystInsights400ResponseStatusEnum, type GetBenzingaV1Analysts200Response, type GetBenzingaV1Analysts200ResponseResultsInner, GetBenzingaV1Analysts200ResponseStatusEnum, type GetBenzingaV1BullsBearsSay200Response, type GetBenzingaV1BullsBearsSay200ResponseResultsInner, GetBenzingaV1BullsBearsSay200ResponseStatusEnum, type GetBenzingaV1ConsensusRatings200Response, type GetBenzingaV1ConsensusRatings200ResponseResultsInner, GetBenzingaV1ConsensusRatings200ResponseStatusEnum, type GetBenzingaV1Earnings200Response, type GetBenzingaV1Earnings200ResponseResultsInner, GetBenzingaV1Earnings200ResponseStatusEnum, type GetBenzingaV1Firms200Response, type GetBenzingaV1Firms200ResponseResultsInner, GetBenzingaV1Firms200ResponseStatusEnum, type GetBenzingaV1Guidance200Response, type GetBenzingaV1Guidance200ResponseResultsInner, GetBenzingaV1Guidance200ResponseStatusEnum, type GetBenzingaV1Ratings200Response, type GetBenzingaV1Ratings200ResponseResultsInner, GetBenzingaV1Ratings200ResponseStatusEnum, type GetBenzingaV2News200Response, type GetBenzingaV2News200ResponseResultsInner, GetBenzingaV2News200ResponseStatusEnum, type GetCryptoAggregates200Response, type GetCryptoAggregates200ResponseAllOfResultsInner, GetCryptoAggregatesSortEnum, GetCryptoAggregatesTimespanEnum, type GetCryptoEMA200Response, type GetCryptoEMA200ResponseResults, type GetCryptoEMA200ResponseResultsUnderlying, type GetCryptoEMA200ResponseResultsUnderlyingAggregatesInner, type GetCryptoEMA200ResponseResultsValuesInner, GetCryptoEMAOrderEnum, GetCryptoEMASeriesTypeEnum, GetCryptoEMATimespanEnum, type GetCryptoMACD200Response, type GetCryptoMACD200ResponseResults, type GetCryptoMACD200ResponseResultsValuesInner, GetCryptoMACDOrderEnum, GetCryptoMACDSeriesTypeEnum, GetCryptoMACDTimespanEnum, type GetCryptoOpenClose200Response, type GetCryptoRSI200Response, type GetCryptoRSI200ResponseResults, GetCryptoRSIOrderEnum, GetCryptoRSISeriesTypeEnum, GetCryptoRSITimespanEnum, type GetCryptoSMA200Response, type GetCryptoSMA200ResponseResults, GetCryptoSMAOrderEnum, GetCryptoSMASeriesTypeEnum, GetCryptoSMATimespanEnum, type GetCryptoSnapshotDirection200Response, GetCryptoSnapshotDirectionDirectionEnum, type GetCryptoSnapshotTicker200Response, type GetCryptoSnapshotTicker200ResponseAllOfTicker, type GetCryptoSnapshotTickers200Response, type GetCryptoSnapshotTickers200ResponseAllOfTickersInner, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerDay, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerMin, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetCryptoTrades200Response, type GetCryptoTrades200ResponseResultsInner, GetCryptoTradesOrderEnum, GetCryptoTradesSortEnum, type GetCryptoV1Exchanges200Response, type GetCryptoV1Exchanges200ResponseResultsInner, GetCryptoV1Exchanges200ResponseStatusEnum, type GetCurrencyConversion200Response, type GetCurrencyConversion200ResponseLast, GetCurrencyConversionPrecisionEnum, type GetEtfGlobalV1Analytics200Response, type GetEtfGlobalV1Analytics200ResponseResultsInner, GetEtfGlobalV1Analytics200ResponseStatusEnum, type GetEtfGlobalV1Constituents200Response, type GetEtfGlobalV1Constituents200ResponseResultsInner, GetEtfGlobalV1Constituents200ResponseStatusEnum, type GetEtfGlobalV1FundFlows200Response, type GetEtfGlobalV1FundFlows200ResponseResultsInner, GetEtfGlobalV1FundFlows200ResponseStatusEnum, type GetEtfGlobalV1Profiles200Response, type GetEtfGlobalV1Profiles200ResponseResultsInner, type GetEtfGlobalV1Profiles200ResponseResultsInnerCouponExposureInner, GetEtfGlobalV1Profiles200ResponseStatusEnum, type GetEtfGlobalV1Taxonomies200Response, type GetEtfGlobalV1Taxonomies200ResponseResultsInner, GetEtfGlobalV1Taxonomies200ResponseStatusEnum, type GetEvents200Response, type GetEvents200ResponseResults, type GetEvents200ResponseResultsEventsInner, type GetEvents200ResponseResultsEventsInnerOneOf, type GetEvents200ResponseResultsEventsInnerOneOfTickerChange, type GetFedV1Inflation200Response, type GetFedV1Inflation200ResponseResultsInner, GetFedV1Inflation200ResponseStatusEnum, type GetFedV1InflationExpectations200Response, type GetFedV1InflationExpectations200ResponseResultsInner, GetFedV1InflationExpectations200ResponseStatusEnum, type GetFedV1LaborMarket200Response, type GetFedV1LaborMarket200ResponseResultsInner, GetFedV1LaborMarket200ResponseStatusEnum, type GetFedV1TreasuryYields200Response, type GetFedV1TreasuryYields200ResponseResultsInner, GetFedV1TreasuryYields200ResponseStatusEnum, GetForexAggregatesSortEnum, GetForexAggregatesTimespanEnum, GetForexEMAOrderEnum, GetForexEMASeriesTypeEnum, GetForexEMATimespanEnum, GetForexMACDOrderEnum, GetForexMACDSeriesTypeEnum, GetForexMACDTimespanEnum, type GetForexQuotes200Response, type GetForexQuotes200ResponseResultsInner, GetForexQuotesOrderEnum, GetForexQuotesSortEnum, GetForexRSIOrderEnum, GetForexRSISeriesTypeEnum, GetForexRSITimespanEnum, GetForexSMAOrderEnum, GetForexSMASeriesTypeEnum, GetForexSMATimespanEnum, GetForexSnapshotDirectionDirectionEnum, type GetForexSnapshotTicker200Response, type GetForexSnapshotTicker200ResponseAllOfTicker, type GetForexSnapshotTickers200Response, type GetForexSnapshotTickers200ResponseAllOfTickersInner, type GetForexSnapshotTickers200ResponseAllOfTickersInnerDay, type GetForexSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetForexSnapshotTickers200ResponseAllOfTickersInnerMin, type GetForexV1Exchanges200Response, type GetForexV1Exchanges200ResponseResultsInner, GetForexV1Exchanges200ResponseStatusEnum, type GetFuturesAggregates200Response, type GetFuturesAggregates200ResponseResultsInner, GetFuturesAggregatesSortEnum, type GetFuturesQuotes200Response, type GetFuturesQuotes200ResponseResultsInner, GetFuturesQuotesSortEnum, type GetFuturesTrades200Response, type GetFuturesTrades200ResponseResultsInner, GetFuturesTradesSortEnum, type GetFuturesVXContracts200Response, type GetFuturesVXContracts200ResponseResultsInner, GetFuturesVXContracts200ResponseStatusEnum, GetFuturesVXContractsTypeAnyOfEnum, GetFuturesVXContractsTypeEnum, type GetFuturesVXExchanges200Response, type GetFuturesVXExchanges200ResponseResultsInner, GetFuturesVXExchanges200ResponseStatusEnum, type GetFuturesVXMarketStatus200Response, type GetFuturesVXMarketStatus200ResponseResultsInner, GetFuturesVXMarketStatus200ResponseStatusEnum, type GetFuturesVXProducts200Response, type GetFuturesVXProducts200ResponseResultsInner, GetFuturesVXProducts200ResponseStatusEnum, GetFuturesVXProductsAssetClassAnyOfEnum, GetFuturesVXProductsAssetClassEnum, GetFuturesVXProductsAssetSubClassAnyOfEnum, GetFuturesVXProductsAssetSubClassEnum, GetFuturesVXProductsSectorAnyOfEnum, GetFuturesVXProductsSectorEnum, GetFuturesVXProductsSubSectorAnyOfEnum, GetFuturesVXProductsSubSectorEnum, GetFuturesVXProductsTypeAnyOfEnum, GetFuturesVXProductsTypeEnum, type GetFuturesVXSchedules200Response, type GetFuturesVXSchedules200ResponseResultsInner, GetFuturesVXSchedules200ResponseStatusEnum, type GetFuturesVXSnapshot200Response, type GetFuturesVXSnapshot200ResponseResultsInner, type GetFuturesVXSnapshot200ResponseResultsInnerDetails, type GetFuturesVXSnapshot200ResponseResultsInnerLastMinute, type GetFuturesVXSnapshot200ResponseResultsInnerLastQuote, type GetFuturesVXSnapshot200ResponseResultsInnerLastTrade, type GetFuturesVXSnapshot200ResponseResultsInnerSession, GetFuturesVXSnapshot200ResponseStatusEnum, type GetGroupedCryptoAggregates200Response, type GetGroupedCryptoAggregates200ResponseAllOfResultsInner, type GetGroupedStocksAggregates200Response, type GetGroupedStocksAggregates200ResponseAllOfResultsInner, GetIndicesAggregatesSortEnum, GetIndicesAggregatesTimespanEnum, GetIndicesEMAOrderEnum, GetIndicesEMASeriesTypeEnum, GetIndicesEMATimespanEnum, GetIndicesMACDOrderEnum, GetIndicesMACDSeriesTypeEnum, GetIndicesMACDTimespanEnum, type GetIndicesOpenClose200Response, GetIndicesRSIOrderEnum, GetIndicesRSISeriesTypeEnum, GetIndicesRSITimespanEnum, GetIndicesSMAOrderEnum, GetIndicesSMASeriesTypeEnum, GetIndicesSMATimespanEnum, type GetIndicesSnapshot200Response, type GetIndicesSnapshot200ResponseResultsInner, type GetIndicesSnapshot200ResponseResultsInnerSession, GetIndicesSnapshot200ResponseResultsInnerTimeframeEnum, GetIndicesSnapshot200ResponseResultsInnerTypeEnum, GetIndicesSnapshotOrderEnum, GetIndicesSnapshotSortEnum, type GetLastCryptoTrade200Response, type GetLastCryptoTrade200ResponseLast, type GetLastCurrencyQuote200Response, type GetLastOptionsTrade200Response, type GetLastOptionsTrade200ResponseResults, type GetLastStocksQuote200Response, type GetLastStocksQuote200ResponseResults, type GetMarketHolidays200ResponseInner, type GetMarketStatus200Response, type GetMarketStatus200ResponseCurrencies, type GetMarketStatus200ResponseExchanges, type GetMarketStatus200ResponseIndicesGroups, type GetOptionContract200Response, GetOptionsAggregatesSortEnum, GetOptionsAggregatesTimespanEnum, type GetOptionsChain200Response, type GetOptionsChain200ResponseResultsInner, type GetOptionsChain200ResponseResultsInnerDay, type GetOptionsChain200ResponseResultsInnerDetails, GetOptionsChain200ResponseResultsInnerDetailsContractTypeEnum, GetOptionsChain200ResponseResultsInnerDetailsExerciseStyleEnum, type GetOptionsChain200ResponseResultsInnerLastQuote, GetOptionsChain200ResponseResultsInnerLastQuoteTimeframeEnum, type GetOptionsChain200ResponseResultsInnerLastTrade, GetOptionsChain200ResponseResultsInnerLastTradeTimeframeEnum, GetOptionsChainContractTypeEnum, GetOptionsChainOrderEnum, GetOptionsChainSortEnum, type GetOptionsContract200Response, GetOptionsEMAOrderEnum, GetOptionsEMASeriesTypeEnum, GetOptionsEMATimespanEnum, GetOptionsMACDOrderEnum, GetOptionsMACDSeriesTypeEnum, GetOptionsMACDTimespanEnum, type GetOptionsOpenClose200Response, type GetOptionsQuotes200Response, type GetOptionsQuotes200ResponseResultsInner, GetOptionsQuotesOrderEnum, GetOptionsQuotesSortEnum, GetOptionsRSIOrderEnum, GetOptionsRSISeriesTypeEnum, GetOptionsRSITimespanEnum, GetOptionsSMAOrderEnum, GetOptionsSMASeriesTypeEnum, GetOptionsSMATimespanEnum, type GetOptionsTrades200Response, type GetOptionsTrades200ResponseResultsInner, GetOptionsTradesOrderEnum, GetOptionsTradesSortEnum, type GetOptionsV1Exchanges200Response, type GetOptionsV1Exchanges200ResponseResultsInner, GetOptionsV1Exchanges200ResponseStatusEnum, type GetPreviousCryptoAggregates200Response, type GetPreviousForexAggregates200Response, type GetPreviousForexAggregates200ResponseAllOfResultsInner, type GetPreviousIndicesAggregates200Response, type GetPreviousIndicesAggregates200ResponseAllOfResultsInner, type GetRelatedCompanies200Response, type GetRelatedCompanies200ResponseResultsInner, type GetSnapshotSummary200Response, type GetSnapshotSummary200ResponseResultsInner, type GetSnapshotSummary200ResponseResultsInnerBranding, type GetSnapshotSummary200ResponseResultsInnerOptions, GetSnapshotSummary200ResponseResultsInnerOptionsContractTypeEnum, GetSnapshotSummary200ResponseResultsInnerOptionsExerciseStyleEnum, type GetSnapshotSummary200ResponseResultsInnerSession, GetSnapshotSummary200ResponseResultsInnerTypeEnum, type GetSnapshots200Response, type GetSnapshots200ResponseResultsInner, type GetSnapshots200ResponseResultsInnerDetails, GetSnapshots200ResponseResultsInnerDetailsContractTypeEnum, GetSnapshots200ResponseResultsInnerDetailsExerciseStyleEnum, type GetSnapshots200ResponseResultsInnerGreeks, type GetSnapshots200ResponseResultsInnerLastMinute, type GetSnapshots200ResponseResultsInnerLastQuote, GetSnapshots200ResponseResultsInnerLastQuoteTimeframeEnum, type GetSnapshots200ResponseResultsInnerLastTrade, GetSnapshots200ResponseResultsInnerLastTradeTimeframeEnum, GetSnapshots200ResponseResultsInnerTimeframeEnum, GetSnapshots200ResponseResultsInnerTypeEnum, type GetSnapshots200ResponseResultsInnerUnderlyingAsset, GetSnapshots200ResponseResultsInnerUnderlyingAssetTimeframeEnum, GetSnapshotsOrderEnum, GetSnapshotsSortEnum, GetSnapshotsTypeEnum, type GetStocksAggregates200Response, type GetStocksAggregates200ResponseAllOfResultsInner, GetStocksAggregatesSortEnum, GetStocksAggregatesTimespanEnum, GetStocksEMAOrderEnum, GetStocksEMASeriesTypeEnum, GetStocksEMATimespanEnum, type GetStocksFilings10KVXSections200Response, type GetStocksFilings10KVXSections200ResponseResultsInner, GetStocksFilings10KVXSections200ResponseStatusEnum, GetStocksFilings10KVXSectionsSectionAnyOfEnum, GetStocksFilings10KVXSectionsSectionEnum, type GetStocksFilingsVXRiskFactors200Response, type GetStocksFilingsVXRiskFactors200ResponseResultsInner, GetStocksFilingsVXRiskFactors200ResponseStatusEnum, type GetStocksFinancialsV1BalanceSheets200Response, type GetStocksFinancialsV1BalanceSheets200ResponseResultsInner, GetStocksFinancialsV1BalanceSheets200ResponseStatusEnum, type GetStocksFinancialsV1CashFlowStatements200Response, type GetStocksFinancialsV1CashFlowStatements200ResponseResultsInner, GetStocksFinancialsV1CashFlowStatements200ResponseStatusEnum, type GetStocksFinancialsV1IncomeStatements200Response, type GetStocksFinancialsV1IncomeStatements200ResponseResultsInner, GetStocksFinancialsV1IncomeStatements200ResponseStatusEnum, type GetStocksFinancialsV1Ratios200Response, type GetStocksFinancialsV1Ratios200ResponseResultsInner, GetStocksFinancialsV1Ratios200ResponseStatusEnum, GetStocksMACDOrderEnum, GetStocksMACDSeriesTypeEnum, GetStocksMACDTimespanEnum, type GetStocksQuotes200Response, type GetStocksQuotes200ResponseResultsInner, GetStocksQuotesOrderEnum, GetStocksQuotesSortEnum, GetStocksRSIOrderEnum, GetStocksRSISeriesTypeEnum, GetStocksRSITimespanEnum, GetStocksSMAOrderEnum, GetStocksSMASeriesTypeEnum, GetStocksSMATimespanEnum, type GetStocksSnapshotDirection200Response, GetStocksSnapshotDirectionDirectionEnum, type GetStocksSnapshotTicker200Response, type GetStocksSnapshotTicker200ResponseAllOfTicker, type GetStocksSnapshotTickers200Response, type GetStocksSnapshotTickers200ResponseAllOfTickersInner, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetStocksTaxonomiesVXRiskFactors200Response, type GetStocksTaxonomiesVXRiskFactors200ResponseResultsInner, GetStocksTaxonomiesVXRiskFactors200ResponseStatusEnum, type GetStocksTrades200Response, type GetStocksTrades200ResponseResultsInner, GetStocksTradesOrderEnum, GetStocksTradesSortEnum, type GetStocksV1Dividends200Response, type GetStocksV1Dividends200ResponseResultsInner, GetStocksV1Dividends200ResponseStatusEnum, GetStocksV1DividendsDistributionTypeAnyOfEnum, GetStocksV1DividendsDistributionTypeEnum, type GetStocksV1Exchanges200Response, type GetStocksV1Exchanges200ResponseResultsInner, GetStocksV1Exchanges200ResponseStatusEnum, type GetStocksV1ShortInterest200Response, type GetStocksV1ShortInterest200ResponseResultsInner, GetStocksV1ShortInterest200ResponseStatusEnum, type GetStocksV1ShortVolume200Response, type GetStocksV1ShortVolume200ResponseResultsInner, GetStocksV1ShortVolume200ResponseStatusEnum, type GetStocksV1Splits200Response, type GetStocksV1Splits200ResponseResultsInner, GetStocksV1Splits200ResponseStatusEnum, GetStocksV1SplitsAdjustmentTypeAnyOfEnum, GetStocksV1SplitsAdjustmentTypeEnum, type GetStocksVXFloat200Response, type GetStocksVXFloat200ResponseResultsInner, GetStocksVXFloat200ResponseStatusEnum, type GetTicker200Response, type GetTicker200ResponseResults, type GetTicker200ResponseResultsAddress, type GetTicker200ResponseResultsBranding, GetTicker200ResponseResultsLocaleEnum, GetTicker200ResponseResultsMarketEnum, type GetTmxV1CorporateEvents200Response, type GetTmxV1CorporateEvents200ResponseResultsInner, GetTmxV1CorporateEvents200ResponseStatusEnum, type IAggegateForexEvent, type IAggregateCryptoEvent, type IAggregateFuturesEvent, type IAggregateIndexEvent, type IAggregateOptionsEvent, type IAggregateStockEvent, type IFMVCryptoEvent, type IFMVForexEvent, type IFMVOptionsEvent, type IFMVStockEvent, type IIndexValueEvent, type ILULDStockEvent, type IMassiveClient, type INOIStockEvent, type IQuoteCryptoEvent, type IQuoteForexEvent, type IQuoteFuturesEvent, type IQuoteOptionsEvent, type IQuoteStockEvent, type ITradeCryptoEvent, type ITradeFuturesEvent, type ITradeOptionsEvent, type ITradeStockEvent, type IWebsocketClient, type IndexAggsBase, type IndicesGroupedResults, type IndicesOpenClose, type IndicesTickerResults, type IndicesTickerResultsResultsInner, type ListConditions200Response, type ListConditions200ResponseResultsInner, ListConditions200ResponseResultsInnerAssetClassEnum, ListConditions200ResponseResultsInnerDataTypesEnum, type ListConditions200ResponseResultsInnerSipMapping, ListConditions200ResponseResultsInnerTypeEnum, type ListConditions200ResponseResultsInnerUpdateRules, type ListConditions200ResponseResultsInnerUpdateRulesConsolidated, type ListConditions200ResponseResultsInnerUpdateRulesMarketCenter, type ListConditions400Response, ListConditionsAssetClassEnum, ListConditionsDataTypeEnum, ListConditionsOrderEnum, ListConditionsSipEnum, ListConditionsSortEnum, type ListDividends200Response, type ListDividends200ResponseResultsInner, ListDividends200ResponseResultsInnerDividendTypeEnum, ListDividendsDividendTypeEnum, ListDividendsFrequencyEnum, ListDividendsOrderEnum, ListDividendsSortEnum, type ListExchanges200Response, type ListExchanges200ResponseResultsInner, ListExchanges200ResponseResultsInnerAssetClassEnum, ListExchanges200ResponseResultsInnerLocaleEnum, ListExchanges200ResponseResultsInnerTypeEnum, type ListExchanges400Response, ListExchangesAssetClassEnum, ListExchangesLocaleEnum, type ListFinancials200Response, type ListFinancials200ResponseResultsInner, type ListFinancials200ResponseResultsInnerFinancials, type ListFinancials200ResponseResultsInnerFinancialsBalanceSheet, ListFinancialsOrderEnum, ListFinancialsSortEnum, ListFinancialsTimeframeEnum, type ListIPOs200Response, type ListIPOs200ResponseResultsInner, ListIPOs200ResponseResultsInnerIpoStatusEnum, ListIPOsIpoStatusEnum, ListIPOsOrderEnum, ListIPOsSortEnum, type ListNews200Response, type ListNews200ResponseResultsInner, type ListNews200ResponseResultsInnerInsightsInner, ListNews200ResponseResultsInnerInsightsInnerSentimentEnum, type ListNews200ResponseResultsInnerPublisher, ListNewsOrderEnum, type ListNewsPublishedUtcParameter, ListNewsSortEnum, type ListOptionsContracts200Response, type ListOptionsContracts200ResponseResultsInner, type ListOptionsContracts200ResponseResultsInnerAdditionalUnderlyingsInner, ListOptionsContracts200ResponseResultsInnerExerciseStyleEnum, ListOptionsContractsContractTypeEnum, ListOptionsContractsOrderEnum, ListOptionsContractsSortEnum, type ListStockSplits200Response, type ListStockSplits200ResponseResultsInner, ListStockSplitsOrderEnum, ListStockSplitsSortEnum, type ListTickerTypes200Response, type ListTickerTypes200ResponseResultsInner, ListTickerTypes200ResponseResultsInnerAssetClassEnum, ListTickerTypes200ResponseResultsInnerLocaleEnum, ListTickerTypesAssetClassEnum, ListTickerTypesLocaleEnum, type ListTickers200Response, type ListTickers200ResponseResultsInner, ListTickers200ResponseResultsInnerLocaleEnum, ListTickers200ResponseResultsInnerMarketEnum, ListTickersMarketEnum, ListTickersOrderEnum, ListTickersSortEnum, ListTickersTypeEnum, type Locales, type LocalesResultsInner, type MapKey, MapKeyTypeEnum, type MarketHolidayInner, type MarketStatus, type MarketStatusCurrencies, type MarketStatusExchanges, type Markets, type MarketsResultsInner, MassiveClient, type ModelDate, type ModelMap, type NewsInner, type PaginationHooksBase, type RatingSection, type RequestIdBase, type SnapshotMinOHLCV, type SnapshotOHLCV, type SnapshotOHLCVVW, type SnapshotOHLCVVWOtc, type StandardBase, type StatusBase, type StatusCountBase, type StocksGroupedResults, type StocksOpenClose, type StocksSnapshotLastQuote, type StocksSnapshotMinute, type StocksSnapshotMinuteOTC, type StocksSnapshotTicker, type StocksSnapshotTickers, type StocksTickerResultsOTC, type StocksV2Base, type StocksV2NBBO, type StocksV2NBBOs, type StocksV2Trade, type StocksV2Trades, type TickerBase, type TickerResults, type TradeDetailsMapItem, type V1LastBase, type V2AggsBase, type V2LastBase, type V2TicksBase, MassiveClient as default, getCryptoWebsocket, getForexWebsocket, getFuturesWebsocket, getIndicesWebsocket, getOptionsWebsocket, getStocksWebsocket, restClient, websocketClient };
|
|
38391
|
+
export { type Company, type ConditionTypeMap, Configuration, type ConfigurationParameters, type CryptoExchangeInner, type CryptoGroupedResults, type CryptoHistoricTrades, type CryptoLastTrade, type CryptoLastTradeLast, type CryptoOpenClose, type CryptoSnapshotMinute, type CryptoSnapshotTicker, type CryptoSnapshotTickerFullBook, type CryptoSnapshotTickers, type CryptoTick, DefaultApi, DefaultApiAxiosParamCreator, type DefaultApiDeprecatedGetCryptoSnapshotTickerBookRequest, type DefaultApiDeprecatedGetHistoricCryptoTradesRequest, type DefaultApiDeprecatedGetHistoricForexQuotesRequest, type DefaultApiDeprecatedGetHistoricStocksQuotesRequest, type DefaultApiDeprecatedGetHistoricStocksTradesRequest, DefaultApiFactory, DefaultApiFp, type DefaultApiGetBenzingaV1AnalystInsightsRequest, type DefaultApiGetBenzingaV1AnalystsRequest, type DefaultApiGetBenzingaV1BullsBearsSayRequest, type DefaultApiGetBenzingaV1ConsensusRatingsRequest, type DefaultApiGetBenzingaV1EarningsRequest, type DefaultApiGetBenzingaV1FirmsRequest, type DefaultApiGetBenzingaV1GuidanceRequest, type DefaultApiGetBenzingaV1RatingsRequest, type DefaultApiGetBenzingaV2NewsRequest, type DefaultApiGetCryptoAggregatesRequest, type DefaultApiGetCryptoEMARequest, type DefaultApiGetCryptoMACDRequest, type DefaultApiGetCryptoOpenCloseRequest, type DefaultApiGetCryptoRSIRequest, type DefaultApiGetCryptoSMARequest, type DefaultApiGetCryptoSnapshotDirectionRequest, type DefaultApiGetCryptoSnapshotTickerRequest, type DefaultApiGetCryptoSnapshotTickersRequest, type DefaultApiGetCryptoTradesRequest, type DefaultApiGetCryptoV1ExchangesRequest, type DefaultApiGetCurrencyConversionRequest, type DefaultApiGetEtfGlobalV1AnalyticsRequest, type DefaultApiGetEtfGlobalV1ConstituentsRequest, type DefaultApiGetEtfGlobalV1FundFlowsRequest, type DefaultApiGetEtfGlobalV1ProfilesRequest, type DefaultApiGetEtfGlobalV1TaxonomiesRequest, type DefaultApiGetEventsRequest, type DefaultApiGetFedV1InflationExpectationsRequest, type DefaultApiGetFedV1InflationRequest, type DefaultApiGetFedV1LaborMarketRequest, type DefaultApiGetFedV1TreasuryYieldsRequest, type DefaultApiGetForexAggregatesRequest, type DefaultApiGetForexEMARequest, type DefaultApiGetForexMACDRequest, type DefaultApiGetForexQuotesRequest, type DefaultApiGetForexRSIRequest, type DefaultApiGetForexSMARequest, type DefaultApiGetForexSnapshotDirectionRequest, type DefaultApiGetForexSnapshotTickerRequest, type DefaultApiGetForexSnapshotTickersRequest, type DefaultApiGetForexV1ExchangesRequest, type DefaultApiGetFuturesAggregatesRequest, type DefaultApiGetFuturesQuotesRequest, type DefaultApiGetFuturesTradesRequest, type DefaultApiGetFuturesVXContractsRequest, type DefaultApiGetFuturesVXExchangesRequest, type DefaultApiGetFuturesVXMarketStatusRequest, type DefaultApiGetFuturesVXProductsRequest, type DefaultApiGetFuturesVXQuotesNewRequest, type DefaultApiGetFuturesVXSchedulesRequest, type DefaultApiGetFuturesVXSnapshotNativeRequest, type DefaultApiGetFuturesVXSnapshotRequest, type DefaultApiGetFuturesVXTradesNewRequest, type DefaultApiGetGroupedCryptoAggregatesRequest, type DefaultApiGetGroupedForexAggregatesRequest, type DefaultApiGetGroupedStocksAggregatesRequest, type DefaultApiGetIndicesAggregatesRequest, type DefaultApiGetIndicesEMARequest, type DefaultApiGetIndicesMACDRequest, type DefaultApiGetIndicesOpenCloseRequest, type DefaultApiGetIndicesRSIRequest, type DefaultApiGetIndicesSMARequest, type DefaultApiGetIndicesSnapshotRequest, type DefaultApiGetLastCryptoTradeRequest, type DefaultApiGetLastCurrencyQuoteRequest, type DefaultApiGetLastOptionsTradeRequest, type DefaultApiGetLastStocksQuoteRequest, type DefaultApiGetLastStocksTradeRequest, type DefaultApiGetOptionContractRequest, type DefaultApiGetOptionsAggregatesRequest, type DefaultApiGetOptionsChainRequest, type DefaultApiGetOptionsContractRequest, type DefaultApiGetOptionsEMARequest, type DefaultApiGetOptionsMACDRequest, type DefaultApiGetOptionsOpenCloseRequest, type DefaultApiGetOptionsQuotesRequest, type DefaultApiGetOptionsRSIRequest, type DefaultApiGetOptionsSMARequest, type DefaultApiGetOptionsTradesRequest, type DefaultApiGetOptionsV1ExchangesRequest, type DefaultApiGetPreviousCryptoAggregatesRequest, type DefaultApiGetPreviousForexAggregatesRequest, type DefaultApiGetPreviousIndicesAggregatesRequest, type DefaultApiGetPreviousOptionsAggregatesRequest, type DefaultApiGetPreviousStocksAggregatesRequest, type DefaultApiGetRelatedCompaniesRequest, type DefaultApiGetSnapshotSummaryRequest, type DefaultApiGetSnapshotsRequest, type DefaultApiGetStocksAggregatesRequest, type DefaultApiGetStocksEMARequest, type DefaultApiGetStocksFilings10KVXSectionsRequest, type DefaultApiGetStocksFilingsVXIndexRequest, type DefaultApiGetStocksFilingsVXRiskFactorsRequest, type DefaultApiGetStocksFinancialsV1BalanceSheetsRequest, type DefaultApiGetStocksFinancialsV1CashFlowStatementsRequest, type DefaultApiGetStocksFinancialsV1IncomeStatementsRequest, type DefaultApiGetStocksFinancialsV1RatiosRequest, type DefaultApiGetStocksMACDRequest, type DefaultApiGetStocksOpenCloseRequest, type DefaultApiGetStocksQuotesRequest, type DefaultApiGetStocksRSIRequest, type DefaultApiGetStocksSMARequest, type DefaultApiGetStocksSnapshotDirectionRequest, type DefaultApiGetStocksSnapshotTickerRequest, type DefaultApiGetStocksSnapshotTickersRequest, type DefaultApiGetStocksTaxonomiesVXRiskFactorsRequest, type DefaultApiGetStocksTradesRequest, type DefaultApiGetStocksV1DividendsRequest, type DefaultApiGetStocksV1ExchangesRequest, type DefaultApiGetStocksV1ShortInterestRequest, type DefaultApiGetStocksV1ShortVolumeRequest, type DefaultApiGetStocksV1SplitsRequest, type DefaultApiGetStocksVXFloatRequest, type DefaultApiGetTickerRequest, type DefaultApiGetTmxV1CorporateEventsRequest, type DefaultApiGetV1ReferenceIposRequest, type DefaultApiListConditionsRequest, type DefaultApiListDividendsRequest, type DefaultApiListExchangesRequest, type DefaultApiListFinancialsRequest, type DefaultApiListIPOsRequest, type DefaultApiListNewsRequest, type DefaultApiListOptionsContractsRequest, type DefaultApiListStockSplitsRequest, type DefaultApiListTickerTypesRequest, type DefaultApiListTickersRequest, type DeprecatedGetCryptoSnapshotTickerBook200Response, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfData, type DeprecatedGetCryptoSnapshotTickerBook200ResponseAllOfDataAsksInner, type DeprecatedGetHistoricCryptoTrades200Response, type DeprecatedGetHistoricCryptoTrades200ResponseAllOfTicksInner, type DeprecatedGetHistoricForexQuotes200Response, type DeprecatedGetHistoricForexQuotes200ResponseAllOfTicksInner, type DeprecatedGetHistoricStocksQuotes200Response, type DeprecatedGetHistoricStocksQuotes200ResponseAllOfResultsInner, type DeprecatedGetHistoricStocksTrades200Response, type DeprecatedGetHistoricStocksTrades200ResponseAllOfResultsInner, type ExchangeInner, type Financial, type Financials, FinancialsPeriodEnum, type ForexConversion, type ForexConversionLast, type ForexGroupedResults, type ForexHistoricTrades, type ForexPairLastQuote, type ForexPreviousClose, type ForexSnapshotLastQuote, type ForexSnapshotPrevDay, type ForexSnapshotTicker, type ForexSnapshotTickers, type ForexTickerResults, type GetBenzingaV1AnalystInsights200Response, type GetBenzingaV1AnalystInsights200ResponseResultsInner, GetBenzingaV1AnalystInsights200ResponseStatusEnum, type GetBenzingaV1AnalystInsights400Response, GetBenzingaV1AnalystInsights400ResponseStatusEnum, type GetBenzingaV1Analysts200Response, type GetBenzingaV1Analysts200ResponseResultsInner, GetBenzingaV1Analysts200ResponseStatusEnum, type GetBenzingaV1BullsBearsSay200Response, type GetBenzingaV1BullsBearsSay200ResponseResultsInner, GetBenzingaV1BullsBearsSay200ResponseStatusEnum, type GetBenzingaV1ConsensusRatings200Response, type GetBenzingaV1ConsensusRatings200ResponseResultsInner, GetBenzingaV1ConsensusRatings200ResponseStatusEnum, type GetBenzingaV1Earnings200Response, type GetBenzingaV1Earnings200ResponseResultsInner, GetBenzingaV1Earnings200ResponseStatusEnum, type GetBenzingaV1Firms200Response, type GetBenzingaV1Firms200ResponseResultsInner, GetBenzingaV1Firms200ResponseStatusEnum, type GetBenzingaV1Guidance200Response, type GetBenzingaV1Guidance200ResponseResultsInner, GetBenzingaV1Guidance200ResponseStatusEnum, type GetBenzingaV1Ratings200Response, type GetBenzingaV1Ratings200ResponseResultsInner, GetBenzingaV1Ratings200ResponseStatusEnum, type GetBenzingaV2News200Response, type GetBenzingaV2News200ResponseResultsInner, GetBenzingaV2News200ResponseStatusEnum, type GetCryptoAggregates200Response, type GetCryptoAggregates200ResponseAllOfResultsInner, GetCryptoAggregatesSortEnum, GetCryptoAggregatesTimespanEnum, type GetCryptoEMA200Response, type GetCryptoEMA200ResponseResults, type GetCryptoEMA200ResponseResultsUnderlying, type GetCryptoEMA200ResponseResultsUnderlyingAggregatesInner, type GetCryptoEMA200ResponseResultsValuesInner, GetCryptoEMAOrderEnum, GetCryptoEMASeriesTypeEnum, GetCryptoEMATimespanEnum, type GetCryptoMACD200Response, type GetCryptoMACD200ResponseResults, type GetCryptoMACD200ResponseResultsValuesInner, GetCryptoMACDOrderEnum, GetCryptoMACDSeriesTypeEnum, GetCryptoMACDTimespanEnum, type GetCryptoOpenClose200Response, type GetCryptoRSI200Response, type GetCryptoRSI200ResponseResults, GetCryptoRSIOrderEnum, GetCryptoRSISeriesTypeEnum, GetCryptoRSITimespanEnum, type GetCryptoSMA200Response, type GetCryptoSMA200ResponseResults, GetCryptoSMAOrderEnum, GetCryptoSMASeriesTypeEnum, GetCryptoSMATimespanEnum, type GetCryptoSnapshotDirection200Response, GetCryptoSnapshotDirectionDirectionEnum, type GetCryptoSnapshotTicker200Response, type GetCryptoSnapshotTicker200ResponseAllOfTicker, type GetCryptoSnapshotTickers200Response, type GetCryptoSnapshotTickers200ResponseAllOfTickersInner, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerDay, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerMin, type GetCryptoSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetCryptoTrades200Response, type GetCryptoTrades200ResponseResultsInner, GetCryptoTradesOrderEnum, GetCryptoTradesSortEnum, type GetCryptoV1Exchanges200Response, type GetCryptoV1Exchanges200ResponseResultsInner, GetCryptoV1Exchanges200ResponseStatusEnum, type GetCurrencyConversion200Response, type GetCurrencyConversion200ResponseLast, GetCurrencyConversionPrecisionEnum, type GetEtfGlobalV1Analytics200Response, type GetEtfGlobalV1Analytics200ResponseResultsInner, GetEtfGlobalV1Analytics200ResponseStatusEnum, type GetEtfGlobalV1Constituents200Response, type GetEtfGlobalV1Constituents200ResponseResultsInner, GetEtfGlobalV1Constituents200ResponseStatusEnum, type GetEtfGlobalV1FundFlows200Response, type GetEtfGlobalV1FundFlows200ResponseResultsInner, GetEtfGlobalV1FundFlows200ResponseStatusEnum, type GetEtfGlobalV1Profiles200Response, type GetEtfGlobalV1Profiles200ResponseResultsInner, type GetEtfGlobalV1Profiles200ResponseResultsInnerCouponExposureInner, GetEtfGlobalV1Profiles200ResponseStatusEnum, type GetEtfGlobalV1Taxonomies200Response, type GetEtfGlobalV1Taxonomies200ResponseResultsInner, GetEtfGlobalV1Taxonomies200ResponseStatusEnum, type GetEvents200Response, type GetEvents200ResponseResults, type GetEvents200ResponseResultsEventsInner, type GetEvents200ResponseResultsEventsInnerOneOf, type GetEvents200ResponseResultsEventsInnerOneOfTickerChange, type GetFedV1Inflation200Response, type GetFedV1Inflation200ResponseResultsInner, GetFedV1Inflation200ResponseStatusEnum, type GetFedV1InflationExpectations200Response, type GetFedV1InflationExpectations200ResponseResultsInner, GetFedV1InflationExpectations200ResponseStatusEnum, type GetFedV1LaborMarket200Response, type GetFedV1LaborMarket200ResponseResultsInner, GetFedV1LaborMarket200ResponseStatusEnum, type GetFedV1TreasuryYields200Response, type GetFedV1TreasuryYields200ResponseResultsInner, GetFedV1TreasuryYields200ResponseStatusEnum, GetForexAggregatesSortEnum, GetForexAggregatesTimespanEnum, GetForexEMAOrderEnum, GetForexEMASeriesTypeEnum, GetForexEMATimespanEnum, GetForexMACDOrderEnum, GetForexMACDSeriesTypeEnum, GetForexMACDTimespanEnum, type GetForexQuotes200Response, type GetForexQuotes200ResponseResultsInner, GetForexQuotesOrderEnum, GetForexQuotesSortEnum, GetForexRSIOrderEnum, GetForexRSISeriesTypeEnum, GetForexRSITimespanEnum, GetForexSMAOrderEnum, GetForexSMASeriesTypeEnum, GetForexSMATimespanEnum, GetForexSnapshotDirectionDirectionEnum, type GetForexSnapshotTicker200Response, type GetForexSnapshotTicker200ResponseAllOfTicker, type GetForexSnapshotTickers200Response, type GetForexSnapshotTickers200ResponseAllOfTickersInner, type GetForexSnapshotTickers200ResponseAllOfTickersInnerDay, type GetForexSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetForexSnapshotTickers200ResponseAllOfTickersInnerMin, type GetForexV1Exchanges200Response, type GetForexV1Exchanges200ResponseResultsInner, GetForexV1Exchanges200ResponseStatusEnum, type GetFuturesAggregates200Response, type GetFuturesAggregates200ResponseResultsInner, GetFuturesAggregatesSortEnum, type GetFuturesQuotes200Response, type GetFuturesQuotes200ResponseResultsInner, GetFuturesQuotesSortEnum, type GetFuturesTrades200Response, type GetFuturesTrades200ResponseResultsInner, GetFuturesTradesSortEnum, type GetFuturesVXContracts200Response, type GetFuturesVXContracts200ResponseResultsInner, GetFuturesVXContracts200ResponseStatusEnum, GetFuturesVXContractsTypeAnyOfEnum, GetFuturesVXContractsTypeEnum, type GetFuturesVXExchanges200Response, type GetFuturesVXExchanges200ResponseResultsInner, GetFuturesVXExchanges200ResponseStatusEnum, type GetFuturesVXMarketStatus200Response, type GetFuturesVXMarketStatus200ResponseResultsInner, GetFuturesVXMarketStatus200ResponseStatusEnum, type GetFuturesVXProducts200Response, type GetFuturesVXProducts200ResponseResultsInner, GetFuturesVXProducts200ResponseStatusEnum, GetFuturesVXProductsAssetClassAnyOfEnum, GetFuturesVXProductsAssetClassEnum, GetFuturesVXProductsAssetSubClassAnyOfEnum, GetFuturesVXProductsAssetSubClassEnum, GetFuturesVXProductsSectorAnyOfEnum, GetFuturesVXProductsSectorEnum, GetFuturesVXProductsSubSectorAnyOfEnum, GetFuturesVXProductsSubSectorEnum, GetFuturesVXProductsTypeAnyOfEnum, GetFuturesVXProductsTypeEnum, type GetFuturesVXQuotesNew200Response, type GetFuturesVXQuotesNew200ResponseResultsInner, GetFuturesVXQuotesNew200ResponseStatusEnum, type GetFuturesVXSchedules200Response, type GetFuturesVXSchedules200ResponseResultsInner, GetFuturesVXSchedules200ResponseStatusEnum, type GetFuturesVXSnapshot200Response, type GetFuturesVXSnapshot200ResponseResultsInner, type GetFuturesVXSnapshot200ResponseResultsInnerDetails, type GetFuturesVXSnapshot200ResponseResultsInnerLastMinute, type GetFuturesVXSnapshot200ResponseResultsInnerLastQuote, type GetFuturesVXSnapshot200ResponseResultsInnerLastTrade, type GetFuturesVXSnapshot200ResponseResultsInnerSession, GetFuturesVXSnapshot200ResponseStatusEnum, type GetFuturesVXTradesNew200Response, type GetFuturesVXTradesNew200ResponseResultsInner, GetFuturesVXTradesNew200ResponseStatusEnum, type GetGroupedCryptoAggregates200Response, type GetGroupedCryptoAggregates200ResponseAllOfResultsInner, type GetGroupedStocksAggregates200Response, type GetGroupedStocksAggregates200ResponseAllOfResultsInner, GetIndicesAggregatesSortEnum, GetIndicesAggregatesTimespanEnum, GetIndicesEMAOrderEnum, GetIndicesEMASeriesTypeEnum, GetIndicesEMATimespanEnum, GetIndicesMACDOrderEnum, GetIndicesMACDSeriesTypeEnum, GetIndicesMACDTimespanEnum, type GetIndicesOpenClose200Response, GetIndicesRSIOrderEnum, GetIndicesRSISeriesTypeEnum, GetIndicesRSITimespanEnum, GetIndicesSMAOrderEnum, GetIndicesSMASeriesTypeEnum, GetIndicesSMATimespanEnum, type GetIndicesSnapshot200Response, type GetIndicesSnapshot200ResponseResultsInner, type GetIndicesSnapshot200ResponseResultsInnerSession, GetIndicesSnapshot200ResponseResultsInnerTimeframeEnum, GetIndicesSnapshot200ResponseResultsInnerTypeEnum, GetIndicesSnapshotOrderEnum, GetIndicesSnapshotSortEnum, type GetLastCryptoTrade200Response, type GetLastCryptoTrade200ResponseLast, type GetLastCurrencyQuote200Response, type GetLastOptionsTrade200Response, type GetLastOptionsTrade200ResponseResults, type GetLastStocksQuote200Response, type GetLastStocksQuote200ResponseResults, type GetLastStocksTrade200Response, type GetLastStocksTrade200ResponseResults, type GetMarketHolidays200ResponseInner, type GetMarketStatus200Response, type GetMarketStatus200ResponseCurrencies, type GetMarketStatus200ResponseExchanges, type GetMarketStatus200ResponseIndicesGroups, type GetOptionContract200Response, GetOptionsAggregatesSortEnum, GetOptionsAggregatesTimespanEnum, type GetOptionsChain200Response, type GetOptionsChain200ResponseResultsInner, type GetOptionsChain200ResponseResultsInnerDay, type GetOptionsChain200ResponseResultsInnerDetails, GetOptionsChain200ResponseResultsInnerDetailsContractTypeEnum, GetOptionsChain200ResponseResultsInnerDetailsExerciseStyleEnum, type GetOptionsChain200ResponseResultsInnerLastQuote, GetOptionsChain200ResponseResultsInnerLastQuoteTimeframeEnum, type GetOptionsChain200ResponseResultsInnerLastTrade, GetOptionsChain200ResponseResultsInnerLastTradeTimeframeEnum, GetOptionsChainContractTypeEnum, GetOptionsChainOrderEnum, GetOptionsChainSortEnum, type GetOptionsContract200Response, GetOptionsEMAOrderEnum, GetOptionsEMASeriesTypeEnum, GetOptionsEMATimespanEnum, GetOptionsMACDOrderEnum, GetOptionsMACDSeriesTypeEnum, GetOptionsMACDTimespanEnum, type GetOptionsOpenClose200Response, type GetOptionsQuotes200Response, type GetOptionsQuotes200ResponseResultsInner, GetOptionsQuotesOrderEnum, GetOptionsQuotesSortEnum, GetOptionsRSIOrderEnum, GetOptionsRSISeriesTypeEnum, GetOptionsRSITimespanEnum, GetOptionsSMAOrderEnum, GetOptionsSMASeriesTypeEnum, GetOptionsSMATimespanEnum, type GetOptionsTrades200Response, type GetOptionsTrades200ResponseResultsInner, GetOptionsTradesOrderEnum, GetOptionsTradesSortEnum, type GetOptionsV1Exchanges200Response, type GetOptionsV1Exchanges200ResponseResultsInner, GetOptionsV1Exchanges200ResponseStatusEnum, type GetPreviousCryptoAggregates200Response, type GetPreviousForexAggregates200Response, type GetPreviousForexAggregates200ResponseAllOfResultsInner, type GetPreviousIndicesAggregates200Response, type GetPreviousIndicesAggregates200ResponseAllOfResultsInner, type GetRelatedCompanies200Response, type GetRelatedCompanies200ResponseResultsInner, type GetSnapshotSummary200Response, type GetSnapshotSummary200ResponseResultsInner, type GetSnapshotSummary200ResponseResultsInnerBranding, type GetSnapshotSummary200ResponseResultsInnerOptions, GetSnapshotSummary200ResponseResultsInnerOptionsContractTypeEnum, GetSnapshotSummary200ResponseResultsInnerOptionsExerciseStyleEnum, type GetSnapshotSummary200ResponseResultsInnerSession, GetSnapshotSummary200ResponseResultsInnerTypeEnum, type GetSnapshots200Response, type GetSnapshots200ResponseResultsInner, type GetSnapshots200ResponseResultsInnerDetails, GetSnapshots200ResponseResultsInnerDetailsContractTypeEnum, GetSnapshots200ResponseResultsInnerDetailsExerciseStyleEnum, type GetSnapshots200ResponseResultsInnerGreeks, type GetSnapshots200ResponseResultsInnerLastMinute, type GetSnapshots200ResponseResultsInnerLastQuote, GetSnapshots200ResponseResultsInnerLastQuoteTimeframeEnum, type GetSnapshots200ResponseResultsInnerLastTrade, GetSnapshots200ResponseResultsInnerLastTradeTimeframeEnum, GetSnapshots200ResponseResultsInnerTimeframeEnum, GetSnapshots200ResponseResultsInnerTypeEnum, type GetSnapshots200ResponseResultsInnerUnderlyingAsset, GetSnapshots200ResponseResultsInnerUnderlyingAssetTimeframeEnum, GetSnapshotsOrderEnum, GetSnapshotsSortEnum, GetSnapshotsTypeEnum, type GetStocksAggregates200Response, type GetStocksAggregates200ResponseAllOfResultsInner, GetStocksAggregatesSortEnum, GetStocksAggregatesTimespanEnum, GetStocksEMAOrderEnum, GetStocksEMASeriesTypeEnum, GetStocksEMATimespanEnum, type GetStocksFilings10KVXSections200Response, type GetStocksFilings10KVXSections200ResponseResultsInner, GetStocksFilings10KVXSections200ResponseStatusEnum, GetStocksFilings10KVXSectionsSectionAnyOfEnum, GetStocksFilings10KVXSectionsSectionEnum, type GetStocksFilingsVXIndex200Response, type GetStocksFilingsVXIndex200ResponseResultsInner, GetStocksFilingsVXIndex200ResponseStatusEnum, type GetStocksFilingsVXRiskFactors200Response, type GetStocksFilingsVXRiskFactors200ResponseResultsInner, GetStocksFilingsVXRiskFactors200ResponseStatusEnum, type GetStocksFinancialsV1BalanceSheets200Response, type GetStocksFinancialsV1BalanceSheets200ResponseResultsInner, GetStocksFinancialsV1BalanceSheets200ResponseStatusEnum, type GetStocksFinancialsV1CashFlowStatements200Response, type GetStocksFinancialsV1CashFlowStatements200ResponseResultsInner, GetStocksFinancialsV1CashFlowStatements200ResponseStatusEnum, type GetStocksFinancialsV1IncomeStatements200Response, type GetStocksFinancialsV1IncomeStatements200ResponseResultsInner, GetStocksFinancialsV1IncomeStatements200ResponseStatusEnum, type GetStocksFinancialsV1Ratios200Response, type GetStocksFinancialsV1Ratios200ResponseResultsInner, GetStocksFinancialsV1Ratios200ResponseStatusEnum, GetStocksMACDOrderEnum, GetStocksMACDSeriesTypeEnum, GetStocksMACDTimespanEnum, type GetStocksQuotes200Response, type GetStocksQuotes200ResponseResultsInner, GetStocksQuotesOrderEnum, GetStocksQuotesSortEnum, GetStocksRSIOrderEnum, GetStocksRSISeriesTypeEnum, GetStocksRSITimespanEnum, GetStocksSMAOrderEnum, GetStocksSMASeriesTypeEnum, GetStocksSMATimespanEnum, type GetStocksSnapshotDirection200Response, GetStocksSnapshotDirectionDirectionEnum, type GetStocksSnapshotTicker200Response, type GetStocksSnapshotTicker200ResponseAllOfTicker, type GetStocksSnapshotTickers200Response, type GetStocksSnapshotTickers200ResponseAllOfTickersInner, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerDay, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastQuote, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerLastTrade, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerMin, type GetStocksSnapshotTickers200ResponseAllOfTickersInnerPrevDay, type GetStocksTaxonomiesVXRiskFactors200Response, type GetStocksTaxonomiesVXRiskFactors200ResponseResultsInner, GetStocksTaxonomiesVXRiskFactors200ResponseStatusEnum, type GetStocksTrades200Response, type GetStocksTrades200ResponseResultsInner, GetStocksTradesOrderEnum, GetStocksTradesSortEnum, type GetStocksV1Dividends200Response, type GetStocksV1Dividends200ResponseResultsInner, GetStocksV1Dividends200ResponseStatusEnum, GetStocksV1DividendsDistributionTypeAnyOfEnum, GetStocksV1DividendsDistributionTypeEnum, type GetStocksV1Exchanges200Response, type GetStocksV1Exchanges200ResponseResultsInner, GetStocksV1Exchanges200ResponseStatusEnum, type GetStocksV1ShortInterest200Response, type GetStocksV1ShortInterest200ResponseResultsInner, GetStocksV1ShortInterest200ResponseStatusEnum, type GetStocksV1ShortVolume200Response, type GetStocksV1ShortVolume200ResponseResultsInner, GetStocksV1ShortVolume200ResponseStatusEnum, type GetStocksV1Splits200Response, type GetStocksV1Splits200ResponseResultsInner, GetStocksV1Splits200ResponseStatusEnum, GetStocksV1SplitsAdjustmentTypeAnyOfEnum, GetStocksV1SplitsAdjustmentTypeEnum, type GetStocksVXFloat200Response, type GetStocksVXFloat200ResponseResultsInner, GetStocksVXFloat200ResponseStatusEnum, type GetTicker200Response, type GetTicker200ResponseResults, type GetTicker200ResponseResultsAddress, type GetTicker200ResponseResultsBranding, GetTicker200ResponseResultsLocaleEnum, GetTicker200ResponseResultsMarketEnum, type GetTmxV1CorporateEvents200Response, type GetTmxV1CorporateEvents200ResponseResultsInner, GetTmxV1CorporateEvents200ResponseStatusEnum, type GetV1ReferenceIpos200Response, type GetV1ReferenceIpos200ResponseResultsInner, GetV1ReferenceIpos200ResponseStatusEnum, GetV1ReferenceIposIpoStatusAnyOfEnum, GetV1ReferenceIposIpoStatusEnum, type IAggegateForexEvent, type IAggregateCryptoEvent, type IAggregateFuturesEvent, type IAggregateIndexEvent, type IAggregateOptionsEvent, type IAggregateStockEvent, type IFMVCryptoEvent, type IFMVForexEvent, type IFMVOptionsEvent, type IFMVStockEvent, type IIndexValueEvent, type ILULDStockEvent, type IMassiveClient, type INOIStockEvent, type IQuoteCryptoEvent, type IQuoteForexEvent, type IQuoteFuturesEvent, type IQuoteOptionsEvent, type IQuoteStockEvent, type ITradeCryptoEvent, type ITradeFuturesEvent, type ITradeOptionsEvent, type ITradeStockEvent, type IWebsocketClient, type IndexAggsBase, type IndicesGroupedResults, type IndicesOpenClose, type IndicesTickerResults, type IndicesTickerResultsResultsInner, type ListConditions200Response, type ListConditions200ResponseResultsInner, ListConditions200ResponseResultsInnerAssetClassEnum, ListConditions200ResponseResultsInnerDataTypesEnum, type ListConditions200ResponseResultsInnerSipMapping, ListConditions200ResponseResultsInnerTypeEnum, type ListConditions200ResponseResultsInnerUpdateRules, type ListConditions200ResponseResultsInnerUpdateRulesConsolidated, type ListConditions200ResponseResultsInnerUpdateRulesMarketCenter, type ListConditions400Response, ListConditionsAssetClassEnum, ListConditionsDataTypeEnum, ListConditionsOrderEnum, ListConditionsSipEnum, ListConditionsSortEnum, type ListDividends200Response, type ListDividends200ResponseResultsInner, ListDividends200ResponseResultsInnerDividendTypeEnum, ListDividendsDividendTypeEnum, ListDividendsFrequencyEnum, ListDividendsOrderEnum, ListDividendsSortEnum, type ListExchanges200Response, type ListExchanges200ResponseResultsInner, ListExchanges200ResponseResultsInnerAssetClassEnum, ListExchanges200ResponseResultsInnerLocaleEnum, ListExchanges200ResponseResultsInnerTypeEnum, type ListExchanges400Response, ListExchangesAssetClassEnum, ListExchangesLocaleEnum, type ListFinancials200Response, type ListFinancials200ResponseResultsInner, type ListFinancials200ResponseResultsInnerFinancials, type ListFinancials200ResponseResultsInnerFinancialsBalanceSheet, ListFinancialsOrderEnum, ListFinancialsSortEnum, ListFinancialsTimeframeEnum, type ListIPOs200Response, type ListIPOs200ResponseResultsInner, ListIPOs200ResponseResultsInnerIpoStatusEnum, ListIPOsIpoStatusEnum, ListIPOsOrderEnum, ListIPOsSortEnum, type ListNews200Response, type ListNews200ResponseResultsInner, type ListNews200ResponseResultsInnerInsightsInner, ListNews200ResponseResultsInnerInsightsInnerSentimentEnum, type ListNews200ResponseResultsInnerPublisher, ListNewsOrderEnum, type ListNewsPublishedUtcParameter, ListNewsSortEnum, type ListOptionsContracts200Response, type ListOptionsContracts200ResponseResultsInner, type ListOptionsContracts200ResponseResultsInnerAdditionalUnderlyingsInner, ListOptionsContracts200ResponseResultsInnerExerciseStyleEnum, ListOptionsContractsContractTypeEnum, ListOptionsContractsOrderEnum, ListOptionsContractsSortEnum, type ListStockSplits200Response, type ListStockSplits200ResponseResultsInner, ListStockSplitsOrderEnum, ListStockSplitsSortEnum, type ListTickerTypes200Response, type ListTickerTypes200ResponseResultsInner, ListTickerTypes200ResponseResultsInnerAssetClassEnum, ListTickerTypes200ResponseResultsInnerLocaleEnum, ListTickerTypesAssetClassEnum, ListTickerTypesLocaleEnum, type ListTickers200Response, type ListTickers200ResponseResultsInner, ListTickers200ResponseResultsInnerLocaleEnum, ListTickers200ResponseResultsInnerMarketEnum, ListTickersMarketEnum, ListTickersOrderEnum, ListTickersSortEnum, ListTickersTypeEnum, type Locales, type LocalesResultsInner, type MapKey, MapKeyTypeEnum, type MarketHolidayInner, type MarketStatus, type MarketStatusCurrencies, type MarketStatusExchanges, type Markets, type MarketsResultsInner, MassiveClient, type ModelDate, type ModelMap, type NewsInner, type PaginationHooksBase, type RatingSection, type RequestIdBase, type SnapshotMinOHLCV, type SnapshotOHLCV, type SnapshotOHLCVVW, type SnapshotOHLCVVWOtc, type StandardBase, type StatusBase, type StatusCountBase, type StocksGroupedResults, type StocksOpenClose, type StocksSnapshotLastQuote, type StocksSnapshotMinute, type StocksSnapshotMinuteOTC, type StocksSnapshotPrevDay, type StocksSnapshotTicker, type StocksSnapshotTickers, type StocksTickerResultsOTC, type StocksV2Base, type StocksV2NBBO, type StocksV2NBBOs, type StocksV2Trade, type StocksV2Trades, type TickerBase, type TickerResults, type TradeDetailsMapItem, type V1LastBase, type V2AggsBase, type V2LastBase, type V2TicksBase, MassiveClient as default, getCryptoWebsocket, getForexWebsocket, getFuturesWebsocket, getIndicesWebsocket, getOptionsWebsocket, getStocksWebsocket, restClient, websocketClient };
|