You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Get a detailed list of exchanges provided by the system.
243
+
--
244
+
-- :::info
245
+
-- Properties of the output are providing aggregated information from across all symbols related to the specific exchange. If you need to calculate your aggregation (e.g., limiting only the particular type of symbols), you should use /v1/symbols endpoint as a data source.
246
+
-- :::
247
+
procedureApi_Metadata_Exchanges_Get
248
+
(Client : inout Client_Type;
249
+
Filter_Exchange_Id : in Swagger.Nullable_UString;
250
+
Result : out .Models.MetadataExchange_Type_Vectors.Vector) is
Result : out .Models.IndexesIndexDefinitionSnapshotEntry_Type_Vectors.Vector);
63
+
64
+
-- Current Index Value
65
+
procedureV_1Indexes_Index_Id_Current_Get
66
+
(Client : inout Client_Type;
67
+
Index_Id : in Swagger.UString;
68
+
Result : out .Models.IndexesIndexValue_Type);
69
+
70
+
-- Historical Index Value w/Composition
71
+
procedureV_1Indexes_Index_Id_History_Get
72
+
(Client : inout Client_Type;
73
+
Index_Id : in Swagger.UString;
74
+
Time_Start : in Swagger.Nullable_Date;
75
+
Time_End : in Swagger.Nullable_Date;
76
+
Limit : in Swagger.Nullable_Integer;
77
+
Result : out .Models.IndexesIndexValue_Type_Vectors.Vector);
78
+
79
+
-- Timeseries Index Value
80
+
procedureV_1Indexes_Index_Id_Timeseries_Get
81
+
(Client : inout Client_Type;
82
+
Index_Id : in Swagger.UString;
83
+
Period_Id : in Swagger.UString;
84
+
Time_Start : in Swagger.UString;
85
+
Time_End : in Swagger.UString;
86
+
Limit : in Swagger.Nullable_Integer;
87
+
Result : out .Models.IndexesIndexTimeseriesItem_Type_Vectors.Vector);
88
+
89
+
-- List all exchanges by exchange_id
90
+
procedureApi_Metadata_Exchanges_Exchange_Id_Get
91
+
(Client : inout Client_Type;
92
+
Exchange_Id : in Swagger.UString;
93
+
Result : out .Models.MetadataExchange_Type_Vectors.Vector);
94
+
95
+
-- List all exchanges
96
+
-- Get a detailed list of exchanges provided by the system.
97
+
--
98
+
-- :::info
99
+
-- Properties of the output are providing aggregated information from across all symbols related to the specific exchange. If you need to calculate your aggregation (e.g., limiting only the particular type of symbols), you should use /v1/symbols endpoint as a data source.
100
+
-- :::
101
+
procedureApi_Metadata_Exchanges_Get
102
+
(Client : inout Client_Type;
103
+
Filter_Exchange_Id : in Swagger.Nullable_UString;
104
+
Result : out .Models.MetadataExchange_Type_Vectors.Vector);
0 commit comments