The Murrey Math Trading System - page 64

 
xard777:
change X.Offset 256 to -256

Thanks, Xard777, it that is necessary.

 

Mm Ea

leeb:
is there any ea incoprating the Murrey Math lines ? Thanks

Put the MM indicator on chart before EA,same with backtesting

e-Grabber to /experts

VG to /experts/indicators

 

Hi ipixtlan, thanks for your reply, I checked out your webpage - looks good will give your neural expert a try

 

xard7777, thank you!

xard777:
change X.Offset 256 to -256

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

xard777: hello!

Your system is superb. Thank you for sharing this exceptional work with all of our members of this forum. By the way, on DIGISTOCH window, what are the numbers along with time frames ( for example like; 78.78 and 40.50 etc).

I assume that that you are expressing the time frames of bullish and bearish patterns in percetage. Thank you again!

Sincerely,

rswamy4449

 
vracar:

I have not been able to apply any of the indicators shared on this forum to my MetaTrader 4.0 platform. I have followed all of the instructions by first compiling the code within MetaTrader Editor, then moving both files into \expert folder.

Vracar, wrong folder. Indicators should be in indicators folder: ...\Experts\Indicators

folder ...\Experts is for EA's

Mario

 
alamanjani:
Vracar, wrong folder. Indicators should be in indicators folder: ...\Experts\Indicators

folder ...\Experts is for EA's

Mario

Hi Mario,

Thank you very much for your reply. I have one more question please. Do you or anyone else know how I can change the thickness of Murrey Math lines?

Regards,

Vracar

 
vracar:
Hi Mario,

Thank you very much for your reply. I have one more question please. Do you or anyone else know how I can change the thickness of Murrey Math lines?

Regards,

Vracar

you will see code similar to this...

for( i=0; i<OctLinesCnt; i++ ){

buff_str = "mml"+i;

if(ObjectFind(buff_str) == -1) {

ObjectCreate(buff_str, OBJ_HLINE, 0, BlockEnd, mml);

ObjectSet(buff_str, OBJPROP_STYLE, STYLE_SOLID);

ObjectSet(buff_str, OBJPROP_COLOR, mml_clr);

ObjectSet(buff_str, OBJPROP_RAY, false);

ObjectSet(buff_str, OBJPROP_WIDTH,1);

ObjectMove(buff_str, 0, BlockEnd , mml);

}

else {

ObjectMove(buff_str, 0, BlockEnd, mml);

Where it says OBJPROP_WIDTH,1) ....change No to 2, 3 or 4 for thickness & press the compile button.

if it is like this code...

for( i=0; i<OctLinesCnt; i++ ){

buff_str = "mml"+i;

if(ObjectFind(buff_str) == -1) {

ObjectCreate(buff_str, OBJ_HLINE, 0, Time[0], mml);

ObjectSet(buff_str, OBJPROP_STYLE, STYLE_SOLID);

ObjectSet(buff_str, OBJPROP_COLOR, mml_clr);

ObjectMove(buff_str, 0, Time[0], mml);

then you want to add the width line in blue & change the number to suit

Xard777

 

Testing

ipixtlan:
Put the MM indicator on chart before EA,same with backtesting

e-Grabber to /experts

VG to /experts/indicators

Can you help

I am not an expert on testing EA's, tried to back test on 30min chart but can not get any results?

Could some kind person please backtest and post settings for EA and results.

Thanks for help

 
stockpick:
Can you help

I am not an expert on testing EA's, tried to back test on 30min chart but can not get any results?

Could some kind person please backtest and post settings for EA and results.

Thanks for help

I forgot to mention that during backtest you should,pause visual mode,put

VG indicator on chart,resume backtest.

 

visual mode

Hi,vipixtlan!

Can you show please where I can handle this Visual Mode? Trying to find it in Tester but where? Thank you!

ipixtlan:
I forgot to mention that during backtest you should,pause visual mode,put VG indicator on chart,resume backtest.
Reason: