MetaTrader4 中的 MT4 基于时间的入场信号
有谁有关于如何在 Metatrader 4 中生成基于一天中时间的入场信号的示例代码吗?例如,在每天的特定小时和分钟
Does anyone have any example code for how to generate a time of day based entry signal in Metatrader 4? e.g. at a particular hour and minute of each day
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我一直在研究这样的功能。它必须进行大量定制——我正在努力制作一个更通用的版本,它会变得又大又乏味,需要它自己的
include
文件。但能够在不更改代码的情况下将其粘贴在不同的图表上是值得的。这基本上将是一个大案例陈述,其中我已经根据每个单独的时间范围定制了内容。你一直在做什么?感谢您对时间和外汇的兴趣!
I've been working on just such a function. It has to be customized a lot—I'm working on making a more general version that;s going to be so big and tedious it'll need its own
include
file. But it'll be worth it to be able to stick it on different charts without changing the code. It will basically be one big case statement with what I have here customized already to each individual timeframe.What have you been working on? Thanks for your interest in time and forex!
TimeLocal()
为您提供本地计算机(终端客户端)自 1970 年 1 月 1 日午夜以来的秒数。TimeCurrent()
为您提供自 1970 年 1 月 1 日午夜以来您的经纪商计算机(服务器)的秒数。您可以将其中任何一个转换为字符串,如下所示:
您还可以获取日期数字的各个元素,如下所示:
MQL4 在线程序员指南可以在 这里。
希望这有帮助。
干杯,
马克
TimeLocal()
gives you the number of seconds since midnight Jan 1st 1970 of your local computer (Terminal Client).TimeCurrent()
gives you the number of seconds since midnight Jan 1st 1970 of your Broker's computer (Server).You can convert either of these into a string like so:
You can also get individual elements of the date number like so:
The MQL4 online programmers guide can be found here.
Hope this helps.
Cheers,
Mark