@marleena/trb-proto 1.0.28 → 1.0.30
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/README.md +15 -3
- package/gen/js-ts/{tinvest → api/tinvest}/InstrumentsServiceClientPb.ts +432 -432
- package/gen/js-ts/{tinvest → api/tinvest}/MarketdataServiceClientPb.ts +98 -98
- package/gen/js-ts/{tinvest → api/tinvest}/OperationsServiceClientPb.ts +90 -90
- package/gen/js-ts/{tinvest → api/tinvest}/OrdersServiceClientPb.ts +94 -94
- package/gen/js-ts/{tinvest → api/tinvest}/SandboxServiceClientPb.ts +206 -206
- package/gen/js-ts/{tinvest → api/tinvest}/SignalsServiceClientPb.ts +22 -22
- package/gen/js-ts/{tinvest → api/tinvest}/StopordersServiceClientPb.ts +32 -32
- package/gen/js-ts/{tinvest → api/tinvest}/UsersServiceClientPb.ts +82 -82
- package/gen/js-ts/{tinvest → api/tinvest}/common_pb.js +1 -1
- package/gen/js-ts/{tinvest → api/tinvest}/instruments_pb.d.ts +560 -560
- package/gen/js-ts/{tinvest → api/tinvest}/instruments_pb.js +804 -804
- package/gen/js-ts/{tinvest → api/tinvest}/marketdata_pb.d.ts +104 -104
- package/gen/js-ts/{tinvest → api/tinvest}/marketdata_pb.js +154 -154
- package/gen/js-ts/{tinvest → api/tinvest}/operations_pb.d.ts +229 -229
- package/gen/js-ts/{tinvest → api/tinvest}/operations_pb.js +364 -364
- package/gen/js-ts/{tinvest → api/tinvest}/orders_pb.d.ts +153 -153
- package/gen/js-ts/{tinvest → api/tinvest}/orders_pb.js +226 -226
- package/gen/js-ts/{tinvest → api/tinvest}/sandbox_pb.d.ts +12 -12
- package/gen/js-ts/{tinvest → api/tinvest}/sandbox_pb.js +22 -22
- package/gen/js-ts/{tinvest → api/tinvest}/signals_pb.d.ts +32 -32
- package/gen/js-ts/{tinvest → api/tinvest}/signals_pb.js +54 -54
- package/gen/js-ts/{tinvest → api/tinvest}/stoporders_pb.d.ts +38 -38
- package/gen/js-ts/{tinvest → api/tinvest}/stoporders_pb.js +59 -59
- package/gen/js-ts/{tinvest → api/tinvest}/users_pb.d.ts +36 -36
- package/gen/js-ts/{tinvest → api/tinvest}/users_pb.js +59 -59
- package/gen/js-ts/clickhouse/AdminServiceClientPb.ts +1161 -0
- package/gen/js-ts/clickhouse/ClickhouseServiceClientPb.ts +216 -0
- package/gen/js-ts/{api/clickhouse/manager_pb.d.ts → clickhouse/admin_pb.d.ts} +2 -2
- package/gen/js-ts/{api/clickhouse/manager_pb.js → clickhouse/admin_pb.js} +1551 -1551
- package/gen/js-ts/{api/db_api/db_api_pb.d.ts → clickhouse/clickhouse_pb.d.ts} +8 -158
- package/gen/js-ts/clickhouse/clickhouse_pb.js +2440 -0
- package/gen/js-ts/nats/NatsServiceClientPb.ts +1032 -0
- package/gen/js-ts/{api/nats/manager_pb.d.ts → nats/nats_pb.d.ts} +1 -1
- package/gen/js-ts/{api/nats/manager_pb.js → nats/nats_pb.js} +1784 -1784
- package/gen/js-ts/postgresql/AdminServiceClientPb.ts +1591 -0
- package/gen/js-ts/postgresql/PostgresqlServiceClientPb.ts +129 -0
- package/gen/js-ts/postgresql/admin_pb.d.ts +1895 -0
- package/gen/js-ts/postgresql/admin_pb.js +15465 -0
- package/gen/js-ts/postgresql/postgresql_pb.d.ts +156 -0
- package/gen/js-ts/postgresql/postgresql_pb.js +1311 -0
- package/gen/js-ts/{api/test → test}/TestServiceClientPb.ts +16 -16
- package/gen/js-ts/{api/test → test}/test_pb.d.ts +5 -5
- package/gen/js-ts/{api/test → test}/test_pb.js +58 -58
- package/package.json +1 -1
- package/gen/js-ts/api/clickhouse/ManagerServiceClientPb.ts +0 -1161
- package/gen/js-ts/api/db_api/Db_apiServiceClientPb.ts +0 -302
- package/gen/js-ts/api/db_api/db_api_pb.js +0 -3723
- package/gen/js-ts/api/nats/ManagerServiceClientPb.ts +0 -1032
- /package/gen/js-ts/{tinvest → api/tinvest}/common_pb.d.ts +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
3
|
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
|
|
4
|
-
import * as
|
|
5
|
-
import * as google_api_field_behavior_pb from '
|
|
4
|
+
import * as api_tinvest_common_pb from '../../api/tinvest/common_pb'; // proto import: "api/tinvest/common.proto"
|
|
5
|
+
import * as google_api_field_behavior_pb from '../../google/api/field_behavior_pb'; // proto import: "google/api/field_behavior.proto"
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
export class MarketDataRequest extends jspb.Message {
|
|
@@ -36,13 +36,13 @@ export class MarketDataRequest extends jspb.Message {
|
|
|
36
36
|
hasGetMySubscriptions(): boolean;
|
|
37
37
|
clearGetMySubscriptions(): MarketDataRequest;
|
|
38
38
|
|
|
39
|
-
getPing():
|
|
40
|
-
setPing(value?:
|
|
39
|
+
getPing(): api_tinvest_common_pb.PingRequest | undefined;
|
|
40
|
+
setPing(value?: api_tinvest_common_pb.PingRequest): MarketDataRequest;
|
|
41
41
|
hasPing(): boolean;
|
|
42
42
|
clearPing(): MarketDataRequest;
|
|
43
43
|
|
|
44
|
-
getPingSettings():
|
|
45
|
-
setPingSettings(value?:
|
|
44
|
+
getPingSettings(): api_tinvest_common_pb.PingDelaySettings | undefined;
|
|
45
|
+
setPingSettings(value?: api_tinvest_common_pb.PingDelaySettings): MarketDataRequest;
|
|
46
46
|
hasPingSettings(): boolean;
|
|
47
47
|
clearPingSettings(): MarketDataRequest;
|
|
48
48
|
|
|
@@ -64,8 +64,8 @@ export namespace MarketDataRequest {
|
|
|
64
64
|
subscribeInfoRequest?: SubscribeInfoRequest.AsObject,
|
|
65
65
|
subscribeLastPriceRequest?: SubscribeLastPriceRequest.AsObject,
|
|
66
66
|
getMySubscriptions?: GetMySubscriptions.AsObject,
|
|
67
|
-
ping?:
|
|
68
|
-
pingSettings?:
|
|
67
|
+
ping?: api_tinvest_common_pb.PingRequest.AsObject,
|
|
68
|
+
pingSettings?: api_tinvest_common_pb.PingDelaySettings.AsObject,
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
export enum PayloadCase {
|
|
@@ -107,8 +107,8 @@ export class MarketDataServerSideStreamRequest extends jspb.Message {
|
|
|
107
107
|
hasSubscribeLastPriceRequest(): boolean;
|
|
108
108
|
clearSubscribeLastPriceRequest(): MarketDataServerSideStreamRequest;
|
|
109
109
|
|
|
110
|
-
getPingSettings():
|
|
111
|
-
setPingSettings(value?:
|
|
110
|
+
getPingSettings(): api_tinvest_common_pb.PingDelaySettings | undefined;
|
|
111
|
+
setPingSettings(value?: api_tinvest_common_pb.PingDelaySettings): MarketDataServerSideStreamRequest;
|
|
112
112
|
hasPingSettings(): boolean;
|
|
113
113
|
clearPingSettings(): MarketDataServerSideStreamRequest;
|
|
114
114
|
|
|
@@ -127,7 +127,7 @@ export namespace MarketDataServerSideStreamRequest {
|
|
|
127
127
|
subscribeTradesRequest?: SubscribeTradesRequest.AsObject,
|
|
128
128
|
subscribeInfoRequest?: SubscribeInfoRequest.AsObject,
|
|
129
129
|
subscribeLastPriceRequest?: SubscribeLastPriceRequest.AsObject,
|
|
130
|
-
pingSettings?:
|
|
130
|
+
pingSettings?: api_tinvest_common_pb.PingDelaySettings.AsObject,
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
|
|
@@ -172,8 +172,8 @@ export class MarketDataResponse extends jspb.Message {
|
|
|
172
172
|
hasTradingStatus(): boolean;
|
|
173
173
|
clearTradingStatus(): MarketDataResponse;
|
|
174
174
|
|
|
175
|
-
getPing():
|
|
176
|
-
setPing(value?:
|
|
175
|
+
getPing(): api_tinvest_common_pb.Ping | undefined;
|
|
176
|
+
setPing(value?: api_tinvest_common_pb.Ping): MarketDataResponse;
|
|
177
177
|
hasPing(): boolean;
|
|
178
178
|
clearPing(): MarketDataResponse;
|
|
179
179
|
|
|
@@ -212,7 +212,7 @@ export namespace MarketDataResponse {
|
|
|
212
212
|
trade?: Trade.AsObject,
|
|
213
213
|
orderbook?: OrderBook.AsObject,
|
|
214
214
|
tradingStatus?: TradingStatus.AsObject,
|
|
215
|
-
ping?:
|
|
215
|
+
ping?: api_tinvest_common_pb.Ping.AsObject,
|
|
216
216
|
subscribeLastPriceResponse?: SubscribeLastPriceResponse.AsObject,
|
|
217
217
|
lastPrice?: LastPrice.AsObject,
|
|
218
218
|
openInterest?: OpenInterest.AsObject,
|
|
@@ -892,23 +892,23 @@ export class Candle extends jspb.Message {
|
|
|
892
892
|
getInterval(): SubscriptionInterval;
|
|
893
893
|
setInterval(value: SubscriptionInterval): Candle;
|
|
894
894
|
|
|
895
|
-
getOpen():
|
|
896
|
-
setOpen(value?:
|
|
895
|
+
getOpen(): api_tinvest_common_pb.Quotation | undefined;
|
|
896
|
+
setOpen(value?: api_tinvest_common_pb.Quotation): Candle;
|
|
897
897
|
hasOpen(): boolean;
|
|
898
898
|
clearOpen(): Candle;
|
|
899
899
|
|
|
900
|
-
getHigh():
|
|
901
|
-
setHigh(value?:
|
|
900
|
+
getHigh(): api_tinvest_common_pb.Quotation | undefined;
|
|
901
|
+
setHigh(value?: api_tinvest_common_pb.Quotation): Candle;
|
|
902
902
|
hasHigh(): boolean;
|
|
903
903
|
clearHigh(): Candle;
|
|
904
904
|
|
|
905
|
-
getLow():
|
|
906
|
-
setLow(value?:
|
|
905
|
+
getLow(): api_tinvest_common_pb.Quotation | undefined;
|
|
906
|
+
setLow(value?: api_tinvest_common_pb.Quotation): Candle;
|
|
907
907
|
hasLow(): boolean;
|
|
908
908
|
clearLow(): Candle;
|
|
909
909
|
|
|
910
|
-
getClose():
|
|
911
|
-
setClose(value?:
|
|
910
|
+
getClose(): api_tinvest_common_pb.Quotation | undefined;
|
|
911
|
+
setClose(value?: api_tinvest_common_pb.Quotation): Candle;
|
|
912
912
|
hasClose(): boolean;
|
|
913
913
|
clearClose(): Candle;
|
|
914
914
|
|
|
@@ -955,10 +955,10 @@ export namespace Candle {
|
|
|
955
955
|
export type AsObject = {
|
|
956
956
|
figi: string,
|
|
957
957
|
interval: SubscriptionInterval,
|
|
958
|
-
open?:
|
|
959
|
-
high?:
|
|
960
|
-
low?:
|
|
961
|
-
close?:
|
|
958
|
+
open?: api_tinvest_common_pb.Quotation.AsObject,
|
|
959
|
+
high?: api_tinvest_common_pb.Quotation.AsObject,
|
|
960
|
+
low?: api_tinvest_common_pb.Quotation.AsObject,
|
|
961
|
+
close?: api_tinvest_common_pb.Quotation.AsObject,
|
|
962
962
|
volume: number,
|
|
963
963
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
964
964
|
lastTradeTs?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
@@ -996,13 +996,13 @@ export class OrderBook extends jspb.Message {
|
|
|
996
996
|
hasTime(): boolean;
|
|
997
997
|
clearTime(): OrderBook;
|
|
998
998
|
|
|
999
|
-
getLimitUp():
|
|
1000
|
-
setLimitUp(value?:
|
|
999
|
+
getLimitUp(): api_tinvest_common_pb.Quotation | undefined;
|
|
1000
|
+
setLimitUp(value?: api_tinvest_common_pb.Quotation): OrderBook;
|
|
1001
1001
|
hasLimitUp(): boolean;
|
|
1002
1002
|
clearLimitUp(): OrderBook;
|
|
1003
1003
|
|
|
1004
|
-
getLimitDown():
|
|
1005
|
-
setLimitDown(value?:
|
|
1004
|
+
getLimitDown(): api_tinvest_common_pb.Quotation | undefined;
|
|
1005
|
+
setLimitDown(value?: api_tinvest_common_pb.Quotation): OrderBook;
|
|
1006
1006
|
hasLimitDown(): boolean;
|
|
1007
1007
|
clearLimitDown(): OrderBook;
|
|
1008
1008
|
|
|
@@ -1034,8 +1034,8 @@ export namespace OrderBook {
|
|
|
1034
1034
|
bidsList: Array<Order.AsObject>,
|
|
1035
1035
|
asksList: Array<Order.AsObject>,
|
|
1036
1036
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1037
|
-
limitUp?:
|
|
1038
|
-
limitDown?:
|
|
1037
|
+
limitUp?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1038
|
+
limitDown?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1039
1039
|
instrumentUid: string,
|
|
1040
1040
|
orderBookType: OrderBookType,
|
|
1041
1041
|
ticker: string,
|
|
@@ -1044,8 +1044,8 @@ export namespace OrderBook {
|
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
1046
|
export class Order extends jspb.Message {
|
|
1047
|
-
getPrice():
|
|
1048
|
-
setPrice(value?:
|
|
1047
|
+
getPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1048
|
+
setPrice(value?: api_tinvest_common_pb.Quotation): Order;
|
|
1049
1049
|
hasPrice(): boolean;
|
|
1050
1050
|
clearPrice(): Order;
|
|
1051
1051
|
|
|
@@ -1062,7 +1062,7 @@ export class Order extends jspb.Message {
|
|
|
1062
1062
|
|
|
1063
1063
|
export namespace Order {
|
|
1064
1064
|
export type AsObject = {
|
|
1065
|
-
price?:
|
|
1065
|
+
price?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1066
1066
|
quantity: number,
|
|
1067
1067
|
}
|
|
1068
1068
|
}
|
|
@@ -1074,8 +1074,8 @@ export class Trade extends jspb.Message {
|
|
|
1074
1074
|
getDirection(): TradeDirection;
|
|
1075
1075
|
setDirection(value: TradeDirection): Trade;
|
|
1076
1076
|
|
|
1077
|
-
getPrice():
|
|
1078
|
-
setPrice(value?:
|
|
1077
|
+
getPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1078
|
+
setPrice(value?: api_tinvest_common_pb.Quotation): Trade;
|
|
1079
1079
|
hasPrice(): boolean;
|
|
1080
1080
|
clearPrice(): Trade;
|
|
1081
1081
|
|
|
@@ -1111,7 +1111,7 @@ export namespace Trade {
|
|
|
1111
1111
|
export type AsObject = {
|
|
1112
1112
|
figi: string,
|
|
1113
1113
|
direction: TradeDirection,
|
|
1114
|
-
price?:
|
|
1114
|
+
price?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1115
1115
|
quantity: number,
|
|
1116
1116
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1117
1117
|
instrumentUid: string,
|
|
@@ -1125,8 +1125,8 @@ export class TradingStatus extends jspb.Message {
|
|
|
1125
1125
|
getFigi(): string;
|
|
1126
1126
|
setFigi(value: string): TradingStatus;
|
|
1127
1127
|
|
|
1128
|
-
getTradingStatus():
|
|
1129
|
-
setTradingStatus(value:
|
|
1128
|
+
getTradingStatus(): api_tinvest_common_pb.SecurityTradingStatus;
|
|
1129
|
+
setTradingStatus(value: api_tinvest_common_pb.SecurityTradingStatus): TradingStatus;
|
|
1130
1130
|
|
|
1131
1131
|
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1132
1132
|
setTime(value?: google_protobuf_timestamp_pb.Timestamp): TradingStatus;
|
|
@@ -1159,7 +1159,7 @@ export class TradingStatus extends jspb.Message {
|
|
|
1159
1159
|
export namespace TradingStatus {
|
|
1160
1160
|
export type AsObject = {
|
|
1161
1161
|
figi: string,
|
|
1162
|
-
tradingStatus:
|
|
1162
|
+
tradingStatus: api_tinvest_common_pb.SecurityTradingStatus,
|
|
1163
1163
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1164
1164
|
limitOrderAvailableFlag: boolean,
|
|
1165
1165
|
marketOrderAvailableFlag: boolean,
|
|
@@ -1270,23 +1270,23 @@ export namespace GetCandlesResponse {
|
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
1272
1272
|
export class HistoricCandle extends jspb.Message {
|
|
1273
|
-
getOpen():
|
|
1274
|
-
setOpen(value?:
|
|
1273
|
+
getOpen(): api_tinvest_common_pb.Quotation | undefined;
|
|
1274
|
+
setOpen(value?: api_tinvest_common_pb.Quotation): HistoricCandle;
|
|
1275
1275
|
hasOpen(): boolean;
|
|
1276
1276
|
clearOpen(): HistoricCandle;
|
|
1277
1277
|
|
|
1278
|
-
getHigh():
|
|
1279
|
-
setHigh(value?:
|
|
1278
|
+
getHigh(): api_tinvest_common_pb.Quotation | undefined;
|
|
1279
|
+
setHigh(value?: api_tinvest_common_pb.Quotation): HistoricCandle;
|
|
1280
1280
|
hasHigh(): boolean;
|
|
1281
1281
|
clearHigh(): HistoricCandle;
|
|
1282
1282
|
|
|
1283
|
-
getLow():
|
|
1284
|
-
setLow(value?:
|
|
1283
|
+
getLow(): api_tinvest_common_pb.Quotation | undefined;
|
|
1284
|
+
setLow(value?: api_tinvest_common_pb.Quotation): HistoricCandle;
|
|
1285
1285
|
hasLow(): boolean;
|
|
1286
1286
|
clearLow(): HistoricCandle;
|
|
1287
1287
|
|
|
1288
|
-
getClose():
|
|
1289
|
-
setClose(value?:
|
|
1288
|
+
getClose(): api_tinvest_common_pb.Quotation | undefined;
|
|
1289
|
+
setClose(value?: api_tinvest_common_pb.Quotation): HistoricCandle;
|
|
1290
1290
|
hasClose(): boolean;
|
|
1291
1291
|
clearClose(): HistoricCandle;
|
|
1292
1292
|
|
|
@@ -1320,10 +1320,10 @@ export class HistoricCandle extends jspb.Message {
|
|
|
1320
1320
|
|
|
1321
1321
|
export namespace HistoricCandle {
|
|
1322
1322
|
export type AsObject = {
|
|
1323
|
-
open?:
|
|
1324
|
-
high?:
|
|
1325
|
-
low?:
|
|
1326
|
-
close?:
|
|
1323
|
+
open?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1324
|
+
high?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1325
|
+
low?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1326
|
+
close?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1327
1327
|
volume: number,
|
|
1328
1328
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1329
1329
|
isComplete: boolean,
|
|
@@ -1347,8 +1347,8 @@ export class GetLastPricesRequest extends jspb.Message {
|
|
|
1347
1347
|
getLastPriceType(): LastPriceType;
|
|
1348
1348
|
setLastPriceType(value: LastPriceType): GetLastPricesRequest;
|
|
1349
1349
|
|
|
1350
|
-
getInstrumentStatus():
|
|
1351
|
-
setInstrumentStatus(value:
|
|
1350
|
+
getInstrumentStatus(): api_tinvest_common_pb.InstrumentStatus;
|
|
1351
|
+
setInstrumentStatus(value: api_tinvest_common_pb.InstrumentStatus): GetLastPricesRequest;
|
|
1352
1352
|
hasInstrumentStatus(): boolean;
|
|
1353
1353
|
clearInstrumentStatus(): GetLastPricesRequest;
|
|
1354
1354
|
|
|
@@ -1365,7 +1365,7 @@ export namespace GetLastPricesRequest {
|
|
|
1365
1365
|
figiList: Array<string>,
|
|
1366
1366
|
instrumentIdList: Array<string>,
|
|
1367
1367
|
lastPriceType: LastPriceType,
|
|
1368
|
-
instrumentStatus?:
|
|
1368
|
+
instrumentStatus?: api_tinvest_common_pb.InstrumentStatus,
|
|
1369
1369
|
}
|
|
1370
1370
|
|
|
1371
1371
|
export enum InstrumentStatusCase {
|
|
@@ -1398,8 +1398,8 @@ export class LastPrice extends jspb.Message {
|
|
|
1398
1398
|
getFigi(): string;
|
|
1399
1399
|
setFigi(value: string): LastPrice;
|
|
1400
1400
|
|
|
1401
|
-
getPrice():
|
|
1402
|
-
setPrice(value?:
|
|
1401
|
+
getPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1402
|
+
setPrice(value?: api_tinvest_common_pb.Quotation): LastPrice;
|
|
1403
1403
|
hasPrice(): boolean;
|
|
1404
1404
|
clearPrice(): LastPrice;
|
|
1405
1405
|
|
|
@@ -1431,7 +1431,7 @@ export class LastPrice extends jspb.Message {
|
|
|
1431
1431
|
export namespace LastPrice {
|
|
1432
1432
|
export type AsObject = {
|
|
1433
1433
|
figi: string,
|
|
1434
|
-
price?:
|
|
1434
|
+
price?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1435
1435
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1436
1436
|
ticker: string,
|
|
1437
1437
|
classCode: string,
|
|
@@ -1533,23 +1533,23 @@ export class GetOrderBookResponse extends jspb.Message {
|
|
|
1533
1533
|
clearAsksList(): GetOrderBookResponse;
|
|
1534
1534
|
addAsks(value?: Order, index?: number): Order;
|
|
1535
1535
|
|
|
1536
|
-
getLastPrice():
|
|
1537
|
-
setLastPrice(value?:
|
|
1536
|
+
getLastPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1537
|
+
setLastPrice(value?: api_tinvest_common_pb.Quotation): GetOrderBookResponse;
|
|
1538
1538
|
hasLastPrice(): boolean;
|
|
1539
1539
|
clearLastPrice(): GetOrderBookResponse;
|
|
1540
1540
|
|
|
1541
|
-
getClosePrice():
|
|
1542
|
-
setClosePrice(value?:
|
|
1541
|
+
getClosePrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1542
|
+
setClosePrice(value?: api_tinvest_common_pb.Quotation): GetOrderBookResponse;
|
|
1543
1543
|
hasClosePrice(): boolean;
|
|
1544
1544
|
clearClosePrice(): GetOrderBookResponse;
|
|
1545
1545
|
|
|
1546
|
-
getLimitUp():
|
|
1547
|
-
setLimitUp(value?:
|
|
1546
|
+
getLimitUp(): api_tinvest_common_pb.Quotation | undefined;
|
|
1547
|
+
setLimitUp(value?: api_tinvest_common_pb.Quotation): GetOrderBookResponse;
|
|
1548
1548
|
hasLimitUp(): boolean;
|
|
1549
1549
|
clearLimitUp(): GetOrderBookResponse;
|
|
1550
1550
|
|
|
1551
|
-
getLimitDown():
|
|
1552
|
-
setLimitDown(value?:
|
|
1551
|
+
getLimitDown(): api_tinvest_common_pb.Quotation | undefined;
|
|
1552
|
+
setLimitDown(value?: api_tinvest_common_pb.Quotation): GetOrderBookResponse;
|
|
1553
1553
|
hasLimitDown(): boolean;
|
|
1554
1554
|
clearLimitDown(): GetOrderBookResponse;
|
|
1555
1555
|
|
|
@@ -1591,10 +1591,10 @@ export namespace GetOrderBookResponse {
|
|
|
1591
1591
|
depth: number,
|
|
1592
1592
|
bidsList: Array<Order.AsObject>,
|
|
1593
1593
|
asksList: Array<Order.AsObject>,
|
|
1594
|
-
lastPrice?:
|
|
1595
|
-
closePrice?:
|
|
1596
|
-
limitUp?:
|
|
1597
|
-
limitDown?:
|
|
1594
|
+
lastPrice?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1595
|
+
closePrice?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1596
|
+
limitUp?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1597
|
+
limitDown?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1598
1598
|
instrumentUid: string,
|
|
1599
1599
|
ticker: string,
|
|
1600
1600
|
classCode: string,
|
|
@@ -1684,8 +1684,8 @@ export class GetTradingStatusResponse extends jspb.Message {
|
|
|
1684
1684
|
getFigi(): string;
|
|
1685
1685
|
setFigi(value: string): GetTradingStatusResponse;
|
|
1686
1686
|
|
|
1687
|
-
getTradingStatus():
|
|
1688
|
-
setTradingStatus(value:
|
|
1687
|
+
getTradingStatus(): api_tinvest_common_pb.SecurityTradingStatus;
|
|
1688
|
+
setTradingStatus(value: api_tinvest_common_pb.SecurityTradingStatus): GetTradingStatusResponse;
|
|
1689
1689
|
|
|
1690
1690
|
getLimitOrderAvailableFlag(): boolean;
|
|
1691
1691
|
setLimitOrderAvailableFlag(value: boolean): GetTradingStatusResponse;
|
|
@@ -1722,7 +1722,7 @@ export class GetTradingStatusResponse extends jspb.Message {
|
|
|
1722
1722
|
export namespace GetTradingStatusResponse {
|
|
1723
1723
|
export type AsObject = {
|
|
1724
1724
|
figi: string,
|
|
1725
|
-
tradingStatus:
|
|
1725
|
+
tradingStatus: api_tinvest_common_pb.SecurityTradingStatus,
|
|
1726
1726
|
limitOrderAvailableFlag: boolean,
|
|
1727
1727
|
marketOrderAvailableFlag: boolean,
|
|
1728
1728
|
apiTradeAvailableFlag: boolean,
|
|
@@ -1826,8 +1826,8 @@ export class GetClosePricesRequest extends jspb.Message {
|
|
|
1826
1826
|
clearInstrumentsList(): GetClosePricesRequest;
|
|
1827
1827
|
addInstruments(value?: InstrumentClosePriceRequest, index?: number): InstrumentClosePriceRequest;
|
|
1828
1828
|
|
|
1829
|
-
getInstrumentStatus():
|
|
1830
|
-
setInstrumentStatus(value:
|
|
1829
|
+
getInstrumentStatus(): api_tinvest_common_pb.InstrumentStatus;
|
|
1830
|
+
setInstrumentStatus(value: api_tinvest_common_pb.InstrumentStatus): GetClosePricesRequest;
|
|
1831
1831
|
hasInstrumentStatus(): boolean;
|
|
1832
1832
|
clearInstrumentStatus(): GetClosePricesRequest;
|
|
1833
1833
|
|
|
@@ -1842,7 +1842,7 @@ export class GetClosePricesRequest extends jspb.Message {
|
|
|
1842
1842
|
export namespace GetClosePricesRequest {
|
|
1843
1843
|
export type AsObject = {
|
|
1844
1844
|
instrumentsList: Array<InstrumentClosePriceRequest.AsObject>,
|
|
1845
|
-
instrumentStatus?:
|
|
1845
|
+
instrumentStatus?: api_tinvest_common_pb.InstrumentStatus,
|
|
1846
1846
|
}
|
|
1847
1847
|
|
|
1848
1848
|
export enum InstrumentStatusCase {
|
|
@@ -1902,13 +1902,13 @@ export class InstrumentClosePriceResponse extends jspb.Message {
|
|
|
1902
1902
|
getClassCode(): string;
|
|
1903
1903
|
setClassCode(value: string): InstrumentClosePriceResponse;
|
|
1904
1904
|
|
|
1905
|
-
getPrice():
|
|
1906
|
-
setPrice(value?:
|
|
1905
|
+
getPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1906
|
+
setPrice(value?: api_tinvest_common_pb.Quotation): InstrumentClosePriceResponse;
|
|
1907
1907
|
hasPrice(): boolean;
|
|
1908
1908
|
clearPrice(): InstrumentClosePriceResponse;
|
|
1909
1909
|
|
|
1910
|
-
getEveningSessionPrice():
|
|
1911
|
-
setEveningSessionPrice(value?:
|
|
1910
|
+
getEveningSessionPrice(): api_tinvest_common_pb.Quotation | undefined;
|
|
1911
|
+
setEveningSessionPrice(value?: api_tinvest_common_pb.Quotation): InstrumentClosePriceResponse;
|
|
1912
1912
|
hasEveningSessionPrice(): boolean;
|
|
1913
1913
|
clearEveningSessionPrice(): InstrumentClosePriceResponse;
|
|
1914
1914
|
|
|
@@ -1936,8 +1936,8 @@ export namespace InstrumentClosePriceResponse {
|
|
|
1936
1936
|
instrumentUid: string,
|
|
1937
1937
|
ticker: string,
|
|
1938
1938
|
classCode: string,
|
|
1939
|
-
price?:
|
|
1940
|
-
eveningSessionPrice?:
|
|
1939
|
+
price?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1940
|
+
eveningSessionPrice?: api_tinvest_common_pb.Quotation.AsObject,
|
|
1941
1941
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1942
1942
|
eveningSessionPriceTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1943
1943
|
}
|
|
@@ -2028,8 +2028,8 @@ export namespace GetTechAnalysisRequest {
|
|
|
2028
2028
|
|
|
2029
2029
|
|
|
2030
2030
|
export class Deviation extends jspb.Message {
|
|
2031
|
-
getDeviationMultiplier():
|
|
2032
|
-
setDeviationMultiplier(value?:
|
|
2031
|
+
getDeviationMultiplier(): api_tinvest_common_pb.Quotation | undefined;
|
|
2032
|
+
setDeviationMultiplier(value?: api_tinvest_common_pb.Quotation): Deviation;
|
|
2033
2033
|
hasDeviationMultiplier(): boolean;
|
|
2034
2034
|
clearDeviationMultiplier(): Deviation;
|
|
2035
2035
|
|
|
@@ -2043,7 +2043,7 @@ export namespace GetTechAnalysisRequest {
|
|
|
2043
2043
|
|
|
2044
2044
|
export namespace Deviation {
|
|
2045
2045
|
export type AsObject = {
|
|
2046
|
-
deviationMultiplier?:
|
|
2046
|
+
deviationMultiplier?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2047
2047
|
}
|
|
2048
2048
|
}
|
|
2049
2049
|
|
|
@@ -2109,28 +2109,28 @@ export namespace GetTechAnalysisResponse {
|
|
|
2109
2109
|
hasTimestamp(): boolean;
|
|
2110
2110
|
clearTimestamp(): TechAnalysisItem;
|
|
2111
2111
|
|
|
2112
|
-
getMiddleBand():
|
|
2113
|
-
setMiddleBand(value?:
|
|
2112
|
+
getMiddleBand(): api_tinvest_common_pb.Quotation | undefined;
|
|
2113
|
+
setMiddleBand(value?: api_tinvest_common_pb.Quotation): TechAnalysisItem;
|
|
2114
2114
|
hasMiddleBand(): boolean;
|
|
2115
2115
|
clearMiddleBand(): TechAnalysisItem;
|
|
2116
2116
|
|
|
2117
|
-
getUpperBand():
|
|
2118
|
-
setUpperBand(value?:
|
|
2117
|
+
getUpperBand(): api_tinvest_common_pb.Quotation | undefined;
|
|
2118
|
+
setUpperBand(value?: api_tinvest_common_pb.Quotation): TechAnalysisItem;
|
|
2119
2119
|
hasUpperBand(): boolean;
|
|
2120
2120
|
clearUpperBand(): TechAnalysisItem;
|
|
2121
2121
|
|
|
2122
|
-
getLowerBand():
|
|
2123
|
-
setLowerBand(value?:
|
|
2122
|
+
getLowerBand(): api_tinvest_common_pb.Quotation | undefined;
|
|
2123
|
+
setLowerBand(value?: api_tinvest_common_pb.Quotation): TechAnalysisItem;
|
|
2124
2124
|
hasLowerBand(): boolean;
|
|
2125
2125
|
clearLowerBand(): TechAnalysisItem;
|
|
2126
2126
|
|
|
2127
|
-
getSignal():
|
|
2128
|
-
setSignal(value?:
|
|
2127
|
+
getSignal(): api_tinvest_common_pb.Quotation | undefined;
|
|
2128
|
+
setSignal(value?: api_tinvest_common_pb.Quotation): TechAnalysisItem;
|
|
2129
2129
|
hasSignal(): boolean;
|
|
2130
2130
|
clearSignal(): TechAnalysisItem;
|
|
2131
2131
|
|
|
2132
|
-
getMacd():
|
|
2133
|
-
setMacd(value?:
|
|
2132
|
+
getMacd(): api_tinvest_common_pb.Quotation | undefined;
|
|
2133
|
+
setMacd(value?: api_tinvest_common_pb.Quotation): TechAnalysisItem;
|
|
2134
2134
|
hasMacd(): boolean;
|
|
2135
2135
|
clearMacd(): TechAnalysisItem;
|
|
2136
2136
|
|
|
@@ -2145,11 +2145,11 @@ export namespace GetTechAnalysisResponse {
|
|
|
2145
2145
|
export namespace TechAnalysisItem {
|
|
2146
2146
|
export type AsObject = {
|
|
2147
2147
|
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2148
|
-
middleBand?:
|
|
2149
|
-
upperBand?:
|
|
2150
|
-
lowerBand?:
|
|
2151
|
-
signal?:
|
|
2152
|
-
macd?:
|
|
2148
|
+
middleBand?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2149
|
+
upperBand?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2150
|
+
lowerBand?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2151
|
+
signal?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2152
|
+
macd?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2153
2153
|
}
|
|
2154
2154
|
|
|
2155
2155
|
export enum MiddleBandCase {
|
|
@@ -2264,8 +2264,8 @@ export class MarketValue extends jspb.Message {
|
|
|
2264
2264
|
hasType(): boolean;
|
|
2265
2265
|
clearType(): MarketValue;
|
|
2266
2266
|
|
|
2267
|
-
getValue():
|
|
2268
|
-
setValue(value?:
|
|
2267
|
+
getValue(): api_tinvest_common_pb.Quotation | undefined;
|
|
2268
|
+
setValue(value?: api_tinvest_common_pb.Quotation): MarketValue;
|
|
2269
2269
|
hasValue(): boolean;
|
|
2270
2270
|
clearValue(): MarketValue;
|
|
2271
2271
|
|
|
@@ -2285,7 +2285,7 @@ export class MarketValue extends jspb.Message {
|
|
|
2285
2285
|
export namespace MarketValue {
|
|
2286
2286
|
export type AsObject = {
|
|
2287
2287
|
type?: MarketValueType,
|
|
2288
|
-
value?:
|
|
2288
|
+
value?: api_tinvest_common_pb.Quotation.AsObject,
|
|
2289
2289
|
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2290
2290
|
}
|
|
2291
2291
|
|