[MT4相关]日内波幅指标
日内波幅指标
显示日内的波动点数
//+------------------------------------------------------------------+
//| Daily Range.mq4 |
//| Copyright ? 2008, LEGRUPO |
//| http://www.legrupo.com |
//+------------------------------------------------------------------+
#property copyright "Copyright ? 2008, LEGRUPO"
#property link "http://www.legrupo.com"
#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Red
double BufferRange;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
// IndicatorBuffers(1);
SetIndexStyle(0, DRAW_ARROW, 0, 1);
SetIndexArrow(0, 172);
SetIndexBuffer(0,BufferRange);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
ObjectsDeleteAll();
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//----
if (counted_bars < 0) {
return(-1);
}
if (counted_bars > 0) {
counted_bars--;
}
int pos = Bars-counted_bars;
string PatternText[5000];
for(int j = 0; j < Bars; j++)
{
PatternText[j] = "pattern-" + j;
}
while (pos>=0) {
double bar_range = (High[pos] - Low[pos]);
ObjectCreate(PatternText[pos], OBJ_TEXT, 0, Time[pos], Low[pos]);
ObjectSet(PatternText[pos], OBJPROP_YDISTANCE, 200);
ObjectSetText(PatternText[pos], DoubleToStr(bar_range, Digits), 10, "Verdana", White);
BufferRange[pos] = bar_range;
pos--;
}
//----
return(0);
}
//+------------------------------------------------------------------+
BarRange.jpg

发表于:2015-06-03 17:07只看该作者
2楼
不能用啊 有波幅预警指标没啊???
韬客社区www.talkfx.co
发表于:2015-06-04 16:53只看该作者
3楼
好指标,赞一个
韬客社区www.talkfx.co
发表于:2017-10-05 11:10只看该作者
4楼
谢谢分享