Skip to content

Commit 1ef9608

Browse files
author
Build System
committed
'Protobuf files change'
1 parent a8f171f commit 1ef9608

12 files changed

Lines changed: 709 additions & 168 deletions

File tree

src/systemathics/apis/services/daily/v1/daily_bars.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ message DailyBar
7878
double close = 5;
7979

8080
// Total traded volume of the day
81-
int64 volume = 6;
81+
double volume = 6;
8282

8383
// The data quality scoring : from 0 (bad) to 100 (good)
8484
double score = 7;

src/systemathics/apis/services/daily/v1/daily_prices.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ message DailyPrice
6868
double price = 2;
6969

7070
// Total traded volume of the day
71-
int64 volume = 3;
71+
double volume = 3;
7272

7373
// The data quality scoring : from 0 (bad) to 100 (good)
7474
double score = 4;

src/systemathics/apis/services/daily/v1/daily_vwap.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ message DailyVwap
7272
double price = 2;
7373

7474
// Total traded volume of the day
75-
int64 volume = 3;
75+
double volume = 3;
7676

7777
// The data quality scoring : from 0 (bad) to 100 (good)
7878
double score = 4;

src/systemathics/apis/services/intraday/v1/intraday_bars.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ message IntradayBar
8282
double close = 5;
8383

8484
// Total traded volume of the sampling period
85-
int64 volume = 6;
85+
double volume = 6;
8686

8787
// Tick count of the sampling period
8888
int32 count = 7;

src/systemathics/apis/services/intraday/v1/intraday_prices.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ message IntradayPrice
7272
double price = 2;
7373

7474
// Total traded volume of the sampling period
75-
int64 volume = 3;
75+
double volume = 3;
7676

7777
// The data quality scoring : from 0 (bad) to 100 (good)
7878
double score = 4;

src/systemathics/apis/services/intraday/v1/intraday_vwap.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ message IntradayVwap
7676
double price = 2;
7777

7878
// Total traded volume of the sampling period
79-
int64 volume = 3;
79+
double volume = 3;
8080

8181
// The data quality scoring : from 0 (bad) to 100 (good)
8282
double score = 4;

0 commit comments

Comments
 (0)