Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

within x percent

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

    within x percent

    Hi,
    What's a good function to use to test:

    if (
    low[0] "is within x percent of" Low [1]
    )

    {do stuff}

    I want to know if a price is within x percent of another price whether above OR below

    Any ideas for something succinct within the library?

    thanks,
    David

    #2
    Hi trader3000, thanks for posting. There is no pre-made function to get a percentage but you can calculate it using C#. Here is a C# snippet of the OnBarUpdate method that will calculate a bar percentage:

    Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.


    Kind regards,
    -ChrisL

    Comment


      #3
      Something like this should work for you: if (Math.Abs(Low[0]/Low[1]-1.0)*100.0 <= PercentLimit) { // Do things }

      Thanks.
      Multi-Dimensional Managed Trading
      jeronymite
      NinjaTrader Ecosystem Vendor - Mizpah Software

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Yesterday, 05:17 AM
      0 responses
      62 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      136 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      75 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      45 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      50 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X