Jump to content

Who Can make colour in Block..


Recommended Posts

SEFC,

 

Any gift for non-programmer like me? :-)

 

Dear Elma,

I hope you be patient.. if my project with all friend in this forum (coder) finish and success.. you can use it, test and input your other idea .. and free..:)

 

Regards.

SEFC

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

  • Replies 83
  • Created
  • Last Reply

Top Posters In This Topic

Wow.. I like your creativity.. hmm.. this "2 line (red and Blue) from mychannel indicator or other indi ?

 

Hi SEFC

 

It is from the indicator, I could see what you were doing on the template (or part of it) and I figured why tax the platform with all those colours and drawings. The two lines are Kijun-sen (26) and Tenkan-sen (9).

 

Rgds

RM

Link to comment
Share on other sites

So you are not sharing SEFC? You are exchanging only to and only if someone helps you?

Am I reading this correct Super Moderator? You could probably get that arrangement on FF but i thought here was different, especially from a moderator who is to set the example.

 

I disagree in this one! SEFC has shared so many indicators and systems through out the years. I am very grateful for all the help I have received from him.

Link to comment
Share on other sites

Hi SEFC

 

It is from the indicator, I could see what you were doing on the template (or part of it) and I figured why tax the platform with all those colours and drawings. The two lines are Kijun-sen (26) and Tenkan-sen (9).

 

Rgds

RM

 

Reverse Engineering! By just looking a chart image. Amazing!

Link to comment
Share on other sites

Manually trading it works just fine...

 

Rgds

RM

 

i Agree with you , but.. me and all friend in this forum to try to make good EA.. i hope can do it...

hmm.. the first i think...

1. What type EA ? Scalp or momentum EA ? or...??

2. What base logic entry point this EA

3. What filter logic after execution potition and exit before reversal or loss money ? add MM system ??

4. What type EA on -> One way or two way open potition

5. etc.... bla.. bla.. bla..

 

Oke.. this is 2 base example make EA..

How about Pivot Point Target EA with Heiken Ashi modified Filtering or Single MA ?

How about Camarilla EA with MACD (Filtering) ?

 

----------------

I choose Started My Area Constanta (Base MyPivot modified) with HA Modified as Filtering ?

Any Programmer you can try make EA based My Area Constanta + Single MA

Please read Rule EA in pictured ... Use MA = 10, LinierWeight, WeghtedClose

Use in base Euro vs xxx .... Not other pair...

 

http://img807.imageshack.us/img807/8215/ruleea0.png

 

This is base Indicator OpenPotition, Close Potition and Target ... Please Some one can make this EA use this indi..?

 

//+------------------------------+

//| Area konstanta.mq4 |

//| SEFC |

//+------------------------------+

#property indicator_chart_window

bool Show_Full_Lines = false;

extern string Testing_High_Low = "SEFC";

extern string Time_Frame ="isi dgn 30 / 60 / 240 /1440/10080(max) ";

extern int waktu = 1440;

int UpperLEVEL = 11;

extern color Upper_Color = DarkBlue;

int LowerLEVEL = 11;

extern color Lower_Color = Maroon;

int Line_width = 1;

extern string Model_grs = "1/2/3/4/5/6";

extern int Line_style = 2;

extern string Model_grs2 = "1/2/3/4/5/6";

extern int Line_style2 = 2;

extern string Uk_font = "isi mulai 8 s.d 36";

extern int BsrFont = 14;

extern color warna = Gray;

extern color Buy_Color = Green;

extern color Sell_Color = IndianRed;

extern color TP_Color = Yellow;

bool Extend_Lines = true;

extern string catatan = "k= 1.00x01x484x1,jgn diubah-ubah ";

extern int k = 1.00701748471;

extern color Pivot_Color = White;

extern int Pivot_width = 1;

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

#define PP1 "PP1"

#define UPPER1 "UPPER1"

#define LOWER1 "LOWER1"

#define UPPER6 "UPPER6"

#define LOWER6 "LOWER6"

