Rss & SiteMap
金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/
请问如何用语句实现:如果满足a或b条件,kaiduo或kaikong的仓位设置为50%;如果不满足,仓位设置为10%。
谢谢!
if a or b then begin
buy(holding=0,50%,market);
end
if not(a) and not(b) then begin
buy(holding=0,10%,market);
en