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 DJ888, 04-16-2024, 06:09 PM
    4 responses
    12 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by terofs, Today, 04:18 PM
    0 responses
    11 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by nandhumca, Today, 03:41 PM
    0 responses
    7 views
    0 likes
    Last Post nandhumca  
    Started by The_Sec, Today, 03:37 PM
    0 responses
    3 views
    0 likes
    Last Post The_Sec
    by The_Sec
     
    Started by GwFutures1988, Today, 02:48 PM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X