Fave This

Wednesday 8 September 2010

RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed



Kalau pandai meniti buih selamat badan sampai ke seberang… tentu dengan cuan

 

Eko

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of greenhorn
Sent: Thursday, September 09, 2010 9:44 AM
To: amibroker-4-bei@yahoogroups.com
Subject: Re: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

 

hehe.....nubie jangan dipanggil bos dong....

Mengenai resiko.....Apa bedanya menyeberangi jembatan setinggi 2 meter dan 20 meter di atas sungai yang mengalir deras? Bukankah mereka yang yakin akan berjalan dengan santai di ketinggian 20m dan yang ragu-ragu akan berjalan dengan gemetar tertatih-tatih di ketinggian 2 meter?


salam,
green

On Wed, Sep 9, 2009 at 3:00 AM, Timur Langit <timurlangit.is.here@gmail.com> wrote:

 

Mr. Kenzie buktikan AFL future data bukanlah ancaman. Karena itu penampilan pivot dari future data sangat penting sebab pivot itu berada pada posisi yg sempurna (cuma ketahuannya telat). Penampilan karakter 'buy' n 'sell' pada chart dari AFL nya Isfandi sangat membantu. Sebab saya jadi bisa membedakan mana yg signal on the spot (dari macd stho buaya dll) mana yg future. 

 

Contoh yg saya bayangkan adalah Hari ini terlihat golden cross dgn volume tinggi lalu 'BUY' muncul di bar tiga hari yg lalu, harga baru naik 2% dari titik buy, saya menjadi yakin bahwa it is secure to jump in with more lots. Mungkin risk CL cukup besar, tapi konfirmasi telah terjadi. Betul begitu Bos Green?     

 

Mantap Isfandi.... Top markotop Mr Kenzie

 

Let's improve the spread 15:85 into 25:75, where 10% is from AmiB'ers. 

 

Go AmiB'ers... Kita bisa!

 

 


Sent from my iPhone


On Sep 8, 2010, at 10:11 PM, "Kenzie Sebastian" <kenziesr@yahoo.co.id> wrote:

 

Pak isfandi, Analisa commentary volume V.12 sangat menarik dan juga buy/sell pivot. Saya sedang pelajari lebih lanjut. Mohon kiranya mengijinkan bila nanti masuk dalam sistem yang saya buat.

Terima kasih pak sudah sharing afl-nya.

 

Salam, KSR

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of isfandi2001@yahoo.com
Sent: Wednesday, September 08, 2010 7:19 PM
To: amibroker-4-bei@yahoogroups.com
Subject: Re: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

 


Ok Pak Kenzie.. silahkan dibandingkan saja utk study anda, menurut saya analisa commentary volume V.12 ini msh yg terbaik slm saya pelajari bgt pula dgn analisa term predictionnya (tipsnya jika vol said "very high" blh dipertimbangkan), menurut saya formula sdh dibuat berdasarkan analisa yg terbaik dan sebaiknya tdk dirubah kecuali kita telah melakukan study yg panjang dan teruji utk menyesuaikan dgn karakteristik saham ybs.

dan kl anda ingin trading lebih dinamis silahkan tambahkan afl Buy/Sell Pivot yg saya lampirkan dibawah ini spt pic yg saya lampirkan kemarin. mengenai caranya silahkan bar reply utk menyesuaikan dgn gaya anda bertrading dan tentukan sendiri best time to entry/exit.

semoga bermanfaat.


furmula buy/sell pivot XXXXXXXXXXXXXXXXXXXXXXXXXXXX

_SECTION_BEGIN("Plot Buy Sell");
Q = Param( "% Change", 2, 0.1, 10, 0.1 );
Z = Zig( C , q ) ;
HH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( z, q, 1 ) > Peak( Z, q, 2 ) ) );
LH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( Z, q, 1 ) < Peak( Z, q, 2 ) ) );
HL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) > Trough( Z, q, 2 ) ) );
LL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) < Trough( Z, q, 2 ) ) );
GraphXSpace = 5;
dist = 1 * ATR( 20 );

for ( i = 0; i < BarCount; i++ )
{
    if ( HH[i] )
        PlotText( "SELL", i, H[ i ] + dist[i], colorGold );

    if ( LH[i] )
        PlotText( "sell", i, H[ i ] + dist[i], colorDarkYellow );

    if ( HL[i] )
        PlotText( "buy", i, L[ i ] - dist[i], colorBlue );

    if ( LL[i] )
        PlotText( "BUY", i, L[ i ] - dist[i], colorPink );

}

formula Volume and Term Predict XXXXXXXXXXXXXXXXXXXXXXXXXX



//====================================================================================
_SECTION_BEGIN("Volume Price Analysis - V.1.2");
SetChartOptions(0,chartShowArrows|chartShowDates);
//=======================================================================================
DTL=Param("Linear regression period",60,10,100,10);
wbf=Param("WRB factor",1.5,1.3,2.5,.1);
nbf=Param("NRB factor",0.7,0.3,0.9,0.1);
TL=LinRegSlope(MA(C, DTL),2);
Vlp=Param("Volume lookback period",30,20,300,10);
Vrg=MA(V,Vlp);
St = StDev(Vrg,Vlp);
Vp3 = Vrg + 3*st;
Vp2 = Vrg + 2*st;;
Vp1 = Vrg + 1*st;;
Vn1 = Vrg -1*st;
Vn2 = Vrg -2*st;
rg=(H-L);
arg=Wilders(rg,30);
wrb=rg>(wbf*arg);
nrb=rg<(nbf*arg);
Vl=V<Ref(V,-1) AND V<Ref(V,-2);
upbar=C>Ref(C,-1);
dnbar=C<Ref(C,-1);
Vh=V>Ref(V,-1) AND Ref(V,-1)>Ref(V,-2);
Cloc=C-L;
x=rg/Cloc;
x1=IIf(Cloc==0,arg,x);
Vb=V>Vrg OR V>Ref(V,-1);
ucls=x1<2;
dcls=x1>2;
mcls=x1<2.2 AND x1>1.8 ;
Vlcls=x1>4;
Vhcls=x1<1.35;
j=MA(C,5);
TLL=LinRegSlope(j,40) ;
Tlm=LinRegSlope(j,15) ;
tls=LinRegSlope(j,5);
mp=(H+L)/2;
_SECTION_END();
//==========================================================================================
_SECTION_BEGIN("VSA");
utbar=wrb AND dcls AND tls>0 ;
utcond1=Ref(utbar,-1) AND dnbar ;
utcond2=Ref(utbar,-1) AND dnbar AND V>Ref(V,-1);
utcond3=utbar AND V> 2*Vrg;
trbar=Ref(V,-1)>Vrg  AND Ref(upbar,-1) AND Ref(wrb,-1) AND dnbar AND dcls AND wrb AND tll>0 AND H==HHV(H,10);
Hutbar=Ref(upbar,-1) AND Ref(V,-1)>1.5*Vrg AND dnbar AND dcls AND NOT wrb AND NOT utbar;
Hutcond=Ref(Hutbar,-1) AND dnbar AND dcls AND NOT utbar;
tcbar=Ref(upbar,-1) AND H==HHV(H,5)AND dnbar AND (dcls OR mcls) AND V>vrg AND NOT wrb AND NOT Hutbar ;
Scond1=(utcond1 OR utcond2 OR utcond3) ;
Scond2=Ref(scond1,-1)==0;
scond=scond1 AND scond2;
stdn0= tll<0 AND V>Ref(V,-1) AND Ref(dnbar,-1) AND upbar AND (ucls OR mcls) AND tls<0 AND tlm<0;
stdn= V>Ref(V,-1) AND Ref(dnbar,-1) AND upbar AND (ucls OR mcls) AND tls<0 AND tlm<0;
stdn1= tll<0 AND V>(vrg*1.5) AND Ref(dnbar,-1) AND upbar AND (ucls OR mcls)AND tls<0 AND tlm<0;
stdn2=tls<0 AND Ref(V,-1)<Vrg  AND upbar AND vhcls AND V>Vrg;
bycond1= stdn OR stdn1;
bycond= upbar  AND Ref(bycond1,-1);
stvol= L==LLV(L,5)  AND (ucls OR mcls) AND V>1.5*Vrg AND tll<0;
ndbar=upbar AND nrb AND Vl  AND dcls ;
nsbar=dnbar AND nrb AND Vl  AND dcls ;
nbbar= C>Ref(C,-1) AND Vl AND nrb AND x1<2;
nbbar= IIf(C>Ref(C,-1) AND V<Ref(V,-1) AND V<Ref(V,-2) AND x1<1.1,1,0);
lvtbar= vl AND L<Ref(L,-1) AND ucls;
lvtbar1= V<Vrg AND L<Ref(L,-1) AND ucls AND tll>0 AND tlm>0 AND wrb;
lvtbar2= Ref(Lvtbar,-1) AND upbar AND ucls;
dbar= V>2*Vrg AND dcls AND upbar AND tls>0 AND tlm>0 AND NOT Scond1 AND NOT utbar;
eftup=H>Ref(H,-1) AND L>Ref(L,-1) AND C>Ref(C,-1) AND C>=((H-L)*0.7+L) AND rg>arg AND V>Ref(V,-1);
eftupfl=Ref(eftup,-1) AND (utbar OR utcond1 OR utcond2 OR utcond3);
eftdn=H<Ref(H,-1) AND L<Ref(L,-1) AND C<Ref(C,-1) AND  C<=((H-L)*0.25+L) AND rg>arg AND V>Ref(V,-1);
_SECTION_END();

