Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to check condition and execute trade at strategy startup

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

    How to check condition and execute trade at strategy startup

    I have a strategy to place long trade if price cross above 13 MA and go short if price cross below 13 MA and it works perfectly. What I would like to do is to have the strategy check the position of price and place a trade immediately at the time I start the strategy. So if at the time of strategy startup, price is above the 13 MA and enter a long trade and if it is below 13 MA then enter short position and I want this to be only a one time check/execution and then want the strategy to follow the script of cross above and below on bar updates. Can someone please help?

    #2
    Hello,

    If I understand you may want to try something like this:

    if( ...your ma conditions... && !Historical && myfirsttradeflag)
    {
    //place oder here
    myfirsttradeflag = false;
    }

    Let me know if you have any questions:
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    580 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    335 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    102 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X