說明:
副圖指標,別人的指標拿出來分享,籌碼越集中線就越密集
例圖:
指標原始碼:
dif:=(ema(close,12)-ema(close,26)),colorwhite;
dea:=(ema(dif,9)),coloryellow;
macd:(dif-dea)*2,colorstick,colorgreen;
macdx:=macd;
tjg:=not(namelike('s') or namelike('*s')) and dynainfo(8)>0;
va1:=hhvbars(macdx,barslast(macdx<0)+1);
va2:=cross(backset(cross(0,macdx),ref(va1,1)+2),0.5);
ttx:=barslast(va2);
前高:drawline(va2,macdx,ref(va2,1),ref(macdx,1),1),dotline;
黃柱:ttx and macdx>ref(macdx,ttx),nodraw,coloryellow;
va3:=llvbars(macdx,barslast(macdx>0)+1);
va4:=cross(backset(cross(macdx,0),ref(va3,1)+2),0.5);
bd:=barslast(filterx(cross(0,macdx),barscount(c)));
前低:drawline(va4,macdx,ref(va4,1),ref(macdx,1),1),colorgreen,dotline;
gt:=barslast(va2);
dt:=barslast(va4);
條件a:=va2 and macdxref(macdx,ref(dt,1)+1);
選股:=條件b and count(條件a,ref(dt,1))=1;
條件a1:=va2 and macdx>ref(macdx,ref(gt,1)+1);
條件b1:=va4 and macdx>ref(macdx,ref(dt,1)+1);
選股1:=條件b1 and count(條件a1,ref(dt,1))=1;
條件a2:=va2 and macdx>ref(macdx,ref(gt,1)+1);
條件b2:=va4 and macdx前高 and count(選股,gt)=1,0.5) and tjg)*macdx,colorwhite;
上公升旗形:(cross(macdx>前高 and count(選股1,gt)=1,0.5) and tjg)*macdx ,colorgreen;
擴張三角:(cross(macdx>前高 and count(選股2,gt)=1,0.5) and tjg)*macdx ,coloryellow;
下降旗形:(cross(macdx>前高 and count(選股3,gt)=1,0.5) and tjg)*macdx ,colorcyan;
macdxt:收斂三角=macdx or 上公升旗形=macdx or 擴張三角=macdx or 下降旗形=macdx,nodraw,colorgray;
MACD 黃白線 紅綠柱與0軸關係
一 macd的基本問題 1 引數 統一用12,26,9 2 macd位正 位不正原則 以下四種情況是黃白線 紅綠柱與0軸關係的完全分類,出不了這四種情況,即便黃白線在0軸單邊反覆纏繞,所謂指標鈍化 也是如此。黃白線在0軸上 多方強 同時是紅柱子,多頭位正,一般為脫離中樞的主公升 黃白線在0軸下 空方...
劍指LeetCode面試演算法 棧 佇列 堆
一 基礎知識 棧 後進先出的線性表 stl方法包含push x pop top empty 佇列 先進先出的線性表 stl方法包含push x pop top empty 二 目錄 使用佇列實現棧 三 解題 1.使用佇列實現棧 這題在劍指offer中是面試題9 用兩個佇列實現棧 leetcode22...
c day3 指標,棧記憶體,堆記憶體
在c 中指標就是 記憶體位址 十六進製制的資料 它記錄著記憶體空間的位址,大小是8個位元組 指標的定義 int a 10 int pint pint a 也可以 int pint a 其中 pint 指標變數儲存的就是 a變數在記憶體中的位址,可以通過 pint 解引用來效果 變數a 的值 pint...