Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multi-Instrument Strategy
Collapse
X
-
Thanks Bertrand, it is working good with the enter. However, with the ExitLong() or ExitShort statement are working. Every enter position is closing only with profit target level instead of closing when I am opening a new position in the opposine direction.
Initialize()
EntriesPerDirection = 4;
EntryHandling = EntryHandling.AllEntries;
OnBarUpdate()
if .........something
{
EnterShort(1,quantityOrder,"short1");
EnterShort(2,quantityOrder,"short2");
EnterShort(3,quantityOrder,"short3");
ExitLong("long");
}
else if ....something
{
EnterLong(5,quantityOrder,"long");
ExitShort("short1");
ExitShort("short2");
ExitShort("short3");
}
It is entering new positions but is not exiting the latest one....it close only when meet the profit target.
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by markpk1, Today, 11:54 AM
|
0 responses
2 views
0 likes
|
Last Post
by markpk1
Today, 11:54 AM
|
||
Started by Carlos19, Today, 10:15 AM
|
2 responses
10 views
0 likes
|
Last Post
by Carlos19
Today, 11:53 AM
|
||
Started by markdshark, 04-16-2023, 09:29 AM
|
6 responses
232 views
0 likes
|
Last Post Today, 11:53 AM | ||
Started by Marty125, Today, 11:14 AM
|
4 responses
15 views
0 likes
|
Last Post
by Marty125
Today, 11:58 AM
|
||
Started by siddhugaddi, Today, 10:31 AM
|
2 responses
15 views
0 likes
|
Last Post Today, 11:50 AM |
Comment