Ivan Skiridomov

Results 32 comments of 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: ![Screen Shot 2021-07-25 at 12 39 06 PM](https://user-images.githubusercontent.com/1939783/126911828-d019de1a-d351-4136-862d-100d3d911254.png) 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 at 23 39 15](https://user-images.githubusercontent.com/1939783/142141454-2d3a65c5-4bed-44dc-97e0-7ab7694ad6db.png) ![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) } ```