Ⅰ 怎样用 python 写一个股票自动交易的程序
股票自动交易助手提供了一个 Python 自动下单接口,参考代码
#股票自动交易助手Python自动下单使用例子
#把此脚本和StockOrderApi.pyOrder.dll放到你自己编写的脚本同一目录
fromStockOrderApiimport*
#买入测试
#Buy(u"600000",100,0,1,0)
#卖出测试,是持仓股才会有动作
#Sell(u"000100",100,0,1,0)
#账户信息
print("股票自动交易接口测试")
print("账户信息")
print("--------------------------------")
arrAccountInfo=["总资产","可用资金","持仓总市值","总盈利金额","持仓数量"];
foriinrange(0,len(arrAccountInfo)):
value=GetAccountInfo(u"",i,0)
print("%s%f"%(arrAccountInfo[i],value))
print("--------------------------------")
print("")
print("股票持仓")
print("--------------------------------")
#取出所有的持仓股票代码,结果以','隔开的
allStockCode=GetAllPositionCode(0)
allStockCodeArray=allStockCode.split(',')
foriinrange(0,len(allStockCodeArray)):
vol=GetPosInfo(allStockCodeArray[i],0,0)
changeP=GetPosInfo(allStockCodeArray[i],4,0)
print("%s%d%.2f%%"%(allStockCodeArray[i],vol,changeP))
print("--------------------------------")
Ⅱ 用python写一个 点餐代码--急急急 !!! 希望高人帮忙!
#coding:utf-8
menu={
'1':dict(name='草莓冰淇淋',price=20),
'2':dict(name='香草冰淇淋',price=10),
'3':dict(name='香蕉冰淇淋',price=15),
'5':dict(name='巧克力冰淇淋',price=30),
}
defshowmenu(menu):
fork,iteminsorted(menu.items()):
print"%(key)s:%(name)s价格%(price).2f"%dict(key=k,**item)
defmenuchoice(menu):
whileTrue:
showmenu(menu)
c=raw_input("YourChoice('.'forend):")
ifc=='.':
break
else:
yieldmenu.get(c)
customerchoice=filter(None,menuchoice(menu))
print"Total:%.2f"%sum(map(lambdax:x["price"],customerchoice))
Ⅲ 用python编写程序,对顾客购买的商品,让数量大于等于5件时,打八折,求总价
代码如下: