Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

decimal string #2

Open
mmmmkkkk311 opened this issue Jan 31, 2017 · 1 comment
Open

decimal string #2

mmmmkkkk311 opened this issue Jan 31, 2017 · 1 comment

Comments

@mmmmkkkk311
Copy link

It works with this format
$buy = $bfx->new_order('BTCUSD', 0.01 , 1.0, 'bitfinex', 'buy', 'exchange market');

but it doesn't work with this
$x = 0.01 ;
$buy = $bfx->new_order('BTCUSD', $x , 1.0, 'bitfinex', 'buy', 'exchange market');
returning error
Array ( [message] => Key amount should be a decimal string. [error] => 1 )
how can I fix it?

@mariodian
Copy link
Owner

You have to send the amount ($x) as a string:

$x = '0.01';
$buy = $bfx->new_order('BTCUSD', $x , 1.0, 'bitfinex', 'buy', 'exchange market');

P.S. sorry for the late reply I totally missed this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants