Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Decimal on scale

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

    Decimal on scale

    Hi,
    when I create a new indicator for example, the level of my indicator have only 2 decimals.
    If I calculate eurusd-euraud for example there is only 2 decimals.
    How can I do for have 5 decimals please?

    Thank's a lot

    #2
    Hello neo-13,

    Thank you for writing in.

    You would be able to override the FormatPriceMarker() method to add additional decimal placesto your price values.

    For more information about FormatPriceMarker(), please take a look at the NinjaTrader help guide at this link: http://ninjatrader.com/support/helpG...ricemarker.htm

    So, for five decimal places:
    Code:
    public override string FormatPriceMarker(double price)
    {
         return price.ToString("N5");
    }
    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    129 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    74 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    116 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    111 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    89 views
    0 likes
    Last Post CarlTrading  
    Working...
    X