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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    56 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    132 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X