BTC USD 85,574.3 Gold USD 4,343.09
Time now: Jun 1, 12:00 AM

The Mystery of Fibonacci (fising trade style)

okey...

nie chart tuk eu pulak....mcm mana kita detect hint market base on step evolution market...



Gu chart...


*count step(pergerakan)market base on sequence.
*ukur pergerakan market keseluruhan berdasarkan range hilo sesuatu pergerakan dgn sequence yg terhampir.


Minta pencerahan dan pandaangan en.bond ataupun rakan2 kat sini...

Refer pada Cable...chart yg en.bond attach.
1-55
1-392@377@3

Berkemungkinan next step evolution market camni ker...?
1-21@34
1-144@233

min144 dah hit tapi step market base on sequence lum agi...tapi dah hampir...geram jer aku nengok....aku pacak kang...aku pacak kang....:D
 
Indicator ni bagus utk lihat action price base on identity.Better kollaborasikan dengan FTZ.Copy all,paste dlam MQL4,paste dalam folder expert-indicator,pastu renamekan sweet spot..layann..Default setting boleh adjust kat input-sublavel,tukar value 25 kepada 50..

//+------------------------------------------------------------------+
//| SweetSpots.mq4 |
//| |
//| |
//+------------------------------------------------------------------+
#property copyright "Copyright Shimodax"
#property link "http://www.strategybuilderfx.com"

#property indicator_chart_window

/* Introduction:

This indicator shows lines at sweet spots (50 and 100
pips levels). It is recommended to turn off the grid.

Enjoy!

Markus
*/

extern int NumLinesAboveBelow= 100;
extern int SweetSpotMainLevels= 100;
extern color LineColorMain= Gold;
extern int LineStyleMain= STYLE_SOLID;
extern bool ShowSubLevels= true;
extern int sublevels= 25;
extern color LineColorSub= Gold;
extern int LineStyleSub= STYLE_DOT;



//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
return(0);
}

int deinit()
{
int obj_total= ObjectsTotal();

for (int i= obj_total; i>=0; i--) {
string name= ObjectName(i);

if (StringSubstr(name,0,11)=="[SweetSpot]")
ObjectDelete(name);
}

return(0);
}

//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
static datetime timelastupdate= 0;
static datetime lasttimeframe= 0;


// no need to update these buggers too often
if (CurTime()-timelastupdate < 600 && Period()==lasttimeframe)
return (0);

deinit(); // delete all previous lines

int i, ssp1, style, ssp, thickness; //sublevels= 50;
double ds1;
color linecolor;

if (!ShowSubLevels)
sublevels*= 2;

ssp1= Bid / Point;
ssp1= ssp1 - ssp1%sublevels;

for (i= -NumLinesAboveBelow; i<NumLinesAboveBelow; i++) {

ssp= ssp1+(i*sublevels);

if (ssp%SweetSpotMainLevels==0) {
style= LineStyleMain;
linecolor= LineColorMain;
}
else {
style= LineStyleSub;
linecolor= LineColorSub;
}

thickness= 1;

if (ssp%(SweetSpotMainLevels*10)==0) {
thickness= 2;
}

if (ssp%(SweetSpotMainLevels*100)==0) {
thickness= 3;
}

ds1= ssp*Point;
SetLevel(DoubleToStr(ds1,Digits), ds1, linecolor, style, thickness, Time[10]);
}

return(0);
}


//+------------------------------------------------------------------+
//| Helper |
//+------------------------------------------------------------------+
void SetLevel(string text, double level, color col1, int linestyle, int thickness, datetime startofday)
{
int digits= Digits;
string linename= "[SweetSpot] " + text + " Line",
pricelabel;

// create or move the horizontal line
if (ObjectFind(linename) != 0) {
ObjectCreate(linename, OBJ_HLINE, 0, 0, level);
ObjectSet(linename, OBJPROP_STYLE, linestyle);
ObjectSet(linename, OBJPROP_COLOR, col1);
ObjectSet(linename, OBJPROP_WIDTH, thickness);

ObjectSet(linename, OBJPROP_BACK, True);
}
else {
ObjectMove(linename, 0, Time[0], level);
}
}

ni aku tolong buat script ni..leh download dekat link ni:)



http://www.4shared.com/file/247173520/e4cab8d0/sweetspot.html


http://www.4shared.com/file/247173969/f0603c14/Mcandlessss.html
 
dah blh op sell ke bro hzahin?? sbb min ret seq 2 dh complete?? atau kn tunggu sampai break B br lh op ???
 
Apa kegunaan skrip ni..

Originally Posted by naa_zaa01

Indicator ni bagus utk lihat action price base on identity.Better kollaborasikan dengan FTZ.Copy all,paste dlam MQL4,paste dalam folder expert-indicator,pastu renamekan sweet spot..layann..Default setting boleh adjust kat input-sublavel,tukar value 25 kepada 50..
 

Latest Posts

Live Forex Chart

Currency
Rates
EUR / USD
1.14791
USD / JPY
157.496
GBP / USD
1.33871
USD / CHF
0.82038
USD / CAD
1.40285
EUR / JPY
180.753
AUD / USD
0.71208
Back
Top
Log in Register