NexusFi: Find Your Edge


Home Menu

 





Momentum Stop Indicator


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one cory with 16 posts (48 thanks)
    2. looks_two sebddn with 4 posts (0 thanks)
    3. looks_3 max-td with 2 posts (0 thanks)
    4. looks_4 Dragon with 2 posts (0 thanks)
      Best Posters
    1. looks_one DavidHP with 5 thanks per post
    2. looks_two cory with 3 thanks per post
    3. looks_3 trader1512 with 1 thanks per post
    4. looks_4 ejtrader with 1 thanks per post
    1. trending_up 24,396 views
    2. thumb_up 58 thanks given
    3. group 15 followers
    1. forum 39 posts
    2. attach_file 17 attachments




 
Search this Thread

Momentum Stop Indicator

  #1 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

Here is a momentum stop indicator, momentum because it has nothing to do with volume it is based on price action only. I wrote it for 5m ES chart I have no idea if it work on any other time frame/chart style. Please take time to watch it in action as it is very simple to understand maybe too simple for some folks. The template is for 24hr chart because I collect data to plot overnight H/L using BTOpenRange. If you don't care for overnight H/L then there is no need for 24hr chart. I attatch all indicators to be used in this template.

download momstop here


Attached Thumbnails
Click image for larger version

Name:	ES 06-10  4_12_2010 (5 Min).jpg
Views:	2144
Size:	100.7 KB
ID:	11036  
Attached Files
Elite Membership required to download: BTOpeningRange.cs
Elite Membership required to download: ES-5M-MomStop.xml
Elite Membership required to download: OR15.cs
Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
ZombieSqueeze
Platforms and Indicators
What broker to use for trading palladium futures
Commodities
How to apply profiles
Traders Hideout
MC PL editor upgrade
MultiCharts
 
  #3 (permalink)
 trader1512 
west chester
 
Experience: Intermediate
Platform: NT
Posts: 48 since Oct 2009
Thanks Given: 1
Thanks Received: 55


does not import to NT7

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #4 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

sorry I am still on NT 6.5, try copy cs file into nt7 indicator an compile it from there, it only uses h/l/c value and draw triangle command I think it should pass nt7 syntax.

Started this thread Reply With Quote
Thanked by:
  #5 (permalink)
 trader1512 
west chester
 
Experience: Intermediate
Platform: NT
Posts: 48 since Oct 2009
Thanks Given: 1
Thanks Received: 55

neither will compile here is the grid error.

no overload for method "drawline" takes "8" argument. line 91 and 92 of or15.cs

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #6 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

I see, I just mean the momstop may not having probl with NT7 but the rest of indicators may, due to incompatible ploting syntax.

Started this thread Reply With Quote
Thanked by:
  #7 (permalink)
 wavey 
Germany / Italy
 
Experience: Advanced
Platform: NT8, TS, TV
Trading: Index Futures, FX
Posts: 83 since Nov 2009
Thanks Given: 51
Thanks Received: 37

most likely just the autoScale property that they added for all Draw methods...

Reply With Quote
Thanked by:
  #8 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090

I am done with my tax so it's time for the upgrade here is MomStopV2

improvements are;

-add more reversals

- add option to filter out bad signals using bar range

- add trade entry buy/sell line so that you can track the entry point visually

here is how it looks with the new indicator
and how it looks with the new OR15

Attached Thumbnails
Click image for larger version

Name:	ES 06-10  4_15_2010 (5 Min).jpg
Views:	952
Size:	57.6 KB
ID:	11255   Click image for larger version

Name:	ES 06-10  4_15_2010 (5 Min)2.jpg
Views:	1084
Size:	63.7 KB
ID:	11256  
Attached Files
Elite Membership required to download: ES-5M-NEW-MOMSTOPv2.xml
Elite Membership required to download: OR15.cs
Started this thread Reply With Quote
  #9 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,612 since Aug 2009
Thanks Given: 11,341
Thanks Received: 2,747


cory View Post
I see, I just mean the momstop may not having probl with NT7 but the rest of indicators may, due to incompatible ploting syntax.

Here a the solution to running in NT7

Code in current indicator:
 
Code
                    DrawLine("L1"+id,StartBar,h,EndBar,h,colorRL,DashStyle.Solid,lw);
                    DrawLine("L2"+id,StartBar,l,EndBar,l,colorRL,DashStyle.Solid,lw);
Code change to:
ADD the true, to the code
 
Code
                    DrawLine("L1"+id,true,StartBar,h,EndBar,h,colorRL,DashStyle.Solid,lw);
                    DrawLine("L2"+id,true,StartBar,l,EndBar,l,colorRL,DashStyle.Solid,lw);

Thanks for the kewl indicator Cory

Scotte

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Reply With Quote
  #10 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,098 since Jun 2009
Thanks Given: 877
Thanks Received: 8,090


patience is a virtue, outlast the chop

Attached Thumbnails
Click image for larger version

Name:	ES 06-10  4_15_2010 (5 Min).jpg
Views:	1071
Size:	91.5 KB
ID:	11293  
Started this thread Reply With Quote




Last Updated on February 18, 2013


© 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