Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
position display indicator
Collapse
X
-
i also tried this one and it wont work as well. PriceInfo Indicator
https://ninjatraderecosystem.com/use...nfo-indicator/
-
This PriceInfo indicator is really old. It is now part of a collection of indicators call ZombiePack9. See attachment. Reach out to me if you have any questions.Originally posted by rapals View Posti also tried this one and it wont work as well. PriceInfo Indicator
https://ninjatraderecosystem.com/use...nfo-indicator/Attached FilesLast edited by RFrosty; 05-04-2023, 05:26 PM.
Comment
-
-
No worries. I have attached the ZombiePack9 NinjaScript addon zip. It contains an updated PriceInfo indicator that shows the excess margin while in a trade in the bottom left corner.Originally posted by rapals View PostRFrosty
hi,
I tried to message you directly but because i am very new its not allowed. can you please help me. i just want to see my excess intraday margin directly on the chart. it happened few times that my control window went away and my position was closed. Thanks a ton in advance.
The excess intraday margin code looks like this...
private double GetAccountIntradayExcessMargin()
{
double intradayExcessMargin = 0;
if (account != null)
{
intradayExcessMargin = Math.Round(account.Get(AccountItem.ExcessIntradayM argin, Currency.UsDollar), 2);
}
return intradayExcessMargin;
}Last edited by RFrosty; 05-04-2023, 05:43 PM.
Comment
-
Hi! I have found NinjaTrader_Jim's indicator PositionDisplayIndicator (on Ecosystem) very helpful, but every time I flip connection between my Apex Trader Funding Rithmic account and my live AMP account, I have to update the indicator to reselect the account to use. Could you please create a version of the indicator that drives the account selection in the indicator from the account selected in the chart automatically?
Comment
-
Hello vickisb,
The intention of the Account being selected in the indicator parameters instead of chart trader is so that the indicator can function if chart trader is disabled.
Using the account selector of chart trader would mean this must be enabled before the indicator is added to the chart or the indicator will not function.
As this puts a limit on how the indicator can be used, instead of making the change to the script on the User App Share I can provide you information on making this change to a local copy of the script on your machine.
Below is a link to a guide on using AutomationIDs to retrieve chart trader UI elements.
As well as a link to an example with sample code of getting the chart trader account selector and setting the local account variable to the selected account.
Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment