Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Dynamically changing CalculateOnBarClose

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

    Dynamically changing CalculateOnBarClose

    Is it possible to dynamically change COBC in Initialize() when a strategy is refreshed? Such as,

    private OrderType oType = OrderType.Limit;

    protected void Initialize()
    {
    if(OType == OrderType.Limit)
    CalculateOnBarClose = true;
    else if(OType == OrderType.StopLimit)
    CalculateOnBarClose = false;
    }

    And if not, can it be changed in OnBarUpdate() such as:

    protected void Initialize()
    {
    CalculateOnBarClose = false;
    }

    protected void OnBarUpdate()
    {
    if(OType != OrderType.StopLimit && CalculateOnBarClose == false)
    {
    CalculateOnBarClose = true;
    return;
    }
    else if(OType == OrderType.StopLimit && CalculateOnBarClose == true)
    {
    CalculateOnBarClose = false;
    }
    Last edited by snaphook; 01-13-2009, 06:46 AM.

    #2
    Hi snaphook, unfortunately setting this dynamically is not supported. However you can for sure try calling and setting it again as you outlined in your code.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    305 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    196 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    186 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    274 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    228 views
    0 likes
    Last Post CarlTrading  
    Working...
    X