Skip to content

Commit 272435d

Browse files
committed
fix(types): update OHLCV timestamp comment to seconds
Changed the timestamp comment in OHLCV to clarify it uses seconds instead of milliseconds.
1 parent 6ec041c commit 272435d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pynecore/types/ohlcv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
class OHLCV(NamedTuple):
6-
timestamp: int # Unix timestamp in milliseconds
6+
timestamp: int # Unix timestamp in seconds
77
open: float | NA[float]
88
high: float | NA[float]
99
low: float | NA[float]

0 commit comments

Comments
 (0)