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

serialization error

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

    serialization error

    why this indicator:



    causes serializaton error:

    #2
    Hello TazoTodua,

    The issue is that Color objects cannot be serialized.

    With the code:
    //[XmlIgnore()]
    [Description("")]
    [GridCategory("Parameters - styles")]
    public Color Bullish_Line_Color
    {
    get { return bullish_Line_Color; }
    set { bullish_Line_Color = value; }
    }

    the //[XmlIgnore()] is commented out meaning this color is directly attempted to be serialized which causes an error. You will need to uncomment this line as this line is necessary.

    This is also true for the Bearish_Line_Color color.

    Below is a link to a post about serializing objects.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Many thanks!

      Another question:

      what might cause this error:


      using these indicators:

      base (1st) indi - https://pastebin.com/raw/fBuw6Pmc

      main indi (which is used on chart, and depends on 1st indi values) - https://pastebin.com/raw/SJmh2MbH

      Comment


        #4
        Hello TazoTodua,

        The error indicates that your computer has run out of memory.

        An indicator that does not efficiently use objects could cause this behavior.

        A system that does not have much memory can cause this behavior.

        If you are using the 32 bit version of NinjaTrader, this also limits the amount of memory available to NinjaTrader.
        Chelsea B.NinjaTrader Customer Service

        Comment


          #5
          Is that caused by not making correct DISPOSE() or that is not cause in my case?

          Comment


            #6
            Hello,

            Please see my reply in post: https://ninjatrader.com/support/foru...96&postcount=4
            JesseNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Mindset, 05-06-2023, 09:03 PM
            10 responses
            262 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by michi08, 10-05-2018, 09:31 AM
            5 responses
            741 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by The_Sec, Today, 02:29 PM
            0 responses
            2 views
            0 likes
            Last Post The_Sec
            by The_Sec
             
            Started by tsantospinto, 04-12-2024, 07:04 PM
            4 responses
            62 views
            0 likes
            Last Post aligator  
            Started by sightcareclickhere, Today, 01:55 PM
            0 responses
            1 view
            0 likes
            Last Post sightcareclickhere  
            Working...
            X