mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-07 11:17:56 +08:00
24cd329f3d
- implement coinank free kline api in coinank_api.Kline - implement coinank free kline ws in coinank_api.KlineWs. if needKline is true, kline data read from KlineCh. if needTicker is true, tickers data read from TickersCh.
9 lines
155 B
Go
9 lines
155 B
Go
package coinank_enum
|
|
|
|
type Side string
|
|
|
|
const (
|
|
To Side = "to" //search backward from the time ts
|
|
From Side = "from" //search forward from time ts
|
|
)
|