DrawLine為什么不劃線?
作者:金字塔 來(lái)源:cxh99.com 發(fā)布時(shí)間:2014年04月29日
- 咨詢(xún)內(nèi)容:
以下代碼,在if條件滿(mǎn)足時(shí),如何在左峰跟右峰的最高點(diǎn)之間畫(huà)線呢,這時(shí)候什么ref,hhv之類(lèi)的函數(shù)都不能用了,很困惑。
代碼如下:
variable:lastPeakLow:=0;
variable:lastPeakHigh:=0,lastPeakIndex:=0,lastPeakBreak:=0;
//右峰數(shù)據(jù)
lPeakLow:=Ref(Low,1);
lPeakHigh:=Ref(High,1);
//上一根K線是5根K線中的最高點(diǎn),等待突破
lastPeak:=REF(H,1)=HHV(H,左腿長(zhǎng));
if lastPeak then BEGIN
lastPeakBreak:=0;
lastPeakIndex:=BARPOS-1;
lastPeakLow:=lPeakLow;
lastPeakHigh:=lPeakHigh;
//DrawIcon(1, lastPeakHigh, 1);
end;
//尋找左峰,先記錄左峰數(shù)據(jù):
//尋找峰谷距離內(nèi)的最高點(diǎn)
prePeakHigh:=HHV(H,峰谷最寬);
//最高點(diǎn)與當(dāng)前峰的距離
prePeakDist:=HHVBARS(H,峰谷最寬);
//最高點(diǎn)K線的橫坐標(biāo)
prePeakIndex:=BARSCOUNT(c)-prePeakDist;
//雙峰間的最低點(diǎn)
preLow:=LLV(L,BARSCOUNT(c)-prePeakIndex);
//判斷最高點(diǎn)是否為一個(gè)峰,即:該K線的最高點(diǎn)是5根K線中最高的,最低點(diǎn)不是5根中最低的
prePeak:=REF(H,prePeakDist)=HHV(Ref(H,prePeakDist),左腿長(zhǎng));// and REF(L,prePeakDist)!=LLV(Ref(L,prePeakDist),左腿長(zhǎng));
//如果不成立,則清除最高點(diǎn)數(shù)據(jù),不記錄為左峰
//成立,則計(jì)算雙峰相關(guān)數(shù)據(jù)
if prePeak=0 then prePeakCount:=0;
else
//右峰必須達(dá)到的最低點(diǎn)
highLimit:=preLow+(prePeakHigh-preLow)*0.8;
//右峰突破時(shí),記錄lastPeak信息
if lastPeakBreak=0 and Low<lastPeakLow then begin
//DRAWICON(1, lastPeakHigh, 5);
//DRAWNumber(1, lastPeakHigh+20, lastPeakIndex, 7);
//DRAWNumber(1, lastPeakHigh+30, lastPeakLow, 2);
//DRAWNumber(1, lastPeakHigh+20, lastPeakHigh, 2);
//突破成立lastPeak時(shí),比較lastPeak和prePeak,看看是不是一個(gè)M?
//是M,則標(biāo)記,不是,直接記錄lastPeak為prePeak
if prePeakHigh!=0 and lastPeakIndex-prePeakCount<峰谷最寬 and lastPeakIndex-prePeakCount>峰谷最窄
and lastPeakHigh<=prePeakHigh and lastPeakHigh>highLimit then begin
DRAWICON(1, lastPeakLow, 5);
DRAWTEXT(1, lastPeakHigh+100, '上一個(gè)高點(diǎn):'+numtostr(prePeakHigh,0)+';當(dāng)前高點(diǎn):'+numtostr(lastPeakHigh,0),colorgreen);
DrawText(1, lastPeakHigh+200,'最低點(diǎn):'+numtostr(preLow,0), COLORYELLOW);
DrawText(1, lastPeakHigh+300,'上一個(gè)高點(diǎn)距離:'+numtostr(lastPeakIndex-prePeakCount,0),COLORWHITE);
DRAWLINE(barpos=prePeakIndex,prePeakHigh,barpos=lastPeakIndex,lastPeakHigh,1);
end;
else begin
prePeakHigh:=lastPeakHigh;
prePeakLow:=lastPeakLow;
prePeakCount:=lastPeakIndex;
end;
lastPeakBreak:=1;
end;
個(gè)人分析,運(yùn)行到if中的時(shí)候,barpos已經(jīng)不可能再等于左峰的barscount了,所以系統(tǒng)找不到對(duì)應(yīng)K線。
那究竟如何畫(huà)呢?
另外,如何使用Peak函數(shù)呢,有沒(méi)有簡(jiǎn)便一點(diǎn)的方法來(lái)實(shí)現(xiàn)這樣一個(gè)邏輯:
如果某一個(gè)K線,是5根K線中最高的,則當(dāng)其低點(diǎn)被突破時(shí),尋找左峰(上一個(gè)峰),如果存在一個(gè)左峰,則產(chǎn)生交易。
(換句話(huà)來(lái)說(shuō),就是捕捉一個(gè)M形態(tài)。當(dāng)一個(gè)M形態(tài)的右峰最高K線的低點(diǎn)被突破時(shí),產(chǎn)生交易)
[此貼子已經(jīng)被作者于2013/10/5 18:26:38編輯過(guò)]
- 金字塔客服:
左腿長(zhǎng),峰谷最寬,峰谷最窄,這3個(gè)是什么?
- 用戶(hù)回復(fù):
這個(gè)是預(yù)設(shè)參數(shù)左腿長(zhǎng):4峰谷最寬:20峰谷最窄:4
- 網(wǎng)友回復(fù):
最后加這么一句
DRAWLINE(REF(H,prePeakDist)=HHV(Ref(H,prePeakDist),左腿長(zhǎng)),prePeakHigh,REF(H,1)=HHV(H,左腿長(zhǎng)),lastPeakHigh,0);