Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

many entries on the same bar

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

    many entries on the same bar

    hello i have some problems with the ninja player, i am playing my strategy in the CL with unirenko bars i have the brand playback activated. but sometimes it makes me many entries in the same bar when it should only make one. and my performans is triggered producing me many entries i would like to know how i can solve that. i attach some screenshots.

    the problem usually happens at 16:30 but also at 00:00, but I do not create new bar goes crazy buying or selling,
    Attached Files

    #2
    Hello JesusSanchez,

    Many entries per bar is generally caused by using OnEachTick or OnPriceChange calculation mode and the entry condition remaining true. You could add logic to make sure only one entry can happen per bar. Generally the BarsSinceEntry could be used for that purpose:



    if ((BarsSinceEntryExecution() > 0 || BarsSinceEntryExecution() == -1))

    This method reports -1 if no entry was found, otherwise it counts up from the entry bar. You could use 0 and -1 as the values to make sure it is not on the same identical bar.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by pibrew, Today, 06:37 AM
    0 responses
    0 views
    0 likes
    Last Post pibrew
    by pibrew
     
    Started by rbeckmann05, Yesterday, 06:48 PM
    1 response
    12 views
    0 likes
    Last Post bltdavid  
    Started by llanqui, Today, 03:53 AM
    0 responses
    6 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by burtoninlondon, Today, 12:38 AM
    0 responses
    11 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    15 views
    0 likes
    Last Post AaronKoRn  
    Working...
    X