File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import "google/protobuf/wrappers.proto";
5
5
6
6
package athena.v1 ;
7
7
8
- // Configuration
8
+ // [message] Configuration
9
9
// Represents the configurations for the backtest.
10
10
message Configuration {
11
11
// Commission rate charged by the broker for each trade.
@@ -20,7 +20,7 @@ message Configuration {
20
20
google.protobuf.BoolValue exclusive_orders = 5 ;
21
21
}
22
22
23
- // Order
23
+ // [message] Order
24
24
// Represents a single order data.
25
25
message Order {
26
26
// Order size (positive for long, negative for short).
@@ -39,7 +39,7 @@ message Order {
39
39
string hash = 7 ;
40
40
}
41
41
42
- // Trade
42
+ // [message] Trade
43
43
// Represents a single trade data.
44
44
message Trade {
45
45
// Size for the assets.
@@ -60,7 +60,7 @@ message Trade {
60
60
string hash = 8 ;
61
61
}
62
62
63
- // Statistics
63
+ // [message] Statistics
64
64
message Statistics {
65
65
// The timestamp for when the backstart is started.
66
66
google.protobuf.Timestamp start = 1 ;
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ message Signal {
39
39
// Side: Buy or sell
40
40
Side side = 4 ;
41
41
// Take-profit price
42
- float take_profit = 6 ;
42
+ float take_profit = 5 ;
43
43
// Stop-loss price
44
- float stop_loss = 7 ;
44
+ float stop_loss = 6 ;
45
45
// Confidence percentage [0-1]
46
- float confidence = 5 ;
46
+ float confidence = 7 ;
47
47
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments