BTC USD 84,355.8 Gold USD 4,274.11
Time now: Jun 1, 12:00 AM

trade mudah

tt dh lupa kot nak masuk kat tread dia ni heheee
 
tt dh lupa kot nak masuk kat tread dia ni heheee

xpa kalu lupa ambil indi ini...trade mudah...mudah sungguh ikut je aroow tu..2

//+------------------------------------------------------------------+
//| ZigZag Pointer.mq4 |
//| zigzag modified by Dr. Gaines |
//| [email protected] |
//| reworked by Xard777 |
//+------------------------------------------------------------------+
#property copyright "dr_richard_gaines"
#property link "http://www.metaquotes.net/"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_width1 3
#property indicator_color2 Blue
#property indicator_width2 3
//---- indicator parameters
extern int ExtDepth=23;//21;//105
extern int ExtDeviation=26;//24;//120
extern int ExtBackstep=16;//14;//70
//---- indicator buffers
double ExtMapBuffer[];
double ExtMapBuffer2[];
int OldLastZigZag, OldPreviousZigZag;

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
IndicatorBuffers(2);
//---- drawing settings
SetIndexStyle(0,DRAW_ARROW,0,3);
SetIndexArrow(0, 233);
SetIndexStyle(1,DRAW_ARROW,0,3);
SetIndexArrow(1, 234);
//---- indicator buffers mapping
SetIndexBuffer(0,ExtMapBuffer);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexEmptyValue(0,0.0);

//---- indicator short name
IndicatorShortName("ZigZag("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int start()
{
int shift, back,lasthighpos,lastlowpos;
double val,res;
double curlow,curhigh,lasthigh,lastlow;

for(shift=Bars-ExtDepth; shift>=0; shift--)
{
val=Low[Lowest(NULL,0,MODE_LOW,ExtDepth,shift)];
if(val==lastlow) val=0.0;
else
{
lastlow=val;
if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0;
else
{
for(back=1; back<=ExtBackstep; back++)
{
res=ExtMapBuffer[shift+back];
if((res!=0)&&(res>val)) ExtMapBuffer[shift+back]=0.0;
}
}
}
ExtMapBuffer[shift]=val;
//--- high
val=High[Highest(NULL,0,MODE_HIGH,ExtDepth,shift)];
if(val==lasthigh) val=0.0;
else
{
lasthigh=val;
if((val-High[shift])>(ExtDeviation*Point)) val=0.0;
else
{
for(back=1; back<=ExtBackstep; back++)
{
res=ExtMapBuffer2[shift+back];
if((res!=0)&&(res<val)) ExtMapBuffer2[shift+back]=0.0;
}
}
}
ExtMapBuffer2[shift]=val;
}

// final cutting
lasthigh=-1; lasthighpos=-1;
lastlow=-1; lastlowpos=-1;

for(shift=Bars-ExtDepth; shift>=0; shift--)
{
curlow=ExtMapBuffer[shift];
curhigh=ExtMapBuffer2[shift];
if((curlow==0)&&(curhigh==0)) continue;
//---
if(curhigh!=0)
{
if(lasthigh>0)
{
if(lasthigh<curhigh) ExtMapBuffer2[lasthighpos]=0;
else ExtMapBuffer2[shift]=0;
}
//---
if(lasthigh<curhigh || lasthigh<0)
{
lasthigh=curhigh;
lasthighpos=shift;
}
lastlow=-1;
}
//----
if(curlow!=0)
{
if(lastlow>0)
{
if(lastlow>curlow) ExtMapBuffer[lastlowpos]=0;
else ExtMapBuffer[shift]=0;
}
//---
if((curlow<lastlow)||(lastlow<0))
{
lastlow=curlow;
lastlowpos=shift;
}
lasthigh=-1;
}
}

for(shift=Bars-1; shift>=0; shift--)
{
if(shift>=Bars-ExtDepth) ExtMapBuffer[shift]=0.0;
else
{
res=ExtMapBuffer2[shift];
if(res!=0.0) ExtMapBuffer2[shift]=res;
}
int i=0;
int LastZigZag, PreviousZigZag;

int h=0;
while ( ExtMapBuffer[h]==0 && ExtMapBuffer2[h]==0) {
h++;
}

LastZigZag=h;

h++;
while(ExtMapBuffer[h]==0 && ExtMapBuffer2[h]==0) {
h++;
}

PreviousZigZag=h;

if (OldLastZigZag!=LastZigZag || OldPreviousZigZag!=PreviousZigZag) {
if(OldLastZigZag>LastZigZag) Alert("ZZ Pointer Alert...Possible change in direction... (M",Period()," ",Symbol(),")");
OldLastZigZag=LastZigZag;
OldPreviousZigZag=PreviousZigZag;
//ObjectDelete("Fibo");
//ObjectCreate("Fibo", OBJ_FIBO, 0, Time[PreviousZigZag], ExtMapBuffer[LastZigZag], Time[LastZigZag], ExtMapBuffer[PreviousZigZag]);
}
if (OldLastZigZag!=LastZigZag || OldPreviousZigZag!=PreviousZigZag) {
if(OldLastZigZag<LastZigZag) Alert("ZZ Pointer Alert...Possible change in direction... (M",Period()," ",Symbol(),")");
OldLastZigZag=LastZigZag;
OldPreviousZigZag=PreviousZigZag;
//ObjectDelete("Fibo");
//ObjectCreate("Fibo", OBJ_FIBO, 0, Time[PreviousZigZag], ExtMapBuffer[LastZigZag], Time[LastZigZag], ExtMapBuffer[PreviousZigZag]);
}
}
}

//end//
 
trade mudah skali kuar pic biru buy..merah sell hu3

ini aku cut and paste jeee dari teknik ini...kalau outdated jgn mare yee...faham2 je tu nersi 2009 punya tulis....
Teknik SenyumSokmo2009_v2
20011 sekarang

assalamualaikum... belum terlambat lagi untuk saya megucapkan selamat menyambut maal hijrah dan tahun baru kepada anda.
terima kasih kerana sudi mennyedut Teknik senyumsokmo2009_v2 ini. Teknik ini adapah kesinambungan teknik ss2009 yang telah
saya publish kan uplodkan sebelum ini.. untuk memahami teknik ini adalah lebih baik anda menyedut dahulu teknik ss2009
kerana " Jalan Cerita adalah SAMA ". tetapi tak mengapa, saya ada menyediakan grafik ringkas untuk memudahkan anda
membuat pos buy @ sell. apapun keep it up..

indikator

-ss2009_B -dikekalkan-
-ss2009_C -dikekalkan-
-BB_v2 -baru-
-heiken ashi_v2 -baru-

template

-ss2009_tf4h_v2

Time Frame

-tf berkesan tf4h.

sepintas lalu :-

buyDot Bollinger Band ( putih )
Heiken Ashi ( biru )
SS2009_B ( biru )
ss2009_C ( biru )
sellDot Bollinger Band ( kuning)
Heiken Ashi ( merah )
SS2009_B ( merah )
ss2009_C ( merah )


simple jer kan...Mudah...Mudahselamat memorex & senyum sokmo dr syed_fx

Kalau nak ambil sini...orang Indon pakai Trade Mudah ni, dia ada diskas kat dia punya forum...caya lah TT dgn Trade Mudah
http://www.**************/forum/strategi/9680-trading-paling-simple.html

http://www.**************/forum/strategi/9680-trading-paling-simple.html
 
Last edited:
Smpai pg ke 6 pon semua msh BLUR...Huhu
 

Latest Posts

Live Forex Chart

Currency
Rates
EUR / USD
1.13806
USD / JPY
158.893
GBP / USD
1.32204
USD / CHF
0.82796
USD / CAD
1.41372
EUR / JPY
180.791
AUD / USD
0.70138
Back
Top
Log in Register