搜索
楼主: 红树林园

[大盘交流] 股市(中國)大趨勢

  [复制链接]

签到天数: 4 天

发表于 2014-12-20 10:23 | 显示全部楼层
早晨
美女

原油反弹, 大宗商品也在反弹, 有色煤炭钢铁,是不是还有机会呢?
金币:
奖励:
热心:
注册时间:
2006-8-2

回复 使用道具 举报

签到天数: 39 天

发表于 2014-12-20 16:45 | 显示全部楼层
其他话不多说 说实话这大盘走的太复杂了:
金币:
奖励:
热心:
注册时间:
2013-8-11

回复 使用道具 举报

签到天数: 1232 天

发表于 2014-12-20 17:55 | 显示全部楼层
金币:
奖励:
热心:
注册时间:
2014-2-15

回复 使用道具 举报

签到天数: 1 天

发表于 2014-12-21 17:13 | 显示全部楼层
大盘一点都不复杂,看图说话,谢谢美女
金币:
奖励:
热心:
注册时间:
2010-11-13

回复 使用道具 举报

签到天数: 1 天

发表于 2014-12-22 11:16 | 显示全部楼层
美女今天有新的美图么?
金币:
奖励:
热心:
注册时间:
2010-11-13

回复 使用道具 举报

签到天数: 4 天

发表于 2014-12-22 14:20 | 显示全部楼层
美女今天有新的美图么?
金币:
奖励:
热心:
注册时间:
2006-8-2

回复 使用道具 举报

签到天数: 5 天

发表于 2014-12-22 18:51 | 显示全部楼层
冬至,冬天已至,春已不远!祝大家一切顺利!
金币:
奖励:
热心:
注册时间:
2012-9-7

回复 使用道具 举报

签到天数: 33 天

发表于 2014-12-22 21:03 | 显示全部楼层
红牛,以前说的目标还有效吗?
金币:
奖励:
热心:
注册时间:
2008-11-28

回复 使用道具 举报

 楼主| 发表于 2014-12-23 07:51 | 显示全部楼层
波动区间 与 趋势跟随停损

20141222h.png
金币:
奖励:
热心:
注册时间:
2008-1-5

回复 使用道具 举报

签到天数: 1232 天

发表于 2014-12-23 16:34 | 显示全部楼层
金币:
奖励:
热心:
注册时间:
2014-2-15

回复 使用道具 举报

签到天数: 1 天

发表于 2014-12-23 19:22 | 显示全部楼层
谢谢美图,谢谢美女
金币:
奖励:
热心:
注册时间:
2010-11-13

回复 使用道具 举报

签到天数: 5 天

发表于 2014-12-24 15:21 | 显示全部楼层
楼主看看下面这个趋势指标,我用tdx编了一小段就编不下去了……能否在tdx上实现?请教了!谢谢!

AbleTrend趋势交易软件全球领先的金融软件,自1994年成功面世以来,畅销全球60多个国家和地区,受到美国著名交易专家,“威廉指标”创始人拉里.拉里姆斯权威推荐。连续14年被美国《股票与期货》杂志读者评选为股票、期货和期权交易系统“读者首选奖”,连续10年获得美国评选的“年度十大交易软件”之首。
这是我在网络上找了很久,且最全的版本。大家参考一下,如能改成文华,TB,语言最好,或者把他的理念分析出来。其中有一些自定义函数我也找到了。


//ASCTrend2
//
Inputs: RISK(3), MONYRISK(2.0);

If CurrentBar = 1 then begin
vars: value2(1), value3(18), value10(10000), value19(0);
value19 = MONYRISK*Average(Range, 10)*BigPointValue;
value2 = Risk;
value3 = 18 + 3*value2;
End;

value11 = Average(C, 9);
value12 = Average(C, value3);
value13 = Average(Range, 10);
value4 = JESSD( High, Low, H[value2], L[value2], C[value2] );
If MRO (value4 > value4[1] and value4[1] < value4[2], 2, 1) > -1 and L[1] > value4[1] then
value5 = value4[1] - value13 ;
If MRO (value4 < value4[1] and value4[1] > value4[2], 2, 1) > -1 and H[1] < value4[1] then
value6 = value4[1] + value13 ;
If value11[1] < value12[1] and value11 > value12 then value5 = TrueLow -value13;
If value11[1] > value12[1] and value11 < value12 then value5 = TrueHigh + value13;
If AbsValue( O - C[1] ) >= 1.618*value13 then begin
If value11 > value12 then value5 = Low - value13;
If value11 < value12 then value14 = High + value13;
End;

