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

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 wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    27 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 04-23-2024, 09:53 PM
    2 responses
    74 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    193 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,235 views
    0 likes
    Last Post xiinteractive  
    Working...
    X