Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Time Only

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

    Time Only

    I'm trying to set my strategy to only trade withing a certain timeframe. I keep getting an error at compilation. What am I missing?

    Here is my code.


    region Variables
    private bool longEntry = true;
    private bool shortEntry = true;
    private EMA ema3;
    private EMA ema9;
    private int quantity = 1;
    private TimeOnly tradeStart = new TimeOnly(8, 30, 0);
    private TimeOnly tradeStop = new TimeOnly(14, 45, 0);
    private int stopLoss = 40;
    private int takeProfit = 60;
    private int tickSize;
    #endregion;

    The error is "The type or names pace 'TimeOnly' could not be found". Any ideas?

    #2
    Hello Shiner452,

    Thanks for your post.

    TimeOnly is not a valid default C# data type like a bool, int, or double. A DateTime variable would need to be used for the time variables in your script.

    The Strategy Builder could be used to set up a Time variable and you could set up a Time Filter or Time Comparison condition. Then, click the 'View code' button on the Strategy Builder to see the generated code used to accomplish this.

    Creating Variables: https://ninjatrader.com/support/help...ariablesScreen
    Creating Time Comparisons: https://ninjatrader.com/support/help...imeComparisons
    Creating Time Filters: https://ninjatrader.com/support/help...ateTimeFilters

    Let me know if I may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    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
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X