分析家公式网,提供股票公式,股票软件用户登录  |  用户 注册
主控战略k线源码
  • 软件大小:21.0 KB
  • 推荐星级:
  • 更新时间:2011-03-24 06:42:17
  • 软件类别: 国产软件 / 大智慧L2公式
  • 软件语言:简体中文
  • 授权方式: 免费版
  • 联系方式:暂无联系方式
  • 官方主页: Home Page
  • 点击大图:  【一键转帖到论坛】
  • 插件情况:
  • 运行环境:Win9X/Win2000/WinXP/Win2003/
  • 相关Tags:主控战略k线  
  • (4)57%
    (3)43%

软件介绍

主控战略k线源码

技术指标会滞后、钝化、反复发出纠缠不清的金叉、死叉信号,让人不知所措、无所适从。而这一切均源于k线走势(大部分技术指标是通过对k线的收盘、开盘、最高、最低价咯的演绎换算得到的指标信号)。所以领悟、参透k线本身走势的意义以及发掘具有实站价值的k线涨跌模式是通向金融王国自由之路的一条途径。本书由三位台湾作者联袂奉献,由浅入深,揭示了k线的本质和实站运作技巧

{2根k线组合}
平顶:=h=ref(h,1) or (h=ref(h,2) and h>ref(h,1));
drawtext(平顶,h*1.01,'平顶'),colorgreen;
partline(平顶,h),colorgreen;
平底:=l=ref(l,1) or (l=ref(l,2) and l<ref(l,1));
drawtext(平底,l*0.99,'平底'),colorgreen;
partline(平底,l),colorgreen;
阳子母:=c>ref(max(c,o),1) and h>ref(h,1) and l<ref(l,1) and c>o and ref(max(c,o),1)/ref(min(c,o),1)>1.01 and (o<>l or c<>h);
drawtext(阳子母,l*0.99,'阳子母'),coloryellow;
阴子母:=c<ref(min(c,o),1) and h>ref(h,1) and l<ref(l,1) and c<o and ref(max(c,o),1)/ref(min(c,o),1)>1.01 and (o<>h or c<>l);
drawtext(阴子母,h*1.01,'阴子母'),colorblue;
阴母子:=c>ref(min(c,o),1) and h<ref(h,1) and l>ref(l,1) and c<o and c/o<0.99;
drawtext(阴母子,h*1.01,'阴母子'),colorblue;
阳母子:=c<ref(max(c,o),1) and h<ref(h,1) and l>ref(l,1) and c>o and c/o>1.01;
drawtext(阳母子,l*0.99,'阳母子'),coloryellow;
乌云盖顶:=ref(c,1)/ref(o,1)>1.03 and c<o and h>ref(h,1) and c>ref(o,1) and l>ref(l,1) and o>ref(h,1) and c<(ref(c,1)+ref(o,1))/2;
drawtext(乌云盖顶,h*1.01,'乌云盖顶'),colorblue;
曙光初现:=ref(o,1)/ref(c,1)>1.03 and c>o and h<ref(h,1) and c<ref(o,1) and l<ref(l,1) and o<ref(l,1) and c>(ref(c,1)+ref(o,1))/2;
drawtext(曙光初现,l*0.99,'曙光初现'),coloryellow;
空戳多:=c<ref(c,1) and ref(c,1)/ref(o,1)>1.03 and c<o and h>ref(h,1) and c>ref(o,1) and l>ref(l,1) and o>ref(h,1) and c>(ref(c,1)+ref(o,1))/2;
drawtext(空戳多,h*1.01,'空戳多'),colorblue;
多戳空:=c>ref(c,1) and ref(o,1)/ref(c,1)>1.03 and c>o and h<ref(h,1) and c<ref(o,1) and l<ref(l,1) and o<ref(l,1) and c<(ref(c,1)+ref(o,1))/2;
drawtext(多戳空,l*0.99,'多戳空'),coloryellow;
空头反攻:=c=ref(c,1) and ref(c,1)/ref(o,1)>1.03 and c<o and h>ref(h,1) and c>ref(o,1) and l>ref(l,1) and o>ref(h,1);
drawtext(空头反攻,h*1.01,'空头反攻'),colorblue;
多头反攻:=c=ref(c,1) and ref(o,1)/ref(c,1)>1.03 and c>o and h<ref(h,1) and c<ref(o,1) and l<ref(l,1) and o<ref(l,1);
drawtext(多头反攻,l*0.99,'多头反攻'),coloryellow;
玉柱:=c>ref(max(c,o),1) and h>ref(h,1) and l<ref(l,1) and c>o and ref(max(c,o),1)/ref(min(c,o),1)>1.01 and o=l and c=h;
drawtext(玉柱,l*0.99,'玉柱'),coloryellow;
危楼:=c<ref(min(c,o),1) and h>ref(h,1) and l<ref(l,1) and c<o and ref(max(c,o),1)/ref(min(c,o),1)>1.01 and o=h and c=l;
drawtext(危楼,h*1.01,'危楼'),colorblue;
{3根k线组合}
红三兵:=count(h/c<1.02,3)=3 and count(c/o>1.01,3)=3 and count(c>ref(c,1),2)=2 and count(h>ref(h,1),2)=2 and count(l>ref(l,1),2)=2 and abs(ref(c,2)/ref(o,2)-ref(c,1)/ref(o,1))<0.02 and abs(ref(c,1)/ref(o,1)-c/o)<0.02;
drawtext(红三兵,l*0.99,'红三兵'),coloryellow;
黑三兵:=count(c/l<1.02,3)=3 and count(o/c>1.01,3)=3 and count(c<ref(c,1),2)=2 and count(h<ref(h,1),2)=2 and count(l<ref(l,1),2)=2 and abs(ref(c,2)/ref(o,2)-ref(c,1)/ref(o,1))<0.02 and abs(ref(c,1)/ref(o,1)-c/o)<0.02;
drawtext(黑三兵,h*1.01,'黑三兵'),colorblue;
大敌当前:=count(c/o<1.03,2)=2 and count(h/c>1.015,2)=2 and count(c>o,3)=3 and count(c>ref(c,1),2)=2 and count(h>ref(h,1),2)=2 and count(l>ref(l,1),2)=2 and ref(c,2)/ref(o,2)>1.03 and ref(c,2)/ref(o,2)>ref(c,1)/ref(o,1) and ref(c,2)/ref(o,2)>c/o and h/c>ref(h/c,2) and ref(h/c,1)>ref(h/c,2);
drawtext(大敌当前,l*0.99,'大敌当前'),colorblue;
步步为营:=count(c>o,3)=3 and count(c>ref(c,1),2)=2 and count(h>ref(h,1),2)=2 and count(l>ref(l,1),2)=2 and (ref(c/o,2)>1.03 or ref(c/o,1)>1.03) and c/o<ref(c/o,2) and c/o<ref(c/o,1 and h/c>ref(h/c,2) and h/c>ref(h/c,1)) and h/c>1.02;
drawtext(步步为营,l*0.99,'步步为营'),colorblue;
离黑战车:=ref(c/o,2)>1.01 and ref(o/c,1)>1.01 and c/o>1.01 and ref(h/c,2)<1.02 and ref(h/o,1)<1.02 and h/c<1.02 and ref(o,1)>ref(c,2) and c>ref(o,1) and count(h>ref(h,1),2)=2 and count(l>ref(l,1),2)=2 and abs(ref(c/o,2)-ref(o/c,1))<0.02 and abs(ref(o/c,1)-c/o)<0.02 and ref(c,1)>ref(o,2);
drawtext(离黑战车,l*0.99,'离黑战车'),coloryellow;
离白战车:=ref(o/c,2)>1.01 and ref(c/o,1)>1.01 and o/c>1.01 and ref(h/o,2)<1.02 and ref(h/c,1)<1.02 and h/o<1.02 and (ref(c,1)=ref(o,2) or ref(c,1)<ref(o,2)) and o<ref(c,1) and c<ref(o,1) and count(h<ref(h,1),2)=2 and count(l<ref(l,1),2)=2 and abs(ref(c/o,2)-ref(o/c,1))<0.02 and abs(ref(o/c,1)-c/o)<0.02;
drawtext(离白战车,h*1.01,'离白战车'),colorblue;
晨星:=(ref(c/o,2)<0.97 and abs(ref(c/o,1)-1)<0.015 and c/o>1.025 and ref(max(c,o),1)<ref(c,2) and o>ref(max(c,o),1))
or (ref(c/o,3)<0.97 and abs(ref(c/o,1)-1)<0.02 and abs(ref(c/o,2)-1)<0.02 and c/o>1.025 and ref(max(c,o),2)<ref(c,3) and ref(max(c,o),1)<ref(c,3) and o>ref(max(c,o),1) and o>ref(max(c,o),2));
drawtext(晨星,l*0.99,'晨星'),coloryellow;
夜星:=(ref(o/c,2)<0.97 and abs(ref(c/o,1)-1)<0.015 and o/c>1.025 and ref(min(c,o),1)>ref(c,2) and o<ref(min(c,o),1))

