最大持有股票數(shù)不得超過20個(gè)的股票策略 [金字塔]
- 咨詢內(nèi)容:
1.最大持有股票數(shù)20
2.所有股票等權(quán)重買入,并且每10s發(fā)一次單,每單為賣一量的50%
3.買入條件為量比大于2小于3
- 金字塔客服:
已經(jīng)安排工作人員幫你編寫范例,由于使用VBA進(jìn)行開發(fā),所有需要一點(diǎn)時(shí)間,請耐心關(guān)注本帖回復(fù)
- 用戶回復(fù):
要多久呀
- 網(wǎng)友回復(fù):
'買入條件量比你可以直接用股票池選股選出來然后放到自選股分類的TEST板塊中去,然后用下面vba程序去做買入動(dòng)作
dim num
'每只股票投入資金量
dim money
money = 100000'最大持有股票數(shù)量
dim max_holding
max_holding = 10
Set b = CreateObject("Stock.Block")
call b.open("TEST",1)'第一個(gè)計(jì)時(shí)器建立頭寸
call application.SetTimer(0,5000)
'第二個(gè)計(jì)時(shí)器10秒發(fā)單,直到money市值
call application.SetTimer(1,10000)
Sub APPLICATION_Timer(ID)
if ID = 0 then
for i = 0 to b.count-1
buynum = marketdata.GetReportData(b.GetStockCode(i),b.GetStockMarket(i)).SellVolume1*0.5
Result = Order.HoldingInfoByCode2(b.GetStockCode(i),b.GetStockMarket(i),BuyHolding,BuyCost,BuyTodayHolding,SellHolding,SellCost,SellTodayHolding,PNL,UseMargin,"")
cond_first = BuyHolding<1 and Result <>1
if num+order.Holding2 + order.OrderNum2 <=max_holding and cond_first then
num = num+1
call order.buy(1,buynum,0,0,b.GetStockCode(i),b.GetStockMarket(i),"",0)
end if
next
end if
if ID = 1 then
for i = 0 to order.Holding2-1
Result = Order.HoldingInfo2(i,BuyHolding,BuyCost,BuyTodayHolding,SellHolding,SellCost,SellTodayHolding,PNL,UseMargin ,Code,Market)
buynum = marketdata.GetReportData(Code,Market).SellVolume1*0.5
price = marketdata.GetReportData(Code,Market).NewPrice
if BuyHolding<money/price then
call order.buy(1,buynum,0,0,Code,Market,"",0)
end if
next
end ifEnd Sub
'
Sub APPLICATION_VBAEnd()
call application.KillTimer(0)
call application.KillTimer(1)
set b = nothing
End Sub
Sub APPLICATION_VBAStart()
num = 0
End Sub - 網(wǎng)友回復(fù):
買入條件量比你可以直接用股票池選股選出來然后放到自選股分類的TEST板塊中去,你這句等于是我要手動(dòng)添加股票嗎,而且你們VBA怎么去監(jiān)控股票池我不知道
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 511411198 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容