Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trade /ES on VIX chart

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

    Trade /ES on VIX chart

    Hello, I would like to run a strategy on a VIX chart (primary bars), but place trades on /ES (secondary bars). I have cobbled together example code below, however, it doesn't do what I want to achieve. Any help on how to do this would be appreciated.

    Code:
            protected override void Initialize()
            {
                CalculateOnBarClose = true;
                Add("ES ##-##", PeriodType.Day, 1);
            }
    
            protected override void OnBarUpdate()
            {
            if (BarsInProgress != 0)
                return;
            
                // Long Entry #1
                if (CrossAbove(SMA(5), SMA(20), 1))
                {
                    EnterLong(1, DefaultQuantity, "LEn1");
                }
    
                // Long Exit #1
                if (CrossBelow(SMA(5), SMA(20), 1))
                {
                    ExitLong(1, "LEx1", "LEn1");
                }
            }

    #2
    It looks okay by reading the code... can you be more specific as to what it is not doing? Is it disabling?


    Open an output window to check for any error messages if it is disabling.

    You might have a CurrentBar check issue?

    Comment


      #3
      Thanks Sledge. I opened the output window and I saw what was going on. In my original code I didn't specify BarsInProgress parameter with BarsSinceEntry() > 10.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      134 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      75 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      119 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      114 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      92 views
      0 likes
      Last Post CarlTrading  
      Working...
      X