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

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
    Joe Average, that would not be an issue you can definitely backtest daily historical. What data provider / feed do you use? Are you testing on ES 12-14 or the continuous contract? I gave your signals a quick run on Kinetick data and see them getting hit. What would happen if you for example backtest the SampleMACrossOver on your chart? Would that get trades?

    Have you possible just disabled the plot executions on this chart?
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Opps, you're right I switched off the executions of the plots on the chart. Dumb.

      Sorry,

      Thank you.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by geotrades1, Today, 10:02 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by ender_wiggum, Today, 09:50 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by rajendrasubedi2023, Today, 09:50 AM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by bmartz, Today, 09:30 AM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by geddyisodin, Today, 05:20 AM
      3 responses
      26 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Working...
      X