Merge pull request #614 from jessy1092/ftx-support-interval

ftx: Let FTX support 4hr interval
This commit is contained in:
Yo-An Lin 2022-05-16 01:43:17 +08:00 committed by GitHub
commit f37e407f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,6 +216,7 @@ var supportedIntervals = map[types.Interval]int{
types.Interval5m: 5,
types.Interval15m: 15,
types.Interval1h: 60,
types.Interval4h: 60 * 4,
types.Interval1d: 60 * 24,
types.Interval3d: 60 * 24 * 3,
}