• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 9:39am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 9:39am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Supply & Demand with Math levels 10 replies

Murray Math 13 replies

4H Strategy with RSX and Murray Math 250 replies

4H Strategy with RSX and Murray Math 2 replies

Murray Math Indicator help? 5 replies

  • Trading Discussion
  • /
  • Reply to Thread
  • Subscribe
  • 41
Attachments: Murray Math Levels
Exit Attachments

Murray Math Levels

  • Last Post
  •  
  • 1 Page 2
  • 1 Page 2
  •  
  • Post #21
  • Quote
  • May 7, 2009 7:59pm May 7, 2009 7:59pm
  •  Fusion
  • | Joined Apr 2009 | Status: Member | 426 Posts
How do I run these type of codes?

Quoting banzai
Disliked
I just modified the MurreyMath indicator from Vladislav Goshkov to add in an alert. The alert can be turned on or off. It'll alert only once per bar and NOT per second. In addition, you can change the color of the lines now.

Alert messages are:
Alert("MM[+2/8] SELL: TP1 @ 8/8, TP2 @ 7/8");
Alert("MM[+1/8] SELL: TP1 @ 8/8th, TP2 @ 7/8");
Alert("MM[8/8] If downtrend, SELL & Exit @ 6/8th");
Alert("MM[7/8] If downtrend, SELL & Exit @ 4/8th");
Alert("MM[1/8] If uptrend, BUY & Exit @ 4/8th");
Alert("MM[0/8] If uptrend, BUY & Exit @ 2/8th");
Alert("MM[-1/8]...
Ignored
 
 
  • Post #22
  • Quote
  • Mar 16, 2011 8:40am Mar 16, 2011 8:40am
  •  IEnjoyForex
  • | Joined Feb 2011 | Status: Member | 2 Posts
Hi, Gr8 work with the Alerts.
I have used your as basis n just modified to add Price / Stop Loss Values instead of MM Line references.

Below is the modified code.

Hope its useful.

datetime TimeNow = TimeCurrent() + (60 * 60 * 3) ; // To DST.
string Conv = TimeToStr(TimeNow,TIME_SECONDS);

string AlertPrefix = " Test:["+ Conv +"]" + Symbol()+"-"+Period() + " ";
if(Mailalert==1 && NewBar()){

if((High[0] >= mml[12]) || (Low[0] >= mml[12]))
Alert(AlertPrefix+"MM[+2/8] [email protected]:"+DoubleToStr(Ask, Digits)+ " [email protected][8/8]" + DoubleToStr(mml[10], Digits) + ", [email protected][7/8]" + DoubleToStr(mml[9], Digits));
else
if((High[0] >= mml[11]) && (High[0] < mml[12]) || (Low[0] >= mml[11]) && (Low[0] < mml[12]))
Alert(AlertPrefix+"MM[+1/8] [email protected]:"+DoubleToStr(Ask, Digits)+ " [email protected][8/8]" + DoubleToStr(mml[10], Digits) + ", [email protected][7/8]" + DoubleToStr(mml[9], Digits));
else
if((High[0] >= mml[10]) && (High[0] < mml[11]) || (Low[0] >= mml[10]) && (Low[0] < mml[11]))
Alert(AlertPrefix+"MM[8/8] If downtrend, [email protected]:"+DoubleToStr(Ask, Digits)+ "& [email protected][6/8]" +DoubleToStr(mml[8],Digits));
else
if((High[0] >= mml[9]) && (High[0] < mml[10]) || (Low[0] >= mml[9]) && (Low[0] < mml[10]))
Alert(AlertPrefix+"MM[7/8] If downtrend, [email protected]:"+DoubleToStr(Ask, Digits)+ " & [email protected][4/8]" +DoubleToStr(mml[6],Digits));
else
if((High[0] <= mml[0]) || (Low[0] <= mml[0]))
Alert(AlertPrefix+"MM[-2/8] [email protected]:"+DoubleToStr(Ask, Digits)+ " [email protected][0/8]"+ DoubleToStr(mml[2], Digits) + ", [email protected][2/8]" + DoubleToStr(mml[4], Digits));
else
if((High[0] <= mml[1]) && (High[0] > mml[0]) || (Low[0] <= mml[1]) && (Low[0] > mml[0]))
Alert(AlertPrefix+"MM[-1/8] [email protected]:"+DoubleToStr(Ask, Digits)+ " [email protected][0/8]"+ DoubleToStr(mml[2], Digits) + ", [email protected][2/8]" + DoubleToStr(mml[4], Digits));
else
if((High[0] <= mml[2]) && (High[0] > mml[1]) || (Low[0] <= mml[2]) && (Low[0] > mml[1]))
Alert(AlertPrefix+"MM[0/8] If uptrend, [email protected]:"+DoubleToStr(Ask, Digits)+ " & [email protected][2/8]" +DoubleToStr(mml[4],Digits));
else
if((High[0] <= mml[3]) && (High[0] > mml[2]) || (Low[0] <= mml[3]) && (Low[0] > mml[2]))
Alert(AlertPrefix+"MM[1/8] If uptrend, [email protected]:"+DoubleToStr(Ask, Digits)+ " & [email protected][4/8]" +DoubleToStr(mml[6],Digits));
}


Quoting banzai
Disliked
I just modified the MurreyMath indicator from Vladislav Goshkov to add in an alert. The alert can be turned on or off. It'll alert only once per bar and NOT per second. In addition, you can change the color of the lines now.

Alert messages are:
Alert("MM[+2/8] SELL: TP1 @ 8/8, TP2 @ 7/8");
Alert("MM[+1/8] SELL: TP1 @ 8/8th, TP2 @ 7/8");
Alert("MM[8/8] If downtrend, SELL & Exit @ 6/8th");
Alert("MM[7/8] If downtrend, SELL & Exit @ 4/8th");
Alert("MM[1/8] If uptrend, BUY & Exit @ 4/8th");
Alert("MM[0/8] If uptrend, BUY & Exit @...
Ignored
 
 
  • Post #23
  • Quote
  • Jul 19, 2015 4:21am Jul 19, 2015 4:21am
  •  roughtrader
  • Joined Jan 2011 | Status: Senior Trader | 1,475 Posts
I have downloaded almost every MML indicator I could find here on FF and also from other sites,
the main thing that I keep notise is that many of them is not correct,
this is a bit confusing when you look at one chart and you see price is at 1/8
and when you plot another MML indicator on the same chart, price might be on 3/8,
and when I plot yet another the price is on 2/8. this makes me not have confidence to trade.
because I do not trust what I see. the only assumtion I can make is that most of these are incorrectly coded.
now to my question, did anyone check which indicator is correctly drawing the lines?
could you please provide a link. much apprechiated. thanks
Bulls are stupid Animals!especially when Im short!
 
 
  • View Post
  • Hidden for breach of Trader Code of Conduct
  • Dunno67
  • Post #25
  • Quote
  • Jul 27, 2015 1:50am Jul 27, 2015 1:50am
  •  roughtrader
  • Joined Jan 2011 | Status: Senior Trader | 1,475 Posts
Quoting Dunno67
Hidden
Thanks, here are the ones I tested
Attached Files
File Type: ex4 Mano MM.ex4   73 KB | 364 downloads
File Type: mq4 Mano MM.mq4   23 KB | 386 downloads
File Type: ex4 MM Short_LINES v2.1.ex4   18 KB | 366 downloads
File Type: mq4 MM Short_LINES v2.1.mq4   10 KB | 403 downloads
File Type: ex4 MM# LabelLevelsSC.ex4   15 KB | 357 downloads
File Type: mq4 MM# LabelLevelsSC.mq4   10 KB | 367 downloads
File Type: ex4 MM.ex4   121 KB | 376 downloads
File Type: ex4 M-MATH v3.ex4   62 KB | 392 downloads
File Type: mq4 M-MATH v3.mq4   22 KB | 388 downloads
File Type: mq4 M-Math v4.mq4   16 KB | 496 downloads
Bulls are stupid Animals!especially when Im short!
 
 
  • Post #26
  • Quote
  • Jul 27, 2015 1:53am Jul 27, 2015 1:53am
  •  roughtrader
  • Joined Jan 2011 | Status: Senior Trader | 1,475 Posts
Here are some more
Attached Files
File Type: ex4 mmindicator.ex4   12 KB | 314 downloads
File Type: mq4 mmindicator.mq4   7 KB | 309 downloads
File Type: ex4 mmindicator2.ex4   6 KB | 319 downloads
File Type: mq4 mmindicator2.mq4   6 KB | 357 downloads
File Type: mq4 MML_Multi_Option_v1.24.mq4   28 KB | 387 downloads
File Type: ex4 MMLevls_VG.ex4   32 KB | 334 downloads
File Type: mq4 MMLevls_VG.mq4   17 KB | 396 downloads
File Type: ex4 mn MA Lines.ex4   8 KB | 287 downloads
File Type: mq4 mn MA Lines.mq4   2 KB | 338 downloads
File Type: ex4 MurrayMath_001.1.ex4   15 KB | 359 downloads
Bulls are stupid Animals!especially when Im short!
 
 
  • Post #27
  • Quote
  • Jul 27, 2015 1:54am Jul 27, 2015 1:54am
  •  roughtrader
  • Joined Jan 2011 | Status: Senior Trader | 1,475 Posts
and more
Attached Files
File Type: ex4 Murrey math nmc.ex4   43 KB | 341 downloads
File Type: mq4 Murrey math nmc.mq4   20 KB | 365 downloads
File Type: ex4 Murrey Math_All TF_COLORED.ex4   20 KB | 387 downloads
File Type: mq4 Murrey Math_All TF_COLORED.mq4   14 KB | 417 downloads
File Type: ex4 Murrey Math_All TF_m.ex4   40 KB | 314 downloads
File Type: mq4 Murrey Math_All TF_m.mq4   22 KB | 360 downloads
File Type: ex4 Murrey_Math_AllTF.ex4   20 KB | 306 downloads
File Type: mq4 Murrey_Math_AllTF.mq4   15 KB | 418 downloads
File Type: ex4 Murrey_Math_Line_X.ex4   24 KB | 302 downloads
File Type: mq4 Murrey_Math_Line_X.mq4   13 KB | 295 downloads
Bulls are stupid Animals!especially when Im short!
 
 
  • Post #28
  • Quote
  • Jul 27, 2015 1:56am Jul 27, 2015 1:56am
  •  roughtrader
  • Joined Jan 2011 | Status: Senior Trader | 1,475 Posts
last batch
Attached Files
File Type: ex4 Murrey_Math_Line_X_eng.ex4   24 KB | 301 downloads
File Type: mq4 Murrey_Math_Line_X_eng.mq4   13 KB | 322 downloads
File Type: ex4 Murrey_Math_MT4_Period_VG (1).ex4   24 KB | 321 downloads
File Type: mq4 Murrey_Math_MT4_Period_VG (1).mq4   13 KB | 327 downloads
File Type: ex4 Murrey_Math_MT4_Period_VG.ex4   24 KB | 335 downloads
File Type: mq4 Murrey_Math_MT4_Period_VG.mq4   13 KB | 359 downloads
Bulls are stupid Animals!especially when Im short!
 
 
  • Post #29
  • Quote
  • Jun 16, 2016 10:58am Jun 16, 2016 10:58am
  •  capoeira
  • | Joined Mar 2013 | Status: Member | 90 Posts
Quoting roughtrader
Disliked
I have downloaded almost every MML indicator I could find here on FF and also from other sites, the main thing that I keep notise is that many of them is not correct, this is a bit confusing when you look at one chart and you see price is at 1/8 and when you plot another MML indicator on the same chart, price might be on 3/8, and when I plot yet another the price is on 2/8. this makes me not have confidence to trade. because I do not trust what I see. the only assumtion I can make is that most of these are incorrectly coded. now to my question,...
Ignored
it's been a while. which one do you recomend?
are those all horizontal lines or are there and channel MM indis?
 
 
  • Post #30
  • Quote
  • Jun 17, 2016 3:46am Jun 17, 2016 3:46am
  •  hadidbd
  • | Commercial Member | Joined Jun 2016 | 2 Posts
I have 3 Type Murry math
This graphic illustrates the following:
8/8: Hardest line to rise above (overbought)
7/8: Fast reverse line (weak)
6/8: Pivot reverse line
5/8: Upper trading range
----------------------------------------
4/8: Major reversal line
----------------------------------------
3/8: Lower trading range
2/8: Pivot reverse line
1/8: Fast reverse line (weak)
0/8: Hardest line to fall below (oversold)

Price is between 3/8 and 5/8 MML's about 43% of the time.
Attached Files
File Type: mq4 Murrey_Math_Line_X.mq4   13 KB | 470 downloads
File Type: mq4 x_Murrey_Math_Black.mq4   11 KB | 446 downloads
File Type: mq4 z---MurreyMath-TimeFrame.mq4   18 KB | 483 downloads
File Type: pdf MurreyMath Rules (1).pdf   118 KB | 2,548 downloads
 
 
  • Post #31
  • Quote
  • Last Post: Dec 27, 2017 10:38am Dec 27, 2017 10:38am
  •  Tabbycat
  • | Joined Dec 2017 | Status: Junior Member | 2 Posts
I'm new to trading and and this forum.. I started 2 months ago and knew Jack , now I still know Jack but I can't thank you guys and Gals enough . I've tried all kinds of indicators and strategies in that short time and all I can say is price action... Yep , good old price action and knowing how important Support and resistance areas are ... But I gotta say , the Murray maths system of support and resistance is great for knowing when to take profit or let it play out...seems to be working great at the moment..... If your a newbie like me , I recommend giving it red hot go !. Personally , Straight up I didnt like the solid heavy lines of most of the MM Indicators , I found one with a coloured more subtle background... It's real easy on the eyes , plus I added Banzai's Alert posted here on this thread... It will give you a heads up that your going to get some pretty darn good price action in these zones.... It's called the ' Murrey Multi time frame". It captures and makes you aware of where you are within the trading environment. Along with Murrey Math1.0 alert that Vlad Goshkov has whipped up ( Thanks Vlad) I now have a very robust and focused trading visual . Before I was just throwing darts in the dark and " Hope trading".. So thanks guys for your help !
 
 
  • Trading Discussion
  • /
  • Murray Math Levels
  • Reply to Thread
    • 1 Page 2
    • 1 Page 2
0 traders viewing now
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2022