File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ cdef class Order:
133
133
cdef readonly uint64_t ts_accepted
134
134
""" UNIX timestamp (nanoseconds) when the order was accepted or first filled (zero unless accepted or filled).\n\n :returns: `uint64_t`"""
135
135
cdef readonly uint64_t ts_closed
136
- """ UNIX timestamp (nanoseconds) when the order closed ( lifecycle completed).\n\n :returns: `uint64_t`"""
136
+ """ UNIX timestamp (nanoseconds) when the order closed / lifecycle completed (zero unless closed ).\n\n :returns: `uint64_t`"""
137
137
cdef readonly uint64_t ts_last
138
138
""" UNIX timestamp (nanoseconds) when the last order event occurred.\n\n :returns: `uint64_t`"""
139
139
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ cdef class Position:
84
84
cdef readonly uint64_t ts_last
85
85
""" UNIX timestamp (nanoseconds) when the last event occurred.\n\n :returns: `uint64_t`"""
86
86
cdef readonly uint64_t ts_closed
87
- """ UNIX timestamp (nanoseconds) when the position was closed.\n\n :returns: `uint64_t`"""
87
+ """ UNIX timestamp (nanoseconds) when the position was closed (zero unless closed) .\n\n :returns: `uint64_t`"""
88
88
cdef readonly uint64_t duration_ns
89
- """ The total open duration ( nanoseconds).\n\n :returns: `uint64_t`"""
89
+ """ The total open duration in nanoseconds (zero unless closed ).\n\n :returns: `uint64_t`"""
90
90
cdef readonly double avg_px_open
91
91
""" The average open price.\n\n :returns: `double`"""
92
92
cdef readonly double avg_px_close
You can’t perform that action at this time.
0 commit comments