【指標分享】顧比倒數線指標 [開拓者 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客服:
好帖,頂一個!
- 網友回復:
能否有人給介紹一個這個顧比倒數指標是什么回事?
- 網友回復:
好帖,頂一個!
如果以上指標公式不適用于您常用的行情軟件
或者您想改編成選股公式,以便快速選出某種形態個股的話,
相關文章
-
沒有相關內容