blingo/exam/fetchOHLCV_test.go
zhangkun9038@dingtalk.com dd8d3b8a95 remove proxy
2025-03-05 20:47:26 +08:00

17 lines
280 B
Go

package exam
import (
"testing"
)
func TestFetchOHLCV(t *testing.T) {
symbol := "BTC/USDT"
timeframe := "1D"
since := int64(1672502400000)
limit := int64(100)
params := map[string]interface{}{
"rateLimit": true,
}
FetchOHLCV(symbol, timeframe, since, limit, params)
}