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

Failure to plot a dot

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

    Failure to plot a dot

    Hi I am trying to plot on the chart I have created with the strategy wizrd and it works as a strategy but when I try it as an indicator it wont plot at all. I must be missing something. I have tried bot draw dot and Plot but no dot.

    protectedoverridevoid Initialize()
    {
    Add(
    new Plot(Color.FromKnownColor(KnownColor.Violet), PlotStyle.Dot, "Plot0"));

    Overlay =
    true;
    }
    protectedoverridevoid OnBarUpdate()
    {


    if (MACD(Fast, Slow, 1).Avg[0] > MACD(Fast, Slow, 2).Avg[1])
    {
    Plot0.Set( Low[
    0] + -10 * TickSize);
    DrawDot(
    "My dot" + CurrentBar, false, 1, Low[0] + -10 * TickSize, Color.OrangeRed);
    }
    }
    Any help appreciated.
    Attached Files

    #2
    Sorry to waste anyones time I needed to use

    if (CurrentBar < 12) return;

    it plots now

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by z679Gju, Today, 02:37 PM
    0 responses
    2 views
    0 likes
    Last Post z679Gju
    by z679Gju
     
    Started by mintos, 04-02-2024, 08:22 PM
    10 responses
    45 views
    0 likes
    Last Post mintos
    by mintos
     
    Started by cmtjoancolmenero, Yesterday, 02:31 PM
    7 responses
    23 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by hdge4u, 04-29-2024, 12:23 PM
    3 responses
    19 views
    0 likes
    Last Post MisterTee  
    Started by PaulMohn, 04-24-2024, 03:49 AM
    5 responses
    40 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X