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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    161 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    311 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    245 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    350 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X