value7 = BS105(L, 2.40, value13, value9 );
value8 = SS105(H, 2.40, value13, value10 );
value9 = BS0(L, 60, value7, Risk, value19);
value10 = SS0(H, 60, value8, Risk, value19);
If L - value9 > value19/BigPointValue then value9 = L - (1.50 + 0.1*Risk)*value13;
If value10 - H > value19/BigPointValue then value10 = H + (1.50 + 0.1*Risk)*value13;
If value11 >= value12 and value5 >= value9 then value9 = value5;
If value11 <= value12 and value6 <= value10 then value10 = value6;
If value11 <= value12 and value5 <= value9 then value9 = value5;
If value11 >= value12 and value6 >= value10 then value10 = value6;
If MRO(value11 >= value12, 2, 2) > -1 and value9 <= value9[1] then value9 = value9[1] ;
If MRO(value11 <= value12, 2, 2) > -1 and value10 >= value10[1] then value10 = value10[1] ;
If value9 > 0 and value11 >= value12 and value9 <= H then Plot1 (value9, "BuyStop2");
If value10 > 0 and value10 < 1000000000 and value11 <= value12 and value10 >= L then Plot2 (value10, "SellStop2");


自定义函数如下:
JESSD:
Inputs : High0(NumericSimple), Low0(NumericSimple), HighN(NumericSimple), LowN(NumericSimple),
CloseN(NumericSimple);
value4 = ( High0 + Low0 ) / 2.0;
value5 = 2*value4 - LowN;
value6 = 2*value4 - HighN;
If CloseN < value4 then JESSD = value5 else JESSD = value6;

BS105:
Inputs: price(numeric), const(numeric), avg(numeric), val(numeric);
if (price-const*avg < val) then begin
  BS105=val;
  end
else BS105=price-const*avg;

SS105:
Inputs: price(numeric), const(numeric), avg(numeric), val(numeric);
if (price-const*avg < val) then begin
  BS105=val;
  end
else BS105=price-const*avg;

BS0:
Inputs: Price(numeric), const(numeric), val(numeric), Risk(numeric), MonyRisk(numeric);
vars: ii(0);
ii=val;
BS0=ii;

SS0:
Inputs: Price(numeric), const(numeric), val(numeric), Risk(numeric), MonyRisk(numeric);
vars: ii(0);
ii=val;
SS0=ii;


BigPointValue -> 每一大點的價值金額,如台指期每跳一檔就是一點.
金币:
奖励:
热心:
注册时间:
2009-1-6

回复 使用道具 举报

签到天数: 9 天

天道与响应之法结构深研究波浪原理--深入讨论

发表于 2014-12-24 17:05 | 显示全部楼层
祝大家平安夜快乐!圣诞节快乐!
金币:
奖励:
热心:
注册时间:
2008-2-3

回复 使用道具 举报

签到天数: 5 天

发表于 2014-12-24 19:54 | 显示全部楼层
祝大家圣诞快乐!
金币:
奖励:
热心:
注册时间:
2012-9-7

回复 使用道具 举报

签到天数: 5 天

发表于 2014-12-25 18:05 | 显示全部楼层
老师度假去了
金币:
奖励:
热心:
注册时间:
2012-9-7

回复 使用道具 举报

签到天数: 33 天

发表于 2014-12-26 08:48 | 显示全部楼层
zdm2009 发表于 2014-12-25 18:05
老师度假去了

他在翻译指标:#DAXIAO
金币:
奖励:
热心:
注册时间:
2008-11-28

回复 使用道具 举报

签到天数: 40 天

发表于 2014-12-26 09:06 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
金币:
奖励:
热心:
注册时间:
2011-3-15

回复 使用道具 举报

签到天数: 9 天

天道与响应之法结构深研究波浪原理--深入讨论

发表于 2014-12-29 09:41 | 显示全部楼层
老师度假去了
金币:
奖励:
热心:
注册时间:
2008-2-3

回复 使用道具 举报

签到天数: 9 天

天道与响应之法结构深研究波浪原理--深入讨论

发表于 2014-12-31 15:56 | 显示全部楼层
祝大家2015年投资顺利!
金币:
奖励:
热心:
注册时间:
2008-2-3

回复 使用道具 举报

签到天数: 5 天

发表于 2014-12-31 16:21 | 显示全部楼层
祝大家新年快乐!投资顺利!
金币:
奖励:
热心:
注册时间:
2012-9-7

回复 使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

本站声明:MACD仅提供交流平台,请交流人员遵守法律法规。
值班电话:18209240771   微信:35550268

举报|意见反馈|手机版|MACD俱乐部

GMT+8, 2025-6-7 02:25 , Processed in 0.044953 second(s), 14 queries , MemCached On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表