Halo pak Eco,

 

Saya cuma pake indicator home made kok pak..

Kalo berminat, berikut saya attach afl nya 

Atau copy paste baris berikut pada new formula

 

 

// Maksud dibuat Indicator ini cuma supaya tampilannya intraday AmiBroker
mirip dg yahoo finance

// Terdapat daily summary dan dot line berwarna merah yang merupakan
indikasi harga penutupan hari sebelumnya 

// Dapat digunakan pada chart index maupun saham dg time frame Intraday (i)

// Pastikan data intraday anda cukup lengkap supaya daily summary dan chart
yg ditampilkan valid.

// Silahkan feedback atau diperbaiki sendiri apabila ditemukan kekurang
sempurnaan

// Copyleft  @ Dendo 2008

 

SetChartOptions(0,chartShowArrows|chartShowDates);

LOY = TimeFrameGetPrice( "L", inYearly) ;

PRVCLS = TimeFrameGetPrice( "C", inDaily,-1) ;

TDYOPN=TimeFrameGetPrice( "O", inDaily) ;

TDYLOW=TimeFrameGetPrice( "L", inDaily);

TDYHGH=TimeFrameGetPrice( "H", inDaily);

TDYVLT= TDYHGH - TDYLOW ;

TDYCLS = TimeFrameGetPrice( "C", inDaily) ;

GAP=  TDYOPN - PRVCLS ;

CHG = TDYCLS - PRVCLS ;

Plot( Zig(C, 2.5), "", colorBlack, styleNoTitle);

Plot(PRVCLS  ,"Previous Close",colorRed ,styleDashed | styleNoTitle );

Plot(C, "Close",  colorCustom4, styleLine  | styleNoTitle ); 

PlotOHLC(LOY ,C,LOY,C, "Cloud",  colorLavender, styleCloud | styleNoTitle
); 

_N(Title = StrFormat("({{INTERVAL}})  {{DATE}}  Selected  Value: " + C + 

"\nDaily Summary :  " + FullName() + "  ("+ Name() +")"+

"\nPrevious Close :  " + PRVCLS + 

"\nOpen GAP          :  "+ WriteVal(GAP,1.2) +  " (" +
WriteVal((GAP/PRVCLS)*100 ,1.2)+ " %%)" +

"\nToday Open       :  " + TDYOPN  + 

"\nDay's Range      :  " +  TDYLOW + " ~ " + TDYHGH +" ("+TDYVLT+" points)"+

"\nToday Close      :  " + TDYCLS  +

"\nChange              :  " + CHG  + " (" + WriteVal((CHG /PRVCLS)*100
,1.2)+ " %%)" ));

 

 

 

Regards,

Dendo

 

 

From: amibroker-4-bei@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Eco Syariah
Sent: Thursday, September 18, 2008 8:25 PM
To: amibroker-4-bei@yahoogroups.com
Subject: Re: [Komunitas AmiBroker] Ulasan Intraday 18 September 2008 - IHSG
PULL BACK

 

Hebat oii intraday chart nya... saya punya gak bisa kayak gitu... gimana
caranya ya ?

Di intraday saya, momentum / pullback itu terjadi tepat pd jam 13.30 ketika
RSI = 26,74 (bottom) dan MA5 golden cross MA20 dan MA60.

Setelah itu gerakan ke atas nempel di BBandTop tak tertahankan sampai market
close... hanya terjadi sedikit koreksi pd 15:18 namun tertahan di support
1770 kemudian naik lagi sampai ditutup di 1787,67.




 

Attachment: yahoo chart.afl
Description: Binary data

Reply via email to