emorling

Results 34 comments of emorling

Thank you! This worked for me. > 17 aug. 2017 kl. 06:05 skrev Gangesh2493 : > > @emorling mine is working. You need to include these in your html files....

For USDT Perpetual you must use the LinearClient. ``` const { LinearClient } = require('bybit-api'); const client = new LinearClient( API_KEY, API_SECRET ); ``` First you must set leverage and...

@samgermain The ByBit API enables us to - Get Active Order using order_link_id (not only order_id) https://bybit-exchange.github.io/docs/futuresV2/linear/#t-getactive - Cancel Active Order using order_link_id https://bybit-exchange.github.io/docs/futuresV2/linear/#t-cancelactive - Replace Active Order using order_link_id...

Any news on this? Seems to be a recurring issue which pops up quite often

> @hosseinab @emorling Have you tried to synchronize your clocks with UTC using NTP?https://www.baeldung.com/linux/sync-time-with-network I'm not using a managed environment where I can set clock. Is that a requirement?

I use proxy like this ``` const { LinearClient } = require('bybit-api'); const HttpsProxyAgent = require('https-proxy-agent'); const httpsAgent = new HttpsProxyAgent({host: "YOUR PROXY HOST", port: "YOUR PROXY PORT"}); const requestLibraryOptions...

> At the end, I ended up generating separate videos of zooming with command line ffmpeg (credits to: https://superuser.com/a/1112680) > > ``` > import subprocess > > def run_ffmpeg_zoom(image_path, output_file,...

I have same problem. Any idea when new version will be avail?

Ensure the list of ids are strings. ` def delete(self, ids: Optional[List[str]] = None, **kwargs: Any) -> None:`