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 cmtjoancolmenero, Yesterday, 03:58 PM
    11 responses
    41 views
    0 likes
    Last Post cmtjoancolmenero  
    Started by FrazMann, Today, 11:21 AM
    0 responses
    5 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    52 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by DayTradingDEMON, Today, 09:28 AM
    4 responses
    27 views
    0 likes
    Last Post DayTradingDEMON  
    Started by George21, Today, 10:07 AM
    1 response
    22 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Working...
    X