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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    21 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    41 views
    0 likes
    Last Post CarlTrading  
    Working...
    X