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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    47 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    15 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    21 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X