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

Multiple Entries Issue

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

    Multiple Entries Issue

    I am writing a strategy that will allow multiple signals in the same direction. For example I want to buy EVERYTIME the RSI crosses over 30 and sell EVERYTIME it crosses under 70. Now when one of these entries occur, I also have subsequent entries. Say I want to add (up to 2 positions) every 2 points the market moves against me. So my code looks as follows.

    Code:
    protected override void OnBarUpdate()
    {
     if (CrossAbove(rsi,30,1)
      LE=EnterLong();
    }
     
    protected override void OnExecution(IExecution execution)
    {
     if (LE!=null && execution.Order.Token==LE.Token)
     {
      LE2=EnterLongLimit(entryprice-2points);
      LE3=EnterLongLimit(entryprice-4points);
     }
    }
    This part works fine. However this is my issue. When my LE order gets filled it places LE2 and LE3 properly. However if LE gets filled again before LE2 and LE3 are filled, it cancels and replaces those orders based on the new LE price. So the only way I see around the issue is to give EVERY order a different name (ie. LE1,2,3,4,5,6,etc.), but I need to be able to track these orders and that seems as if it could get messy. Is there another way around this issue?

    #2
    Hello,


    I suggest using a signal name when tracking your orders and see if that works better:
    EnterLongLimit(GetCurrentBid(), "LE");

    I am sorry, there is no easy way. You will need to keep track of all your orders.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by rhyminkevin, Today, 04:58 PM
    4 responses
    52 views
    0 likes
    Last Post dp8282
    by dp8282
     
    Started by iceman2018, Today, 05:07 PM
    0 responses
    5 views
    0 likes
    Last Post iceman2018  
    Started by lightsun47, Today, 03:51 PM
    0 responses
    7 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    14 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    50 views
    0 likes
    Last Post futtrader  
    Working...
    X