[MT4指标]HamyarTrend_Candles多空变色k线指标
主图指标
mt4指标类型:趋势指标
是否能用在mt4手机版上:否
是否含有未来函数:无
HamyarTrend_Candles多空变色k线指标,利用指标指示出未来趋势 并使用变色k线体现出来
//| Hamyar.mq4 |
//| Copyright ? 2010, Farshad |
//| http://www.vizhish.com |
//+------------------------------------------------------------------+
#property copyright "Copyright ? 2010, Farshad Saremifar"
#property link "[email protected]"
//---- indicator settings
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 RoyalBlue//wicks
#property indicator_color2 Red//wicks
#property indicator_color3 RoyalBlue
#property indicator_color4 Red
#property indicator_width1 1
#property indicator_width2 1
#property indicator_width3 3
#property indicator_width4 3
//MODE_SMA 0 Simple moving average,
//MODE_EMA 1 Exponential moving average,
//MODE_SMMA 2 Smoothed moving average,
//MODE_LWMA 3 Linear weighted moving average.
//PRICE_CLOSE 0 Close price.
//PRICE_OPEN 1 Open price.
//PRICE_HIGH 2 High price.
//PRICE_LOW 3 Low price.
//PRICE_MEDIAN 4 Median price, (high+low)/2.
//PRICE_TYPICAL 5 Typical price, (high+low+close)/3.
//PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4.
//---- indicator parameters
extern int LoopBack = 25;
extern string Setting="Candle Display Settings ";
int BarWidth = 1;
extern int CandleWidth = 3;
//---- indicator buffers
double Bar1,
Bar2,
Candle1,
Candle2,
Candle3,
Candle4,
Candle5,
Candle6;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorShortName("HamyarTrend Candles");
IndicatorBuffers(4);
SetIndexBuffer(0,Bar1);
SetIndexBuffer(1,Bar2);
SetIndexBuffer(2,Candle1);
SetIndexBuffer(3,Candle2);
SetIndexStyle(0,DRAW_HISTOGRAM,0,BarWidth);
SetIndexStyle(1,DRAW_HISTOGRAM,0,BarWidth);
SetIndexStyle(2,DRAW_HISTOGRAM,0,CandleWidth);
SetIndexStyle(3,DRAW_HISTOGRAM,0,CandleWidth);
return(0);
}
int deinit()
{
//----
return(0);
}
void SetCandleColor(int col, int i)
{
double high,low,bodyHigh,bodyLow;
bodyHigh = MathMax(Open,Close);
bodyLow = MathMin(Open,Close);
high = High;
low = Low;
Bar1 = low; Candle1 = bodyLow;
Bar2 = low; Candle2 = bodyLow;
Bar1 = low; Candle3 = bodyLow;
Bar2 = low; Candle4 = bodyLow;
Bar1 = low; Candle5 = bodyLow;
Bar2 = low; Candle6 = bodyLow;
switch(col)
{
case 1: Bar1 = high; Candle1 = bodyHigh; break;
case 2: Bar2 = high; Candle2 = bodyHigh; break;
case 3: Bar1 = high; Candle3 = bodyHigh; break;
case 4: Bar2 = high; Candle4 = bodyHigh; break;
case 5: Bar1 = high; Candle5 = bodyHigh; break;
case 6: Bar2 = high; Candle6 = bodyHigh; break;
}
}
int start()
{
for(int i = MathMax(Bars-1-IndicatorCounted(),1); i>=0; i--)
{
if(iCustom(NULL,0,"HamyarTrend",LoopBack,0,i)==10) SetCandleColor(1,i);
else if(iCustom(NULL,0,"HamyarTrend",LoopBack,1,i)==10) SetCandleColor(2,i);
}
return(0);
}HamyarTrend_Candles.jpg
发表于:2014-04-29 00:59只看该作者
2楼
非常好
韬客社区www.talkfx.co
发表于:2017-08-11 10:07只看该作者
4楼
阅尽天下指标
韬客社区www.talkfx.co
发表于:2017-08-16 01:38只看该作者
5楼
阅尽天下指标
韬客社区www.talkfx.co
发表于:2017-08-18 18:29只看该作者
6楼
谢谢分享
韬客社区www.talkfx.co
发表于:2017-09-07 00:43只看该作者
7楼
几十个模版指标 总有一个适合你
韬客社区www.talkfx.co
发表于:2018-07-16 16:31只看该作者
8楼
66666666666666666666666666666666666
韬客社区www.talkfx.co