Ⅰ 怎樣用 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件時,打八折,求總價
代碼如下: