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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    54 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    131 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X