龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-2-21 15:43

MULTICHARTS监控图表K是否实时跳动,认证是否中断的指标/信号

[code]
input:lostt(60),                //图表K线等待lostt时间(秒)后即报警,默认参数设置60s
      alert.message("");        //警报信息

condition1=(currenttime>0930 and currenttime<1130) or (currenttime>1300 and currenttime<1500;                //交易时段
if condition1 then begin
            RecalcLastBarAfter(lostt);
            if LastBarOnChart_s and getappinfo(aiCalcReason)= CalcReason_timer  then begin
                alert(alert.message);
            end;
        end;
[/code]

可根据具体合约交易时段修改condition1,如此示例以股指为例。(PS:商品请注意过滤早盘休盘时段,信号请开启Bar内交易)。同时可以实现中文报警,修改外部参数时使用中文即可,如图

[img]http://p.algo2.net/2022/0221/d7cb9a8b13db9.png[/img]

[img]http://p.algo2.net/2022/0221/31b876d90004f.png[/img]

使用效果如图:

[img]http://p.algo2.net/2022/0221/5071d3e1c1a9c.png[/img]

综合大部分认证中断时网络依旧处于可用状态,还可以勾选邮件警报功能而发送邮件警报,邮件警报设定参考:[url]http://www.qhlt.cn/forum-844-1.html[/url];

页: [1]