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 AaronKoRn, Today, 09:49 PM
      0 responses
      6 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Today, 08:42 PM
      0 responses
      8 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Today, 07:51 PM
      0 responses
      9 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,975 views
      3 likes
      Last Post jhudas88  
      Started by rbeckmann05, Today, 06:48 PM
      0 responses
      9 views
      0 likes
      Last Post rbeckmann05  
      Working...
      X