Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

indicator works but can't generate orders in strategy

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

    indicator works but can't generate orders in strategy

    Hi, this custom candle pattern indicator prints signals properly, but when inserted into a strategy via the strategy builder (looking for a test value of "1"), no orders are generated. Can you spot any flaws? I tried using NT's bullish engulfing the same way and that works fine. Here's the code below. The third section was something one of you gave me to get the indicator to hide the false test visuals on the chart

    protected override void OnBarUpdate()
    {
    if(CurrentBar < BarsAgo + 1)
    return;

    Values[0][BarsAgo] = (Close[BarsAgo] > High[(BarsAgo + 1)]) && (Low[BarsAgo] > Low[(BarsAgo + 1)]) && (Close[BarsAgo] > Open[(BarsAgo)]) && (Open[BarsAgo + 1] > Close[(BarsAgo + 1)])? (Low[BarsAgo] - (5 * TickSize)) : (Close[BarsAgo] - (0 * TickSize));


    if(!(Close[BarsAgo] > Close[(BarsAgo + 1)]))
    PlotBrushes[0][BarsAgo] = Brushes.Transparent;

    }

    #2
    Hello trader3000a,

    Is the indicator setting a Values[0] on the current bar?

    Print the time of the bar and the value from the indicator in the strategy. Does this show the expected value?
    Please save the output to a text file and include this with your next reply.

    Below is a link to a forum post on using prints to understand behavior. Please watch the video 'Debugging using prints with the Strategy Builder'.


    Chelsea B.NinjaTrader Customer Service

    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
    135 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