Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Don't plot on chart - Need help

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

    Don't plot on chart - Need help

    Hi, my name is Wiktor and I come from Poland ) my grammar english is not really impressive. i'm begginer trader and i try write my first indicator.

    When i write :

    protected override void Initialize()
    {

    Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
    CalculateOnBarClose = false;
    Overlay = true;
    PriceTypeSupported = true;
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {

    // Condition set 1 kupuj
    if ( Close[0] > MAX(High, 2)[0] )

    {
    DrawArrowUp("My up arrow" + CurrentBar, 0, Low[0] +- 5 * TickSize, Color.Blue);
    DrawLine("My line" + CurrentBar, 0, Low[0],35, Low[0], Color.Blue);
    }



    I would like trade Long when price breakout MAX from 2 bars, but that indicator don't plot on chart, where is bug ?? What I write wrong ?? Help me

    #2
    Yek shamash! (my spelling is probably bad as well but hopefully you know what I mean)

    The problem is with your logic. Your condition will !never be true since the close will !never be greater than the highest highest high of the last two bars. At best, it may equal. What you likely want to check for is if the current bar close is greater than the highest high of the past two bars excluding the current bar.

    if (Close[0] > MAX(High, 2)[1])
    // Do something

    is what you want. You will also want to add a check like this before hand.

    if (CurrentBar < 1)
    return;

    See this link for more info - http://www.ninjatrader-support.com/v...ead.php?t=3170
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    566 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
    547 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