Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Chart not showing trades

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

    Chart not showing trades

    I'm trying to run this strategy on a daily Dec ES contract chart. NT isn't showing any of the trades on the chart is that because its using historical data ?


    /// A Spike above or below the BB more than 3 pts on the Daily
    /// </summary>
    [Description("A Spike above or below the BB more than 3 pts on the Daily")]
    public class BBspike : Strategy
    {
    #region Variables
    // Wizard generated variables
    private int myInput0 = 3; // Default setting for MyInput0
    // User defined variables (add any user defined variables below)
    #endregion

    /// <summary>
    /// This method is used to configure the strategy and is called once before any strategy method is called.
    /// </summary>
    protected override void Initialize()
    {
    Add(Bollinger(2, 14));
    Add(Bollinger(2, 14));
    SetProfitTarget("Long1", CalculationMode.Ticks, 16);
    SetProfitTarget("Short1", CalculationMode.Ticks, 16);
    SetStopLoss("", CalculationMode.Ticks, 16, false);

    CalculateOnBarClose = false;
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    // Condition set 1
    if (GetCurrentBid() >= Bollinger(2, 14).Upper[1] + 12 * TickSize)
    {
    EnterShort(DefaultQuantity, "Short1");
    }

    // Condition set 2
    if (GetCurrentBid() <= Bollinger(2, 14).Lower[1] + (-12 * TickSize))
    {
    EnterLong(DefaultQuantity, "Long1");
    }
    }

    #region Properties
    [Description("")]
    [GridCategory("Parameters")]
    public int MyInput0
    {
    get { return myInput0; }
    set { myInput0 = Math.Max(1, value); }
    }
    #endregion
    }
    }

    #2
    Hello Joe,

    Thank you for your post.

    GetCurrentBid() does not work historically and the Close price will be substituted instead. This maybe where the issue lies as the conditions may not be true running historically.
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    562 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    325 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
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X