Giter Club home page Giter Club logo

Comments (6)

jaggedsoft avatar jaggedsoft commented on May 30, 2024 2

Hmm, someone else reported a similar issue. I would like to modify this library a bit to have better error handling and show more detail

from php-binance-api.

cosfat avatar cosfat commented on May 30, 2024

@jaggedsoft would you give us some suggest for temporarily handling the issue?

from php-binance-api.

cosfat avatar cosfat commented on May 30, 2024

SOLVED!
`

public function order($side, $symbol, $quantity, $price, $type = "LIMIT", $flags = []) {

	$opt = [

		"symbol" => $symbol,

		"side" => $side,

		"type" => $type,

		"quantity" => $quantity,

		"recvWindow" => 10000

	];

	if ( $type == "LIMIT" ) {

		$opt["price"] = $price;

		$opt["timeInForce"] = "GTC";

	}

	if ( isset($flags['stopPrice']) ) $opt['stopPrice'] = $flags['stopPrice'];

	if ( isset($flags['icebergQty']) ) $opt['icebergQty'] = $flags['icebergQty'];

	return $this->signedRequest("v3/order", $opt, "POST");

}`

Changing recvWindow from 60000 to 10000 just works like a charm.

from php-binance-api.

jaggedsoft avatar jaggedsoft commented on May 30, 2024

Thanks!
Good to know, will add nice error messages to future versions
This happens when system time goes out of sync
I can also add a useServerTime option

from php-binance-api.

dxjones avatar dxjones commented on May 30, 2024

from php-binance-api.

jaggedsoft avatar jaggedsoft commented on May 30, 2024

Thank you!!

Added error messages in v0.0.11 ed531e6

Will add 'useServerTime' in future version. For now, increase recvWindow or synchronize clock

from php-binance-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.