linwj/ftx
Composer 安装命令:
composer require linwj/ftx
包简介
FTX API Like the official document interface, Support for arbitrary extension.
README 文档
README
It is recommended that you read the official document first
FTX docs https://docs.ftx.com/
All interface methods are initialized the same as those provided by FTX. See details src/api
Most of the interface is now complete, and the user can continue to extend it based on my design, working with me to improve it.
Other exchanges API
Exchanges It includes all of the following exchanges and is highly recommended.
If you don't find the exchange SDK you want, you can tell me and I'll join them.
Installation
composer require linwj/ftx
Support for more request Settings
//spot use Lin\Ftx\Ftx; $ftx=new Ftx(); //or $ftx=new Ftx($key,$secret); //You can set special needs $ftx->setOptions([ //Set the request timeout to 60 seconds by default 'timeout'=>10, //https://github.com/guzzle/guzzle //'proxy'=>[], //https://www.php.net/manual/en/book.curl.php //'curl'=>[], //FTX-SUBACCOUNT (optional): URI-encoded name of the subaccount to use. Omit if not using subaccounts. //'headers'=>['FTX-SUBACCOUNT'=>'xxxx'] ]);
Exchange
Market API More
$ftx=new Ftx(); try { $result=$ftx->markets()->gets(); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->markets()->get([ 'market_name'=>'BTC/USD',// BTC/USD BTC-PERP BTC-0626 //'depth'=>'10' ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->markets()->getOrderBook([ 'market_name'=>'BTC-PERP',// BTC/USD BTC-PERP BTC-0626 //'depth'=>'10' ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->markets()->getTrades([ 'market_name'=>'BTC-0626',// BTC/USD BTC-PERP BTC-0626 //'depth'=>'10' ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->markets()->getCandles([ 'market_name'=>'BTC-0628',// BTC/USD BTC-PERP BTC-0626 'resolution'=>'60' ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); }
Account API More
$ftx=new Ftx($key,$secret); try { $result=$ftx->account()->get(); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->account()->getPositions(); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); }
Orders API More
$ftx=new Ftx($key,$secret); try { $result=$ftx->orders()->post([ 'market'=>'BTC/USD', 'side'=>'buy', 'price'=>'10000', 'type'=>'limit', 'size'=>'1', //'clientId'=>'1234567890', ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->orders()->get([ 'order_id'=>'1234567890', ]); print_r($result); $result=$ftx->orders()->getByClientId([ 'client_order_id'=>'1234567890', ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); } try { $result=$ftx->orders()->delete([ 'order_id'=>'1234567890', ]); print_r($result); $result=$ftx->orders()->deleteByClientId([ 'client_order_id'=>'1234567890', ]); print_r($result); }catch (\Exception $e){ print_r($e->getMessage()); }
More Test more
linwj/ftx 适用场景与选型建议
linwj/ftx 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.73k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2021 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「gate」 「coinbase」 「binance」 「BitMEX」 「Huobi」 「OKEX」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 linwj/ftx 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 linwj/ftx 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 linwj/ftx 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Permission handling for Laravel using Gates with Route Names
Binance API Like the official document interface, Support for arbitrary extension.
Based on native Laravel's gates and policies. Hierarchical RBAC with callbacks.
Coinbase Commerce API library
Logic Gates and Criteria Tree
统计信息
- 总下载量: 2.73k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-12