Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Excecute OnPriceChange and OnBarClose in the same strategy

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

    Excecute OnPriceChange and OnBarClose in the same strategy

    Hello.
    I need to excecute distinct methods in the same strategy but one method needs to excecute onPriceChange and other method needs to excecute OnBarClose.
    Is that possible?
    I am developing on ninjascript
    Thank you

    #2
    Hello fscabrera03,

    Thank you for your post.

    Logic could be separated in your script to run OnPriceChange or OnBarClose by 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 OnPriceChange processing.

    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. Instead of using OnEachTick like the example, you would use OnPriceChange to have some values calculate on price change. 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.

    See the SampleEnterOnceExitEveryTick example in the help guide documentation below for more information.
    SampleEnterOnceExitEveryTick - https://ninjatrader.com/support/help...either_cal.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

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    69 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    42 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    24 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    27 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    54 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X