1 Star 0 Fork 16

aaron/stock_robot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stock_info.py 838 Bytes
一键复制 编辑 原始数据 按行查看 历史
邹吉华 提交于 2023-04-12 16:27 +08:00 . 1.6
import numpy as np
class StockSceneInfo():
def __init__(self):
self.Date = ''
self.Open = 0
self.Close = 0
self.High = 0
self.Low = 0
self.Deal = 0
self.Standard = 0
self.Turn = 0
self.IsST = False
class StockLearnInfo():
def __init__(self):
self.NextHigh = 0
self.NextLow = 0
self.NextStandard = 0
self.SceneInfo = []
class StockPredictInfo():
def __init__(self,code='',buy_price=0,sell_price=0):
self.StockCode = code
self.BuyPrice = buy_price
self.SellPrice = sell_price
class StockHoldInfo():
def __init__(self,code,scene,count,hold_day):
self.StockCode = code
self.SceneInfo = scene
self.HoldDay = hold_day
self.Count = count
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/alpha_aaron/stock_robot.git
git@gitee.com:alpha_aaron/stock_robot.git
alpha_aaron
stock_robot
stock_robot
master

搜索帮助