def GetLLV(self, type="close"):
""""""
a=[]
for i in range(0, self.getSize()):
if 0: hisdat = Hisdat
hisdat = self.getData(i)
cur = 0
if type == "close":
cur = hisdat.close
if type == "high":
cur = hisdat.high
if type == "low":
cur = hisdat.low
if type == "open":
cur = hisdat.open
if type == "vol" or type == "volume" :
cur = hisdat.volume
a.append(cur)
return min(a)
#----------------------------------------------------------------------
评论列表
文章目录