मैं घरेलू वायदा के स्वतः स्टार्ट और बंद को नियंत्रित करने के लिए उपयोग किया जाता है, और शायद एक दिन के लिए यह सामान्य रूप से काम कर सकता है, लेकिन कभी-कभी निम्नलिखित समस्याएं होती हैं, क्या कारण है
Traceback (most recent call last): File "<string>", line 982, in init_ctx File "<string>", line 119, in <module> File "<string>", line 65, in main File "<string>", line 27, in api URLError: <urlopen error [Errno 104] Connection reset by peer>
कुछ कोड इस प्रकार हैंः if currentime (()>0.2100 and currentime (() <0.2359 and currentwday (()!=6 and currentwday (()!=0 and status==False:# गैर-सप्ताहांत हर दिन 8:55 से 3:01 तक रोबोट को चालू करें
status=True
LogStatus("0.2100--0.2359,Restart")
robotftrade=api('RestartRobot',RobotFTrade)
Log (("robotftrade निष्पादन प्रारंभ, api==",robotftrade)
swtradetrade=api('RestartRobot',swTrade)
लॉग (("swtradetrade निष्पादन आरंभ, api==",swtradetrade)
Sleep(10000)
if currentime ((() <0.0855 or currentwday (() == 6 or currentwday (() == 0 and status==True: # कम से कम 8:55 या शनिवार या रविवार रोबोट को रोकें
status=False
LogStatus("0.0000--0.900 or weekend,StopRobot")
robotftrade=api('StopRobot',RobotFTrade)
लॉग (("robotftrade निष्पादन बंद कर दिया, api==",robotftrade)
swtradetrade=api('StopRobot',swTrade)
लॉग (("swtradetrade निष्पादन बंद कर दिया,api==",swtradetrade)
Sleep(10000)
connection reset by peer 我也是出现这个问题 出现了策略就中断了呀 只能人工再去点击重启 这个要如何解决? 就是中断了能否自动再启动机器人???
- 1
