Murrey math levels--mMMLs

 

Is there an indicator code that places mMMLs automatically within the MMLs? If so, where might I find it?

If not, how do I go about using editor to write the program? I have never used it before.



Thanks!



Tom

 
Use search - https://www.mql4.com/search/murrey%20math
 
Rosh:
Use search - https://www.mql4.com/search/murrey%20math

Thank you. I had found those links, but they're still not what I'm looking for.

Can you help me with the code to place a line at the halfway point between

each Murrey level?



Thanks again!



Tom

 
tsmitty wrote >>

Thank you. I had found those links, but they're still not what I'm looking for.

Can you help me with the code to place a line at the halfway point between

each Murrey level?


Thanks again!


Tom

Tom,

I love using the MurreyMath indicator myself.

Here is an indicator named #00MurreyMath-Timeframe.mql . It's from forex-tsd.com. It already has three lines between each line. One of them is a center line between each level. If you want just one line, you could comment out the code of the other two lines. Copy this file to your experts/indicators folder and start MT4. Right click and modify which will open it in MetaTrader Editor. Find the lines that are 'DarkSlateGray' in color. These are the in-between lines. There are two rows of code for each line. Comment out the ones you don't need and leave the ones you want. Just use two slashes // in front of the lines you don't want like:

//ObjectCreate("mm1006",OBJ_HLINE,0,Time[0],mm1006,Time[0],mm1006);
//ObjectSet("mm1006",OBJPROP_COLOR,DarkSlateGray);ObjectSet("mm1006",OBJPROP_WIDTH,1);ObjectSet("mm1006",OBJPROP_STYLE, STYLE_SOLID);

Regards,

Steve

Reason: