alexwang7777 發表於 10-6-11 16:11

Chaloke Not-so-simple Moving Average for Amibroker

_SECTION_BEGIN("NOT_SO_SIMPLE");
cmopds=11;
CMO_1=Sum( IIf( C > Ref( C, -1 ) , ( C - Ref( C ,-1 ) ) ,0 ) ,cmopds ) ;
CMO_2=Sum( IIf( C < Ref( C ,-1 ) , ( Ref( C ,-1 ) - C ) ,0 ) ,cmopds );
Smooth=5;
CMO=100 * (( CMO_1 -CMO_2) /( CMO_1+CMO_2));
AbsCMO=(abs(CMO))/100;
SC=2/(Smooth+1);
MM=AMA( C, SC*AbsCMO );
EM1= EMA(C,5);
EM2= EMA(EM1,5);
Dif= EM1-EM2;
EM= EM1+Dif;
x=EM-MM;

color=IIf(EM>MM,colorBrightGreen,colorRed);
Plot(C,"Chaloke Not-So-Simple Moving Average",Color,stylebar);
Buy= Color==colorBrightGreen AND Ref(Color,-1)==colorRed;
Sell=Color==colorRed AND Ref(Color,-1)==colorBrightGreen;
Short=Sell;
Cover=Buy;
shape = Buy * shapeSmallCircle + Sell * shapeSmallCircle;



PlotShapes( shape, IIf( Buy, colorGreen, colorYellow ), 0, IIf( Buy, Low, High ) );

GraphXSpace = 5;
_SECTION_END();

aaqqww93 發表於 10-6-11 20:05

非常謝謝分享好東西

hkcarnby 發表於 10-6-11 20:16

aaqqww93大,你也很進取地回覆哦{:4_163:}

aaqqww93 發表於 10-6-14 19:40

aaqqww93大,你也很進取地回覆哦
hkcarnby 發表於 10-6-11 08:16 PM http://www.coco-in.net/images/common/back.gif


    騙吃騙喝而已啦{:4_186:}
你頭像還是大元嗎?

hkcarnby 發表於 10-6-14 22:00

當然,女神嘛{:4_186:}

鳳梨 發表於 10-6-14 22:17

{:4_628:} 請問一下這是什麼軟體,可分享嗎

bbdcd 發表於 11-3-28 19:22

看起來很不錯很漂亮也很有紀念價值的感覺

auvitin 發表於 11-4-9 14:20

奇怪?與alexwang7777大的不同?

bbdcd 發表於 11-4-10 18:15

看alexwang7777文章.真是享受

leo 發表於 11-4-10 18:49

這麼好的文章{:4_113:}推的人真少

kuli 發表於 11-4-14 16:41

好東西先收下!感謝分享~
頁: [1]
查看完整版本: Chaloke Not-so-simple Moving Average for Amibroker