or (ref(o/c,3)<0.97 and abs(ref(c/o,1)-1)<0.02 and abs(ref(c/o,2)-1)<0.02 and o/c>1.025 and ref(min(c,o),2)>ref(c,3) and ref(min(c,o),1)>ref(c,3) and o<ref(min(c,o),1) and o<ref(min(c,o),2));
drawtext(夜星,h*1.01,'夜星'),colorblue;
双鸦:=ref(c/o,2)>1.03 and ref(o/c,1)-1<0.015 and ref(c,1)>ref(c,2) and ref(o,1)>ref(c,2) and o/c>1.025 and o<ref(o,1) and o>ref(c,1) and h<ref(h,1) and c<ref(c,2);
drawtext(双鸦,h*1.01,'双鸦'),colorblue;
双鸦耀空:=ref(c/o,2)>1.03 and ref(o/c,1)<1.015 and o/c<1.015 and ref(c,1)>ref(c,2) and c>ref(c,2) and c<o and ref(c,1)<ref(o,1);
drawtext(双鸦耀空,h*1.01,'双鸦耀空'),colorblue;
上肩缺口:=ref(h,1)=ref(hhv(h,20),1) and count(ma(c,10)>ref(ma(c,10),1),13)>10 and ref(c/o,2)>1.03 and ref(c/o,1)>1.02 and ref(l,1)>ref(h,2) and h<ref(h,1) and o<ref(c,1) and l<ref(l,1) and c<ref(o,1) and o/c>1.02 and c>ref(h,2);
drawtext(上肩缺口,l*0.99,'上肩缺口'),coloryellow;
下肩缺口:=ref(l,1)=ref(llv(l,20),1) and count(ma(c,10)<ref(ma(c,10),1),13)>10 and ref(o/c,2)>1.03 and ref(o/c,1)>1 and ref(h,1)<ref(l,2) and l>ref(l,1) and c>ref(o,1) and h>ref(h,1) and o>ref(c,1) and c/o>1.02 and c<ref(l,2);
drawtext(下肩缺口,h*1.01,'下肩缺口'),colorblue;
{4根k线组合}
上扬三法:=ref(c/o,3)>1.03 and ref(h,2)>ref(h,3) and ref(c,2)<ref(c,3) and ref(o,2)>ref(c,3) and ref(h,1)<ref(h,2) and ref(l,1)<ref(l,2) and h<ref(h,1) and l<ref(l,1) and ref(c,1)<ref(c,2) and c<ref(c,1) and l>ref(o,3) and count(o/c>1.03,3)<2 and count(o/c>1.01,3)>1 and count(c<o,3)=3;
drawtext(上扬三法,l*0.99,'上扬三法'),coloryellow;
下跌三法:=ref(o/c,3)>1.03 and ref(l,2)<ref(l,3) and ref(c,2)>ref(c,3) and ref(o,2)<ref(c,3) and ref(h,1)>ref(h,2) and ref(l,1)>ref(l,2) and h>ref(h,1) and l>ref(l,1) and ref(c,1)>ref(c,2) and c>ref(c,1) and h<ref(o,3) and count(c/o>1.03,3)<2 and count(c/o>1.01,3)>1 and count(c>o,3)=3;
drawtext(下跌三法,h*1.01,'下跌三法'),colorblue;
宝塔翻白:=ref(count(c>ref(c,1),3),1)=

