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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    571 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    331 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    549 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    550 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X