Developers Needed

 

Dear Developer, G'day

I would like to create very simple Indicators. Due to security reason I would like discuss it personally. If you are interested, please mail me with Subject: MQL4 in your mail to raj.dreamjobz@gmail.com

Lots can happen, keep charging.

Be Awesome,

Raj

DreamJOBZ.com

 

We appreciate for those who showed their interest. You will be getting a mail from our office. Looking forward to work with you all guys.

Be Awesome

Raj

DreamJOBZ.com

 

Dear All, G'day

Is it possible to help me in this. I managed get someone to help me in this a year back. He is only interested to find what system I am using. We could not continue with him.

Please find attached program here for the above output as shown in the diagram. This is coded for only on Daily range.

measured distance could be anything between 50 / 100 / 200 / 300 .. can you help me? Thanks.

We want some more additional options.

1. Week Range ie. Weekly high & low (keeping the period seperator as shown above)

2. Month Range ie. Monthly high & low (keeping the period seperator as shown above)

3. Quarterly Range ie. Weekly high & low (keeping the period seperator as shown above)

4. Half-yearly Range ie. Half Yearly High & Low (keeping the period seperator as shown above)

5. Yearly Range ie. Yearly high & low (keeping the period seperator as shown above)

6. Finally on 4-hourly Range ie. 4-hour high & low (keeping the period seperator between 4 hrs difference)

PLEASE CAN YOU HELP ME IN THIS? PLEASE GUIDE ME TO SOMEONE WHO WILLING TO HELP ME. GOD BLESS.

Live Awesome

Raj

Raj.DreamJOBZ@gMail.Com

Please find the coding below, this is written on daily high & low, I dont know how to add those 6 options I have mentioned above.

#property indicator_chart_window

extern int HighPips = 100;
extern color HighColor = Blue;
extern int LowPips = 100;
extern color LowColor = Red;
extern int UpdateTics = 1;
int g_count_96;
double g_high_100;
double g_low_108;

int init() {
g_high_100 = MarketInfo(Symbol(), MODE_HIGH);
ObjectCreate("HighLine", OBJ_HLINE, 0, 0, g_high_100 - HighPips * Point);
ObjectSet("HighLine", OBJPROP_STYLE, STYLE_DASH);
ObjectSet("HighLine", OBJPROP_COLOR, HighColor);
g_low_108 = MarketInfo(Symbol(), MODE_LOW);
ObjectCreate("LowLine", OBJ_HLINE, 0, 0, g_low_108 + LowPips * Point);
ObjectSet("LowLine", OBJPROP_STYLE, STYLE_DASH);
ObjectSet("LowLine", OBJPROP_COLOR, LowColor);
g_count_96 = 0;
return (0);
}

int deinit() {
ObjectDelete("HighLine");
ObjectDelete("LowLine");
return (0);
}

int start() {
g_count_96++;
double l_high_0 = MarketInfo(Symbol(), MODE_HIGH);
double l_low_8 = MarketInfo(Symbol(), MODE_LOW);
if (g_count_96 > UpdateTics || l_high_0 != g_high_100 || l_low_8 != g_low_108) {
g_count_96 = 0;
g_high_100 = l_high_0;
g_low_108 = l_low_8;
ObjectMove("HighLine", 0, g_high_100 - HighPips * Point, g_high_100 - HighPips * Point);
ObjectMove("LowLine", 0, g_low_108 + LowPips * Point, g_low_108 + LowPips * Point);
}
return (0);
}

Reason: