Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

strategy works on 5 second timeframe but not on 1 seocnd timeframe

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

    strategy works on 5 second timeframe but not on 1 seocnd timeframe

    please refer to attachment instead of asking forerror etc… much easier that way. But my strategy works on all timeframe inclunding 5 second until i switch it to 1 second and i dont understand why?

    #2
    region Using declarations
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.ComponentModel.DataAnnotations;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Xml.Serialization;
    using NinjaTrader.Cbi;
    using NinjaTrader.Gui;
    using NinjaTrader.Gui.Chart;
    using NinjaTrader.Gui.SuperDom;
    using NinjaTrader.Gui.Tools;
    using NinjaTrader.Data;
    using NinjaTrader.NinjaScript;
    using NinjaTrader.Core.FloatingPoint;
    using NinjaTrader.NinjaScript.Indicators;
    using NinjaTrader.NinjaScript.DrawingTools;
    #endregion

    //This namespace holds Strategies in this folder and is required. Do not change it.
    namespace NinjaTrader.NinjaScript.Strategies
    {
    public class Test : Strategy
    {
    private double StopLong;

    private MIN MIN1;

    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    Description = @"Enter the description for your new custom Strategy here.";
    Name = "Test";
    Calculate = Calculate.OnEachTick;
    EntriesPerDirection = 1;
    EntryHandling = EntryHandling.AllEntries;
    IsExitOnSessionCloseStrategy = true;
    ExitOnSessionCloseSeconds = 30;
    IsFillLimitOnTouch = false;
    MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
    OrderFillResolution = OrderFillResolution.Standard;
    Slippage = 0;
    StartBehavior = StartBehavior.WaitUntilFlat;
    TimeInForce = TimeInForce.Gtc;
    TraceOrders = false;
    RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
    StopTargetHandling = StopTargetHandling.PerEntryExecution;
    BarsRequiredToTrade = 20;
    // Disable this property for performance gains in Strategy Analyzer optimizations
    // See the Help Guide for additional information
    IsInstantiatedOnEachOptimizationIteration = true;
    StopLong = 1;
    }
    else if (State == State.Configure)
    {
    }
    else if (State == State.DataLoaded)
    {
    MIN1 = MIN(Low, 3);
    }
    }

    protected override void OnBarUpdate()
    {
    if (BarsInProgress != 0)
    return;

    if (CurrentBars[0] < 1)
    return;

    // Set 1
    if ((Close[1] > Open[1])
    && (Position.MarketPosition == MarketPosition.Flat)
    // Condition group 1
    && ((BarsSinceExitExecution(0, "", 0) == -1)
    || (BarsSinceExitExecution(0, "", 0) > 1)))
    {
    EnterLong(Convert.ToInt32(DefaultQuantity), @"EntryLong");
    StopLong = MIN1[0];
    }

    // Set 2
    if (Position.MarketPosition == MarketPosition.Long)
    {
    ExitLongStopMarket(Convert.ToInt32(DefaultQuantity ), StopLong, @"StopLong", @"EntryLong");
    ExitLongLimit(Convert.ToInt32(DefaultQuantity), (Position.AveragePrice + (15 * TickSize)) , @"ProfitLong", @"EntryLong");
    }

    }
    }
    }

    region Wizard settings, neither change nor remove
    /*@​

    Comment


      #3
      Hello traderqz,

      Thank you for your post.

      It looks like you have already started a topic for this inquiry: https://forum.ninjatrader.com/forum/...-and-stop-loss

      We do kindly ask that you refrain from creating multiple support cases for the same inquiry, as this duplicates our support efforts and reduces our team's availability to assist all clients in a timely and efficient manner.
      ​​
      If you need assistance for the same inquiry, please reply to the original post instead of starting a new thread.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X