【指標(biāo)分享】顧比倒數(shù)線指標(biāo) [開拓者 TB]
- 咨詢內(nèi)容:
結(jié)合nopain的那個帖子 寫了個V4版本的顧比倒數(shù)線 跟大家分享下
希望大家多提意見 完善這個東東- 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技術(shù)人員:
謝謝無私分享啊,我們?nèi)河讯际呛脴拥?
- TB客服:
好帖,頂一個!
- 網(wǎng)友回復(fù):
能否有人給介紹一個這個顧比倒數(shù)指標(biāo)是什么回事?
- 網(wǎng)友回復(fù):
好帖,頂一個!
如果以上指標(biāo)公式不適用于您常用的行情軟件
或者您想改編成選股公式,以便快速選出某種形態(tài)個股的話,
相關(guān)文章
-
沒有相關(guān)內(nèi)容