fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST 0.1.0__tar.gz

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.
Files changed (100) hide show
  1. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/LICENSE +202 -0
  2. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/PKG-INFO +415 -0
  3. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/README.md +400 -0
  4. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/__init__.py +0 -0
  5. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/__init__.py +28 -0
  6. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/__init__.py +3 -0
  7. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/market_impact_api.py +1165 -0
  8. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/order_details_api.py +3029 -0
  9. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/order_search_api.py +662 -0
  10. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/outliers_api.py +703 -0
  11. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/quote_analytics_api.py +373 -0
  12. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/reports_api.py +329 -0
  13. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/trade_analytics_api.py +687 -0
  14. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api/z_score_api.py +686 -0
  15. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/api_client.py +939 -0
  16. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/apis/__init__.py +24 -0
  17. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/configuration.py +496 -0
  18. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/exceptions.py +160 -0
  19. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/__init__.py +5 -0
  20. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/cost_impact.py +278 -0
  21. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/cost_impact_response_root.py +268 -0
  22. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/cost_impact_standard.py +284 -0
  23. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/cost_impact_standard_response_root.py +268 -0
  24. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/error.py +268 -0
  25. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/error_response.py +262 -0
  26. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/field_values_response.py +272 -0
  27. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/field_values_response_root.py +268 -0
  28. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/index_etf.py +268 -0
  29. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/index_etf_response.py +262 -0
  30. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/index_etf_response_root.py +268 -0
  31. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/intra_order_stat.py +300 -0
  32. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/intra_order_stat_response.py +262 -0
  33. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/intra_order_stat_response_root.py +268 -0
  34. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/investment_timing.py +260 -0
  35. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/investment_timing_response.py +262 -0
  36. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/investment_timing_response_root.py +268 -0
  37. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/multi_day_benchmarks.py +472 -0
  38. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/order.py +805 -0
  39. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/order_fill_count_response.py +256 -0
  40. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/order_fill_count_response_root.py +268 -0
  41. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/order_info_response.py +262 -0
  42. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/order_info_response_root.py +268 -0
  43. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/orders_response.py +262 -0
  44. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/orders_response_root.py +268 -0
  45. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier.py +351 -0
  46. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier_data.py +268 -0
  47. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier_data_result.py +260 -0
  48. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier_metrics.py +300 -0
  49. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier_response.py +272 -0
  50. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/outlier_response_root.py +268 -0
  51. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/output_strategy_bin_data.py +316 -0
  52. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_fill.py +284 -0
  53. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_fill_response.py +262 -0
  54. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_fill_response_root.py +268 -0
  55. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_quote.py +268 -0
  56. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_quote_response.py +262 -0
  57. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_quote_response_root.py +268 -0
  58. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_trade.py +280 -0
  59. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_trade_response.py +262 -0
  60. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/price_time_trade_response_root.py +268 -0
  61. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/quote_inside_size.py +268 -0
  62. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/quote_inside_size_response.py +262 -0
  63. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/quote_inside_size_response_root.py +268 -0
  64. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/report_record.py +380 -0
  65. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/report_response.py +262 -0
  66. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/report_response_root.py +268 -0
  67. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/trade_analytic.py +268 -0
  68. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/trade_analytics_response.py +262 -0
  69. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/trade_analytics_response_root.py +268 -0
  70. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_analytic.py +268 -0
  71. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_analytics_response.py +262 -0
  72. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_analytics_response_root.py +268 -0
  73. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_price.py +268 -0
  74. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_price_bin.py +284 -0
  75. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_price_metrics.py +264 -0
  76. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_price_response.py +262 -0
  77. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_price_response_root.py +268 -0
  78. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_time.py +264 -0
  79. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_time_response.py +262 -0
  80. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_time_response_root.py +268 -0
  81. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_venue.py +272 -0
  82. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_venue_response.py +262 -0
  83. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/volume_venue_response_root.py +268 -0
  84. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/vwap.py +272 -0
  85. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/vwap_response.py +262 -0
  86. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/vwap_response_root.py +268 -0
  87. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/z_score.py +296 -0
  88. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/z_score_response.py +262 -0
  89. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model/z_score_response_root.py +268 -0
  90. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/model_utils.py +2062 -0
  91. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/models/__init__.py +81 -0
  92. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/BestExecutionAnalyticsforSmarterTradingBEAST/rest.py +347 -0
  93. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds/sdk/__init__.py +0 -0
  94. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.egg-info/PKG-INFO +415 -0
  95. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.egg-info/SOURCES.txt +99 -0
  96. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.egg-info/dependency_links.txt +1 -0
  97. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.egg-info/requires.txt +3 -0
  98. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.egg-info/top_level.txt +1 -0
  99. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/setup.cfg +7 -0
  100. fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST-0.1.0/setup.py +47 -0
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2019 FactSet Research Systems Inc
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,415 @@
1
+ Metadata-Version: 2.1
2
+ Name: fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
3
+ Version: 0.1.0
4
+ Summary: Best Execution Analytics for Smarter Trading (BEAST) client library for Python
5
+ Home-page: https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1
6
+ Author: FactSet Research Systems
7
+ License: Apache License, Version 2.0
8
+ Keywords: FactSet,API,SDK
9
+ Platform: UNKNOWN
10
+ Requires-Python: >=3.7
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+
14
+ [![FactSet](https://raw.githubusercontent.com/factset/enterprise-sdk/main/docs/images/factset-logo.svg)](https://www.factset.com)
15
+
16
+ # Best Execution Analytics for Smarter Trading (BEAST) client library for Python
17
+
18
+ [![API Version](https://img.shields.io/badge/api-v1.0.0-blue)](https://developer.factset.com/api-catalog/)
19
+ [![PyPi](https://img.shields.io/pypi/v/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST)](https://pypi.org/project/fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST/)
20
+ [![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0)
21
+
22
+ Enables clients to programmatically access the underlying data which powers the BEAST Liquidity Analytics (LA) and Transaction Cost Analysis (TCA) applications.
23
+
24
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
25
+
26
+ - API version: 1.0.0
27
+ - SDK version: 0.1.0
28
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
29
+
30
+ For more information, please visit [https://developer.factset.com/contact](https://developer.factset.com/contact)
31
+
32
+ ## Requirements
33
+
34
+ * Python >= 3.7
35
+
36
+ ## Installation
37
+
38
+ ### Poetry
39
+
40
+ ```shell
41
+ poetry add fds.sdk.utils fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST==0.1.0
42
+ ```
43
+
44
+ ### pip
45
+
46
+ ```shell
47
+ pip install fds.sdk.utils fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST==0.1.0
48
+ ```
49
+
50
+ ## Usage
51
+
52
+ 1. [Generate authentication credentials](../../../../README.md#authentication).
53
+ 2. Setup Python environment.
54
+ 1. Install and activate python 3.7+. If you're using [pyenv](https://github.com/pyenv/pyenv):
55
+
56
+ ```sh
57
+ pyenv install 3.9.7
58
+ pyenv shell 3.9.7
59
+ ```
60
+
61
+ 2. (optional) [Install poetry](https://python-poetry.org/docs/#installation).
62
+ 3. [Install dependencies](#installation).
63
+ 4. Run the following:
64
+
65
+ > [!IMPORTANT]
66
+ > The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.
67
+
68
+ ### Example Code
69
+
70
+ ```python
71
+ from fds.sdk.utils.authentication import ConfidentialClient
72
+
73
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
74
+ from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.api import market_impact_api
75
+ from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.models import *
76
+ from dateutil.parser import parse as dateutil_parser
77
+ from pprint import pprint
78
+
79
+ # See configuration.py for a list of all supported configuration parameters.
80
+
81
+ # Examples for each supported authentication method are below,
82
+ # choose one that satisfies your use case.
83
+
84
+ # (Preferred) OAuth 2.0: FactSetOAuth2
85
+ # See https://github.com/FactSet/enterprise-sdk#oauth-20
86
+ # for information on how to create the app-config.json file
87
+ #
88
+ # The confidential client instance should be reused in production environments.
89
+ # See https://github.com/FactSet/enterprise-sdk-utils-python#authentication
90
+ # for more information on using the ConfidentialClient class
91
+ configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(
92
+ fds_oauth_client=ConfidentialClient('/path/to/app-config.json')
93
+ )
94
+
95
+ # Basic authentication: FactSetApiKey
96
+ # See https://github.com/FactSet/enterprise-sdk#api-key
97
+ # for information how to create an API key
98
+ # configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(
99
+ # username='USERNAME-SERIAL',
100
+ # password='API-KEY'
101
+ # )
102
+
103
+ # Enter a context with an instance of the API client
104
+ with fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.ApiClient(configuration) as api_client:
105
+ # Create an instance of the API class
106
+ api_instance = market_impact_api.MarketImpactApi(api_client)
107
+ date = "2024-08-29" # str | Date in the format YYYY-MM-DD
108
+ start_time = "10:00:00" # str | Start Time in the format HH:MM:SS
109
+ end_time = "15:30:00" # str | End Time in the format HH:MM:SS
110
+ pause_start_time = "12:00:00" # str | Pause Start Time in the format HH:MM:SS
111
+ pause_end_time = "12:00:00" # str | Pause End Time in the format HH:MM:SS
112
+ security_id = "FDS" # str | ISIN for European securities, otherwise TICKER
113
+ region = "US" # str | The two character ISO country code of the trading region. EMEA is used for the European trading region
114
+ order_volume = 100000 # float | Order Volume
115
+ front_load_half_life = 5000 # float | Front Load Half Life
116
+ currency = "USD" # str | The ISO 4217 currency code (optional)
117
+ isin = "isin_example" # str | Isin code (optional)
118
+ spread_sensitivity = 0 # float | Spread Sensitivity (optional) if omitted the server will use the default value of 0
119
+ liquidity_sensitivity = 0 # float | Liquidity Sensitivity (optional) if omitted the server will use the default value of 0
120
+
121
+ try:
122
+ # Get Cost Impact
123
+ # example passing only required values which don't have defaults set
124
+ # and optional values
125
+ api_response = api_instance.get_cost_impact(date, start_time, end_time, pause_start_time, pause_end_time, security_id, region, order_volume, front_load_half_life, currency=currency, isin=isin, spread_sensitivity=spread_sensitivity, liquidity_sensitivity=liquidity_sensitivity)
126
+
127
+ pprint(api_response)
128
+ except fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.ApiException as e:
129
+ print("Exception when calling MarketImpactApi->get_cost_impact: %s\n" % e)
130
+
131
+ # # Get response, http status code and response headers
132
+ # try:
133
+ # # Get Cost Impact
134
+ # api_response, http_status_code, response_headers = api_instance.get_cost_impact_with_http_info(date, start_time, end_time, pause_start_time, pause_end_time, security_id, region, order_volume, front_load_half_life, currency=currency, isin=isin, spread_sensitivity=spread_sensitivity, liquidity_sensitivity=liquidity_sensitivity)
135
+
136
+
137
+ # pprint(api_response)
138
+ # pprint(http_status_code)
139
+ # pprint(response_headers)
140
+ # except fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.ApiException as e:
141
+ # print("Exception when calling MarketImpactApi->get_cost_impact: %s\n" % e)
142
+
143
+ # # Get response asynchronous
144
+ # try:
145
+ # # Get Cost Impact
146
+ # async_result = api_instance.get_cost_impact_async(date, start_time, end_time, pause_start_time, pause_end_time, security_id, region, order_volume, front_load_half_life, currency=currency, isin=isin, spread_sensitivity=spread_sensitivity, liquidity_sensitivity=liquidity_sensitivity)
147
+ # api_response = async_result.get()
148
+
149
+
150
+ # pprint(api_response)
151
+ # except fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.ApiException as e:
152
+ # print("Exception when calling MarketImpactApi->get_cost_impact: %s\n" % e)
153
+
154
+ # # Get response, http status code and response headers asynchronous
155
+ # try:
156
+ # # Get Cost Impact
157
+ # async_result = api_instance.get_cost_impact_with_http_info_async(date, start_time, end_time, pause_start_time, pause_end_time, security_id, region, order_volume, front_load_half_life, currency=currency, isin=isin, spread_sensitivity=spread_sensitivity, liquidity_sensitivity=liquidity_sensitivity)
158
+ # api_response, http_status_code, response_headers = async_result.get()
159
+
160
+
161
+ # pprint(api_response)
162
+ # pprint(http_status_code)
163
+ # pprint(response_headers)
164
+ # except fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.ApiException as e:
165
+ # print("Exception when calling MarketImpactApi->get_cost_impact: %s\n" % e)
166
+
167
+ ```
168
+
169
+ ### Using Pandas
170
+
171
+ To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.
172
+ ```python
173
+ import pandas as pd
174
+
175
+ response_dict = api_response.to_dict()['data']
176
+
177
+ simple_json_response = pd.DataFrame(response_dict)
178
+ nested_json_response = pd.json_normalize(response_dict)
179
+ ```
180
+
181
+ ### Debugging
182
+
183
+ The SDK uses the standard library [`logging`](https://docs.python.org/3/library/logging.html#module-logging) module.
184
+
185
+ Setting `debug` to `True` on an instance of the `Configuration` class sets the log-level of related packages to `DEBUG`
186
+ and enables additional logging in Pythons [HTTP Client](https://docs.python.org/3/library/http.client.html).
187
+
188
+ **Note**: This prints out sensitive information (e.g. the full request and response). Use with care.
189
+
190
+ ```python
191
+ import logging
192
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
193
+
194
+ logging.basicConfig(level=logging.DEBUG)
195
+
196
+ configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(...)
197
+ configuration.debug = True
198
+ ```
199
+
200
+ ### Configure a Proxy
201
+
202
+ You can pass proxy settings to the Configuration class:
203
+
204
+ * `proxy`: The URL of the proxy to use.
205
+ * `proxy_headers`: a dictionary to pass additional headers to the proxy (e.g. `Proxy-Authorization`).
206
+
207
+ ```python
208
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
209
+
210
+ configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(
211
+ # ...
212
+ proxy="http://secret:password@localhost:5050",
213
+ proxy_headers={
214
+ "Custom-Proxy-Header": "Custom-Proxy-Header-Value"
215
+ }
216
+ )
217
+ ```
218
+
219
+ ### Custom SSL Certificate
220
+
221
+ TLS/SSL certificate verification can be configured with the following Configuration parameters:
222
+
223
+ * `ssl_ca_cert`: a path to the certificate to use for verification in `PEM` format.
224
+ * `verify_ssl`: setting this to `False` disables the verification of certificates.
225
+ Disabling the verification is not recommended, but it might be useful during
226
+ local development or testing.
227
+
228
+ ```python
229
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
230
+
231
+ configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(
232
+ # ...
233
+ ssl_ca_cert='/path/to/ca.pem'
234
+ )
235
+ ```
236
+
237
+ ### Request Retries
238
+
239
+ In case the request retry behaviour should be customized, it is possible to pass a `urllib3.Retry` object to the `retry` property of the Configuration.
240
+
241
+ ```python
242
+ from urllib3 import Retry
243
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
244
+
245
+ configuration = fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.Configuration(
246
+ # ...
247
+ )
248
+
249
+ configuration.retries = Retry(total=3, status_forcelist=[500, 502, 503, 504])
250
+ ```
251
+
252
+
253
+ ## Documentation for API Endpoints
254
+
255
+ All URIs are relative to *https://api.factset.com/analytics/beast/v1*
256
+
257
+ Class | Method | HTTP request | Description
258
+ ------------ | ------------- | ------------- | -------------
259
+ *MarketImpactApi* | [**get_cost_impact**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/MarketImpactApi.md#get_cost_impact) | **GET** /tca/market-impact/cost-impact | Get Cost Impact
260
+ *MarketImpactApi* | [**get_cost_impact_standard**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/MarketImpactApi.md#get_cost_impact_standard) | **GET** /tca/market-impact/cost-impact-standard | Get Standard Cost Impact
261
+ *MarketImpactApi* | [**get_previous_vwaps**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/MarketImpactApi.md#get_previous_vwaps) | **GET** /tca/market-impact/previous-vwaps | Get Previous Volume Weighted Average Prices
262
+ *OrderDetailsApi* | [**get_order_fill_count**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_fill_count) | **GET** /tca/order/fill-count | Get Order Fill Count
263
+ *OrderDetailsApi* | [**get_order_index_etf**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_index_etf) | **GET** /tca/order/index-etf | Get Index ETF data
264
+ *OrderDetailsApi* | [**get_order_info**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_info) | **GET** /tca/order/order-info | Get Order Information
265
+ *OrderDetailsApi* | [**get_order_intra_stats**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_intra_stats) | **GET** /tca/order/intra-order-stats | Get Intra Order Stats
266
+ *OrderDetailsApi* | [**get_order_investment_timing**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_investment_timing) | **GET** /tca/order/investment-timing | Get Order Investment Timings
267
+ *OrderDetailsApi* | [**get_order_price_time_fills**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_price_time_fills) | **GET** /tca/order/price-time-fills | Get Price Time Fills
268
+ *OrderDetailsApi* | [**get_order_price_time_quotes**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_price_time_quotes) | **GET** /tca/order/price-time-quotes | Get Price Time Quotes
269
+ *OrderDetailsApi* | [**get_order_price_time_trades**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_price_time_trades) | **GET** /tca/order/price-time-trades | Get Price Time Trades
270
+ *OrderDetailsApi* | [**get_order_volume_price**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_volume_price) | **GET** /tca/order/volume-price | Get Order Volume Prices
271
+ *OrderDetailsApi* | [**get_order_volume_time**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_volume_time) | **GET** /tca/order/volume-time | Get Order Volume Times
272
+ *OrderDetailsApi* | [**get_order_volume_venue**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderDetailsApi.md#get_order_volume_venue) | **GET** /tca/order/volume-venue | Get Order Volume Venues
273
+ *OrderSearchApi* | [**get_field_values**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderSearchApi.md#get_field_values) | **GET** /tca/search/field-values | Get Order field values
274
+ *OrderSearchApi* | [**get_orders**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderSearchApi.md#get_orders) | **GET** /tca/search/orders | Find Orders by field values
275
+ *OutliersApi* | [**get_outlier_metrics**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutliersApi.md#get_outlier_metrics) | **GET** /tca/outlier/metrics | Get Outlier metrics
276
+ *OutliersApi* | [**get_outlier_metrics_by_percent**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutliersApi.md#get_outlier_metrics_by_percent) | **GET** /tca/outlier/metrics-by-percent | Get Outlier metrics by percent
277
+ *QuoteAnalyticsApi* | [**get_quote_inside_size**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/QuoteAnalyticsApi.md#get_quote_inside_size) | **GET** /la/quote/inside-size | Get Quote Analytics
278
+ *ReportsApi* | [**get_parent_aggregate_analysis**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ReportsApi.md#get_parent_aggregate_analysis) | **GET** /tca/report/parent-aggregate-analysis | Get Parent Aggregate Analysis
279
+ *TradeAnalyticsApi* | [**get_trade_analytics**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/TradeAnalyticsApi.md#get_trade_analytics) | **GET** /la/trade/trade-analytics | Get Trade Analytics
280
+ *TradeAnalyticsApi* | [**get_volume_analytics**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/TradeAnalyticsApi.md#get_volume_analytics) | **GET** /la/trade/volume-analytics | Get Volume Analytics
281
+ *ZScoreApi* | [**get_z_score_quotes**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ZScoreApi.md#get_z_score_quotes) | **GET** /la/zscore/quotes | Get Quote Z-Scores
282
+ *ZScoreApi* | [**get_z_score_trades**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ZScoreApi.md#get_z_score_trades) | **GET** /la/zscore/trades | Get Trade Z-Scores
283
+
284
+
285
+ ## Documentation For Models
286
+
287
+ - [CostImpact](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/CostImpact.md)
288
+ - [CostImpactResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/CostImpactResponseRoot.md)
289
+ - [CostImpactStandard](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/CostImpactStandard.md)
290
+ - [CostImpactStandardResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/CostImpactStandardResponseRoot.md)
291
+ - [Error](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/Error.md)
292
+ - [ErrorResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ErrorResponse.md)
293
+ - [FieldValuesResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/FieldValuesResponse.md)
294
+ - [FieldValuesResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/FieldValuesResponseRoot.md)
295
+ - [IndexETF](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IndexETF.md)
296
+ - [IndexETFResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IndexETFResponse.md)
297
+ - [IndexETFResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IndexETFResponseRoot.md)
298
+ - [IntraOrderStat](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IntraOrderStat.md)
299
+ - [IntraOrderStatResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IntraOrderStatResponse.md)
300
+ - [IntraOrderStatResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/IntraOrderStatResponseRoot.md)
301
+ - [InvestmentTiming](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/InvestmentTiming.md)
302
+ - [InvestmentTimingResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/InvestmentTimingResponse.md)
303
+ - [InvestmentTimingResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/InvestmentTimingResponseRoot.md)
304
+ - [MultiDayBenchmarks](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/MultiDayBenchmarks.md)
305
+ - [Order](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/Order.md)
306
+ - [OrderFillCountResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderFillCountResponse.md)
307
+ - [OrderFillCountResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderFillCountResponseRoot.md)
308
+ - [OrderInfoResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderInfoResponse.md)
309
+ - [OrderInfoResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrderInfoResponseRoot.md)
310
+ - [OrdersResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrdersResponse.md)
311
+ - [OrdersResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OrdersResponseRoot.md)
312
+ - [Outlier](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/Outlier.md)
313
+ - [OutlierData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutlierData.md)
314
+ - [OutlierDataResult](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutlierDataResult.md)
315
+ - [OutlierMetrics](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutlierMetrics.md)
316
+ - [OutlierResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutlierResponse.md)
317
+ - [OutlierResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutlierResponseRoot.md)
318
+ - [OutputStrategyBinData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/OutputStrategyBinData.md)
319
+ - [PriceTimeFill](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeFill.md)
320
+ - [PriceTimeFillResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeFillResponse.md)
321
+ - [PriceTimeFillResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeFillResponseRoot.md)
322
+ - [PriceTimeQuote](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeQuote.md)
323
+ - [PriceTimeQuoteResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeQuoteResponse.md)
324
+ - [PriceTimeQuoteResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeQuoteResponseRoot.md)
325
+ - [PriceTimeTrade](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeTrade.md)
326
+ - [PriceTimeTradeResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeTradeResponse.md)
327
+ - [PriceTimeTradeResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/PriceTimeTradeResponseRoot.md)
328
+ - [QuoteInsideSize](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/QuoteInsideSize.md)
329
+ - [QuoteInsideSizeResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/QuoteInsideSizeResponse.md)
330
+ - [QuoteInsideSizeResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/QuoteInsideSizeResponseRoot.md)
331
+ - [ReportRecord](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ReportRecord.md)
332
+ - [ReportResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ReportResponse.md)
333
+ - [ReportResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ReportResponseRoot.md)
334
+ - [TradeAnalytic](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/TradeAnalytic.md)
335
+ - [TradeAnalyticsResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/TradeAnalyticsResponse.md)
336
+ - [TradeAnalyticsResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/TradeAnalyticsResponseRoot.md)
337
+ - [VolumeAnalytic](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeAnalytic.md)
338
+ - [VolumeAnalyticsResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeAnalyticsResponse.md)
339
+ - [VolumeAnalyticsResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeAnalyticsResponseRoot.md)
340
+ - [VolumePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumePrice.md)
341
+ - [VolumePriceBin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumePriceBin.md)
342
+ - [VolumePriceMetrics](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumePriceMetrics.md)
343
+ - [VolumePriceResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumePriceResponse.md)
344
+ - [VolumePriceResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumePriceResponseRoot.md)
345
+ - [VolumeTime](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeTime.md)
346
+ - [VolumeTimeResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeTimeResponse.md)
347
+ - [VolumeTimeResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeTimeResponseRoot.md)
348
+ - [VolumeVenue](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeVenue.md)
349
+ - [VolumeVenueResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeVenueResponse.md)
350
+ - [VolumeVenueResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VolumeVenueResponseRoot.md)
351
+ - [Vwap](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/Vwap.md)
352
+ - [VwapResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VwapResponse.md)
353
+ - [VwapResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/VwapResponseRoot.md)
354
+ - [ZScore](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ZScore.md)
355
+ - [ZScoreResponse](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ZScoreResponse.md)
356
+ - [ZScoreResponseRoot](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/BestExecutionAnalyticsforSmarterTradingBEAST/v1/docs/ZScoreResponseRoot.md)
357
+
358
+
359
+ ## Documentation For Authorization
360
+
361
+
362
+ ## FactSetApiKey
363
+
364
+ - **Type**: HTTP basic authentication
365
+
366
+
367
+ ## FactSetOAuth2
368
+
369
+ - **Type**: OAuth
370
+ - **Flow**: application
371
+ - **Authorization URL**:
372
+ - **Scopes**: N/A
373
+
374
+
375
+ ## Notes for Large OpenAPI documents
376
+ If the OpenAPI document is large, imports in fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.apis and fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.models may fail with a
377
+ RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
378
+
379
+ Solution 1:
380
+ Use specific imports for apis and models like:
381
+ - `from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.api.default_api import DefaultApi`
382
+ - `from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.model.pet import Pet`
383
+
384
+ Solution 2:
385
+ Before importing the package, adjust the maximum recursion limit as shown below:
386
+ ```
387
+ import sys
388
+ sys.setrecursionlimit(1500)
389
+ import fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST
390
+ from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.apis import *
391
+ from fds.sdk.BestExecutionAnalyticsforSmarterTradingBEAST.models import *
392
+ ```
393
+
394
+ ## Contributing
395
+
396
+ Please refer to the [contributing guide](../../../../CONTRIBUTING.md).
397
+
398
+ ## Copyright
399
+
400
+ Copyright 2022 FactSet Research Systems Inc
401
+
402
+ Licensed under the Apache License, Version 2.0 (the "License");
403
+ you may not use this file except in compliance with the License.
404
+ You may obtain a copy of the License at
405
+
406
+ http://www.apache.org/licenses/LICENSE-2.0
407
+
408
+ Unless required by applicable law or agreed to in writing, software
409
+ distributed under the License is distributed on an "AS IS" BASIS,
410
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
411
+ See the License for the specific language governing permissions and
412
+ limitations under the License.
413
+
414
+
415
+