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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    476 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    317 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    254 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    340 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    306 views
    0 likes
    Last Post CarlTrading  
    Working...
    X