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

Range Indicator creation

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

    Range Indicator creation

    Hi,
    As a junior develooer I need your help.
    I'm trying to create a new indicator that:
    Gets three inputs
    1. A market price (double). for example 11225.00
    2. First number (double) 1.001
    3. Second number (double) 0.999

    The indicator returns two double numbers
    A. Input #1 * Input #2 (For ex. 11236.00)
    B. Input #1 * Input #3 (For ex. 11214.00)
    The two return outputs creates a range indicator between both

    Second issue:
    How to round a number
    0.5 and up --> Round to upper value ( 1.0 )
    0.49 and down --> Round to lower value ( 0.0 )

    Thanks !
    Lior

    #2
    Hello klior14,

    Thank you for writing in.

    In regards to your first issue, could you please provide more information on what you are trying to do or what the issue is exactly? What do you mean by inputs, are these user defined values? Are these price values?

    To round a number to the nearest whole number you should use,

    Math.Round(xNumToRound,0);

    For example,

    double xNumToRound = .49;
    double numRounded =Math.Round( xNumToRound,0);

    See Math.Round method;
    Use the Math.Round method to the nearest desired value. Examine the MidpointRounding enum type.


    I look forward to your reply.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by gemify, 11-11-2022, 11:52 AM
    6 responses
    803 views
    2 likes
    Last Post ultls
    by ultls
     
    Started by ScottWalsh, Today, 04:52 PM
    0 responses
    4 views
    0 likes
    Last Post ScottWalsh  
    Started by ScottWalsh, Today, 04:29 PM
    0 responses
    7 views
    0 likes
    Last Post ScottWalsh  
    Started by rtwave, 04-12-2024, 09:30 AM
    2 responses
    22 views
    0 likes
    Last Post rtwave
    by rtwave
     
    Started by tsantospinto, 04-12-2024, 07:04 PM
    5 responses
    70 views
    0 likes
    Last Post tsantospinto  
    Working...
    X