<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>指标之家—公式指标程序代码分享—公式指标网 - 飞狐</title>
    <link>http://www.tdxclub.com/forum.php?mod=forumdisplay&amp;fid=49</link>
    <description>Latest 20 threads of 飞狐</description>
    <copyright>Copyright(C) 指标之家—公式指标程序代码分享—公式指标网</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 13 Apr 2026 01:58:43 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.tdxclub.com/static/image/common/logo_88_31.gif</url>
      <title>指标之家—公式指标程序代码分享—公式指标网</title>
      <link>http://www.tdxclub.com/</link>
    </image>
    <item>
      <title>通达信马泰老师飞狐帝纳波利dmp指标转指标编辑独特见</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=152944</link>
      <description><![CDATA[以下是通达信马泰老师飞狐帝纳波利dmp指标转指标编辑独特见（无源码的请下载附件导入）

我不用飞狐，对飞狐的指标编写语法不熟悉，函数也不熟悉叫我在飞狐平台上写飞狐能用的指标我自认没这个本事。
&amp;nbsp;但是知识的道理是互通的，那么顺手借此附件内容写一 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Thu, 26 Aug 2021 13:35:10 +0000</pubDate>
    </item>
    <item>
      <title>屏幕自适应定点均线(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71389</link>
      <description><![CDATA[发一个屏幕自适应的定点均线指标，也就是所谓的点石成金。自动寻找屏幕显示K线的高点和低点。
x:=BARPOS-SYSPARAM(2);
nl:=LLVBARS(l,x);
nh:=hhVBARS(h,x);
加权支撑线:SUM(low*vol,nl+1)/SUM(VOL,nl+1),POINTDOT,COLORMAGENTA,LINETHICK2;
简易支撑线:ma(low,nl+1),CI ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:39 +0000</pubDate>
    </item>
    <item>
      <title>主力轨迹+庄家出现+XG(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71388</link>
      <description><![CDATA[V6R:=CLOSE/REF(CLOSE,3)&amp;gt;=1.06;
V7R:=BACKSET(V6R,3);
进场收益:IF((V7R AND COUNT(V7R,3)=1),10,0),LINETHICK1,ColorFFFF00;
{私募}
VAR2BA:=(EMA(CLOSE,26)-EMA(CLOSE,52))/MA(CLOSE,60)*100;
VAR3A:=EMA(VAR2BA,18);
VAR4A:=VAR3A&amp;lt;-1;
VAR5A:=VAR4A AND CROSS(VAR2B ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:38 +0000</pubDate>
    </item>
    <item>
      <title>安全投机(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71387</link>
      <description><![CDATA[{安全投机}
DRAWTEXTEX(c,1,5,5,\'所属板块:\' + BLKNAME),ALIGN4,colorred;
DD:=FINANCE( 1);
SS:=FINANCE( 7);
BL:=SS/DD*100;
GG:=FINANCE(33);
TH:=DYNAINFO(39);
JZ:=FINANCE(34);
DRAWTEXTEX(c,1,5,55,\'总股本:\'+NUMTOSTR(DD,0)+\'万股\' +\'  流通A股:\'
+NUMTOSTR(SS, ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:38 +0000</pubDate>
    </item>
    <item>
      <title>共振买卖(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71386</link>
      <description><![CDATA[重心:=(C+0.618*REF(C,1)+0.382*REF(C,2)+0.236*REF(C,3)+0.146*REF(C,4))/2.382,COLORYELLOW,LINETHICK1;
GAO:=HHV(C,60)-LLV(C,60);
RSI:=SMA(MAX(重心-REF(重心,1),0),5,1)/SMA(ABS(重心-REF(重心,1)),5,1);
指导线:重心+GAO*(RSI-0.5),COLORMAGENTA,LINETHICK1;
STI ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:37 +0000</pubDate>
    </item>
    <item>
      <title>江恩轮中轮（新画法）(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71385</link>
      <description><![CDATA[{江恩轮中轮}
a1:=前M个波谷位置(2,0.1,1);
a2:=前M个波峰位置(1,0.1,1);
光标位置:=系统参数(1);
cldis:=a1[系统参数(1)];
chdis:=a2[系统参数(1)];
tcl:=光标位置-cldis;
tch:=光标位置-chdis;
K1:=IF(tcl&amp;gt;tch,tcl,tch);
PH:=H;
PL:=L;
P1:=IF(tcl&amp;gt;=tch,PL[tcl+0],PH[ ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:37 +0000</pubDate>
    </item>
    <item>
      <title>新版KDJ飞升马(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71384</link>
      <description><![CDATA[{KDJ飞升马}
DRAWGBK((CLOSE &amp;gt; 0),COLORRGB(0,0,30),COLORRGB(0,130,100),1);
80,coloryellow;
20,colorred;
强弱分水岭:50,POINTDOT,colorgreen;
0,colorred,linethick0; 100,colorgreen,linethick1;
长j89:&amp;quot;kdj.j&amp;quot;(89,3,3),COLORffff00,linethick2;
中j27:&amp;quot;kdj.j&amp;q]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:36 +0000</pubDate>
    </item>
    <item>
      <title>七剑下天山(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71383</link>
      <description><![CDATA[e1:=BARSCOUNT(c);
ah:=hhv(h,200);
al:=llv(l,200);
b0:=(ah-al)/40;
kb1:=h+b0;
kb2:=l-b0;
stickline((e1+0)/34=FLOOR((e1+0)/34),kb2,kb2-3*b0,2,0),COLOryellow,LINETHICK3;
drawtext((e1+0)/34=FLOOR((e1+0)/34),kb2-2*b0,\'时间窗\'),COLORwhite;
STICKLINE((OPEN  ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:36 +0000</pubDate>
    </item>
    <item>
      <title>OSC (艾略特震荡器)(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71382</link>
      <description><![CDATA[Var1:=REF(CLOSE,1);
HSL:=VOL/CAPITAL*100;
ZDF:=(HHV(H,1)-LLV(L,1))/CLOSE;
Var2:=HSL/ZDF;
Var3:=(CLOSE-Var1)*Var2;
Var4:=SUM(Var3,0);
Var5:=SMA(Var4,3,1);
Var6:=SMA(Var4,5,1);
OSC: Var5-Var6, COLORSTICK,linethick3;
OSCMA: MA(OSC,4),linethick2;
VD: SUM ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:35 +0000</pubDate>
    </item>
    <item>
      <title>买入安全区远离危险区(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71381</link>
      <description><![CDATA[VAR1:=LLV(LOW,37);
VAR2:=HHV(HIGH,21);
VAR3:=EMA((CLOSE-VAR1)/(VAR2-VAR1)*100,20)*0.998;
100,STICK,LINETHICK7, COLORFFCC33;
90,,  COLORred;
95,,  COLORyellow;
80, STICK,LINETHICK7, COLORFF9933;
50,STICK,LINETHICK7, COLORBLUE;
20,STICK,LINETHICK7,COLO ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:34 +0000</pubDate>
    </item>
    <item>
      <title>熊市好用的选股(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71380</link>
      <description><![CDATA[急速超跌:=(C-MA(C,34))/MA(C,34)*100&amp;lt;-14;{34日乖离率}
收阳:=(h-l)/l&amp;gt;0.07{当天振幅大于7%}
and (c-o)/o&amp;gt;0.07{当天的K线实体长度大于7%}
and C/ref(C,1)&amp;gt;1.05{当日涨幅超过5%};
CDSY:=急速超跌 and 当日收阳 ;
枯木逢春:=CDSY,ColorFF00FF;
STICKLINE(CDSY,90,100,8,0 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:34 +0000</pubDate>
    </item>
    <item>
      <title>获利盘(飞狐)</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=71379</link>
      <description><![CDATA[VAR1WINNER(5,CLOSE)*100,COLORRED;
VAR2WINNER(10,CLOSE)*100,COLORYELLOW;
VAR3WINNER(20,CLOSE)*100,Color0080FF;
VAR4WINNER(30,CLOSE)*100,ColorFF8000;
VAR5WINNER(60,CLOSE)*100,COLORGREEN;
X:=REF((VAR1+VAR2+VAR3+VAR4+VAR5)/5,1);
五日:VAR1,STICK,LINETHICK ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Sat, 21 Aug 2021 04:52:33 +0000</pubDate>
    </item>
    <item>
      <title>绝代双娇（副图，源码，通达信，飞狐，贴图）</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=99745</link>
      <description><![CDATA[以下是绝代双娇（副图，源码，通达信，飞狐，贴图）（无源码的请下载附件导入）

&amp;nbsp;
此指标为变异后的MACD与CCI的组合，SIF，SEA为大周期二线，DIF，DEA为较小周期的MACD二线，大周期判断中长线，小周期与CCI结合判断中短线。
&amp;nbsp;变异的内容主要在参数。下面贴图 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Fri, 20 Aug 2021 23:07:09 +0000</pubDate>
    </item>
    <item>
      <title>通达信分流资金升级版副图源码贴图说明飞狐通用</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=95571</link>
      <description><![CDATA[以下是通达信分流资金升级版副图源码贴图说明飞狐通用（无源码的请下载附件导入）

在发出分流资金后再次加料得目前版本，后来贴图后有同学要加料后的版本，今天在这里发出，有兴趣的朋友可以下载。此版本通达信和飞狐均可用，下面贴图为飞狐效果图，如果在通达信上通不 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Fri, 20 Aug 2021 18:01:49 +0000</pubDate>
    </item>
    <item>
      <title>通达信集体共振副图源码贴图飞狐通用</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=95561</link>
      <description><![CDATA[以下是通达信集体共振副图源码贴图飞狐通用（无源码的请下载附件导入）

这个指标原来是大智慧指标，我将它改为通达信和飞狐指标和大家共享。出现底背离准备进场，集体出现顶背离准备离场。
&amp;nbsp;通达信源码，
&amp;nbsp;参数：n1 (6) n2 (12) n3 (24 )
&amp;nbsp;RSV:=(CLOSE- ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Fri, 20 Aug 2021 18:00:49 +0000</pubDate>
    </item>
    <item>
      <title>通达信分流资金（升级版）副图源码飞狐</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=90560</link>
      <description><![CDATA[以下是通达信分流资金（升级版）副图源码飞狐（无源码的请下载附件导入）

STICKLINE(C&amp;gt;0,80,80,10,0),COLORAAAA00;
&amp;nbsp;STICKLINE(C&amp;gt;0,20,20,10,0),COLOR006010;
&amp;nbsp;STICKLINE(C&amp;gt;0,50,50,10,0),colorFF9F99;
&amp;nbsp;STICKLINE(C&amp;gt;0,110,110,10,0),colorFF9F99;
YC:= ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Fri, 20 Aug 2021 06:17:44 +0000</pubDate>
    </item>
    <item>
      <title>飞狐VIP资金流向转成通达信的公式</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=80310</link>
      <description><![CDATA[以下是飞狐VIP资金流向转成通达信的公式（无源码的请下载附件导入）

飞狐VIP资金流向转成通达信的公式
不是L2的收费用户也可以用。5分钟、15分钟周期也可以看，比L2的范围广。
这个估计统计的是总资金量，主力+大户+散户，任意周期可以用，感觉比DDX+sup收费的还好用。 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Thu, 19 Aug 2021 10:56:31 +0000</pubDate>
    </item>
    <item>
      <title>通达信多空预警副图原飞狐指标公式</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=78637</link>
      <description><![CDATA[以下是通达信多空预警副图原飞狐指标公式（无源码的请下载附件导入）

CHECK1:=-1;

VAR1:=IF(CHECK1&amp;lt;0,(HIGH+LOW+CLOSE)/3,0);
VAR2:=IF(CHECK1&amp;lt;0,(VAR1-MA(VAR1,14))/(0.015*AVEDEV(VAR1,14)),0);
VAR3:=IF(CHECK1&amp;lt;0,(VAR1-MA(VAR1,70))/(0.015*AVEDEV(VAR1,70)),0);
 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Thu, 19 Aug 2021 07:52:05 +0000</pubDate>
    </item>
    <item>
      <title>通达信与飞狐函数 不同函数的替代</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=78546</link>
      <description><![CDATA[以下是通达信与飞狐函数 不同函数的替代（无源码的请下载附件导入）

通达信与飞狐函数 替代
1. DRAWNULL-----通达信：
DRAWNULL 无效数
&amp;nbsp;返回无效数。
&amp;nbsp;用法： DRAWNULL
例如：　IF(CLOSE&amp;gt;REF(CLOSE，1)，CLOSE，DRAWNULL)　表示下跌时分析图上不画线，反之 ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Thu, 19 Aug 2021 07:44:31 +0000</pubDate>
    </item>
    <item>
      <title>通达信macd美如画(改写自王照华的飞狐源码) 多周期共振 副图</title>
      <link>http://www.tdxclub.com/forum.php?mod=viewthread&amp;tid=77451</link>
      <description><![CDATA[以下是通达信macd美如画(改写自王照华的飞狐源码) 多周期共振 副图（无源码的请下载附件导入）

DIFF1:= EMA(C,3) - EMA(C,13);
&amp;nbsp;DEA1 := EMA(DIFF1,9);
&amp;nbsp;MACD1:= 2*(DIFF1-DEA1)*10;
&amp;nbsp;DIFF2:= EMA(C,5) - EMA(C,26);
&amp;nbsp;DEA2 := EMA(DIFF2,9);
&amp;nbsp ...]]></description>
      <category>飞狐</category>
      <author>ihzx</author>
      <pubDate>Thu, 19 Aug 2021 06:19:32 +0000</pubDate>
    </item>
  </channel>
</rss>