客服热线:18391752892

自定义数组求周期最大值【源码】

   日期:2019-01-12     浏览:313    
马上注册,结交更多好友,下载更多资源

您需要 登录 才可以下载或查看,没有帐号?注册 //+------------------------------------------------------------------+
//| 3均线.mq4 |
//| Copyright ?2007, 520FX Corp. |
//| http://www.520fx.com |
//+------------------------------------------------------------------+
#property copyright Copyright ?2007, 520FX Corp.
#property link http://www.520fx.com
#property indicator_separate_window
#property indicator_buffers 4
#property indicator_color1 Yellow
#property indicator_color2 Green
#property indicator_color3 Red
#property indicator_color4 Red
extern int MaPeriod=5;
extern int 最高值周期=13;
double Ma1[],Ma2[],MaDiff[],MaDiffHigh[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorBuffers(4);
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_NONE);
SetIndexStyle(2,DRAW_NONE);
SetIndexStyle(3,DRAW_NONE);
SetIndexBuffer(0,MaDiffHigh);
SetIndexBuffer(1,Ma1);
SetIndexBuffer(2,Ma2);
SetIndexBuffer(3,MaDiff);
return(0);
}
int start()
{
int i;
int limit;
int counted_bars=IndicatorCounted();
if(counted_bars0) counted_bars--;
limit=Bars-counted_bars;
for (i=limit-1;i i--)
{
Ma1=iMA(NULL,0,MaPeriod,0,MODE_EMA,PRICE_HIGH,i);
Ma2=iMA(NULL,0,MaPeriod,0,MODE_EMA,PRICE_LOW,i);
MaDiff=Ma1-Ma2;
}
for (i=limit-1;i i--)
{
MaDiffHigh=MaDiff[ArrayMaximum(MaDiff,最高值周期,i)];
}
return(0);
}
//------------------------------------------------------------

外汇交易有很大的风险性,本站所有资源均来自网络,请选择使用,如若出现亏损,本站不承担任何责任!


特别提示:本信息由相关企业自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


0相关评论
相关行情快递
推荐行情快递
点击排行