NexusFi: Find Your Edge


Home Menu

 





Murrey Math


Discussion in Traders Hideout

Updated
      Top Posters
    1. looks_one Big Mike with 36 posts (150 thanks)
    2. looks_two Zambi with 15 posts (4 thanks)
    3. looks_3 Lmess with 10 posts (0 thanks)
    4. looks_4 bobc with 10 posts (6 thanks)
      Best Posters
    1. looks_one joehickle with 6 thanks per post
    2. looks_two Big Mike with 4.2 thanks per post
    3. looks_3 Prtester with 1.4 thanks per post
    4. looks_4 eDanny with 0.7 thanks per post
    1. trending_up 225,157 views
    2. thumb_up 219 thanks given
    3. group 91 followers
    1. forum 253 posts
    2. attach_file 73 attachments




 
Search this Thread

Murrey Math

  #11 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,442 since Jun 2009
Thanks Given: 33,215
Thanks Received: 101,603


Eternum View Post
It looks like Murrey Math does not work with Range charts. I wonder if anyone else has this problem?

The EOT version does.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Exit Strategy
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
How to apply profiles
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #12 (permalink)
 
Poocher's Avatar
 Poocher 
Los Angeles
 
Experience: Beginner
Platform: SC, MT,
Broker: Forex
Trading: Forex
Posts: 302 since Jun 2009
Thanks Given: 362
Thanks Received: 109

Thanks Mike.

The EOT stuff are impressive looking.

Reply With Quote
  #13 (permalink)
 Prtester 
SE-Asia
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Amp
Trading: ES
Posts: 151 since Jun 2009
Thanks Given: 66
Thanks Received: 124



Eternum View Post
It looks like Murrey Math does not work with Range charts. I wonder if anyone else has this problem?

I will post an update this afternoon or tomorrow, that fix the range problem.

Reply With Quote
  #14 (permalink)
 
wh's Avatar
 wh 
Neubrandenburg, Germany
 
Experience: Advanced
Platform: R
Trading: Stocks
Posts: 538 since Jun 2009
Thanks Given: 298
Thanks Received: 512

Thanx Prester and Mike,

i look today at MML on 16 Minute and 32 Minute for Daily and 64 Minute for Weekly S/R Level i found it looks very nice ... So i removed my rpc to clean up the charts ...

what is on range, tick and volume charts a good calculation to get an good overview ... i think this is a importent point of how to use mml correctly ...


Attached Thumbnails
Click image for larger version

Name:	MML.png
Views:	1454
Size:	482.8 KB
ID:	276   Click image for larger version

Name:	MML2.png
Views:	1258
Size:	55.3 KB
ID:	277  
Reply With Quote
  #15 (permalink)
 
Poocher's Avatar
 Poocher 
Los Angeles
 
Experience: Beginner
Platform: SC, MT,
Broker: Forex
Trading: Forex
Posts: 302 since Jun 2009
Thanks Given: 362
Thanks Received: 109

Hey that'd be super Prtester

Reply With Quote
  #16 (permalink)
 
wh's Avatar
 wh 
Neubrandenburg, Germany
 
Experience: Advanced
Platform: R
Trading: Stocks
Posts: 538 since Jun 2009
Thanks Given: 298
Thanks Received: 512

i found this on ff

if new code there will insert

 
Code
    /**if(AlertOn && NewBar()){
      if((High[0] >= mml[12]) || (Low[0] >= mml[12]))
         Alert(AlertPrefix+"MM[+2/8] SELL: TP1 @ 8/8, TP2 @ 7/8");
      else
      if((High[0] >= mml[11]) && (High[0] < mml[12]) || (Low[0] >= mml[11]) && (Low[0] < mml[12]))
         Alert(AlertPrefix+"MM[+1/8] SELL: TP1 @ 8/8th, TP2 @ 7/8");
      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, SELL & Exit @ 6/8th");
      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, SELL & Exit @ 4/8th");
      else
      if((High[0] <= mml[0]) || (Low[0] <= mml[0]))
         Alert(AlertPrefix+"MM[-2/8] BUY: TP1 @ 0/8, TP2 @ 2/8");
      else
      if((High[0] <= mml[1]) && (High[0] > mml[0]) || (Low[0] <= mml[1]) && (Low[0] > mml[0]))
         Alert(AlertPrefix+"MM[-1/8] BUY: TP1 @ 0/8th, TP2 @ 2/8");
      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, BUY & Exit @ 2/8th");
      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, BUY & Exit @ 4/8th");
      }
            **/

Reply With Quote
  #17 (permalink)
 Prtester 
SE-Asia
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Amp
Trading: ES
Posts: 151 since Jun 2009
Thanks Given: 66
Thanks Received: 124

Ok guys here is the deal, this is not fully tested, but should work on Range, and Volume Charts, I include some Bool in case you want the pivots to be calculated Hourly. When you guys think is ready we can move it to the download section.

Regards

Attached Files
Elite Membership required to download: MurrayMathPivot.zip
Reply With Quote
  #18 (permalink)
 
Poocher's Avatar
 Poocher 
Los Angeles
 
Experience: Beginner
Platform: SC, MT,
Broker: Forex
Trading: Forex
Posts: 302 since Jun 2009
Thanks Given: 362
Thanks Received: 109

Prtester...Thanks!

I have it up and running and jumped back and forth between different range quantities and times and it worked no matter what.

Really appreciate the level descriptions too!



Reply With Quote
  #19 (permalink)
 Prtester 
SE-Asia
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Amp
Trading: ES
Posts: 151 since Jun 2009
Thanks Given: 66
Thanks Received: 124


Poocher View Post
Prtester...Thanks!

I have it up and running and jumped back and forth between different range quantities and times and it worked no matter what.

Really appreciate the level descriptions too!


Attachment 280

Also I round to nearest tick all the levels, I really hate the .021 or so :-)

Reply With Quote
  #20 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,442 since Jun 2009
Thanks Given: 33,215
Thanks Received: 101,603


PrTester,

Thank you for all of your work on this indicator!! I hope you don't mind, I made a few changes for my personal use and wanted to share in case anyone else benefits from them.

Here is my version, which adds:

- Ability to use Right Margin on chart
- Ability to color the Text Labels differently than the line colors
- Raises the Text Label by 2px so it doesn't touch the line
- Right-aligns the MML text (0/8, 1/8, 2/8 etc)
- Sets default colors to match the colors presented earlier in this thread
- Sets ZOrder to -1 which puts the MML's behind price bars instead of on top

NOTE: I just made the last change a few minutes after I uploaded, so please re-download the indicator...

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Attached Thumbnails
Click image for larger version

Name:	2009-06-22_1617.png
Views:	935
Size:	104.3 KB
ID:	284   Click image for larger version

Name:	2009-06-22_1623.png
Views:	1190
Size:	141.0 KB
ID:	287  
Attached Files
Elite Membership required to download: MurreyMath_bigmike.zip
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread Reply With Quote




Last Updated on June 21, 2021


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts