admin 发表于 2017-12-6 21:35:25

显示北京时间

#property indicator_chart_window
extern color TextColor = Black;
int init()
{
ObjectCreate( "北京时间", OBJ_LABEL, 0,0,0,0,0,0,0);
ObjectSet( "北京时间", OBJPROP_CORNER, 0);
ObjectSet( "北京时间", OBJPROP_XDISTANCE, 0);
ObjectSet( "北京时间", OBJPROP_YDISTANCE, 12);
ObjectSetText("北京时间", "", 12, "Arial", TextColor);
    return(0);
}
//----
int deinit()
{
    ObjectDelete("北京时间");
    return(0);
}
int start()
{
    ObjectSetText("北京时间", TimeToStr(TimeLocal(), TIME_DATE|TIME_MINUTES|TIME_SECONDS), 12, "Arial", TextColor );
    return(0);
}




cjl0718 发表于 2018-1-9 13:02:03

显示:不是专家,不能执行。

careerC 发表于 2018-3-10 23:09:41

谢谢楼主的分享

qwe11 发表于 2021-4-16 13:42:48

{:1_179:}

a84368702 发表于 2024-9-10 09:19:46

能正常使用呀
问下哪里是调整加载位置的,默认是左上角是吧
页: [1]
查看完整版本: 显示北京时间