Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Prevent Unmanaged strategy to place order on each incoming bar.

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

    Prevent Unmanaged strategy to place order on each incoming bar.

    Hello.
    How to prevent Unmanaged strategy to place order on each incoming bar?
    I would like to place the order only one time but strategy place order on each bar.

    #2
    Hello Czarek,

    You could use a bool to determine if you've already placed an entry.
    For example:
    Code:
    private bool entryPlaced = false;
    
    if (!entryPlaced)
    {
    EnterLong();
    entryPlaced = true;
    }
    Below is a publicly available link to a 3rd party c# educational site on bool.


    You can also use an Order object and check that the order object is null.
    For example:
    Code:
    private Order entryOrder = null;
    
    if (entryOrder == null)
    {
    entryOrder = EnterLong();
    }
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    29 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    46 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X