Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

I will Develop your Indicator or Strategy for FREE

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Harry
    replied
    Originally posted by dlisenko View Post
    Hello

    Does anyone has High Low moving average indicator and SMA on Momentum indicator? Thanks
    NinjaTrader allows you to apply the SMA to the Momentum indicator. Add a SMA and select Momentum as input series.

    I do not understand what you call a high low moving average indicator.

    Leave a comment:


  • kinkeadfx
    replied
    I would like to have this indicator converted into a working strategy.

    Thanks!
    Attached Files

    Leave a comment:


  • dlisenko
    replied
    Hello

    Does anyone has High Low moving average indicator and SMA on Momentum indicator? Thanks

    Leave a comment:


  • canthony09
    replied
    Our firm provides custom programming of strategies and indicators for Ninja users at a fraction of the cost of other programming services due to our low overhead structure. We are based in the US however we maintain a programming office in Asia which allows us to be extremely competitive. Our firm will create your custom indicator or strategy for you, provide it to you and allow you to use it for one week before you pay for it in full. Your purchase includes a lifetime license for two machine ids. References available. Please email me at [email protected] for more information. Thank you.

    Leave a comment:


  • JerryA
    replied
    ShowMe Indicator

    Hi - I need a simple indicator that will place a dot or an arrow at a specific time. So if I want to mark 9:30 AM on all the data which is loaded, a dot or an arrow will appear at that time. Thank you in advance. Jerry

    Leave a comment:


  • Zoomer
    replied
    Ask / Bid Info on Chart

    Hi,

    I am new to ninjatrader, and also ninjascript. I need the following indicator, and wondering if you could help....Thank you !

    Ask/Bid info on chart:

    A green line plotted on the chart at the current ask price
    The current volume at Ask displayed above the ask-line, along with the percentage of the current volume at ask compared to the total volume

    A red line plotted on the chart at the current bid price
    The current volume at Bid displayed below the bid-line, along with the percentage of the current volume at bid compared to the total volume

    If the Volume at Ask is higher than the volume at Bid, then the Ask Volume info should be highlighted in green.
    If the Volume at Bid is higher than the volume at Ask, then the Bid Volume info should be highlighted in red.

    The colors, length of lines, size of font should be changeable, if possible.


    Thank you in advance for your help.
    Zoomer

    Leave a comment:


  • NinjaTrader_JC
    replied
    Hello Gco,

    This would require some custom programming. You may do something like the following:

    Code:
    protected override void Initialize()
    {
          Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
    }
    
    protected override void OnBarUpdate()
    {
         if (CrossAbove(DM(14).DiPlus, DM(14).DiMinus, 1))
         {
              Plot0.Set(1);
         }
         // Else Rest of code
    }
    Then you can use the Market Analyzer Cell conditions for the rest. You may see the following link to our Help Guide on creating Alert, Cell, and Filter conditions inside the Market Analyzer.
    http://www.ninjatrader.com/support/h..._and_filte.htm

    Let us know if we can be of further assistance.

    Leave a comment:


  • GCOmusic
    replied
    Originally posted by nicbizz View Post
    As I understand it, Market Analyzer is unable to display anything other than numerical results. So instead of "DI+ Crossed" or "DI- Crossed", you can create an indicator to output "1" or "-1".

    What you're asking for is fairly simple, but I have no idea what this DM+ or DM- is, otherwise, I would have a quick go at it.

    -Nick
    Hello Nick,

    The indicators I speak of are the "DM" indicators that come with ninja trader. I believe the correct label is "DiPlus" and "DIMinus". I believe if I can get the indicator to indicate whether it has crossed over with a 1 or -1 I can add cell conditions in market analyzer to display text. Could you help me out.

    Best,
    Gco

    Leave a comment:


  • nicbizz
    replied
    Originally posted by GCOmusic View Post
    Hello Michel,

    I believe this is simple but I need some help. I have been having a go at the ninja trader wizard programming but I still can't figure this out. I would like market analyzer just to simply show if the DM+ which is 14 days has crossover the DM- which is 14 days as well and write a text in market analyzer that says "DI+ Crossed", also the same in reverse for DI- showing "DI- Crossed." I believe once I have the file and code that I can exam it I will be able to figure out a lot after that other programming techniques for market analyzer

    Thanks in Advance.
    Best,
    GCO
    As I understand it, Market Analyzer is unable to display anything other than numerical results. So instead of "DI+ Crossed" or "DI- Crossed", you can create an indicator to output "1" or "-1".

    What you're asking for is fairly simple, but I have no idea what this DM+ or DM- is, otherwise, I would have a quick go at it.

    -Nick

    Leave a comment:


  • GCOmusic
    replied
    New programming Ninja Trader

    Hello Michel,

    I believe this is simple but I need some help. I have been having a go at the ninja trader wizard programming but I still can't figure this out. I would like market analyzer just to simply show if the DM+ which is 14 days has crossover the DM- which is 14 days as well and write a text in market analyzer that says "DI+ Crossed", also the same in reverse for DI- showing "DI- Crossed." I believe once I have the file and code that I can exam it I will be able to figure out a lot after that other programming techniques for market analyzer

    Thanks in Advance.
    Best,
    Gco
    Last edited by GCOmusic; 12-11-2012, 01:58 PM.

    Leave a comment:


  • NinjaTrader_JC
    replied
    Hello Derdon,

    You may try the following indicator from our NinjaScript File Sharing section that uses the Bollinger to detect breakouts and has Alerts() built into them.



    To Import
    1. Download the file to your desktop
    2. From the Control Center window select the menu File > Utilities > Import NinjaScript
    3. Select the downloaded file

    Leave a comment:


  • derdon
    replied
    Looking for Indicator - for Higher Highs Lower Lows.

    Hi does anyone have or know we I can get an indicator that alerts when price reaches higher highs, lower lows, double bottoms, tops etc.
    Thanks,

    Leave a comment:


  • NinjaTrader_JC
    replied
    Hello forextrader2003,

    Welcome to the NinjaTrader Support Forums!

    I am not familiar with the Wicket Renko Bar type myself, although I have heard of it. I am not sure of what to expect using that particular Bar Type, you may want to contact the vendor/programmer where you downloaded it from to see what is expected.

    Note that using Renko Bars for Backtesting are going to be set to CalculateOnBarClose to true since it is going only process on Historical Data. For more information about Backtesting Renko Bar Types you may view the following thread.
    http://www.ninjatrader.com/support/f...ad.php?t=49420

    Let us know if we can be of further assistance.

    Leave a comment:


  • forextrader2003
    replied
    Wicked Renko Bar Type

    Good Evening All,

    Please Help . . . I am having major, major, major problems with a strategy that I am programming. I am using Wicked Renko Bar Type and I can not seem to get the trades to execute on the first tick of the new candle after the signal bar closes. It may take 15, 20 or even 30 ticks to execute a trade, which is extremely too long. Also something else that is weird when I do a backtest using these type bars they do not even show on the backtest chart but all the executed trades do show, then when I run the backtest on the Ninjatrader default Renko type bars, trades are executed on the first tick of the new bar and show on the backtest chart, go figure. (Please Help Me) Any suggestions.


    Thank You In Advance,
    Dorian
    [email protected]

    Last edited by forextrader2003; 12-06-2012, 03:42 PM.

    Leave a comment:


  • geotabs
    replied
    Thanks Nick

    Works like a charm, I appreciate your time and patience.

    Cheers

    Leave a comment:

Latest Posts

Collapse

Topics Statistics Last Post
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
0 responses
607 views
0 likes
Last Post Geovanny Suaza  
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
0 responses
353 views
1 like
Last Post Geovanny Suaza  
Started by Mindset, 02-09-2026, 11:44 AM
0 responses
105 views
0 likes
Last Post Mindset
by Mindset
 
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
0 responses
560 views
1 like
Last Post Geovanny Suaza  
Started by RFrosty, 01-28-2026, 06:49 PM
0 responses
561 views
1 like
Last Post RFrosty
by RFrosty
 
Working...
X