文件名称:EJ_CandleTime
介绍说明--下载内容均来自于网络,请自行研究使用
蜡烛图剩余时间,直接在MT4平台显示出来。非常方便外汇交易者注意收盘时间。
储存路径:MT4\MQL4\Indicators-//+ +
//| b-clock.mq4 |
//| Core time code by Nick Bilak |
//| http://metatrader.50webs.com/ beluck[at]gmail.com |
//| modified by adoleh2000 and dwt5 |
//+ +
#property copyright Copyright ?2005, Nick Bilak
#property link http://metatrader.50webs.com/
#property indicator_chart_window
// buffers
double s1[]
//+ +
//| Custom indicator initialization function |
//+ +
int init()
{
}
return(0)
//+ +
//| Custom indicator iteration function |
//+ +
int start()
{
double i
int m,s,k
m=Time[0]+Period()*60-CurTime()
i=m/60.0
s=m
储存路径:MT4\MQL4\Indicators-//+ +
//| b-clock.mq4 |
//| Core time code by Nick Bilak |
//| http://metatrader.50webs.com/ beluck[at]gmail.com |
//| modified by adoleh2000 and dwt5 |
//+ +
#property copyright Copyright ?2005, Nick Bilak
#property link http://metatrader.50webs.com/
#property indicator_chart_window
// buffers
double s1[]
//+ +
//| Custom indicator initialization function |
//+ +
int init()
{
}
return(0)
//+ +
//| Custom indicator iteration function |
//+ +
int start()
{
double i
int m,s,k
m=Time[0]+Period()*60-CurTime()
i=m/60.0
s=m
(系统自动生成,下载前可以参看下载内容)
下载文件列表
【剩余蜡烛时间】EJ_CandleTime.mq4