You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
540 B
25 lines
540 B
syntax = "proto3"; |
|
|
|
import "api/pub.proto"; |
|
|
|
option go_package = "./pb"; |
|
|
|
service IndicatorService { |
|
rpc Subscribe(IndicatorSubReq) returns (stream Indicator); // 订阅指标 |
|
rpc Plot(Indicator) returns (Indicator); // 绘图 |
|
} |
|
|
|
message IndicatorSubReq { |
|
string topic = 1; |
|
string instId = 2; |
|
int32 window = 3; |
|
} |
|
|
|
message Indicator { |
|
ExchangeType exhcange = 1; |
|
string instId = 2; |
|
string indicator = 3; |
|
string sub = 4; // 指标子标题, MA5, MA10, MA20 |
|
int64 Ts = 5; |
|
bytes payload = 8; |
|
}
|
|
|