前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >NFT数字藏品系统开发源码搭建案例展示

NFT数字藏品系统开发源码搭建案例展示

原创
作者头像
系统_I8O28578624
发布2023-02-23 11:32:33
4670
发布2023-02-23 11:32:33
举报
文章被收录于专栏:YYDSYYDS

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.

代码语言:javascript
复制
Log("输出参数", arrParams, "#FF0000")  

while True:
    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", "今天是否执行过启动", "今天是否执行过停止"],
        "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"], "执行启动,请登录平台检查是否启动成功", "扩展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"], "执行停止,请登录平台检查是否停止成功", "扩展API返回值:", ret, strPush)
    
    if nowDay != nowTime.tm_mday:
        nowDay = nowTime.tm_mday

    LogStatus(_D(), nowTime, "\n`" + json.dumps(tbl) + "`")
    Sleep(500)

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档