求ZIGZAG最近值和最近的两个拐点K线柱数(已解决)
EFD
|
8945 人阅读
|
28 人评论
|
2011-09-13
在论坛上找到ZIGZAG三个拐点的值,函数如下:
double ZigV(int VNum,int ExtDepth,int ExtDeviation,int ExtBackstep)
{
double p0,p1,p2,tmp;
for(int i=0;i0 && p2==0 && p1>0) p2=tmp;
if(tmp>0 && p1==0 && p0>0) p1=tmp;
if(tmp>0 && p0==0) p0=tmp;
if(p0>0 && p1>0 && p2>0) break;
}
if(VNum==0) return(p0);
if(VNum==1) return(p1);
if(VNum==2) return(p2);
}
求助三个拐点的k线柱值,把tmp改成i只得到一个数值,求指点 |
|
|
|
|