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);
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multiple Entries Issue
Collapse
X
-
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.
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?Code:Tags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment