Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Secondary data series causing issue

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

    Secondary data series causing issue

    If I attempt to enable the strategy below, and look at the strategy setup window immediately thereafter, it shows as disabled. If I remove the Add() renko bars, it works fine. I've employed multiple timeframes in many other strategies and never had any issues, but this is the first time I'm using Volume bars as primary data series. Am I forgetting to do something here?

    Code:
    protected override void Initialize()
            {
                Add(PeriodType.Renko,3);
                CalculateOnBarClose = true;
            }
    
            /// <summary>
            /// Called on each bar update event (incoming tick)
            /// </summary>
            protected override void OnBarUpdate()
            {
                if (BarsInProgress != 0)return;
    			
    		// Condition set 1
                if (Close[0] > Open[0] )
                {
                    DrawArrowUp("My up arrow" + CurrentBar, false, 0, Low[0] + -2 * TickSize, Color.Lime);
                    EnterLong(DefaultQuantity, "");
                }
    			
            }
    EDIT: I just tried changing the Renko secondary series to Minute and it works.

    Never mind, my bad. I see there is a special syntax for this: AddRenko()
    Last edited by coolmoss; 07-13-2012, 04:24 PM.

    #2
    coolmoss,

    I am happy you have resolved your issue. Please feel free to contact us any time.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sjsj2732, Yesterday, 04:31 AM
    0 responses
    33 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    286 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    286 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    133 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    91 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X