this.kt = new K.KiteTicker({ api_key, access_token })
this.kt.on('order_update', update => {
console.log("order FOUND. YEAH");
});
sometimes it works sometimes it is not called. but the orders are executed i che…
the problem is solved. you can close it.
the problem is with JSON.stringify(tick) does not convert ISO datetime format properly. so in the code shown in the image i commented it. now the output is proper. Yes sujith the timestamps are broadasted pr…
can u please guide me in some direction. my system time is correct as shown in the image. it is set to automatically sync with the internet. how can the value change once it is broadcasted from your server to mine? could it be that my node or node h…
i had just posted part of the code. but i figured the problem was I should have subscribed to the event with "ticks" and not "tick". ticker.on("ticks",cb) as opposed to ticker.on("tick",cb). I will try this in tommorows market. appreciate your pro…
here is the code.
var ticker = new KiteTicker({
api_key: api_key,
access_token: access_token,
public_token: public_token,
});
// ticker = new KiteTicker("xxxx", "xxxx", "xxxxx");
ticker.on("tick", setTick);
ticker.…