Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Orders not launched

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

    Orders not launched

    Hi,

    I am working on undertanding how new orders are launched.
    For that, I have a very simple program:

    protected override void OnBarUpdate()
    {
    if (Position.MarketPosition == MarketPosition.Flat)
    if (CrossAbove(SMA(FastLenght), SMA(SlowLenght), 1)){
    entryOrder = EnterLongStop(1, Close[0] + 0.0003);
    ExitLongLimit(Low[0]);
    }
    }

    From this code I understand a new trade should be launched once the price goes above Close + 0.0003. However, I am taking a look at the chart and I can find many situations where the conditions fulfill the requirements but no traders are launched (an example can be found on the picture).

    May you help me understanding why?
    Attached Files

    #2
    Hello jemoce,

    Thank you for your note.

    Using EnterLongStop will submit an order which will be canceled if its not filled on the bar its submitted to.

    If you use the following EnterLongStop syntex, setting liveUntilCancelled to true, do you see entries where you expect them?

    Code:
    EnterLongStop(int barsInProgressIndex, bool liveUntilCancelled, int quantity, double stopPrice, string signalName)
    https://ninjatrader.com/support/help...erlongstop.htm

    I look forward to your reply.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by agclub, Yesterday, 08:57 PM
    2 responses
    16 views
    0 likes
    Last Post agclub
    by agclub
     
    Started by cre8able, 04-17-2024, 04:16 PM
    6 responses
    55 views
    0 likes
    Last Post cre8able  
    Started by Mindset, 05-06-2023, 09:03 PM
    13 responses
    293 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by kaywai, 09-01-2023, 08:44 PM
    4 responses
    600 views
    0 likes
    Last Post joselube001  
    Started by dpolyakov, 03-29-2024, 11:30 AM
    3 responses
    135 views
    2 likes
    Last Post sonia0101  
    Working...
    X