#define UPPER9 "UPPER9"

#define LOWER9 "LOWER9"

#define UPPER10 "UPPER10"

#define LOWER10 "LOWER10"

#define UPPER11 "UPPER11"

#define LOWER11 "LOWER11"

double x;

int trend;

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init()

{

//---- indicators

IndicatorShortName("My Area Konstanta");

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit()

{

//----

ObjectDelete(PP1);

ObjectDelete(UPPER1); ObjectDelete(LOWER1);

ObjectDelete(UPPER6); ObjectDelete(LOWER6);

ObjectDelete(UPPER9); ObjectDelete(LOWER9);

ObjectDelete(UPPER10); ObjectDelete(LOWER10);

ObjectDelete(UPPER11); ObjectDelete(LOWER11);

DeleteLevel();

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start()

{

int counted_bars= IndicatorCounted();

x = Period();if(x > waktu) return(-1);

if(Show_Full_Lines){trend = OBJ_HLINE;}else{trend=OBJ_TREND;}

//----

CreatePVT();}

 

void CreateLevel(string Line, double start, double end,double w, double s,color clr)

{

ObjectCreate(Line, trend, 0, iTime(NULL,waktu,0), start, Time[0], end);

ObjectSet(Line, OBJPROP_COLOR, clr);ObjectSet(Line,OBJPROP_WIDTH,w);

ObjectSet(Line,OBJPROP_STYLE,s);ObjectSet(Line,OBJPROP_RAY,Extend_Lines);

ObjectSet(Line,OBJPROP_BACK,true); }

 

void DeleteLevel(){

ObjectDelete(PP1);

ObjectDelete(UPPER1); ObjectDelete(LOWER1);

ObjectDelete(UPPER6); ObjectDelete(LOWER6);

ObjectDelete(UPPER9); ObjectDelete(LOWER9);

ObjectDelete(UPPER10); ObjectDelete(LOWER10);

ObjectDelete(UPPER11); ObjectDelete(LOWER11);

}

void CreatePVT() {

DeleteLevel();

double P = (iHigh(NULL,waktu,1) + iLow(NULL,waktu,1) + iClose(NULL,waktu,1)) / 3;

double UP1 = P+ (UpperLEVEL*Point)*1.5*k;

double DN1 = P- LowerLEVEL*Point*1.5*k;

double UP6 = P+ (UpperLEVEL*Point)*6.5*k;

double DN6 = P- (LowerLEVEL*Point)*6.5*k;

double UP9 = P+ (UpperLEVEL*Point)*9.5*k;

double DN9 = P- (LowerLEVEL*Point)*9.5*k;

double UP10 = P+ (UpperLEVEL*Point)*10.5*k;

double DN10 = P- (LowerLEVEL*Point)*10.5*k;

double UP11 = P+ (UpperLEVEL*Point)*19.5*k;

double DN11 = P- (LowerLEVEL*Point)*19.5*k;

 

CreateLevel(PP1,P,P,Pivot_width,0,Pivot_Color);

CreateLevel(UPPER1,UP1,UP1,Line_style,0,Buy_Color );

CreateLevel(LOWER1,DN1,DN1,Line_style,0,Sell_Color );

CreateLevel(UPPER6,UP6,UP6,Line_width,Line_style, TP_Color );

CreateLevel(LOWER6,DN6,DN6,Line_width,Line_style, TP_Color );

CreateLevel(UPPER9,UP9,UP9,Line_width,Line_style, TP_Color );

CreateLevel(LOWER9,DN9,DN9,Line_width,Line_style, TP_Color );

CreateLevel(UPPER10,UP10,UP10,3,0, Upper_Color );

CreateLevel(LOWER10,DN10,DN10,3,0, Lower_Color );

CreateLevel(UPPER11,UP11,UP11,3,0, Upper_Color );

CreateLevel(LOWER11,DN11,DN11,3,0, Lower_Color );

return(0);

}

//+------------------------- End Of Programme -----------------------------------------+

Edited by SEFC

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

So you are not sharing SEFC? You are exchanging only to and only if someone helps you?

Am I reading this correct Super Moderator? You could probably get that arrangement on FF but i thought here was different, especially from a moderator who is to set the example.

 

Hi JuicyT,

 

In the past, SEFC freely shared. Guess what happened!! Someone took his SEFC system and started selling it for 25RM. So, you can appreciate his reluctance into sharing stuff. Eventhen, he is giving you something.

 

So, it in unfair of you without knowing the full extent.

 

Also, he helps quite a lot.

 

One more thing, he is entitled to keep stuff for himself. Also, him being a moderator, it is right that he asks for things here, so that others, in this forum, benefits from it. You never know, it may give some ideas.

 

I do understand where you are coming from, where people get help and not return. But that is not the case in this instance.

 

I apologize, if I have offended you in anyway.

 

Regards.

Link to comment
Share on other sites

SEFC is cunning...

 

I don't know whether the people reading this thread realize what is going on... :-?

 

SEFC has almost given you the tools to make many pips. Why he is choosing to do it in the way he is, to me it doesn't matter.

 

He is giving hints, help and his knowledge freely. Open your eyes and you will see what I am talking about. I have been bashing my head against the desk now for over 9 hours trying to automate this little gem... with the last post from SEFC, it may just be possible but more importantly, profitable.

 

Rgds

RM

Link to comment
Share on other sites

MyChannelV2 at real trade decission ....

http://img851.imageshack.us/img851/6277/kura5.png

 

 

http://img11.imageshack.us/img11/4590/kurakura4.png

Edited by SEFC

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

I don't know whether the people reading this thread realize what is going on... :-?

 

SEFC has almost given you the tools to make many pips. Why he is choosing to do it in the way he is, to me it doesn't matter.

 

He is giving hints, help and his knowledge freely. Open your eyes and you will see what I am talking about. I have been bashing my head against the desk now for over 9 hours trying to automate this little gem... with the last post from SEFC, it may just be possible but more importantly, profitable.

 

Rgds

RM

 

:) ..................

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

But the problem is... I am dumb :)

 

I know I can get the mode line indices from the indicator, however, the indicator doesn't backtest so I don't know if I am calling the right one. It will take me a month to make the changes and then watch the live forward test to see if it is sending the op_buy and op_sell signals.

 

I have a feeling that the smile from SEFC is actually a smirk!

 

Rgds

RM

Link to comment
Share on other sites

u should`nt import the indy ... you should hard code the calculation method which is very easy ...

 

i will manage a few positions and have a look at this ...

 

Then I think I should hang up my poor programming skills... it really isn't easy for me :(

 

Btw I got it to backtest :)

Link to comment
Share on other sites

sweet elma... keep on banking those pips ....

 

retireme i know it ai`nt easy .. but keep on doing it and it will come very easy one day .... been on that road... And EAgen is good just for making a template of ure ea... u still need to get inside the code to make it work properly... But it is a very good tool never the less

Link to comment
Share on other sites

sweet elma... keep on banking those pips ....

 

retireme i know it ai`nt easy .. but keep on doing it and it will come very easy one day .... been on that road... And EAgen is good just for making a template of ure ea... u still need to get inside the code to make it work properly... But it is a very good tool never the less

 

Thanks for the kind words MM....

 

Does anyone else feel my programming could be wrong :"> have a look at the attachment:

 

http://img37.imageshack.us/img37/3728/2062011104514pm.png

 

Will keep trying!

 

Rgds

RM

 

Excellent result Elma

Edited by retireme
Didn't see Elma's post...
Link to comment
Share on other sites

But the problem is... I am dumb :)

 

................

 

I have a feeling that the smile from SEFC is actually a smirk!

 

Rgds

RM

 

No.. Friend.. you are not Dumb.. and my smile not smirk.....

Let's Go.. give your idea to this thread .. and still spirit...

 

:)

 

SEFC.

SEFC Mode= Red light ...(off) ..

"Indonesia Forex Community"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...