通达信公式保存在t0002文件夹 PriCS.dat,PriGS.dat,PriText.dat 这几个是公式相关数据如果要备份就保存它们
USERDATA下的文件:AUTOBLK.CFG:自动板块设定SELF.DTA 存放用户自编的公式
BLOCK文件夹下的文件
:*.IBK 板块指数定义*.BLK 板块定义*.EBK 条件选股结果
这个不是通达信的文件,是大智慧的文件,他把两个软件的目录关系混在一起了,
不信可以看看大智慧的目录结构,SELF.DTA 这个明显就是大智慧的自编公式文件
通达信的自选股就是这个文件\T0002\blocknew/zxg.blk
扩展资料:
通信达指标:步步高选股赢在龙头:=(L+H+C*4)/6
趋势轨:=EMA(赢在龙头,12)
赢在:=(趋势轨-REF(趋势轨,1))/REF(趋势轨,1)*100
趋势拐点:=CROSS(赢在,0)
G:=BARSLAST(CROSS(赢在,0))+1
止损线A:=REF(L,G)
换手:=V*100/CAPITAL
主力:=MA(换手,4)
大户:=MA(换手,9)
中户:=MA(换手,17)
散户:=MA(换手,34)
均量:=(主力+大户+中户+散户)/4
机构意愿:=(主力-均量)
步步高:趋势拐点 AND 机构意愿 <0 AND 止损线A <REF(止损线A,1)
<html><head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/htmlCHARSET=gb2312">
<script language="JavaScript1.2">
<!--
document.onmouseover = doDocumentOnMouseOver
document.onmouseout = doDocumentOnMouseOut
function doDocumentOnMouseOver() {
var eSrc = window.event.srcElement
if (eSrc.className == "item") {
window.event.srcElement.className = "highlight"// change class
}
}
function doDocumentOnMouseOut() {
var eSrc = window.event.srcElement
if (eSrc.className == "highlight") {
window.event.srcElement.className = "item"// change class
}
}
var bV=parseInt(navigator.appVersion)
NS4=(document.layers) ? true : false
IE4=((document.all)&&(bV>=4))?true:false
ver4 = (NS4 || IE4) ? true : false
function expandIt(){return}
function expandAll(){return}
//-->
</script>
<script language="JavaScript1.2">
<!--
isExpanded = false
function getIndex(el) {
ind = null
for (i=0i<document.layers.lengthi++) {
whichEl = document.layers[i]
if (whichEl.id == el) {
ind = i
break
}
}
return ind
}
function arrange() {
nextY = document.layers[firstInd].pageY + document.layers[firstInd].document.height
for (i=firstInd+1i<document.layers.lengthi++) {
whichEl = document.layers[i]
if (whichEl.visibility != "hide") {
whichEl.pageY = nextY
nextY += whichEl.document.height
}
}
}
function initIt(){
if (NS4) {
for (i=0i<document.layers.lengthi++) {
whichEl = document.layers[i]
if (whichEl.id.indexOf("Child") != -1) whichEl.visibility = "hide"
}
arrange()
}
else {
tempColl = document.all.tags("DIV")
for (i=0i<tempColl.lengthi++) {
if (tempColl(i).className == "child") tempColl(i).style.display = "none"
}
}
}
function expandIt(el) {
if (!ver4) return
if (IE4) {expandIE(el)} else {expandNS(el)}
}
function expandIE(el) {
whichEl = eval(el + "Child")
whichIm = event.srcElement
if (whichEl.style.display == "none") {
whichEl.style.display = "block"
whichIm.src = "hdopen.gif"
}
else {
whichEl.style.display = "none"
whichIm.src = "hdclose.gif"
}
window.event.cancelBubble = true
}
function expandNS(el) {
whichEl = eval("document." + el + "Child")
whichIm = eval("document." + el + "Parent.document.images['imEx']")
if (whichEl.visibility == "hide") {
whichEl.visibility = "show"
whichIm.src = "hdopen.gif"
}
else {
whichEl.visibility = "hide"
whichIm.src = "hdclose.gif"
}
arrange()
}
function showAll() {
for (i=firstIndi<document.layers.lengthi++) {
whichEl = document.layers[i]
whichEl.visibility = "show"
}
}
function expandAll(isBot) {
newSrc = (isExpanded) ? "hdopen.gif" : "hdclose.gif"
if (NS4) {
document.images["imEx"].src = newSrc
for (i=firstIndi<document.layers.lengthi++) {
whichEl = document.layers[i]
if (whichEl.id.indexOf("Parent") != -1) {
whichEl.document.images["imEx"].src = newSrc
}
if (whichEl.id.indexOf("Child") != -1) {
whichEl.visibility = (isExpanded) ? "hide" : "show"
}
}
arrange()
if (isBot &&isExpanded) scrollTo(0,document.layers[firstInd].pageY)
}
else {
divColl = document.all.tags("DIV")
for (i=0i<divColl.lengthi++) {
if (divColl(i).className == "child") {
divColl(i).style.display = (isExpanded) ? "none" : "block"
}
}
imColl = document.images.item("imEx")
for (i=0i<imColl.lengthi++) {
imColl(i).src = newSrc
}
}
isExpanded = !isExpanded
}
with (document) {
write("<STYLE TYPE='text/css'>")
if (NS4) {
write(".parent {font-size:9ptcolor:blacktext-decoration:nonemargin-top: 5pxmargin-bottom: 5pxposition:absolutevisibility:hiddencolor: black}")
write(".child {text-decoration:nonefont-size:9pt position:absolutevisibility:hidden}")
write(".item { color: darkbluetext-decoration:none}")
write(".regular {position:absolutevisibility:hidden}")
write("DIV { color:black}")
}
else {
write(".child {font:9ptdisplay:none}")
write(".parent {font:9pt Timescolor:blackfont-weight:boldtext-decoration:nonemargin-top: 5pxmargin-bottom: 5pxcolor: black}")
write(".item { color: darkbluetext-decoration:none}")
write(".highlight { color: red}")
write(".heada { font: 9pt}")
write("DIV { color:black}")
}
write("</STYLE>")
}
onload = initIt
//-->
</script>
<base target="main">
<style>
<!--
A:link {text-decoration: nonecolor: 0000ff}
A:visited {text-decoration: nonecolor: 000088}
A:active {text-decoration: none}
A:hover {text-decoration: underlinecolor: ff0000}
-->
</style>
</head>
<body bgcolor="#ffffff">
<p><img src="hdtop3.gif" width="33" height="16"><a class="item" color="#FF8000">网络天地</a></p>
<div id="elDrawParent" class="parent"><a href="#" class="item" onclick="expandIt('elDraw')return false"><img name="imEx" src="hdclose.gif" border="0" width="33" height="14">LINUX</a></div>
<div id="elDrawChild" class="child"><img src="blank2.gif" width="49" height="14"><a class="item" target="main" href="linux/ref.html">参考手册</a></div><div id="elTwoParent" class="parent"><a class="item" href="#"
onclick="expandIt('elTwo')return false">
<img name="imEx" src="hdclose.gif" border="0" width="33" height="14">FreeBSD</a>
</div><div id="elTwoChild" class="child">
<img src="blank2.gif" width="49" height="14"><a class="item" target="main"
href="freebsd/ref.html">参考手册</a><br>
</div><div id="elThreeParent" class="parent"><a class="item" href="#"
onclick="expandIt('elThree')return false">
<img name="imEx" src="hdclose.gif" border="0" width="33" height="14">数据库</a>
</div><div id="elThreeChild" class="child">
<img src="blank2.gif" width="49" height="14"><a class="item" target="main"
href="database/mysql/index.html">MYSQL</a><br>
<img src="blank2.gif" width="49" height="14"><a class="item" target="main"
href="database/ref.html">其他</a><br>
</div>
<div id="elFour1Parent" class="parent"><a class="item" href="#"
onclick="expandIt('elFour1')return false">
<img name="imEx" src="hdclose.gif" border="0" width="33" height="14">编程</a>
</div><div id="elFour1Child" class="child">
<img src="blank2.gif" width="49" height="14"><a class="item" target="main"
href="program/ref.html" >参考手册</a><br>
</div>
<div id="elTwo2Parent" class="parent"><a class="item" href="#"
onclick="expandIt('elTwo2')return false">
<img name="imEx" src="hdclose.gif" border="0" width="33" height="14">JAVA</a>
</div><div id="elTwo2Child" class="child">
<img src="blank2.gif" width="49" height="14"><a class="item" target="main"
href="java/ref.html">参考手册</a><br>
</div>
</body>
</html>
然后做几个小的图片,打开和关闭的图片!