Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Printing Ticksize?

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

    Printing Ticksize?

    Hi All,

    Does anyone know how to print an instrument's tick size without it displaying in, what appears to be, scientific notation?

    Code Sample:
    • Print("This is the Low " +Low[0]);
    • Print("This is the instrument's tick size: " + TickSize);
    • value = Low[0] + TickSize; // value is defined as a double
    • Print("This is the Low Plus one tick " + value);

    Output Sample:
    • This is the Low 1.13648
    • This is the instrument's tick size: 1E-05
    • This is the Low Plus one tick 1.13649
    Note, instruments used were EUR/USD and 6E futures contacts.

    Thanks,
    Ron

    #2
    Hello Seneca,
    Thanks for your post and welcome to the NinjaTrader forum.

    Try this to print the tick size as a decimal.

    Code:
    Print("This is the instrument's tick size: " + (decimal)TickSize);
    Josh G.NinjaTrader Customer Service

    Comment


      #3
      Hi Josh,

      Perfect and thanks! Works great!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      569 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      330 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
      548 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      548 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X