Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Flaky BarsSinceEntry (multi-timeframe)

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

    Flaky BarsSinceEntry (multi-timeframe)

    Hi,

    I'm using a muti-timeframe strategy to enter and exit my trades (Eg entering on a 5min setup and exiting on a 1min scenario). Specifically, I have set some 5min exits and some 1min exits.

    So far, the code seems to be behaving rather well when I use the prescribed settings of BarsInProgress, BarsArray, High / Highs etc.

    However, the trade Exits get flaky When I use the BarsSinceEntry multi-timeframe function and its 3 overloads, and what was supposed to have been exited on a 1min timeframe gets confused with the 5min one.

    Please let me know if my understanding is correct:

    eg: BarsSinceEntry (1,"",0) > 5
    translates into: if more than 5 time periods have passed since the last entry on the secondary data series

    Can you tell me how to fit in entryName and entriesAgo using my example? The most recent entry in all cases would have been on the primary 5min data series.

    I have also uniquely labeled all the entries in a way that every open position at that point in time has its own name. Eg. "A", "B" (from a different market), "C" as the pyramiding increment of "A", each entered on a 5min timeframe

    Thanks

    #2
    Hi andreneoh,

    Ensure you place this under a BarInProgress check, for example...
    Code:
    if (BarsInProgress == 0) 
        { 
           BarsSinceEntry(1, "B", 0)                  
        }
    More info at - http://www.ninjatrader-support.com/H...BarsSinceEntry
    TimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

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