itubay 发表于 2024-6-25 01:44:16

An icourse163.org MOOC downloader implemented by .NET. 一枚由 .NET 实现的中国大学 MOOC 下载器.

itubay 发表于 2024-6-25 01:45:17

An advanced web directory & file scanning tool that will be more powerful than DirBuster, Dirsearch, cansina, and Yu Jian.一个高级web目录、文件扫描工具,功能将会强于DirBuster、Dirsearch、cansina、御剑

itubay 发表于 2024-6-25 01:46:28

Python 黑魔法手册

itubay 发表于 2024-6-25 15:47:51

本帖最后由 itubay 于 2024-6-25 15:49 编辑

天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易


from tqsdk import TqApi, TqAuth, TqAccount, TargetPosTask

api = TqApi(TqAccount("H海通期货", "4003242", "123456"), auth=TqAuth("快期账户", "账户密码"))      # 创建 TqApi 实例, 指定交易账户
q_1910 = api.get_quote("SHFE.rb1910")                         # 订阅近月合约行情
t_1910 = TargetPosTask(api, "SHFE.rb1910")                  # 创建近月合约调仓工具
q_2001 = api.get_quote("SHFE.rb2001")                         # 订阅远月合约行情
t_2001 = TargetPosTask(api, "SHFE.rb2001")                  # 创建远月合约调仓工具

while True:
api.wait_update()                                           # 等待数据更新
spread = q_1910["last_price"] - q_2001["last_price"]      # 计算近月合约-远月合约价差
print("当前价差:", spread)
if spread > 250:
    print("价差过高: 空近月,多远月")                           
    t_1910.set_target_volume(-1)                              # 要求把1910合约调整为空头1手
    t_2001.set_target_volume(1)                               # 要求把2001合约调整为多头1手
elif spread < 200:
    print("价差回复: 清空持仓")                               # 要求把 1910 和 2001合约都调整为不持仓
    t_1910.set_target_volume(0)
    t_2001.set_target_volume(0)

itubay 发表于 2024-6-25 15:50:33

2019新型冠状病毒疫情实时爬虫及API | COVID-19/2019-nCoV Realtime Infection Crawler and API

itubay 发表于 2024-6-25 15:51:27

PaddlePaddle End-to-End Development Toolkit(飞桨低代码开发工具)

itubay 发表于 2024-6-26 00:21:06

Bilibili_video_download-B站视频下载

itubay 发表于 2024-6-26 00:22:16

Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取

itubay 发表于 2024-6-26 00:23:22

python ip proxy tool scrapy crawl. 抓取大量免费代理 ip,提取有效 ip 使用

itubay 发表于 2024-6-26 00:24:58

解决电脑、手机看电视直播的苦恼,收集各种直播源,电视直播网站
页: 2 3 4 5 6 7 8 9 10 11 [12] 13 14 15 16 17 18 19 20 21
查看完整版本: Python中文项目