[HELP] Simple Indicator Modification

 

Hallo all,,, I'm not too familiar with the mq4 programing,,,

could someone help me to make a modification on this indicator :

1. Day_HL --> use to determine yesterday HIGH and Yesterday LOW price

2. Daily_open_line --> is drawing a solid daily opening line based on daily_open number


My request is :

- I need those two indicator to build become 1 indicator

- I need a simple calculation which appear to be like this : " Yesterday HIGH (-) Yesterday LOW / 8 "

- The outcome number from that calculation is attach to the daily_open number which will appear like "Daily_open (+) outcome number" and "Daily_open (-) outcome Number"

- The attached number should be drawing visualy to the chart by a two simple Line above and below the Daily_open line

http://www.4shared.com/file/mhwXzkEm/dayHL.html

http://www.4shared.com/file/pITnTpvH/daily_open_line.html

 
jun089:

My request is :

- I need those two indicator to build become 1 indicator

1. - I need a simple calculation which appear to be like this : " Yesterday HIGH (-) Yesterday LOW / 8 "

- The outcome number from that calculation is attach to the daily_open number which will appear like "Daily_open (+) outcome number" and "Daily_open (-) outcome Number"

- The attached number should be drawing visualy to the chart by a two simple Line above and below the Daily_open line

2. http://www.4shared.com/file/mhwXzkEm/dayHL.html

http://www.4shared.com/file/pITnTpvH/daily_open_line.html

1.

( iHigh(NULL, PERIOD_D1, 1) - iLow(NULL, PERIOD_D1, 1) ) / 8

2. I don't have a login and I'm not going to register to get your files.

 
this is the mq4 file... sorry.. since I cannot make a multiple attachment so I upload it to 4shared...
Files:
dayhl_1.mq4  4 kb
 

and this is the second one......

( iHigh(NULL, PERIOD_D1, 1) - iLow(NULL, PERIOD_D1, 1) ) / 8
where sould I put the code??? :confuse:
Files:
Reason: