Coding help - page 219

 
Looking for Coder For indicator and later EA
Hello,

I have read lesson 12 in this forum, but i am not a programmer, i need someone who can help me with an idea for an indicator.

Any body can help me?

if

shall i pay?

who shall i pay?

how shall i pay?

or

how thoes this work?

first time in a forex forum...

need a coder to build an indicator later an EA.

Thanks

 
daniel1983:
Looking for Coder For indicator and later EA
Hello,

I have read lesson 12 in this forum, but i am not a programmer, i need someone who can help me with an idea for an indicator.

Any body can help me?

if

shall i pay?

who shall i pay?

how shall i pay?

or

how thoes this work?

first time in a forex forum...

need a coder to build an indicator later an EA.

Thanks

If you have a project of your own, than it is the best to contract someone to code it for you. You can find some information about how you can do that here : https://www.mql5.com/en/forum/178140 or here : https://www.mql5.com/en/forum/general

If you, on the other hand, do not mind if it becomes public, then you can post it and if someone of the coders is interested in coding your idea, sooner or later it will be posted as an answer to your request

 

Ok thank you, where shall i post this? i don't care making this public as i'm not an expert yet. Thank you

 
daniel1983:
Ok thank you, where shall i post this? i don't care making this public as i'm not an expert yet. Thank you

You might post it at this thread as well

 
mladen:
arroganzmaschine You can declare 3 different arrays : for close, high and low. Fill those arrays with corresponding prices and then simply use ArraySort() for each array - that way you will be able to apply the same criteria to any of the prices you want

Ok, I will try it and come back later to you. Thank you very much!

 

Thank you for you'r attention, Mladen

The first code i need:

1.- Find opening price of the day (this will be the most difficult i think)

If it is too difficult finding opening price of the day, find opening price of the week or of the month

2.- opening price of the week=number1

3.- Make the math (number1 + High + Low)/3 = number2

4.- print : "Key of the day = number2"

Hope you can help me with the coding,

Thank you

Daniel

 
daniel1983:
Thank you for you'r attention, Mladen

The first code i need:

1.- Find opening price of the week (this will be the most difficult i think)

2.- opening price of the week=number1

3.- Make the math (number1 + High + Low)/3 = number2

4.- print : "Key of the day = number2"

Hope you can help me with the coding,

Thank you

Daniel

daniel1983

Finding the opening price of the week is easy actually

To get the opening price of the current week all you have to do is the following :

double weekOpen = iOpen(NULL,PERIOD_W1,0);
 

Thank you Mladen, is it possible to find the opening price of the day?

 

would it be

double dayOpen = iOpen(NULL,PERIOD_D1,0);

??

 
daniel1983:
would it be

double dayOpen = iOpen(NULL,PERIOD_D1,0);

??

Yes

That would be an open price for the current day

Reason: