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 NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
99 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
154 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
82 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
55 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
72 views
0 likes
|
Last Post
|

Comment