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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    103 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    52 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    33 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    36 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    73 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X