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 Option Whisperer, Today, 09:55 AM
    1 response
    11 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    1 view
    0 likes
    Last Post port119
    by port119
     
    Started by Philippe56140, Today, 02:35 PM
    0 responses
    3 views
    0 likes
    Last Post Philippe56140  
    Started by 00nevest, Today, 02:27 PM
    0 responses
    2 views
    0 likes
    Last Post 00nevest  
    Started by Jonafare, 12-06-2012, 03:48 PM
    5 responses
    3,986 views
    0 likes
    Last Post rene69851  
    Working...
    X