Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: afsharsafavi/php-binance-api

Tags

v0.5.2

Toggle v0.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add limit to chart function

v0.5.1

Toggle v0.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add extra parameters to cancel function

v0.5.0

Toggle v0.5.0's commit message
Fix for counting the args

v0.4.6

Toggle v0.4.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
PRICE_FILTER fix: roundTicks now rounds price with tickSize

> roundTicks: Used to round price with tickSize. Example: `roundTicks(0.12345, '0.001') = 0.123`
```php
function roundTicks($price, $tickSize) {
        $precision = strlen(rtrim(substr($tickSize,strpos($tickSize, '.', 1) + 1), '0'));
        return number_format($price, $precision, '.', '');
}
echo roundTicks(0.00016552, '0.00000010');
```

v0.4.5

Toggle v0.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add roundStep functionality, to help with stepSize

```php
    function roundStep($value, $stepSize = 0.1) {
        $precision = strlen(substr(strrchr(rtrim($value,'0'), '.'), 1));
        return round((($value / $stepSize) | 0) * $stepSize, $precision);
    }
```

v0.4.4

Toggle v0.4.4's commit message

Unverified

This user has not yet uploaded their public signing key.
fix for ultipe redirection modifcation of unknown variable

v0.4.3

Toggle v0.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request ccxt#154 from kwshimhyunbo: PUT Method added

PUT Method added

v0.4.2

Toggle v0.4.2's commit message

Unverified

This user has not yet uploaded their public signing key.
add addtional check for kline chart data

v0.4.1

Toggle v0.4.1's commit message

Unverified

This user has not yet uploaded their public signing key.
Ad support for downloading CA via proxy

v0.4.0

Toggle v0.4.0's commit message

Unverified

This user has not yet uploaded their public signing key.
remove path in contrcutor