Announcement

Collapse
No announcement yet.

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 cmoran13, Yesterday, 01:02 PM
    0 responses
    25 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    17 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    160 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    94 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    148 views
    2 likes
    Last Post CaptainJack  
    Working...
    X