Ivan Skiridomov
Ivan Skiridomov
No links, no examples. How did you test caesium ? Is there hard to describe two three commands in code block ?
Can I install angular 13 with latest angluar/cli ? Or maybe there is other workaround to use latest ng-zorro with angular 14 ? Upd: `npx @angular/cli@13 new my-project`
I believe this is not only about crosshair price. Because I have a similar issue:  I can't reproduce it on JSFiddle because...
I expect to see labels on price scale when I move mouse over graph. 1 version can show all labels from indicators and chart. 2 version can be configurable what...
@timocov As you can see from my recent screenshot there is no labels on price scale from chart and indicator(MA). I want to see all labels from all objects that...
Working well as today ``` package main import ( "fmt" "github.com/adshao/go-binance/v2" ) func main() { pairs := map[string]string{ "BTCUSDT": "1m", "ETHUSDT": "1m", } wsKlineHandler := func(event *binance.WsKlineEvent) { fmt.Println(event) }...
Hey, folks. What is a status of NewCreateBatchOrdersService? I'm trying to use it but it does not fill my orders ``` var orders []*futures.CreateOrderService log.Println("[exchange][CreateOrder] Creating base order") baseOrder :=...
Errors are located in `rawMessages array, but it can't be unmarshaled to Order structure and no error about it. :(  ![Screen Shot 2021-11-16...
Maybe something like this should help ``` func StrictUnmarshal(data []byte, v interface{}) error { dec := json.NewDecoder(bytes.NewReader(data)) dec.DisallowUnknownFields() return dec.Decode(v) } ```
@adshao