Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator won't reload

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

    Indicator won't reload

    Hi, I have this indicator that AI help me build. I really like the way it functions, however when I save, quit, and restart my workspace the indicator is not loaded anymore, and I need to reload it on the chart. Can you please help me figure out why it needs to be reloaded? AI has no clue LOL.

    Thanks,
    Mitch
    Last edited by mmenigma; 03-28-2025, 05:23 PM.

    #2
    Originally posted by mmenigma View Post
    Hi, I have this indicator that AI help me build. I really like the way it functions, however when I save, quit, and restart my workspace the indicator is not loaded anymore, and I need to reload it on the chart. Can you please help me figure out why it needs to be reloaded? AI has no clue LOL.

    Thanks,
    Mitch
    I did not load this indicator to test, but scanning through for some common issues that cause that, the way the Brush property is coded is one of the culprits.

    Right now the code for your brush is:
    Code:
    [NinjaScriptProperty]
    [Display(Name = "Text Color", Description = "Color of the timer text", Order = 5, GroupName = "Text Appearance")]
    public Brush TextColor { get; set; }​
    You are missing XmlIgnore and then the serialization:
    Code:
    [XmlIgnore()]
    [Display(Name = "Text Color", Description = "Color of the timer text", Order = 5, GroupName = "Text Appearance")]
    public Brush TextColor { get; set; }
    [Browsable(false)]
        public string TextColorSerialize
        {
            get { return Serialize.BrushToString(TextColor); }
            set { TextColor = Serialize.StringToBrush(value); }
        }​

    Comment


      #3
      Thanks Jack, I think that fixed it, now when I close and open the workspace, the indicator is still on the chart. How does it feel to be smarter than a robot? LOL

      Really, thank you.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      627 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      359 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      562 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      567 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X