AFL ala nubi... sekali lagi jangan lupa di bar replay... kalau cuma check code maka future leak tidak kedetek, tapi kalau di bar replay akan kelihatan kalau sinyal/panah buy sell berpidah2 tempat alias timbul tenggelam... saya juga ndak tau kenapa ?
Semoga bermanfaat dan CMIIW.
Regards,
ES
//=======MA Daily Weekly===========
perweek = Param("Period Week", 5, 3, 300,1);
perdayFast = Param("Period Day Fast", 5, 3, 300, 1);
perdaySlow = Param("Period Day Slow", 20, 3, 300, 1);
Cweek = TimeFrameGetPrice("C", inWeekly, 0, expandFirst);
MA5W = MA(Cweek, perweek);
MA5d = MA(C, perdayFast);
MA20d = MA(C, perdaySlow);
Buy = (Cweek > MA5w) AND Cross(MA5d, MA20d);
Sell = (Cweek < MA5w) AND Cross(MA20d, MA5d);
Buy = ExRem(Buy, Sell);
Sell = ExRem(Sell, Buy);
PlotShapes(shapeUpArrow*Buy, colorGreen, 0, L, -12);
PlotShapes(shapeDownArrow*Sell, colorRed, 0, H, -12);
Plot(C, "Close", colorWhite, styleCandle);
Plot(MA5W, "MA5W", colorBlue );
Plot(MA5d, "MA5D", colorGreen);
Plot(MA20d, "MA20D", colorRed);
Filter = (Buy OR Sell);
AddColumn( Close, "Close" , 1.0, IIf(C>Ref(C,-1), colorBlue, IIf(C<Ref(C,-1), colorRed, 0)));
AddColumn( Buy OR Sell, "B/S", 1, colorDefault, IIf(Sell, colorRed, IIf(Buy, colorGreen, 0)), 35 );
//=============
On Sun, Feb 5, 2012 at 9:23 AM, Eco Syariah <esyariah@gmail.com> wrote:
Saran saja... kalau AFL nya sudah jadi jangan lupa di-Bar Replay.
Regads,
ESOn Sat, Feb 4, 2012 at 1:25 PM, Jsx Sniper <jsxsniper@gmail.com> wrote:
trims banyak bro kenzie...Pada 4 Februari 2012 11:29, Kenzie Sebastian <kenziesr@yahoo.co.id> menulis:mungkin ini membantu pak.
Dari: JsxSniper <jsxsniper@gmail.com>
Kepada: Amibroker <amibroker-4-bei@yahoogroups.com>
Dikirim: Sabtu, 4 Februari 2012 10:00
Judul: [Komunitas AmiBroker] [Ask] AFL
------------------------------------
Dear AFL Lover n oprek'er..
Mohon bantuannya adakah cara kita membuat AFL dengan kondisi spt ini contohnya :
Bila close > MA 5 di weekly dan cross ma5 dan ma20 di daily maka muncul posisi buy..
Intinya seh sy main scanning saham di daily tp ada salah satu parameter weekly yg harus lolos..
Memungkinkan ga ya ?
Trims b4...
JsxSniper
Blog : http://jsxsniper.blogspot.com
tw : @jsxsniper
Apabila membutuhkan software AmiBroker, Realtime Intraday Data & Pelatihan silahkan kontak : Dendo Valentino | Cell : 08159304868 | e-mail: amibrokerfreak{at}yahoo.co.id | YM id : dendov | http://www.facebook.com/dendo.amibrokerfreak | http://www.amibroker-4-bei.org
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker-4-bei/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker-4-bei/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-4-bei-digest@yahoogroups.com
amibroker-4-bei-fullfeatured@yahoogroups.com
<*> To unsubscribe from this group, send an email to:
amibroker-4-bei-unsubscribe@yahoogroups.com
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
No comments:
Post a Comment