量化合約系統(tǒng),合約量化系統(tǒng)開發(fā)策略及規(guī)則,量化合約源碼部署
What does quantitative trading mean?
Quantitative trading refers to the investment method of trading using computer technology with the help of modern statistical and mathematical methods. Quantitative trading can bring a variety of "high probability" events with excess returns from huge historical data to formulate strategies, verify and solidify these laws and strategies with quantitative models, and then strictly implement solidified strategies to guide investment in order to obtain sustainable, stable and higher-average returns.
市場將量化交易分為以下類別:系統(tǒng)化交易、算法交易、程序化交易和機械式交易等,其中前三種模式在市場比較常見。
1.系統(tǒng)化交易指投資者將交易思路量化為交易系統(tǒng),根據系統(tǒng)指標進行交易;
2.算法交易是利用電子平臺,輸入涉及算法的交易指令,以執(zhí)行預先設定好的交易策略,指令中包含變量,包括時間,價格,交易量等,廣泛應用于大宗交易;
3.程序化交易就是將投資者復雜的交易思路轉變?yōu)槟芎唵尾僮鞯闹悄芙灰紫到y(tǒng),便于投資者的嚴格執(zhí)行。
# 測試
Log("輸出參數", arrParams, "#FF0000")
while True:關于量化合約系統(tǒng)I59開發(fā)2OO7詳情3O69
nowTime = time.localtime(time.time())
nowHour = nowTime.tm_hour
nowMin = nowTime.tm_min
nowSec = nowTime.tm_sec
tbl = {
"type" : "table",
"title" : "msg",
"cols" : ["id", "begin", "end", "今天是否執(zhí)行過啟動", "今天是否執(zhí)行過停止"],
"rows" : []
}
for i in range(len(arrParams)):
tbl["rows"].append([arrParams[i]["id"], json.dumps(arrParams[i]["begin"]), json.dumps(arrParams[i]["end"]), arrParams[i]["isProcessOpenThisDay"], arrParams[i]["isProcessCloseThisDay"]])
if nowDay != nowTime.tm_mday:
arrParams[i]["isProcessOpenThisDay"] = False
arrParams[i]["isProcessCloseThisDay"] = False
if arrParams[i]["isProcessOpenThisDay"] == False:
if nowTime.tm_hour == arrParams[i]["begin"]["hour"] and nowTime.tm_min >= arrParams[i]["begin"]["min"] and nowTime.tm_sec >= arrParams[i]["begin"]["sec"]:
ret = api('RestartRobot', int(arrParams[i]["id"]))
arrParams[i]["isProcessOpenThisDay"] = True
Log("機器人ID:", arrParams[i]["id"], "執(zhí)行啟動,請登錄平臺檢查是否啟動成功", "擴展API返回值:", ret, strPush)
if arrParams[i]["isProcessCloseThisDay"] == False:
if nowTime.tm_hour == arrParams[i]["end"]["hour"] and nowTime.tm_min >= arrParams[i]["end"]["min"] and nowTime.tm_sec >= arrParams[i]["end"]["sec"]:
ret = api('StopRobot', int(arrParams[i]["id"]))
arrParams[i]["isProcessCloseThisDay"] = True
Log("機器人ID:", arrParams[i]["id"], "執(zhí)行停止,請登錄平臺檢查是否停止成功", "擴展API返回值:", ret, strPush)
if nowDay != nowTime.tm_mday:開發(fā)案例:yy625019
nowDay = nowTime.tm_mday
LogStatus(_D(), nowTime, "\n`" + json.dumps(tbl) + "`")
Sleep(500)