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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
478 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
321 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
258 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
342 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
310 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment