Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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
    Chris L.NinjaTrader Customer Service

    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 geddyisodin, 04-25-2024, 05:20 AM
      8 responses
      60 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by jxs_xrj, 01-12-2020, 09:49 AM
      4 responses
      3,285 views
      1 like
      Last Post jgualdronc  
      Started by Option Whisperer, Today, 09:55 AM
      0 responses
      5 views
      0 likes
      Last Post Option Whisperer  
      Started by halgo_boulder, 04-20-2024, 08:44 AM
      2 responses
      22 views
      0 likes
      Last Post halgo_boulder  
      Started by mishhh, 05-25-2010, 08:54 AM
      19 responses
      6,189 views
      0 likes
      Last Post rene69851  
      Working...
      X