[MT4指标]高低趋势指示点指标
主图指标
mt4指标类型:趋势指标
是否能用在mt4手机版上:否
是否含有未来函数:无
//+------------------------------------------------------------------+
//| Hi-Lo.mq4 |
//| |
//| Ramdass - Conversion only |
//+------------------------------------------------------------------+
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Lime
//---- input parameters
extern int Per=3;
extern int CountBars=300;
//---- buffers
double Up;
double Down;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,159);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,159);
SetIndexBuffer(0,Up);
SetIndexBuffer(1,Down);
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Hi-Lo |
//+------------------------------------------------------------------+
int start()
{
SetIndexDrawBegin(0,Bars-CountBars+Per);
SetIndexDrawBegin(1,Bars-CountBars+Per);
int i,counted_bars=IndicatorCounted();
bool Pr=false, PrevPr=false;
double val,val2;
//----
if(CountBars<=Per) return(0);
//---- initial zero
if(counted_bars<1)
{
for(i=1;i<=Per;i++) Up[CountBars-i]=0.0;
for(i=1;i<=Per;i++) Down[CountBars-i]=0.0;
}
//----
i=CountBars-Per-1;
// if(counted_bars>=CCIPeriod1) i=Bars-counted_bars-1;
while(i>=0)
{
val=iMA(NULL,0,Per,1,MODE_SMA,PRICE_HIGH,i);
val2=iMA(NULL,0,Per,1,MODE_SMA,PRICE_LOW,i);
if (Closeval && PrevPr==false) Pr=true;
PrevPr=Pr;
Up=0.0; Down=0.0;
if (Pr==false) Up = val+2*Point;
if (Pr==true) Down = val2-2*Point;
i--;
}
return(0);
}
//+------------------------------------------------------------------+
发表于:2016-09-19 19:40只看该作者
2楼
谢谢分享
韬客社区www.talkfx.co
发表于:2016-09-21 03:25只看该作者
4楼
谢谢分享
韬客社区www.talkfx.co
发表于:2016-09-21 03:25只看该作者
5楼
谢谢分享
韬客社区www.talkfx.co
发表于:2016-10-24 16:26只看该作者
6楼
有图么
发表于:2016-10-26 01:20只看该作者
7楼
謝謝分享
韬客社区www.talkfx.co
发表于:2016-12-07 11:19只看该作者
9楼
谢谢楼主分享
韬客社区www.talkfx.co
11楼
赶快看看
韬客社区www.talkfx.co
发表于:2016-12-17 03:18只看该作者
12楼
灌水赚通宝,谢谢分享!!
韬客社区www.talkfx.co
发表于:2016-12-24 12:04只看该作者
13楼
1
韬客社区www.talkfx.co
发表于:2017-08-08 06:34只看该作者
14楼
谢谢分享
韬客社区www.talkfx.co
发表于:2017-08-08 07:15只看该作者
15楼
多谢分享!
韬客社区www.talkfx.co