Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

need a simple sma strategy for ninja

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    need a simple sma strategy for ninja

    looking for simple SMA strategy where you can buy crossing up through sma and sell moving down through sma.

    Thanks in advance.
    Julian

    #2
    Hello Julian1033,
    Thanks for posting today.

    We have a sampleSMACross strategy that is pre-built into NinjaTrader that you can reference to build your strategy.
    • From the Control Center>Tools>Edit NinjaScript>Strategy...
    • Select the SampleMACrossOver
    • Left mouse click OK to edit this code and adapt it to your code.


    Please let us know if we may be of further assistance for anything NinjaTrader.
    Alex G.NinjaTrader Customer Service

    Comment


      #3
      need a little something different

      I am actually looking for code that creates order when price crosses "X" sma and not "x" sma crossing "y" sma. Is that available somewhere?

      Thanks so much!
      Julian

      Comment


        #4
        Hello,

        This would be the same logic used as the example, you would just change what the comparison is for.

        For example, instead of comparing two sma's like this:

        Code:
        if (CrossAbove(SMA(Fast), SMA(Slow), 1))
        you could replace the sma on the Left with a close series or:

        Code:
        if (CrossAbove(Close,SMA(Fast)))
        If you look in the help guide at CrossAbove you can see the additional ways it can be used, this applies to all NinjaScript items in the help guide. http://ninjatrader.com/support/helpG...sub=CrossAbove

        Close is a DataSeries which is what this would take, you can also supply a double value if needed to CrossAbove.

        I look forward to being of further assistance.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        583 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        338 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        552 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X