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 sjsj2732, 03-23-2026, 04:31 AM
    0 responses
    42 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    295 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    290 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    135 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    98 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X