老王吧 发表于 2016-5-19 15:55:44

Probability Density Function (PDF)



//+------------------------------------------------------------------+
//|                                                          PDF.mq4 |
//|                         Copyright ?2006, Luis Guilherme Damiani |
//|                                    http://www.damianifx.com.br |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2006, Luis Guilherme Damiani"
#property link      "http://www.damianifx.com.br"
//----
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 MediumSeaGreen
//----
double pdf[];
//---- input parameters
extern int       ch_size=20;
//extern int limit_value=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
{
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0,pdf);
//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                     |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
{
//----
//---- indicators
   int counter;
   int totBars=Bars;
   int value=0;
   int    counted_bars=IndicatorCounted();
   if(counted_bars<0) return(-1);
   ArrayInitialize(counter,0);
   for(int i =Bars-1-ch_size;i>=0;i--)
   {
      value=MathCeil(iStochastic(NULL,0,ch_size, 2,1,MODE_SMA,0,MODE_MAIN,i));
      counter=counter+1;
      //if(counter>limit_value && limit_value!=0)counter=limit_value;
   }
   pdf=0;
   for(i=100;i>0;i--)
   {
      pdf=counter;
      // Print(pdf);
   }
//----
   return(0);
}
//+------------------------------------------------------------------+



rewfdwrree 发表于 2020-6-7 15:41:58

难得一见的好帖

可否一直陪我 发表于 2020-6-14 21:50:16

学习了,不错,讲的太有道理了

jsi544xb 发表于 2020-6-23 16:59:15

难得一见的好帖

qiofcacc369 发表于 2020-7-11 14:01:53

学习了,不错

日本人 发表于 2020-8-8 10:16:22

谢谢楼主分享

天鹰 发表于 2020-8-28 11:49:29

谢谢楼主分享

yuntian 发表于 2020-11-12 19:30:09

{:1_181:}

欢喜楊陽 发表于 2021-7-18 15:22:57

谢谢

我的乐乐 发表于 2021-7-24 16:18:39

支持下
页: [1] 2
查看完整版本: Probability Density Function (PDF)