_SECTION_BEGIN("Commentary");
Vpc= utbar OR utcond1 OR utcond2 OR utcond3 OR stdn0 OR stdn1 OR stdn2 OR stdn OR lvtbar1 OR Lvtbar OR Lvtbar2 OR Hutbar OR Hutcond OR ndbar OR stvol OR tcbar;

if( Status("action") == actionCommentary )
(
printf ( "=========================" +"\n"));
printf ( "VOLUME PRICE ANALYSIS" +"\n");
printf ( "" +"\n");
printf ( "=========================" +"\n");
printf ( Name() + " - " +Interval(2) +  "  - " + Date() +" - " +"\n"+"High-"+H+"\n"+"Low-"+L+"\n"+"Open-"+O+"\n"+
"Close-"+C+"\n"+ "Volume= "+ WriteVal(V)+"\n");
WriteIf(Vpc,"=======================","");
WriteIf(Vpc,"VOLUME ANALYSIS COMMENTARY:\n","");

WriteIf(utbar , "Up-thrusts are designed to catch stops and to mislead as many traders as possible. 
They are normally seen after there has been weakness in the background. The market makers know that the
market is weak, so the price is marked up to catch stops, encourage traders to go long in a weak market,
AND panic traders that are already Short into covering their very good position.","")+
WriteIf(utcond3,"This upthrust bar is at high volume.This is a sure sign of weakness. One may even seriously
consider ending the Longs AND be ready to reverse","")+WriteIf(utbar OR utcond3," Also note that A wide spread
down-bar that appears immediately after any up-thrust, tends to confirm the weakness (the market makers are
locking in traders into poor positions).
With the appearance of an upthrust you should
certainly be paying attention to your trade AND your stops. On many upthrusts you will find that the market will
'test' almost immediately.","")+WriteIf(utcond1 , "A wide spread down bar following a Upthrust Bar.
This confirms weakness. The Smart Money is locking in Traders into poor positions","");
WriteIf(utcond2 , "Also here the volume is high( Above Average).This is a sure sign of weakness. The Smart Money is
locking in Traders into poor positions","")+WriteIf(stdn, "Strength Bar. The stock has been in a down Trend. An upbar
with higher Volume closing near the High is a sign of strength returning. The downtrend is likely to reverse soon. ","")+
WriteIf(stdn1,"Here the volume is very much above average. This makes this indication more stronger. ","")+
WriteIf(bycond,"The previous bar saw strength coming back. This upbar confirms strength. ","")+
WriteIf(Hutbar," A pseudo Upthrust. This normally appears after an Up Bar with above average volume. This looks like an upthrust bar
closing down near the Low. But the Volume is normally Lower than average. this is a sign of weakness.If the Volume is High then weakness
increases. Smart Money is trying to trap the retailers into bad position. ","")+
WriteIf(Hutcond, "A downbar after a pseudo Upthrust Confirms weakness. If the volume is above average the weakness is increased. ","")+
WriteIf(Lvtbar2,"The previous bar was a successful Test of supply. The current bar is a upbar with higher volume. This confirms strength","")+
WriteIf(dbar,"A wide range, high volume bar in a up trend closing down is an indication the Distribution is in progress. The smart money
is Selling the stock to the late Comers rushing to Buy the stock NOT to be Left Out Of a Bullish move. ","")+
WriteIf(Lvtbar2,"The previous bar was a successful Test of supply. The current bar is a upbar with higher volume. This confirms strength","")+
WriteIf(tcbar,"The stock has been moving up on high volume. The current bar is a Downbar with high volume. Indicates weakness and probably end of the up move","")+
WriteIf(eftup,"Effort to Rise bar. This normally found in the beginning of a Markup Phase and is bullish sign.These may be found at the top of an Upmove as the Smart money makes a
last effort to move the price to the maximum","")+
WriteIf(eftdn,"Effort to Fall bar. This normally found in the beginning of a Markdown phase.","")+

WriteIf(nsbar,"No Supply. A no supply bar indicates supply has been removed and the Smart money can markup the price. It is better to wait for confirmation","")+
WriteIf(stvol,"Stopping Volume. This will be an downbar during a bearish period closing towards the Top accompanied by High volume.
A stopping Volume normally indicates that smart money is absorbing the supply which is a Indication that they are Bullishon the MArket.
Hence we Can expect a reversal in the down trend. ","")+
WriteIf(ndbar, "No Demand
Brief Description:
Any up bar which closes in the middle OR Low, especially if the Volume has fallen off,
is a potential sign of weakness.

Things to Look Out for:
if the market is still strong, you will normally see signs of strength in the next few bars,
which will most probably show itself as a:
* Down bar with a narrow spread, closing in the middle OR High.
* Down bar on Low Volume.","");
_SECTION_END();

//======================================================================================================================================================================================
//TITLE
_SECTION_BEGIN("Title");
if( Status("action") == actionIndicator )
(
Title = EncodeColor(colorWhite)+ "Volume Price Analysis" + " - " +  Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +
 "  - " + Date() +" - " +EncodeColor(colorLime)+ "Volume= "+WriteVal(V)+"--"+EncodeColor(colorYellow)+"\n"+
WriteIf (utbar, " An Upthrust Bar. A sign of weakness. ","")+
WriteIf (utcond1, " A downbar after an Upthrust. Confirm weakness. ","")+
WriteIf (utcond2 AND NOT utcond1, " A High Volume downbar after an Upthrust. Confirm weakness.","")+
WriteIf (utcond3, "This upthrust at very High Voume, Confirms weakness","")+
WriteIf (stdn1, "Strength seen returning after a down trend. High volume adds to strength. ","")+
WriteIf (stdn0 AND NOT stdn, "Strength seen returning after a down trend. ","")+
WriteIf (stdn AND NOT stdn1, "Strength seen returning after a long down trend. ","")+
WriteIf (Lvtbar, "Test for supply. ","")+
WriteIf (Lvtbar2, "An Upbar closing near High after a Test confirms strength. ","")+
WriteIf (bycond, "An Upbar closing near High. Confirms return of Strength. ","")+
WriteIf (dbar, "A High Volume Up Bar closing down in a uptrend shows Distribution. ","")+
WriteIf (Hutbar, "Psuedo UpThrust.   A Sign of Weakness. ","")+
WriteIf (Hutcond, "A Down Bar closing down after a Pseudo Upthrust confirms weakness. ","")+
WriteIf (Lvtbar1, "Test for supply in a uptrend. Sign of Strength. ","")+
WriteIf (stdn2, "High volume upbar closing on the high indicates strength. ","")+
WriteIf (Tcbar, "High volume Downbar after an upmove on high volume indicates weakness. ","")+
WriteIf (ndbar, "No Demand. A sign of Weakness. ","")+
WriteIf (nsbar, "No Supply. A sign of Strength. ","")+
WriteIf (eftup, "Effort to Rise. Bullish sign ","")+
WriteIf (eftdn, "Effort to Fall. Bearish sign ","")+
WriteIf (eftupfl, "Effort to Move up has failed. Bearish sign ","")+
WriteIf (stvol, "Stopping volume. Normally indicates end of bearishness is nearing. ","")+
("\n Volume: ")+WriteIf(V>Vp2,EncodeColor(colorLime)+"Very High",WriteIf(V>Vp1,EncodeColor(colorLime)+" High",WriteIf(V>Vrg,EncodeColor(colorLime)+"Above Average",
WriteIf(V<Vrg AND V>Vn1,EncodeColor(colorRed)+"Less than Average",WriteIf(V<Vn1,"Low","")))))+
(EncodeColor(colorYellow)+"      Spread: ")+WriteIf(rg >(arg*2),EncodeColor(colorLime)+" Wide",WriteIf(rg>arg,EncodeColor(colorLime)+" Above Average",EncodeColor(colorRed)+" Narrow"))+
(EncodeColor(colorYellow)+"      Close:  ")+WriteIf(Vhcls,EncodeColor(colorLime)+"Very High",WriteIf(ucls,EncodeColor(colorLime)+"High",WriteIf(mcls,EncodeColor(colorYellow)+"Mid",
WriteIf(dcls,EncodeColor(colorRed)+"Down","Very Low"))))+
("\n Trend: ")+WriteIf(tls>0,EncodeColor(colorLime)+"  Short Term-UP",EncodeColor(colorRed)+"  Short Term-Down")+
WriteIf(tlm>0,EncodeColor(colorLime)+"         MID Term-UP",EncodeColor(colorRed)+"        Mid Term-Down")+
WriteIf(tll>0,EncodeColor(colorLime)+"       Long Term-Up",EncodeColor(colorRed)+"         Long term-Down"));
_SECTION_END();


From: Kenzie Sebastian <kenziesr@yahoo.co.id>
To: amibroker-4-bei@yahoogroups.com
Sent: Wed, September 8, 2010 5:48:05 PM
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

Pas Isfandi,

Setelah saya check, untuk long term trending saya menggunakan 150 days, 70 days untuk medium dan 14 hari untuk short. Formulanya seperti dibawah ini.

 

//============== TRENDING ==============

DTL=150; // DTL = Define Trend Long

DTM=70; // DTM = Define Trend Medium

DTS=14// DTS = Define Trend Short

 

TL=LinRegSlope(MA(C, DTL),2);  // TL = Trend Long

TM=LinRegSlope(MA(C, DTM),2);  // TM = Trend Medium

TS=LinRegSlope(MA(C, DTS),2);  // TS = Trend Short

 

TLL=IIf(LinRegSlope(MA(C, DTL),2) > 0,True, False);          

TMM=IIf(LinRegSlope(MA(C, DTM),2) > 0,True, False);          

TSS=IIf(LinRegSlope(MA(C, DTS),2) > 0,True, False);

//----------------------------------------

 

Saya berminat untuk afl versi bapak, sangat antusias untuk mempelajarinya.

Terima kasih pak Isfandi sebelumnya.

 

Salam hangat

Dan sukses selalu,

Kenzie SR

 

 

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of isfandi2001@yahoo.com
Sent: Tuesday, September 07, 2010 11:49 PM
To: amibroker-4-bei@yahoogroups.com
Subject: Re: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

 

Mr. Kenzie..  am very appreciate anda mau sharing sehingga kita semua bisa sama2 belajar, btw afl anda coba saya compare mengenai term prediction-nya sepertinya ada yg tdk cocok dan detecting pivotnya ada yg sedikit lbh cepat, jika anda berminat saya akan share afl versi yg saya punya atau bisa buat study anda.

pic terlampir, (perbedaan pd longterm prediction)

salam,
Isfandi

 


From: Kenzie Sebastian <kenziesr@yahoo.co.id>
To: amibroker-4-bei@yahoogroups.com
Sent: Tue, September 7, 2010 6:46:28 PM
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

Peak and through? Kok bisa ya? Terus terang saya belum mempelajari itu... he3x.

Saya share afl-nya khusus untuk milis amibroker-4-bei@yahoogroups.com, mudah2an bisa bermanfaat untuk yang mau belajar.

Mohon dimaklumi bila ada kesalahan, karena saya masih belum banyak pengalaman.

 

Salam hangat

Dan sukses selalu,

Kenzie SR

Don’t limit your profit, let it run....

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of FAUZI CHAIRANI
Sent: Tuesday, September 07, 2010 1:23 PM
To: amibroker-4-bei@yahoogroups.com
Subject: Re: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

 

Mas KS, apakah bisa dishare AFL peak n troughnya? Thanks a lot.  

Salam.

Fauzi

 


From: Kenzie Sebastian <kenziesr@yahoo.co.id>
To: amibroker-4-bei@yahoogroups.com
Sent: Mon, September 6, 2010 5:51:44 PM
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940 - Closed

 

Setelah menunggu dengan sabar selama 6 hari trading, akhirnya hari ini SMSM mampu menyentuh TP 940 dan ditutup di angka 930. Kurang lebih profit sekitar 14%.Hasil yang tidak mengecewakan bagi saya.

Happy cuan and Happy trading untuk yg megang SMSM.

 

Subject ini ditutup (sudah selesai).

 

Salam hangat

Dan sukses selalu,

Kenzie S

Don’t limit your profit, let it run....

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of Kenzie Sebastian
Sent: Friday, September 03, 2010 5:56 PM
To: amibroker-4-bei@yahoogroups.com
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940

 

Hari ini saham SMSM ditutup di 870 (+ 2.4%) . Masih diatas EMA(13). Mudah2an terus bertahan diatas EMA (13).

 

Salam hormat,
Kenzie S

Let your profit runs...

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of Kenzie Sebastian
Sent: Thursday, September 02, 2010 4:58 PM
To: amibroker-4-bei@yahoogroups.com
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940

 

 

Hari ini saham SMSM ditutup naik ke 850 (+ 3.7%) dan berhasil menembus pertahanan EMA(13).

Mudah2an kedepannya akan lebih baik dan lebih baik lagi.

Let your profit runs...

 

Salam hormat,
Kenzie S

 

 

From: Kenzie Sebastian [mailto:kenziesr@yahoo.co.id]
Sent: Wednesday, September 01, 2010 8:18 PM
To: 'amibroker-4-bei@yahoogroups.com'
Subject: RE: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940

 

Setelah dalam dua hari kemaren terkoreksi sampai 770 dan nyaris cut loss, hari ini saham SMSM mulai bergerak naik ke 820. Mudah2an kedepannya terus membaik dan membaik.

Let your profit runs...

 

Salam hormat,

Kenzie S

 

 

From: amibroker-4-bei@yahoogroups.com [mailto:amibroker-4-bei@yahoogroups.com] On Behalf Of Kenzie Sebastian
Sent: Sunday, August 29, 2010 3:16 AM
To: amibroker-4-bei@yahoogroups.com; saham@yahoogroups.com
Subject: [Komunitas AmiBroker] SMSM Berpotensi Menuju 940

 

 

Disc On (bukan rekomendasi beli, hanya sekedar sharing analisa)

Saham SMSM menunggu  giliran naik menuju 940, setelah 3x mengalami koreksi tajam mulai dari 1230 jatuh ke level 810. Harga 800 akan menjadi support yang kuat sebelum memantul naik keatas.

(+) Sinyal beli sudah muncul di harga 820

(+) Stochastic cross positif

(+) EPS = 101.76

(+) P/E = 7.96

(+) ROE = 27%

Let your profit runs....

Salam hormat,

Kenzie S

<<...>>

 

M

 

 

 

 



__._,_.___


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