Fave This

Thursday, 24 March 2011

Re: Fw: Fwd: [Komunitas AmiBroker] afl Tom DeMark Channel...?



Pak Tjhai,

Kl mau coba channel silahkan bandingkan dgn study channel yg saya create sendiri dgn basic afl profit taker, how to entry exit-nya mudah:  yellow candle after red candle = speculative buy. yellow candle after green candle = speculative sell. also for confirm sell/buy if price break "mid line (lightgrey)", dan tiap2 line-nya disini jg berfungsi sbg trigger high/low.  tp utk backtest-nya silahkan tambahkan instruksi buy/sell sehingga bpk bisa ukur system channel ini efektive atau tidak dgn harapan anda. Nah.. utk backtest Pak Wisnu guru yg baik hati dan ndak pelit kog, silahkan mendalami pd beliau.

salam,
Isfandi

_SECTION_BEGIN("Profit Taker Channel, Modified by: Isfandi");
HaClose =EMA((O+H+L+C)/4,3);
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );

ProfitTaker = EMA( H, 13 ) + 2 * ATR(10);
LosserTaker = EMA( L, 13 ) - 2 * ATR(10);
MidTaker = (LosserTaker+ProfitTaker)/2;
MidHigh = (MidTaker+ProfitTaker)/2;
MidLow = (MidTaker+LosserTaker)/2;
secure= (MidTaker+MidHigh)/2;
worry= (MidTaker+MidLow)/2;

outsidebar = C < secure AND C > MidTaker;
insidebar = C < MidTaker  AND C > worry;
upbar = C > MidTaker AND C > secure ;
downbar = C < MidTaker AND C < worry;

barcolor = IIf(outsidebar, colorGold,
               IIf(downbar, colorRed,
                   IIf(upbar, colorBrightGreen,
                       IIf(insidebar, 11, colorYellow)
                      )
                  )
              );

Title = Name() + "\\c" + barcolor + " - Color Bar Chart : " +
         WriteIf(Outsidebar, "Outside Bar",
                  WriteIf(insidebar, "Inside Bar",
                             WriteIf(upbar, "Up Bar",
                                      WriteIf(downbar, "Down Bar", "Neutral Bar")
                                   )
                         )
                );

Plot(Close, Title, barcolor, styleThick + styleCandle);
Plot( ProfitTaker, "Profit taker", colorViolet, styleLine );
Plot( LosserTaker, "LosserTaker", colorDarkBlue, styleLine );
Plot( MidTaker, "MidTaker", colorLightGrey, styleLine );
Plot( MidHigh, "MidHigh", colorDarkGreen, styleLine );
Plot( MidLow, "MidLow", colorPlum, styleLine );
Plot( secure, "secure", colorPlum, styleLine );
Plot( worry, "worry", colorPlum, styleLine );
PlotOHLC(MidHigh, MidHigh, secure, secure, "", IIf(MidHigh > secure,colorDarkGreen, colorDarkGreen),styleNoLabel|styleCloud );
PlotOHLC(MidLow, MidLow, worry, worry, "", IIf(MidLow > worry,colorPlum, colorPlum),styleNoLabel|styleCloud );
_SECTION_END();


 






From: tjhai lioe <tjhailioe@gmail.com>
To: amibroker-4-bei@yahoogroups.com
Sent: Thu, March 24, 2011 7:54:54 PM
Subject: Re: Fw: Fwd: [Komunitas AmiBroker] afl Tom DeMark Channel...?

 

Santi salam kenal yah ,AFL dari pak Isfandi itu jalan ,cuma warna garis channelnya kuning akibatnya di chart yang berlatar putih tidak begitu terlihat ,tapi di chart yang berlatar belakang hitam akan tampak jelas garis channelnya .
untuk menghadirkan candle ,Santi harus drag kedalam chartnya .

untuk memudahkan saya gabungkan AFL pak Isfandi dengan candle ,serta warna garisnya saya buat biru sehingga tampak pada lembaran chart berlatar belakang warna putih.
AFL nya ada dua  sesuai dengan Afl nya pak Isfandi
semoga berguna

cuma rasa ingin tahu aja ,kenapa gunakan Tom De Mark channel dan tidak bollinger band saja.
apa kelebihan TD channel ini.
dan bagaimana cara mengunakannya .

terima kasih

On Thu, Mar 24, 2011 at 6:24 PM, arfian yuddy <ayahnyanadia@yahoo.com> wrote:
 



----- Forwarded Message ----
From: arfian yuddy <ayahnyanadia@yahoo.com>
To: amibroker-4-bei@yahoogroups.com
Sent: Thu, March 24, 2011 4:01:03 PM
Subject: Re: Fwd: [Komunitas AmiBroker] afl Tom DeMark Channel...?

 

Silahkan dicoba, saya lampirkan kombinasi afl  Tom DeMark dgn chart MA biasa..maksudnya afl tsb, agar angka multipliernya diganti 


From: santi <susanti9988@gmail.com>
Sent: Thu, March 24, 2011 2:15:02 PM
Subject: Fwd: [Komunitas AmiBroker] afl Tom DeMark Channel...?

 


Pak Isfandi dan teman2,tlg tanya knp ya... afl pak isfandi ga bs jalan di ami saya?
terlampir tampilannya.

thanks pak


2011/3/21, isfandi2001@yahoo.com <isfandi2001@yahoo.com>:
> try this one Pak..
>
>
> /******************************************************************
>  * TD Channel I: Short term indicator
>  * TD says that two consecutive closes above the upper channel indicate
>  * a price exhaustion to the upside.
>  *
>  * TD Says that two consecutive closes below the lower channel indicate
>  * a price exhaustion to the downside.
>  *
>  * Channel extremes are less effective if the market is trending. Use
>  * the TDSequential signal or TD Combo signal to determine that trend
>  * has ended.
>  *
>  * Improvements:
>  * Notes: Seems to work best on monthly prices.
>  * Author observation: A close where the open is above the upper channel
>  * tends to indicate a market top. The reverse is applied for a bottom.
>  *******************************************************************/
> EnterType = ParamList("Security Type","Stock,Commodity");
> TDPlotStyle = ParamStyle("Plot Style", styleDashed );
> TDGraphColor = ParamColor("Color", colorYellow);
> fHighMultiplier = 0.97;
> fLowMultiplier = 1.03;
> if( EnterType == "Stock" )
>     {
>     fHighMultiplier = 0.91;
>     fLowMultiplier = 1.09;
>     }
> TDC1lma = MA( L, 3) * fLowMultiplier;
> TDC1hma = MA( H, 3) * fHighMultiplier;
> Plot( TDC1lma, "TDC2L",    TDGraphColor,    TDPlotStyle);
> Plot( TDC1hma, "TDC2H",    TDGraphColor,    TDPlotStyle);
>
> //////////end///////////////
>
> for short term indicator period pls use :
> fHighMultiplier = 0.995;
> fLowMultiplier = 1.005;
> and
> fHighMultiplier = 0.930;
> fLowMultiplier = 1.070;
>
> //////////////
>
> Regards,
> Isfandi
>
>
>
>
>
>
>
>
> ________________________________
> From: arfian yuddy <ayahnyanadia@yahoo.com>
> To: amibroker-4-bei@yahoogroups.com
> Sent: Sun, March 20, 2011 11:06:40 PM
> Subject: [Komunitas AmiBroker] afl Tom DeMark Channel...?
>
>
> Dear Para Master afl..?
>
> Sy sedang mencari afl Tom DeMark Channel...adakah yg bersedia sharing..?
>
> Thanks.
>
>
>
>
>
>







__._,_.___


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





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

No comments:

Post a Comment