If I have several strategies working on different charts (all on the same real account) and in one of these strategies I call "Account.FlattenEverything", are the positions of all the products/charts closed?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
FlattenEverything
Collapse
X
-
Hello soyjesus,
I am not able to reproduce this behavior.
To test I have created Sim102 account and opened a long position on both Sim101 and Sim102.
Then in an indicator, I have called
Account myAccount = Account.All.FirstOrDefault(a => a.Name == "Sim102");
myAccount.Flatten(new [] { Instrument.GetInstrument("ES 12-21") });
Only the position on the Sim102 account was flattened.
Below is a link to a video of the test.
https://drive.google.com/file/d/1_E7...w?usp=drivesdk
This indicates that <Account>.Flatten() does work as intended.
If you are wanting to flatten only the strategy position in a NinjaScript Strategy. Call ExitLong() and ExitShort() in the strategy.Chelsea B.NinjaTrader Customer Service
- Likes 3
Comment
-
Hello Chelsea and thanks for that helpful demo.Originally posted by NinjaTrader_ChelseaB View PostHello soyjesus,
I am not able to reproduce this behavior.
To test I have created Sim102 account and opened a long position on both Sim101 and Sim102.
Then in an indicator, I have called
Account myAccount = Account.All.FirstOrDefault(a => a.Name == "Sim102");
myAccount.Flatten(new [] { Instrument.GetInstrument("ES 12-21") });
Only the position on the Sim102 account was flattened.
Below is a link to a video of the test.
https://drive.google.com/file/d/1_E7...w?usp=drivesdk
This indicates that <Account>.Flatten() does work as intended.
If you are wanting to flatten only the strategy position in a NinjaScript Strategy. Call ExitLong() and ExitShort() in the strategy.
I'm wondering how to make the Flatten() method apply to whatever instrument of the chart the indicator is loaded on instead of a predefined string.
I can't find the syntax in the doc
How would it work? Thanks!Last edited by PaulMohn; 06-13-2022, 09:25 AM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
89 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
135 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
69 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment