Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

exit method problem

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

    exit method problem

    Hi,

    I'm unable to find a snippet to assist. I'm trying to place a limit exit at the median price of [0] if i get a close below an sma. This is where I am so far: I have the condition, but can't get the limit order going:

    if (CrossBelow(Close, SMA(Close, Convert.ToInt32(26)), 1))
    {
    ExitLongLimit(Convert.ToInt32(DefaultQuantity), (Median[0] ) , "");
    }


    I also tried

    if (CrossBelow(Close, SMA(Close, Convert.ToInt32(26)), 1))
    {
    SetProfitTarget(Convert.ToInt32(DefaultQuantity), (Median[0] ) , "");
    }

    Any direction would be appreciated, thx
    David

    #2
    Hello trader3000a,

    Thanks for your post.

    This type of condition/action could be set up using the Strategy Builder. Then you could view the code that accomplishes this by clicking the 'View code' button in the Strategy Builder.

    You would open a New > Strategy Builder window, navigate to the Conditions and Actions section, create a condition that checks if the Close price crosses below the SMA indicator, and call ExitLongLimit() with the Limit Price field set to Median[0].

    The code would look something like this.

    if (CrossBelow(Close, SMA(Close, 14), 1))
    {
    ExitLongLimit(Convert.ToInt32(DefaultQuantity), Median[0], "", "");
    }


    See this help guide for more information about creating an indicator to value comparison and crossover comparisons: https://ninjatrader.com/support/help...on_builder.htm

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment


      #3
      awesome, Brandon, thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      69 views
      0 likes
      Last Post PaulMohn  
      Working...
      X