飞狐dmi副图指标
飞狐强势整理副图指标源码
原理解析:
N赋值:5
M赋值:2
A1赋值:(收盘价-1日前的收盘价)/1日前的收盘价的绝对值=1日前的收盘价 AND 最低价1日前的开盘价 AND (1日前的收盘价/1日前的开盘价)>=1+M/100 AND 1日前的收盘价/2日前的收盘价>=1.04 AND 1日前的收盘价>2日前的收盘价 AND 1日前的收盘价>3日前的收盘价 AND 1日前的收盘价>4日前的收盘价 AND 1日前的收盘价>5日前的收盘价 AND 1日前的收盘价>6日前的收盘价 AND 1日前的收盘价>7日前的收盘价 AND 1日前的收盘价>8日前的收盘价 AND 1日前的收盘价>9日前的收盘价
A3赋值:如果A1ANDA2,返回3,否则返回0
A4赋值:上次A1ANDA2距今天数
A8赋值:A4+1日前的收盘价
A5赋值:(收盘价-1日前的收盘价)/1日前的收盘价的绝对值=A8 AND 收盘价/A8=ref(c,1) and lref(o,1) and (ref(c,1)/ref(o,1))>=1+m/100
and ref(c,1)/ref(c,2)>=1.04 and ref(c,1)>ref(c,2)
and ref(c,1)>ref(c,3) and ref(c,1)>ref(c,4)
and ref(c,1)>ref(c,5) and ref(c,1)>ref(c,6)
and ref(c,1)>ref(c,7) and ref(c,1)>ref(c,8)
and ref(c,1)>ref(c,9);
a3:=if(a1 and a2,3,0);
a4:=barslast(a1 and a2);
a8:=ref(c,a4+1);
a5:=abs((c-ref(c,1))/ref(c,1))=a8 and c/a8<=(1+n/100));
a4=count(a5 and a6,a4) ;