Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

multi dimention bool array

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

    multi dimention bool array

    i want to have a Bool dataseries with multi dimention for the following reasons
    1. Signal captured
    2. Signal processed

    This way, i can track the different actions captured per bar. i dont want to create multiple objects.Is there a way the myBoolSeries in the sample can be multi dimenstion.
    apprecite your help


    #region Variables
    private BoolSeries myBoolSeries; // Define a BoolSeries variable
    #endregion

    // Create a BoolSeries object and assign it to the variable
    protected override void Initialize()
    {
    myBoolSeries = new BoolSeries(this); // "this" refers to the indicator, or strategy
    // itself. This syncs the BoolSeries object
    // to historical data bars
    }

    #2
    There isn't a way to have a multi-dimensional dataseries. You could create your own muti dimensional list to achieve the same goals if you wish

    Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists.

    At the moment I am using one list to store one part of my data, and it's working perfectly in this format: Item ---------------- Joe Bloggs George Forman Peter Pan Now, I would like to add ano...


    Let me know if I can further assist.
    LanceNinjaTrader Customer Service

    Comment


      #3
      Why not make it an integer with values of 0 1 2?

      Comment


        #4
        Originally posted by Baruch View Post
        Why not make it an integer with values of 0 1 2?
        I would use an IntSeries as well

        0 = no signal
        1 = signal captured
        2 = signal processed

        This should solve the problem.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by kinfxhk, 07-14-2026, 09:39 AM
        0 responses
        123 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        104 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        82 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        102 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        83 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X