Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Access to price data variables in user defined class

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

    Access to price data variables in user defined class

    Hello

    Let's say that I wanted to carry out the calculations of an indicator in various user defined classes such as:

    public class MyClass1
    {
    ..
    ..
    ..
    };

    public class MyClass
    {
    private int x;
    private System.Collections.Generic.List<MyClass1> lst;

    public void Calculate(ref MyClass1 myclass1)
    {

    }

    public void Calculate2(...)
    {

    }
    };


    In other words the calculation of this indicator is a bit complex and I would prefer to break it down into several classes.

    What is the best way of providing Open, High, Low, Close, Volume series access to these classes?

    Inheriting from the Indicator class does not seem to be an option.

    Any hint or help is greatly appreciated.

    #2
    You would need to pass in the indicator as parameter in order to access Open,High,Low,Close etc.

    Comment


      #3
      Thanks, Dierk.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      286 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      179 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      176 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      263 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      216 views
      0 likes
      Last Post CarlTrading  
      Working...
      X