地址


软件评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

说明

* 使用方法:点击上面蓝色块,打开新页面按照提示进行

* 本网站提供的各种股票软件,例如大智慧软件,通达信软件,同花顺软件,东方财富通等等,和各种股票公式指标,例如大智慧公式,通达信公式,同花顺公式,文华公式,博易大师公式,股票价格计算公式等等公式指标等,都来源网上公开来源收集

本网提供的公式文件说明:
* alg格式飞狐股票公式,可以用飞狐交易师或者交易师软件导入;
* fnc格式大智慧新一代公式指标,可以用大智慧股票软件使用,少部分可以用分析家股票软件引入使用;
* exp格式大智慧经典版股票公式,仅可以用大智慧经典版股票软件引入使用;
* tni和tnc格式通达信股票公式,仅可以用通达信新引入使用,例如可以用通达信股票软件引入使用;
* tne,tn6格式通达信公式,可以用通达信公式编辑器5.0版导入,推荐通达信金融终端版本;
* hxf格式同花顺股票公式,仅可以用同花顺股票软件引入使用。
以上的各种软件都可以在本网股票软件栏目找到!

* 关于股票公式时间限制,如果在引入大智慧公式,交易师公式或者飞狐公式的时候,发现公式名称栏是空白的,这时候调整电脑时间到1997年,又能出现公式名称,并且能正常显示,可能是公式使用期限已过。
* 关于还原公式源码如果你忘记了自己编写的大智慧公式,通达信公式,同花顺公式,操盘手公式,飞狐公式,博易大师公式,金字塔公式,文华公式和交易师公式等等公式的密码,本网可帮恢复源码,有.偿.服.务无意勿扰,点击在线咨询联系我。

* 关于股票公式源码编辑
本网提供的源码,一般都可以编辑成公式,如果不明白公式的编辑,在本页右侧教程录像可参考,或者找公式教程资料学习,请搜索:教程

* 如果您发现软件内容或者链接错误,请点击报告错误谢谢!
* 站内提供的所有软件包含源码均是由网上搜集,若侵犯了你的版权利益,请联系通知我们!

关于本站 | 网站帮助 | 广告合作 | 声明 | 友情连接 | 网站地图 |
分析家公式网声明:本站所有股票公式软件资料均网上公开收集,如侵权请联系删帖。站内所有广告,均与本站无关!
Copyright © 2003-2022 fxjgsw.Com. All Rights Reserved .
页面执行时间:7,484.37500 毫秒