Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Potential flaw in ATM methods
Collapse
X
-
Hello bosajin, thanks for your post.
GetAtmStrategyMarketPosition will report the current market position, so is the strategy closing the open position if this reports Long or Short? Did you add Print methods to the strategy to see why the exit method was called in this case? What conditions became true to enact the close position behavior?
I look forward to hearing from you.
-
Hello ChrisL
Thanks for swift reply.
the following code is being used to close ATM order.
Code:protected override void OnBarUpdate() { //in this case MaxProfit = 37 if(NetPnL > MaxProfit) { MyAtmStrategyClose(strategyId); } } double NetPnL { get { var realized = Account.Get(AccountItem.RealizedProfitLoss, Currency.UsDollar); var unrealized = PositionAccount.GetUnrealizedProfitLoss(Performanc eUnit.Currency); var result = realized + unrealized ; return result; } }
Comment
-
Hello,
This is Jim, responding on behalf of Chris who is out of the office at this time.
I tried setting this up in a test strategy, but I have been unable to reproduce. Could you test my strategy and modify it as needed so I can reproduce the issue? If there are any specific steps I should be taking or if the ATM strategy that is used makes a difference, please let me know.
Below is a demonstration showing how I have tested.
Demo - https://drive.google.com/file/d/1yNn...w?usp=drivesdk
Please also be sure that you are testing on the latest version of the platform, release 23.2. Update installer can be downloaded below.
Update - https://ninjatrader.com/PlatformDirect
I look forward to hearing from you.Attached Files
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
49 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
67 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment