Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Automatic five bar strategy

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

    Automatic five bar strategy

    Hi,

    I'm trying to setup a strategy that trades the another instrument based on the action of IBM. However, when I apply the strategy to the instrutment I'm trading, it seems to execute the trade based on the action of the instrument I'm trading, and not the action of IBM.

    Any pointers on what I'm doing wrong?

    Here is my code:

    private int tradesize = 5;
    private double stoppoints = 6;
    private double profitpoints = 3;

    private IOrder LE = null;
    private IOrder SE = null;
    private IOrder LSL = null;
    private IOrder LPT = null;
    private IOrder SSL = null;
    private IOrder SPT = null;

    #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()
    {
    CalculateOnBarClose = true;

    //Adding IBM Period Chart
    Add("IBM", PeriodType.Minute, 1);
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    //Trade creteria'
    if (Open[4] < Close[4]
    && Open[3] < Close[3])

    // Enter short if true
    SE=EnterShort(0,tradesize,"SE");
    }

    #2
    Hello,

    Yes, you will want to isolate your code using BarsInProgress. This link will help:

    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    31 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, Yesterday, 02:41 AM
    0 responses
    14 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    22 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    34 views
    0 likes
    Last Post CarlTrading  
    Working...
    X