Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1401 (permalink)  
Old 09-30-2009, 10:26 PM
Junior Member
 
Join Date: Sep 2009
Posts: 5
Deviad is on a distinguished road
Hello,
I have coded the murrey math lines into a simple java application.
I don't have metatrader unfortunately, I'm using Ensign Windows.
I'd like to know if the way I'm using to calculate these levels is fine or not.
I'm attaching the program and the source code.
Tell me if it's all OK or whether I need to modify something.
Thank you very much in advance to all of those willing to help me and also to those who will not.
Cheers,
Deviad

P.S.: you need to set your JAVA_HOME system variable in order to do the program run if you wanna run it.
Attached Files
File Type: zip MM_calculator.zip (15.7 KB, 165 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1402 (permalink)  
Old 09-30-2009, 10:29 PM
Junior Member
 
Join Date: Sep 2009
Posts: 5
Deviad is on a distinguished road
In case you cannot download anything, here is the class file related to the Murrey Math itself.

Code:
public class Calculator {
   public  double priceRange(double max, double min)
     {
	    double PR;
	    PR = max - min;
	    return PR;
     }
 
   public  double srCalculator(double max)
     {
	   boolean guard=true;
	   if (guard==true) 
	      { 
		   
		   if (max <= 250000 && max > 25000) {
			   double SR;
			   SR = 100000;
			   guard = false;
			   return SR;   		      
		      }  
		   
		   if (max <= 25000 && max > 2500) {
			   double SR;
			   SR = 10000;
			   guard = false;
			   return SR;
		   	  }
		   
		   if (max <= 2500 && max > 250) {
			   double SR;
			   SR = 1000;
			   guard = false;
			   return SR;
		      }
		   
		   if (max <= 250 && max > 25) {
			   double SR;
			   SR = 100;
			   guard = false;
			   return SR;
			  }
		   
		   if (max <= 25 && max > 12.5) {
			   double SR;
			   SR = 12.5;
			   guard = false;
			   return SR;
			  }
		   
		   if (max <= 12.5 && max > 6.25) {
			   double SR;
			   SR = 12.5;
			   guard = false;
			   return SR;
			  }

		   if (max <= 6.25 && max > 3.125) {
			   double SR;
			   SR = 6.25;
			   guard = false;
			   return SR;
			  }

		   if (max <= 3.125 && max > 1.5625) {
			   double SR;
			   SR = 3.125;
			   guard = false;
			   return SR;
			  }
		   
		   if (max <= 1.5625 && max > 0.390625) {
			   double SR;
			   SR = 1.5625;
			   guard = false;
			   return SR;
			  }
		   
		   if (max <= 0.390625 && max > 0.0) {
			   double SR;
			   SR = 0.1953125;
			   guard = false;
			   return SR;
			  }
		   
	      }
	   return (0);
     }

   public double mmiCalculator(double SR, double PR) {
	 
	    int OctaveCount = 0;
	   	double MMI = SR/8;
	   	
	   	double RangeMMI = PR/MMI;
		
	   	while (RangeMMI < 1.25) 
		  {
			OctaveCount++;
			MMI=MMI/8;
			RangeMMI = PR/MMI;
		  }
		return MMI;
     }
   

}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1403 (permalink)  
Old 10-01-2009, 05:11 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by Deviad View Post
Hello,
I have coded the murrey math lines into a simple java application.
I don't have metatrader unfortunately, I'm using Ensign Windows.
I'd like to know if the way I'm using to calculate these levels is fine or not.
I'm attaching the program and the source code.
Tell me if it's all OK or whether I need to modify something.
Thank you very much in advance to all of those willing to help me and also to those who will not.
Cheers,
Deviad

P.S.: you need to set your JAVA_HOME system variable in order to do the program run if you wanna run it.
Good job and thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1404 (permalink)  
Old 10-09-2009, 06:59 PM
dbbpj's Avatar
Junior Member
 
Join Date: May 2006
Posts: 21
dbbpj is on a distinguished road
Exclamation It's Murrey's Birthday!

Happy Birthday Mr. Murrey!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1405 (permalink)  
Old 10-20-2009, 11:49 AM
Junior Member
 
Join Date: Sep 2009
Posts: 5
Deviad is on a distinguished road
I need to implement the time part now...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1406 (permalink)  
Old 10-20-2009, 12:01 PM
Junior Member
 
Join Date: Sep 2009
Posts: 5
Deviad is on a distinguished road
Can anyone help me to translate the metatrader version of Murrey Math into ESPL to make it work with Ensign Windows?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1407 (permalink)  
Old 10-25-2009, 04:36 PM
Senior Member
 
Join Date: Nov 2005
Location: Canada
Posts: 208
Blaiserboy is on a distinguished road
deviad

in ensign is the harmonics tool you can use that instead of working to write code
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1408 (permalink)  
Old 10-28-2009, 06:09 AM
Junior Member
 
Join Date: Oct 2009
Posts: 3
rcalibuso is on a distinguished road
Murrey Math Indicator for ForexTester

Hey,

I was wondering if anyone has an indicator for ForexTester to do some back testing or practice.

It appears that although it is very similar to metatrader (and you can import the tickData), your typical indicator for Metatrader can't be loaded and you need to convert it specific to that format.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1409 (permalink)  
Old 10-28-2009, 12:06 PM
Senior Member
 
Join Date: Nov 2005
Location: Canada
Posts: 208
Blaiserboy is on a distinguished road
would there be a forum for forextester where you can ask that ques... Probably people using the software would be doing coding or could steer you to people who can do it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1410 (permalink)  
Old 10-28-2009, 04:57 PM
Junior Member
 
Join Date: Oct 2009
Posts: 6
rickwind is on a distinguished road
Error incurs while installing X-MM indicator

Hi, Xard777, I got an problem as per shown below. The lines are slant and numbers are doubled on the right hand side.
Help...........
Attached Images
File Type: jpg error.JPG (82.7 KB, 5 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
filetype: ex4, Forex math, murray math, murray math forex, murray math trading, murray math trading system, murrey, Murrey Math, Murrey MAth ea, murrey math forex, murrey math indicator, MURREY MATH LINES, murrey math system, murrey math trading system, Murrey Maths, Murrey_Math_Line_X, The Murrey Math Trading System, x-tdi, Xard777, Murrey Math EA, murrey math trading, TimeFrame-2007-v0.04, zigzag_pointer_alert, trading, murray maths, murrey math forex tsd, search, murrey math strategy, murray i-Regr.mq4, murreymath, Forex TSD, XARD-LITE, xard lite, murrey math metatrader, murrey lines, murrey math tsd, forex tsd murrey math, Murrey Math Line X, i-Regr mq4, Murrey Math Levels


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Murrey Math EA ForexStyle Expert Advisors - Metatrader 4 22 05-11-2009 02:39 PM


All times are GMT. The time now is 03:54 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.