2.6 Binance_interface APP 现货交易-价格与数量

2024-02-10 17:28

本文主要是介绍2.6 Binance_interface APP 现货交易-价格与数量,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Binance_interface APP 现货交易-价格与数量

  • Github地址
  • PyTed量化交易研究院

目录

  • Binance_interface APP 现货交易-价格与数量
    • 1. APP 现货交易-价格与数量函数总览
    • 2. 模型实例化
    • 3. 下单数量圆整 round_quantity
    • 4. 价格圆整 round_price
    • 5. 根据产品的开仓金额、杠杆倍数、开仓价格获取购买数量 get_quantity
    • 6. 将下单数量转化为字符串 quantity_to_f
    • 7. 将价格转化为字符串 price_to_f

1. APP 现货交易-价格与数量函数总览

方法解释
round_quantity下单数量圆整
round_price价格圆整
get_quantity根据产品的开仓金额、杠杆倍数、开仓价格获取购买数量
quantity_to_f将下单数量转化为字符串
price_to_f将价格转化为字符串

2. 模型实例化

from binance_interface.app import BinanceSPOT
from binance_interface.app.utils import eprint
# 转发:需搭建转发服务器,可参考:https://github.com/pyted/binance_resender
proxy_host = None
key = 'xxxx'
secret = 'xxxx'binanceSPOT = BinanceSPOT(key=key, secret=secret,proxy_host=proxy_host
)
trade = binanceSPOT.trade

3. 下单数量圆整 round_quantity

# 以产品数量的最小精度向下取圆整
quantity_result = trade.round_quantity(symbol='BTCUSDT',quantity=0.12345678912345,
)
print(quantity_result)

输出:

>>> {'code': 200, 'data': 0.12345, 'msg': ''}

4. 价格圆整 round_price

# 以产品价格的最小精度取圆整
price_result = trade.round_price(price=12345.67891234,symbol='BTCUSDT',type='CEIL',  # 向上取圆整
)
print(price_result)

输出:

>>> {'code': 200, 'data': 12345.68, 'msg': ''}
# 以产品价格的最小精度取圆整
price_result = trade.round_price(price=12345.67891234,symbol='BTCUSDT',type='FLOOR',  # 向下取圆整
)
print(price_result)

输出:

>>> {'code': 200, 'data': 12345.67, 'msg': ''}

5. 根据产品的开仓金额、杠杆倍数、开仓价格获取购买数量 get_quantity

quantity_result = trade.get_quantity(openPrice=21212.12,openMoney=400,symbol='BTCUSDT',
)
print(quantity_result)

输出:

>>> {'code': 200, 'data': 0.01885, 'msg': ''}

6. 将下单数量转化为字符串 quantity_to_f

quantity_to_f_result = trade.quantity_to_f(quantity=0.01885,symbol='BTCUSDT',
)
print(quantity_to_f_result)

输出:

>>> {'code': 200, 'data': '0.01885', 'msg': ''}

7. 将价格转化为字符串 price_to_f

price_to_f_result = trade.price_to_f(price=12345.12,symbol='BTCUSDT',
)
print(price_to_f_result)

输出:

>>> {'code': 200, 'data': '12345.12', 'msg': ''}

这篇关于2.6 Binance_interface APP 现货交易-价格与数量的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/697669

相关文章

macOS怎么轻松更换App图标? Mac电脑图标更换指南

《macOS怎么轻松更换App图标?Mac电脑图标更换指南》想要给你的Mac电脑按照自己的喜好来更换App图标?其实非常简单,只需要两步就能搞定,下面我来详细讲解一下... 虽然 MACOS 的个性化定制选项已经「缩水」,不如早期版本那么丰富,www.chinasem.cn但我们仍然可以按照自己的喜好来更换

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

MFC中App,Doc,MainFrame,View各指针的互相获取

纸上得来终觉浅,为了熟悉获取方法,我建了个SDI。 首先说明这四个类的执行顺序是App->Doc->Main->View 另外添加CDialog类获得各个指针的方法。 多文档的获取有点小区别,有时间也总结一下。 //  App void CSDIApp::OnApp() {      //  App      //  Doc     CDocument *pD

JeecgBoot 升级springboot版本到2.6.0

1. 环境描述 Jeecgboot 3.0,他所依赖的springboot版本为2.3.5Release,将springboot版本升级为2.6.0。过程全纪录,从2开始描述。 2. 修改springboot版本号 <parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-pare

ConstraintLayout布局里的一个属性app:layout_constraintDimensionRatio

ConstraintLayout 这是一个约束布局,可以尽可能的减少布局的嵌套。有一个属性特别好用,可以用来动态限制宽或者高app:layout_constraintDimensionRatio 关于app:layout_constraintDimensionRatio参数 app:layout_constraintDimensionRatio=“h,1:1” 表示高度height是动态变化

App Store最低版本要求汇总

1,自此日期起: 2024 年 4 月 29 日 自 2024 年 4 月 29 日起,上传到 App Store Connect 的 App 必须是使用 Xcode 15 为 iOS 17、iPadOS 17、Apple tvOS 17 或 watchOS 10 构建的 App。将 iOS App 提交至 App Store - Apple Developer 2,最低XCode版本 Xcod

一个统计文件中关键词数量的小程序-优化版本

public class computeWxxFileNum{public static void main(String[] args) throws IOException {//读文件File sourceFile = new File("e:\\55-tmp\\xxx.log");FileReader in = new FileReader(sourceFile); LineNumber

一个统计文件中关键词数量的小程序

public class computeFileNum{public static void main(String[] args) throws IOException {File sourceFile = new File("e:\\55-tmp\\xxx.log"); FileReader in = new FileReader(sourceFile); LineNumberReader

pytorch计算网络参数量和Flops

from torchsummary import summarysummary(net, input_size=(3, 256, 256), batch_size=-1) 输出的参数是除以一百万(/1000000)M, from fvcore.nn import FlopCountAnalysisinputs = torch.randn(1, 3, 256, 256).cuda()fl