Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

ToTime Error

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

    ToTime Error

    && ToTime(Time[0] == 161200)

    Use of either == or >= results in error "Operator cannot be applied to operands of type"System.Date.Time" and "int"). Any ideas here? Regards to all

    #2
    Hello elliot5,

    Thank you for your post.

    This error is stating that System.Date.Time cannot be compared to an int value. You would need to compare the Time series to a Time value. You could view the code that accomplishes this by setting up a time comparison in the Strategy Builder and selecting the 'View code' button.

    Please see the help guide documentation below demonstrating how to make time comparisons.
    Time Comparison - https://ninjatrader.com/support/help...imeComparisons

    Let us know if we may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by elliot5 View Post
      && ToTime(Time[0]) == 161200)

      Use of either == or >= results in error "Operator cannot be applied to operands of type"System.Date.Time" and "int"). Any ideas here? Regards to all
      Per the way the code is written, the error message is correct.

      The boolean '==' operator is being applied to "Time[0] == 161200", which is nonsensical.
      The result of this '==' operation is then input to ToTime, which is also nonsensical.

      But why that message?
      Because the code has errors.
      Because ToTime is missing its closing ')' parenthesis.
      Last edited by bltdavid; 05-19-2021, 02:22 PM.

      Comment


        #4
        bitdavid thank you --- such an obvious error - just didnt see it. Thanks again and if I can be of any help let me know.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by PaulMohn, Today, 03:49 AM
        0 responses
        7 views
        0 likes
        Last Post PaulMohn  
        Started by inanazsocial, Today, 01:15 AM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Jason  
        Started by rocketman7, Today, 02:12 AM
        0 responses
        10 views
        0 likes
        Last Post rocketman7  
        Started by dustydbayer, Today, 01:59 AM
        0 responses
        4 views
        0 likes
        Last Post dustydbayer  
        Started by trilliantrader, 04-18-2024, 08:16 AM
        5 responses
        23 views
        0 likes
        Last Post trilliantrader  
        Working...
        X