【指标分享】顾比倒数线指标 [开拓者 TB]
- 咨询内容:
结合nopain的那个帖子 写了个V4版本的顾比倒数线 跟大家分享下
希望大家多提意见 完善这个东东- Params
- Numeric Length(5);
- Vars
- NumericSeries CBL_High;
- NumericSeries CBL_Low;
- NumericSeries CBL;
- Numeric TmpValue;
- Numeric Hest;
- Numeric Lest;
- Numeric e;
- Begin
- Hest = Highest(High[1],Length);
- Lest = Lowest(Low[1],Length);
-
- If(CurrentBar < Length)
- {
- CBL_High = High;
- CBL_Low = Low;
- CBL = Open;
- }
- Else
- {
- If(High < Hest)
- {
- CBL_High = CBL_High[1];
- }
- Else
- {
- e = 1;
- TmpValue = Low;
- While(Low[e] > TmpValue And e < 200) e = e + 1;
- TmpValue = Low[e];
- While(Low[e] > TmpValue And e < 200) e = e + 1;
- CBL_High = Low[e];
- }
-
- If(Low > Lest)
- {
- CBL_Low = CBL_Low[1];
- }
- Else
- {
- e = 1;
- TmpValue = High;
- While(High[e] < TmpValue And e < 200) e = e + 1;
- TmpValue = High[e];
- While(High[e] < TmpValue And e < 200) e = e + 1;
- CBL_Low = High[e];
- }
- }
- If(CBL_High < Close)
- {
- CBL = CBL_High;
- }
- If(CBL_Low > Close)
- {
- CBL = CBL_Low;
- }
- PlotNumeric("CBL",CBL,0,White);
- End
- Params
- TB技术人员:
谢谢无私分享啊,我们群友都是好样的
- TB客服:
好帖,顶一个!
- 网友回复:
能否有人给介绍一个这个顾比倒数指标是什么回事?
- 网友回复:
好帖,顶一个!
如果以上指标公式不适用于您常用的行情软件
或者您想改编成选股公式,以便快速选出某种形态个股的话,
相关文章
-
没有相关内容