[讨论]送大家一个很好用指标
本帖最后由 管理员No.5 于 2015-10-23 17:11 编辑
这指标只要是在1小时的图上可以看4小时的K线图,4小时图可以看日线K图
在原来主图可以看到四根更大一周期的K图,分享完毕,楼层回复谢谢就OK,我是雷锋!!!
指标源码:
//+------------------------------------------------------------------+
//| based on #MTF Candles.mq4 |
//| Copyright ?2007 , alxus
//| For Study |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2007 , alxus"
#property link "[email protected]"
//----
#property indicator_chart_window
//---- input parameters
extern int CandlesTF=0; //TimeFrame,by minutes。If 0 then the bigger TF will be set
extern color UpCandleColor=LightSeaGreen;
extern color DownCandleColor=LightPink;
extern int withHL = 2;
extern int withOC = 4;
extern int barnumbers = 4;
extern int pos = 4;
extern string TimeFrames = "M1;5,15,30,60H1;240H4;1440D1;10080W1;43200MN|0=currentTF";
double dif=14400;
int CandlesTFnow=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
void init()
{
barnumbers = barnumbers * 2 ;
DeleteObjects();
int period_cur=Period();
switch(period_cur)
{
case 1 : dif=60; break; //1m
case 5 : dif=300; break; //5m
case 15 : dif=900; break; //15m
case 30 : dif=1800; break; //30m
case 60 : dif=3600; break; //1H
case 240 : dif=14400; break; //4H
case 1440 : dif=86400; break; //day
case 10080 : dif=604800; break; //week
case 43200 : dif=2592000; break; //month
default : MathAbs(Time[1] - Time[2]);
}
CandlesTFnow=CandlesTF;
if(CandlesTF==0)
{
period_cur=Period();
switch(period_cur)
{
case 1 : CandlesTFnow=5; break; //1m
case 5 : CandlesTFnow=15; break; //5m
case 15 : CandlesTFnow=30; break; //15m
case 30 : CandlesTFnow=60; break; //30m
case 60 : CandlesTFnow=240; break; //1H
case 240 : CandlesTFnow=1440; break; //4H
case 1440 : CandlesTFnow=10080; break; //day
case 10080 : CandlesTFnow=43200; break; //week
case 43200 : CandlesTFnow=43200; break; //month
default : CandlesTFnow=1440;
}
}
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
void deinit()
{
DeleteObjects();
return(0);
}
void DeleteObjects()
{
int ix=0;
datetime dtStart=dif * barnumbers + Time[0];
for(int ii=0; iiQQ截图20151023150324.jpg
发表于:2015-10-23 08:28只看该作者
2楼
K线指标还是很有用
韬客社区www.talkfx.co
发表于:2015-10-23 08:44只看该作者
3楼
很不错,谢谢分享。
东风快递,全球送达,不许拒签,必须好评。
发表于:2015-10-23 09:17只看该作者
4楼
韬客社区www.talkfx.co
发表于:2015-10-24 04:27只看该作者
5楼
楼主大大啊,有现成的指标软件吗。。这种代码,不知道怎么弄啊
韬客社区www.talkfx.co
韬客社区www.talkfx.co
发表于:2015-12-02 16:10只看该作者
7楼
很不错,谢谢分享。
韬客社区www.talkfx.co
发表于:2015-12-02 16:47只看该作者
8楼
黄金分割法 发表于 2015-10-24 13:37
不能用,谢谢修改下
发表于:2016-01-08 03:06只看该作者
9楼
先感谢。在自己鼓捣下,看能不能弄出来指标。
10楼
好东西!
韬客社区www.talkfx.co
11楼
有手机版的吗?
韬客社区www.talkfx.co