[MT4指标]Bykov写的多空指示指标
附图指标,Bykov写的多空指示指标
mt4指标类型:趋势指标
是否能用在mt4手机版上:否
是否含有未来函数:无
//+------------------------------------------------------------------+
//| BykovTrend_Sig.mq4
//| Ramdass - Conversion only
//+------------------------------------------------------------------+
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Magenta
#property indicator_color2 Aqua
//---- input parameters
extern int RISK=3;
extern int SSP=9;
extern int CountBars=500;
//---- buffers
double val1;
double val2;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,234);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,233);
SetIndexBuffer(0,val1);
SetIndexBuffer(1,val2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| BykovTrend_Sig |
//+------------------------------------------------------------------+
int start()
{
SetIndexDrawBegin(0,Bars-CountBars+SSP+1);
SetIndexDrawBegin(1,Bars-CountBars+SSP+1);
int i,counted_bars=IndicatorCounted();
int K;
bool uptrend,old;
double wpr;
K=33-RISK;
//----
if(Bars<=SSP+1) return(0);
//---- initial zero
if(counted_bars=SSP+1) i=CountBars-counted_bars-1;
while(i>=0)
{
wpr=iWPR(NULL,0,SSP,i);
val1=0.0; val2=0.0;
if (wpr<-100+K) uptrend=false;
if (wpr>-K) uptrend=true;
if ((! uptrend==old) && uptrend==true) {val2=Low-5*Point;}
if ((! uptrend==old) && uptrend==false) {val1=High+5*Point;}
old=uptrend;
i--;
}
return(0);
}
//+------------------------------------------------------------------+
发表于:2017-08-22 15:58只看该作者
3楼
谢谢分享
韬客社区www.talkfx.co
发表于:2017-09-18 06:24只看该作者
4楼
学习学习
发表于:2018-02-14 08:41只看该作者
5楼
KKKKKK
韬客社区www.talkfx.co
发表于:2018-02-26 07:27只看该作者
6楼
谢谢分享
韬客社区www.talkfx.co
发表于:2018-03-07 14:46只看该作者
7楼
谢谢楼主。
韬客社区www.talkfx.co
发表于:2018-03-11 09:18只看该作者
8楼
非常好的指标,非常好的方法,谢谢。 |
韬客社区www.talkfx.co