Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Entry and Exits on 2 different strategies

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

    Entry and Exits on 2 different strategies

    I want to make 2 strategies,
    1 for Entry only on Price Change
    1 for Exit only on Bar Close

    Is it possible to do that and synchronize the 2 different strategies?

    #2
    Hello Ousher,

    Thanks for your post.

    Strategies are only able to see orders placed by that specific instance of the strategy. This means that if strategy 1 places an order, strategy 2 would not be aware of that order.

    Something you could consider doing is creating a single strategy that separates some logic to work OnPriceChange and other logic to work OnBarClose.

    Logic can be separated between Calculate.OnPriceChange and Calculate.OnBarClose using IsFirstTickOfBar. Please note that a hosted script will inherit the Calculate mode of the script that hosts it.

    You can take the following approach to differentiate logic between OnBarClose and OnEachTick processing. In your script, you would use OnPriceChange instead of OnEachTick.

    Please see this reference sample which demonstrates a technique used for those who need to separate their logic to calculate some values on each tick and others only on the close of a bar. You will set your host script to Calculate.OnPriceChange and use if(IsFirstTickOfBar) and place all code that needs to calculate once every bar within that condition check. Then place all code that you want to calculate OnPriceChange outside of the IsFirstTickOfBar condition check.

    SampleEnterOnceExitEveryTick -https://ninjatrader.com/support/help...either_cal.htm

    Please 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

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    93 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    138 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
    123 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    73 views
    0 likes
    Last Post PaulMohn  
    Working...
    X