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 TradeForge, Today, 02:09 AM
            0 responses
            2 views
            0 likes
            Last Post TradeForge  
            Started by Waxavi, Today, 02:00 AM
            0 responses
            2 views
            0 likes
            Last Post Waxavi
            by Waxavi
             
            Started by elirion, Today, 01:36 AM
            0 responses
            4 views
            0 likes
            Last Post elirion
            by elirion
             
            Started by gentlebenthebear, Today, 01:30 AM
            0 responses
            4 views
            0 likes
            Last Post gentlebenthebear  
            Started by samish18, Yesterday, 08:31 AM
            2 responses
            9 views
            0 likes
            Last Post elirion
            by elirion
             
            Working...
            X