Hehehe
Tar coba sy kreasikan lg kalo 4 greens ato 4 reds ganti warna candle.
Jauh lbh menarik bukan?
Tp pak Tjhai, tanya dl, 4 greens Weekly ato Daily yg BUY?
Kalo Weekly, maka plotting Candle kita pindah ke paling bawah aja.
Lalu di atas Candle plotting, tambahkan ini:
TimeFrameReset();
Kalo ga salah lho,tar coba sy cekkan lg...
Best Regards,
Christopher Tahir
Blog: http://ez-stock.blogspot.com
MSN: chris_tahir@hotmail.com
YM: chris_tahir@ymail.com
Mail to my Y!Group:
ez-stock-subscribe@yahoogroups.com
-----Original Message-----
From: tjhai lioe
Sent: 08/02/2011 5:37:11 AM
Subject: Re: [Komunitas AmiBroker] Bikin warna ema 20,50
Terima kasih Master, hi hi tanya dong masukin nya baris mana yah ,he he
kalau boleh afl lengkap yang bisa explorer 4 green candle multi time
frame,terus cara rubahnya time framenya bagaimana ?
nanti kalau lagi sempat aja
sekali lagi terima kasih yah.
On Tue, Feb 8, 2011 at 12:06 AM, Christopher Tahir <chris_tahir@ymail.com>wrote:
>
>
> Time = ParamList("Time
> Frame","1-minute|5-minute|15-minute|Hourly|Daily|Weekly|Monthly|Quarterly|Yearly",4);
> TimeResult =
> IIf( Time == "1-minute" , in1Minute ,
> IIf( Time == "5-minute" , in5Minute ,
> IIf( Time == "15-minute" , in15Minute ,
> IIf( Time == "Hourly" , inHourly ,
> IIf( Time == "Daily" , inDaily ,
> IIf( Time == "Weekly" , inWeekly ,
> IIf( Time == "Monthly" , inMonthly ,
> IIf( Time == "Quarterly" , inQuarterly ,
> IIf( Time == "Yearly" , inYearly , 0)))))))));
> TimeFrameSet(TimeResult);
> Seperti yang sy janjikan
>
>
> Best Regards,
> Christopher Tahir
> Blog: http://ez-stock.blogspot.com
> MSN: chris_tahir@hotmail.com
> YM: chris_tahir@ymail.com
>
> Mail to my Y!Group:
> ez-stock-subscribe@yahoogroups.com
>
>
> ------------------------------
> *From:* tjhai lioe <tjhailioe@gmail.com>
> *To:* amibroker-4-bei@yahoogroups.com
> *Sent:* Mon, February 7, 2011 4:06:20 AM
>
> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>
>
>
> terima kasih mas(master) Christopher Tahir.
> explorernya untuk 4 candle daily yah ,
> kalau explorer untuk 4 candle weekly gimana yah
> Christopher Tahir memang master AFL karena dengan cepat bisa membuat afl
> yang panjang dan mantap hasilnya .
>
> terima kasih
>
> On Sun, Feb 6, 2011 at 11:35 PM, Christopher Tahir <chris_tahir@ymail.com>wrote:
>
>>
>>
>> Oh ya, Pak Timur....
>> Yg Fibo, sy ndak ngerti cara buatnya, belum pernah liat Auto Fibo nih....
>> Bs kasi contoh dl, manatau bs jadi inspirasi....
>>
>> :D
>>
>> Best Regards,
>> Christopher Tahir
>> Blog: http://ez-stock.blogspot.com
>> MSN: chris_tahir@hotmail.com
>> YM: chris_tahir@ymail.com
>>
>> Mail to my Y!Group:
>> ez-stock-subscribe@yahoogroups.com
>>
>>
>> ------------------------------
>> *From:* Christopher Tahir <chris_tahir@ymail.com>
>> *To:* amibroker-4-bei@yahoogroups.com
>> *Sent:* Sun, February 6, 2011 11:24:14 PM
>>
>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>
>>
>>
>> Nah ini permintaan Pak Tjhai:
>> Seharusnya uda betulll....
>>
>> //Coded by Christopher Tahir, Ideas from Tjhai Lioe//
>> _SECTION_BEGIN("Price");
>> SetChartOptions(0,chartShowArrows|chartShowDates);
>> _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo
>> %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C,
>> SelectedValue( ROC( C, 1 )) ));
>> Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle |
>> ParamStyle("Style") | GetPriceStyle() );
>> if( ParamToggle("Tooltip shows", "All Values|Only Prices" ) )
>> {
>> ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g
>> (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1
>> )));
>> }
>> _SECTION_END();
>>
>> Green = C > O;
>> Red = C < O;
>> Result = WriteIf( Green AND Ref(Green,-1) AND Ref(Green,-2) AND
>> Ref(Green,-3) , "4-Greens" , WriteIf( Red AND Ref(Red,-1) AND Ref(Red,-2)
>> AND Ref(Red,-3) , "4-Reds" , "" ));
>> Buy = Result == "4-Greens";
>> Sell = Result == "4-Reds";
>>
>> Filter = Buy OR Sell;
>> Trade = WriteIf( Buy , "Buy" , "Sell");
>> SetOption("NoDefaultColumns", True );
>> AddTextColumn(Name(),"Ticker",1.0,colorDefault,colorDefault,60);
>> AddColumn( DateTime(), "Date", formatDateTime,colorDefault,colorDefault,68
>> );
>> AddTextColumn(
>> Trade,"Trade",1.0,colorDefault,IIf(Buy,colorBrightGreen,IIf(Sell,colorPink,colorDefault)),48);
>> AddTextColumn(
>> Result,"Comment",1.0,colorDefault,IIf(Buy,colorBrightGreen,IIf(Sell,colorPink,colorDefault)),100);
>>
>>
>> Best Regards,
>> Christopher Tahir
>> Blog: http://ez-stock.blogspot.com
>> MSN: chris_tahir@hotmail.com
>> YM: chris_tahir@ymail.com
>>
>> Mail to my Y!Group:
>> ez-stock-subscribe@yahoogroups.com
>>
>>
>> ------------------------------
>> *From:* Christopher Tahir <chris_tahir@ymail.com>
>> *To:* amibroker-4-bei@yahoogroups.com
>> *Sent:* Sun, February 6, 2011 11:13:53 PM
>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>
>>
>>
>> Nah ini AFL LinReg penyempurnaan dgn All Time High Detection:
>> _SECTION_BEGIN("Watermark");
>> Z = ParamColor("Watermark Color" , colorBlue);
>> ZZ = Param("Watermark Size" ,0.11 , 0.01 , 1 , 0.01);
>> Font = ParamList("Watermark Font" , "Calibri|Broadway|Chiller|Kunstler
>> Script|Lucida Handwriting|Matura MT Script Capitals|Colonna MT|Comic Sans
>> MS|Jokerman" , 3);
>> GfxSetOverlayMode(1);
>> GfxSetTextAlign(2|0);
>> GfxSelectFont(Font, Status("pxheight")*ZZ );
>> GfxSetBkMode(0);
>> GfxSetTextColor( Z);
>> GfxTextOut("© 2010"+" - "+"Christopher Tahir",Status("pxwidth")/2,
>> Status("pxheight")/2 );
>> _SECTION_END();
>>
>> _SECTION_BEGIN("R-Squared+LinReg+Slope+Exploration");
>> SetChartOptions(0,chartShowArrows|chartShowDates);
>> Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle |
>> ParamStyle("Style") | GetPriceStyle() );
>> Plot( Volume,", Volume",colorBlack,styleHidden);
>>
>> Periods = Optimize("Periods",Param("Periods",126,2,300,1),2,500,1);
>> shift = Param("Look back period",0,0,500,1);
>> P = ParamField("Price field",3);
>>
>> x = Cum(1);
>> lastx = LastValue( x ) - shift;
>> aa = LastValue( Ref(LinRegIntercept(P, Periods), -shift) );
>> bb = LastValue( Ref(LinRegSlope( P, Periods), -shift) );
>> y = Aa + bb * ( x - (Lastx - Periods+1 ) );
>>
>> R2=(Correlation(P,y,Periods)^2);
>> Rdm = 1-R2;
>>
>> LRColor = ParamColor("LR Color", colorCycle );
>> LRStyle = ParamStyle("LR Style");
>> LRLine = IIf( x > (lastx - Periods) AND BarIndex() < Lastx, y, Null );
>> Plot( LRLine , "LinReg", LRColor, LRStyle);
>>
>> // =========================== LinReg1 =========================== //
>>
>> SDP = Param("Standard Deviation", 1.0, 0, 6, 0.1);
>> SD = SDP/2;
>>
>> width = LastValue( Ref(SD*StDev(p, Periods),-shift) );
>> SDU = IIf( x > (lastx - Periods) AND BarIndex() < Lastx, y+width , Null )
>> ;
>> SDL = IIf( x > (lastx - Periods) AND BarIndex() < Lastx, y-width , Null )
>> ;
>>
>> SDColor = ParamColor("SD Color", colorCycle );
>>
>> Plot( SDU , "Upper Lin Reg", SDColor,LRStyle );
>> Plot( SDL , "Lower Lin Reg", SDColor,LRStyle );
>>
>> // =========================== LinReg2 =========================== //
>>
>> SDP2 = Param("2d Standard Deviation", 2.0, 0, 6, 0.1);
>> SD2 = SDP2/2;
>>
>> width2 = LastValue( Ref(SD2*StDev(p, Periods),-shift) );SDU2 = IIf( x >
>> (lastx - Periods) AND BarIndex() < Lastx, y+width2 , Null ) ;
>> SDL2 = IIf( x > (lastx - Periods) AND BarIndex() < Lastx, y-width2 , Null
>> ) ;
>>
>> SDColor2 = ParamColor("2 SD Color", colorCycle );
>>
>> Plot( SDU2 , "Upper Lin Reg", SDColor2,LRStyle );
>> Plot( SDL2 , "Lower Lin Reg", SDColor2,LRStyle );
>>
>> slope = LinRegSlope(P,Periods);
>>
>> // === BarCount ===//
>>
>> Start = ParamDate("Start","Default");
>> X = BarsSince(DateNum()== Start)+1;
>>
>> YY = int(Start / 10000) + 1900;
>> M = int((Start-((YY-1900)*10000))/100);
>> DD = (Start-((YY-1900)*10000))-(M*100);
>>
>>
>> // =========================== Exploration =========================== //
>> Degree = LinRegSlope(MA(P,Periods),2);
>>
>> Bu1 = Degree > 0.05 AND Degree <= 0.25;
>> Bu2 = Degree > 0.25 AND Degree <= 0.5;
>> Bu3 = Degree > 0.5 AND Degree <= 0.75;
>> Bu4 = Degree > 0.75;
>>
>> Si1 = Degree > 0.0175 AND Degree <= 0.05;
>> Si2 = Degree >= -0.0175 AND Degree <= 0.0175;
>> Si3 = Degree < -0.0175 AND Degree >= -0.05;
>>
>> Be1 = Degree < -0.05 AND Degree >= -0.25;
>> Be2 = Degree < -0.25 AND Degree >= -0.5;
>> Be3 = Degree < -0.5 AND Degree >= -0.75;
>> Be4 = Degree < -0.75;
>>
>> Result =
>> WriteIf( Bu1 , "Weak Bullish" ,
>> WriteIf( Bu2 , "Medium Bullish" ,
>> WriteIf( Bu3 , "Strong Bullish" ,
>> WriteIf( Bu4 , "Extreme Bullish" ,
>> WriteIf( Si1 , "Sideways-Bullish" ,
>> WriteIf( Si2 , "Sideways" ,
>> WriteIf( Si3 , "Sideways-Bearish" ,
>> WriteIf( Be1 , "Weak Bearish" ,
>> WriteIf( Be2 , "Medium Bearish" ,
>> WriteIf( Be3 , "Strong Bearish" ,
>> WriteIf( Be4 , "Extreme Bearish" , "")))))))))));
>>
>> FGCol =
>> IIf(Bu1 , colorBlack ,
>> IIf(Bu2 , colorBlack ,
>> IIf(Bu3 , colorLightYellow ,
>> IIf(Bu4 , colorLightYellow ,
>> IIf(Si1 , colorBlack ,
>> IIf(Si2 , colorBlack ,
>> IIf(Si3 , colorBlack ,
>> IIf(Be1 , colorBlack ,
>> IIf(Be2 , colorBlack ,
>> IIf(Be3 , colorLightYellow ,
>> IIf(Be4 , colorLightYellow , colorDefault)))))))))));
>>
>> BGCol =
>> IIf(Bu1 , colorBrightGreen ,
>> IIf(Bu2 , colorLime ,
>> IIf(Bu3 , colorGreen ,
>> IIf(Bu4 , colorDarkGreen ,
>> IIf(Si1 , colorSkyblue ,
>> IIf(Si2 , colorYellow ,
>> IIf(Si3 , colorRose ,
>> IIf(Be1 , colorPink ,
>> IIf(Be2 , ColorRGB(255,100,100) ,
>> IIf(Be3 , colorRed ,
>> IIf(Be4 , colorDarkRed , colorDefault)))))))))));
>>
>> R2FGCol =
>> IIf(R2 >= 0 AND R2 < 0.25 , colorBlack ,
>> IIf(R2 >= 0.25 AND R2 < 0.5 , colorBlack ,
>> IIf(R2 >= 0.5 AND R2 < 0.75 , colorBlack ,
>> IIf(R2 >= 0.75 AND R2 < 0.85 , colorLightYellow ,
>> IIf(R2 >= 0.85 , colorLightYellow , colorDefault)))));
>>
>> R2BGCol =
>> IIf(R2 >= 0 AND R2 < 0.25 , colorRose ,
>> IIf(R2 >= 0.25 AND R2 < 0.5 , colorLime ,
>> IIf(R2 >= 0.5 AND R2 < 0.75 , colorBrightGreen ,
>> IIf(R2 >= 0.75 AND R2 < 0.85 , colorGreen ,
>> IIf(R2 >= 0.85 , colorDarkGreen , colorDefault)))));
>>
>> Bullish = Bu1 OR Bu2 OR Bu3 OR Bu4;
>> Bullish1 = Bu1 OR Bu2;
>> Bullish2 = Bu3 OR Bu4;
>> Sideways = Si1 OR Si2 OR Si3;
>> Bearish = Be1 OR Be2 OR Be3 OR Be4;
>> Bearish1 = Be1 OR Be2;
>> Bearish2 = Be3 OR Be4;
>> All = Bu1 OR Bu2 OR Bu3 OR Bu4 OR Si1 OR Si2 OR Si3 OR Be1 OR Be2 OR Be3
>> OR Be4;
>>
>> Q = ParamList("Trend","Bullish|Good Bullish|Mild
>> Bullish|Sideways|Bearish|Mild Bearish|Bad Bearish|All");
>> QQ =
>> IIf( Q == "Bullish" , Bullish ,
>> IIf( Q == "Mild Bullish" , Bullish1 ,
>> IIf( Q == "Good Bullish" , Bullish2 ,
>> IIf( Q == "Sideways" , Sideways ,
>> IIf( Q == "Bearish" , Bearish ,
>> IIf( Q == "Mild Bearish" , Bearish1 ,
>> IIf( Q == "Bad Bearish" , Bearish2 ,
>> IIf( Q == "All" , All , 0))))))));
>>
>>
>> PriceFrom = Param("Price From:", 1, 50 , 1000000, 1);
>> PriceTo = Param("Price To:", 100000, 50, 1000000, 1);
>> Filter = (QQ) AND (C >= PriceFrom AND C <= PriceTo) AND R2 >= 0.25;
>> SetOption("NoDefaultColumns", True );
>> AddTextColumn(Name(),"Ticker",1.0,colorDefault,colorDefault,60);
>> AddColumn( DateTime(), "Date", formatDateTime,colorDefault,colorDefault,68
>> );
>> AddColumn(C,"Close" , 1.2 , colorDefault , colorDefault , 65);
>> AddTextColumn( Result , "Trend" , 1.0 , FGCol , BGCol , 96);
>> AddColumn(R2 , "R-Sq" , 1.3 , R2FGCol , R2BGCol);
>> AddColumn(Degree , "Slope" , 1.2);
>> AddColumn(SDU2 , "Upper LinReg2" , 1.2 , colorDefault , SDColor2 , 65);
>> AddColumn(SDU , "Upper LinReg" , 1.2 , colorLightYellow , SDColor , 65);
>> AddColumn(LRLine , "LinReg" , 1.2 , colorDefault , LRColor , 65);
>> AddColumn(SDL , "Lower LinReg" , 1.2 , colorLightYellow , SDColor , 65);
>> AddColumn(SDL2 , "Lower LinReg2" , 1.2 , colorDefault , SDColor2 , 65);
>>
>> ATHi = IIf( H > Ref(Highest(H),-1), H , Ref(Highest(H),-1));
>> ATLo = IIf( L < Ref(Lowest(L),-1), H , Ref(Lowest(L),-1));
>> Chg = C - Ref(C,-1);
>>
>>
>>
>> AllTimeHi = WriteIf(High > Ref(Highest(H),-1),"ALL TIME HIGH","");
>> Font = ParamList("Watermark Font" , "Broadway|Calibri|Chiller|Colonna
>> MT|Comic Sans MS|Jokerman|Kunstler Script|Lucida Handwriting|Matura MT
>> Script Capitals" , 3);
>> GfxSetBkColor(colorWhite);
>> GfxSetTextAlign( 6 | 24);
>> GfxSelectFont(Font,Status("pxheight")/12);
>> GfxSetTextColor(colorGrey40);
>> GfxTextOut(AllTimeHi,Status("pxwidth")/2,Status("pxheight")/2);
>>
>> GfxSetOverlayMode(1);
>> GfxSetTextAlign( 6 | 24 );
>> GfxSelectFont("Comic Sans MS",Status("pxheight")/36);
>> GfxSetBkMode(0);
>> GfxSetTextColor(colorBlack);
>> GfxTextOut(Name()+" - "+FullName(),Status("pxwidth")/2,
>> Status("pxheight")/1.07 );
>>
>> _SECTION_END();
>>
>> Fast = Optimize("Fast",Param("Fast", 5,2,50,1),2,50,1);
>> Slow = Optimize("Slow",Param("Slow", 15,2,50,1),2,50,1);
>> IIf(Fast < Slow, True , False);
>> Field = ParamField("Price Field",3);
>> FCol = ParamColor("Fast Color" , colorBlue);
>> SCol = ParamColor("Slow Color" , colorRed);
>> FEMA = EMA(Field,Fast);
>> SEMA = EMA(Field,Slow);
>> Color = IIf(EMA(C,Fast) > EMA(C,Slow), colorBrightGreen, colorRed);
>> Plot(FEMA ,"Fast EMA", FCol , styleLine);
>> Plot(SEMA , "Slow EMA", SCol, styleLine);
>> PlotOHLC(FEMA,Fema,SEMA,FEMA, "", IIf(FEMA>SEMA, colorBrightGreen,
>> colorRose), styleCloud|styleNoLabel);
>> Buy = Cross(FEMA , SEMA) AND (Fast < Slow);
>> Sell = Cross(SEMA , FEMA) AND (Fast < Slow);
>> PlotShapes(shapeUpArrow*Buy,colorGreen,0,L,-24);
>> PlotShapes(shapeDownArrow*Sell,colorRed,0,H,-24);
>>
>> Chg = C - Ref(C,-1);
>> Title = " • "+Name()+" • || "+Interval(2)+" || • "+Date()+" •
>> Open "+Open+" • Hi "+ H+" • Lo "+L+" • Close "+Close+"
>> ("+WriteVal(Chg,1.2)+"-pts "+WriteVal(ROC(C,1),1.1)+"%)"
>>
>> +EncodeColor(colorRed)+"\n----------------------------------------------------------------------------"
>> +EncodeColor(colorBlack)+"\n • R-Squared ("+Periods+") =
>> "+WriteVal(R2,1.4)+" • Random ("+Periods+") = "+WriteVal(Rdm,1.4)+" • "
>>
>> +EncodeColor(colorRed)+"\n----------------------------------------------------------------------------"
>> +EncodeColor(colorGreen)+"\n • Slope ("+Periods+") =
>> "+WriteVal(slope,1.4)+" • "
>>
>> +EncodeColor(colorRed)+"\n---------------------------------------------------------"
>> +EncodeColor(colorBlue)+"\n • Since =
>> "+M+"/"+DD+"/"+YY+EncodeColor(colorDarkGrey)+" • BarCount = "+X+" • "
>>
>> +EncodeColor(colorRed)+"\n---------------------------------------------------------"
>> +EncodeColor(colorBlack)+"\n • Trend ("+Periods+") = "+Result+" • "
>>
>> +EncodeColor(colorRed)+"\n---------------------------------------------------------------------------"
>> +EncodeColor(colorIndigo)+"\n • All Time High =
>> "+ATHi+EncodeColor(colorRed)+" • All Time Low = "+ATLo+" • "
>>
>> +EncodeColor(colorRed)+"\n------------------------------------------------"
>> +EncodeColor(Fcol)+"\n • "+ "EMA ("+Fast+") = "+WriteVal(FEMA,1.2)
>> +EncodeColor(Scol)+" • "+ "EMA ("+Slow+") = "+WriteVal(SEMA,1.2)+" •
>> ";
>>
>> Sorry agak panjang...
>> :D
>>
>> Nah buat Pak Tjhai, mungkin gini:
>> Sy coba formulasikan dl, kalo uda OK, sy kabarin deh
>>
>> Best Regards,
>> Christopher Tahir
>> Blog: http://ez-stock.blogspot.com
>> MSN: chris_tahir@hotmail.com
>> YM: chris_tahir@ymail.com
>>
>> Mail to my Y!Group:
>> ez-stock-subscribe@yahoogroups.com
>>
>>
>> ------------------------------
>> *From:* tjhai lioe <tjhailioe@gmail.com>
>> *To:* amibroker-4-bei@yahoogroups.com
>> *Sent:* Sun, February 6, 2011 10:53:23 PM
>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>
>>
>>
>> Pak Christopher exploration nya luar biasa bagus sekali ,terima kasih yah
>> pak saya pernah baca buku ,kata buku itu untuk main long term ,salah satu
>> cara kita cari saham yang empat candle hijau weekly yang naik berturut =
>> buy dan kalau empat candle weekly merah 4 minggu berturut = sell.
>> gimana yah pak buat eplorernya untuk cari 4 candle weekly yang berturut
>> naik dan turun.
>> terima kasih
>>
>> 2011/2/6 tjhai lioe <tjhailioe@gmail.com>
>>
>>> memang Mas Eco dan Mas Christopher luar biasa ,karyanya sangat berguna
>>> buat kita semua.
>>> untuk mengatur warna dan periode linear regressionnya
>>> klik kana pilih parameter
>>> atur deh warnanya dan periodenya
>>> kalau sdh klik ok
>>>
>>> selamat mencoba
>>>
>>>
>>> semoga berguna
>>> 2011/2/6 tjhai lioe <tjhailioe@gmail.com>
>>>
>>> ini saya coba gabung karya Mas Eco dan Mas Christopher
>>>> semoga bermanfaat
>>>>
>>>> 2011/2/6 Christopher Tahir <chris_tahir@ymail.com>
>>>>
>>>>
>>>>>
>>>>> Sama2...
>>>>> Di pake dengan baik2 mas...
>>>>> Itu bs di setting SMA, WMA ato EMA...
>>>>> Tinggal dipilih saje...
>>>>>
>>>>> :D
>>>>>
>>>>> Best Regards,
>>>>> Christopher Tahir
>>>>> Blog: http://ez-stock.blogspot.com
>>>>> MSN: chris_tahir@hotmail.com
>>>>> YM: chris_tahir@ymail.com
>>>>>
>>>>> Mail to my Y!Group:
>>>>> ez-stock-subscribe@yahoogroups.com
>>>>>
>>>>>
>>>>> ------------------------------
>>>>> *From:* Ben <gwoke74@yahoo.com>
>>>>> *To:* "amibroker-4-bei@yahoogroups.com" <
>>>>> amibroker-4-bei@yahoogroups.com>
>>>>> *Sent:* Sun, February 6, 2011 9:46:58 PM
>>>>>
>>>>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>>>>
>>>>>
>>>>>
>>>>> Waahh terima kasih pak Chris, pak Eco dan lainnya atas bantuannya :D
>>>>>
>>>>> Rgds
>>>>>
>>>>> Ben
>>>>>
>>>>> Sent from Ben's Iphone
>>>>>
>>>>> On Feb 6, 2011, at 21:29, Christopher Tahir <chris_tahir@ymail.com>
>>>>> wrote:
>>>>>
>>>>>
>>>>>
>>>>> Wah...
>>>>> LinReg sy seingat sy uda pernah dishare tuh, coba dicari aja yah di
>>>>> filing yg uda lama.
>>>>> Kalo Std Deviation, maksudnya spt Bol.Bands donk...
>>>>> Coba sy formulasikan dl dehh..
>>>>> Kalo uda jadi, ku kabarkan....
>>>>> :D
>>>>>
>>>>>
>>>>>
>>>>> Best Regards,
>>>>> Christopher Tahir
>>>>> Blog: http://ez-stock.blogspot.com
>>>>> MSN: <chris_tahir@hotmail.com>chris_tahir@hotmail.com
>>>>> YM: <chris_tahir@ymail.com>chris_tahir@ymail.com
>>>>>
>>>>> Mail to my Y!Group:
>>>>> ez-stock-subscribe@yahoogroups.com
>>>>>
>>>>>
>>>>> ------------------------------
>>>>> *From:* Eco Syariah <esyariah@gmail.com>
>>>>> *To:* amibroker-4-bei@yahoogroups.com
>>>>> *Sent:* Sun, February 6, 2011 8:51:10 PM
>>>>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>>>>
>>>>>
>>>>>
>>>>> Untuk channel/LinReg... masternya mas Chris tuh... tunggu aja reply
>>>>> dari beliau.
>>>>>
>>>>> Regards,
>>>>> ES
>>>>>
>>>>> 2011/2/6 Ben <gwoke74@yahoo.com>
>>>>>
>>>>>>
>>>>>>
>>>>>> Sippp tx banget yah pak eco dicoba dulu nihh ...wah klo dit + lagi ama
>>>>>> std (channel) untuk 21 hari dan stdnya adalah 0.61,1, 1.61 & 2.61 apakah
>>>>>> bisa pak eco? Sory banget nambah terus soalnya saya enggak ngerti bahasa
>>>>>> afl...
>>>>>>
>>>>>> Sebelumnya makasih banget pak Eco atas bantuannya..
>>>>>>
>>>>>> Ben
>>>>>>
>>>>>> Sent from Ben's Iphone
>>>>>>
>>>>>> On Feb 6, 2011, at 19:02, Eco Syariah <esyariah@gmail.com> wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>> Nice idea mas Ben,
>>>>>>
>>>>>> Coba tambahkan ini:
>>>>>> *
>>>>>> Buy = Cross(C, EMA20) AND EMA20>EMA50;
>>>>>> Sell = Cross(EMA20, C) AND EMA20>EMA50;
>>>>>>
>>>>>> PlotShapes(shapeUpArrow*Buy, colorBlue, 0, L, -15);
>>>>>> PlotShapes(shapeDownArrow***Sell, colorRed, 0, H, -15);*
>>>>>>
>>>>>> Regards,
>>>>>> ES
>>>>>>
>>>>>> On Sun, Feb 6, 2011 at 12:14 PM, Ben < <gwoke74@yahoo.com>
>>>>>> gwoke74@yahoo.com> wrote:
>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Siang all kalo mau dit + dgn signal buy saat harga cross ma 20 hanya
>>>>>>> waktu cloud hijau (bullish) ada yang bisa bantu tambahan aflnya ?
>>>>>>>
>>>>>>> Makasih sebelumnya
>>>>>>>
>>>>>>>
>>>>>>> Sent from Ben's Iphone
>>>>>>>
>>>>>>> On Feb 6, 2011, at 10:28, "hakitrader" < <hakitrader@gmail.com>
>>>>>>> hakitrader@gmail.com> wrote:
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> // Ini afl yang tidak error
>>>>>>> //EMA20=EMA(Close,20);
>>>>>>> EMA20=EMA(Close,20);
>>>>>>> EMA55=EMA(Close,55);
>>>>>>>
>>>>>>> PlotOHLC(EMA20, EMA20, EMA55, EMA20, "", IIf(ema20>ema55, colorGreen,
>>>>>>> colorRed), styleCloud);
>>>>>>> //
>>>>>>>
>>>>>>> <http://www.facebook.com/hakie1> <http://www.facebook.com/hakie1>
>>>>>>> http://www.facebook.com/hakie1
>>>>>>> <http://www.tviexpress.com/andyelia1><http://www.tviexpress.com/andyelia1>
>>>>>>> http://www.tviexpress.com/andyelia1
>>>>>>>
>>>>>>> ----- Original Message -----
>>>>>>> *From:* ag hadi <ag_hadi@yahoo.com>
>>>>>>> *To:* <amibroker-4-bei@yahoogroups.com><amibroker-4-bei@yahoogroups.com>
>>>>>>> amibroker-4-bei@yahoogroups.com
>>>>>>> *Sent:* Sunday, February 06, 2011 9:46 AM
>>>>>>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Kok error ya Pak Tjhai.....
>>>>>>>
>>>>>>> *From:* tjhai lioe < <tjhailioe@gmail.com> <tjhailioe@gmail.com>
>>>>>>> tjhailioe@gmail.com>
>>>>>>> *To:* <amibroker-4-bei@yahoogroups.com><amibroker-4-bei@yahoogroups.com>
>>>>>>> amibroker-4-bei@yahoogroups.com
>>>>>>> *Cc:*
>>>>>>> *Sent:* Sunday, February 6, 2011 4:52 AM
>>>>>>> *Subject:* Re: [Komunitas AmiBroker] Bikin warna ema 20,50
>>>>>>>
>>>>>>>
>>>>>>> tambahin ah biar seru
>>>>>>>
>>>>>>> 2011/2/4 Christopher Tahir < <chris_tahir@ymail.com><chris_tahir@ymail.com>
>>>>>>> chris_tahir@ymail.com>
>>>>>>>
>>>>>>>
>>>>>>> Gini aja codenya:
>>>>>>> Color = iif(EMA(C,20) > EMA(C,50), colorGreen, colorRed);
>>>>>>>
>>>>>>> Best Regards,
>>>>>>> Christopher Tahir
>>>>>>> Blog: <http://ez-stock.blogspot.com> <http://ez-stock.blogspot.com>
>>>>>>> http://ez-stock.blogspot.com
>>>>>>> MSN: <chris_tahir@hotmail.com> <chris_tahir@hotmail.com>
>>>>>>> chris_tahir@hotmail.com
>>>>>>> YM: <chris_tahir@ymail.com> <chris_tahir@ymail.com>
>>>>>>> chris_tahir@ymail.com
>>>>>>>
>>>>>>> Mail to my Y!Group:
>>>>>>> <ez-stock-subscribe@yahoogroups.com><ez-stock-subscribe@yahoogroups.com>
>>>>>>> ez-stock-subscribe@yahoogroups.com
>>>>>>>
>>>>>>>
>>>>>>> *From:* Ben < <gwoke74@yahoo.com> <gwoke74@yahoo.com>
>>>>>>> gwoke74@yahoo.com>
>>>>>>> *To:* " <amibroker-4-bei@yahoogroups.com><amibroker-4-bei@yahoogroups.com>
>>>>>>> amibroker-4-bei@yahoogroups.com" < <amibroker-4-bei@yahoogroups.com><amibroker-4-bei@yahoogroups.com>
>>>>>>> amibroker-4-bei@yahoogroups.com>
>>>>>>> *Sent:* Fri, February 4, 2011 6:55:33 PM
>>>>>>> *Subject:* [Komunitas AmiBroker] Bikin warna ema 20,50
>>>>>>>
>>>>>>>
>>>>>>> Malam semua,
>>>>>>>
>>>>>>> Apakah ada yang bisa bantu untuk afl berwarna ema 20,50 yaitu kalau
>>>>>>> golden cross antara ema 20-50 warnanya hijau dan kalau death cross antara
>>>>>>> 50-20 warnanya merah.
>>>>>>>
>>>>>>> Sebelumnya makasih ..
>>>>>>>
>>>>>>> Ben
>>>>>>> Sent from Ben's Iphone
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> <GoldenX DeathX1b.afl>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>
>>
>>
>>
>
>
>
------------------------------------
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