Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

High and Low Water Mark Indicator For Each Instrument and Account for the Day?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    High and Low Water Mark Indicator For Each Instrument and Account for the Day?

    Hi:

    Where could I find a:

    High and Low Water Mark Indicator For Each Instrument and Account for the Day?

    All it would do is plot or print on the chart what the high and low P&L (unrealized, realized, Profitloss and/or all 3 as selectable options) would be nice.

    Any place here on NT or other resources anyone know about?

    If not, is anyone game to potentially create (I think it to be a worthy indicator if folks agree)...

    For NT 7...
    Last edited by birdog; 05-19-2014, 09:05 AM.

    #2
    Hello birdog,

    I am not aware of an Indicator that would do something like this but it should be possible to do. There is not a supported way of getting an Account inside of an Indicator but you may try to get the Account by doing something like the following:

    private Account account = null;
    private string accountName;

    protected override void OnStartUp()
    {
    //have to reinitialze if connection gets lost
    NinjaTrader.Cbi.Globals.Connections.ConnectionStat us += new ConnectionStatusEventHandler(OnConnection);

    account = NinjaTrader.Cbi.Globals.Accounts.FindByName(accoun tName);

    //return if cannot find the account
    if (account == null)
    {
    DrawTextFixed("msg", "Could not retrieve the account", TextPosition.BottomRight);
    return;
    }
    else
    {
    // Do something
    }
    }
    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    25 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    19 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    182 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    335 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    260 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X