Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Can I create a custom dataseries in the wizard? Question for Patrick:

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

    Can I create a custom dataseries in the wizard? Question for Patrick:

    Hi all...

    Patrick, I was reading a post made by you back on 04-14-2014, at 11:24 PM, where you're discussing Moving Average displacement.

    You mention creating a dataseries and you include the following code example:

    Code:
            #region Variables
            private DataSeries displacedMA;
            #endregion
    
            protected override void Initialize()
            {
                displacedMA = new DataSeries(this);
            }
            
            protected override void OnBarUpdate()
            {
                displacedMA.Set(SMA(6)[4]);
                if(CrossAbove(SMA(3), displacedMA, 1))
                {
                    // Do something.
                }
            }
    Is this sort of thing possible in the Strategy Wizard? I'd like to try a couple of things without losing the ability to edit the strategy in the wizard. Wishful thinking?

    -V

    #2
    Hello Aurum,

    Thank you for your post.

    Unfortunately, it is not possible to create a Data Series in the Strategy Wizard.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    647 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    368 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    571 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X