NexusFi: Find Your Edge


Home Menu

 





Limit Values to Even Numbers Only


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Big Mike with 3 posts (1 thanks)
    2. looks_two DavidHP with 3 posts (0 thanks)
    3. looks_3 bukkan with 2 posts (1 thanks)
    4. looks_4 Quick Summary with 1 posts (0 thanks)
    1. trending_up 3,481 views
    2. thumb_up 4 thanks given
    3. group 2 followers
    1. forum 9 posts
    2. attach_file 0 attachments




 
Search this Thread

Limit Values to Even Numbers Only

  #1 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,611 since Aug 2009
Thanks Given: 11,336
Thanks Received: 2,744

Can anyone tell me how to limit the parameters in an indicator to only EVEN numbers?
I want the min value to be 2.

I want the user to be able to select the Value but if they choose an ODD number I want only EVEN numbers to be allowed.

Kind of like when you try to enter a zero and the Math.Max(1,value) is in the code and an error is given that the value is not allowed.

Here is where the code should go I think:
 
Code
        public int ValueToShow  
        {
            get { return valuetoShow; }
            set { valuetoShow = Math.Max(2, value); }
        }
Thanks,

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
18 thanks
GFIs1 1 DAX trade per day journal
16 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
  #3 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,213
Thanks Received: 101,599


A simple unfancy way is to let them input whatever, then just do a check once in your code to see if it's odd, and if so make it even.

How to check if a number is odd or even? (C# Knowledge Base) • Geekpedia

 
Code
                            


int Num 
5;

if (
Num 1)
{
// It's odd
}
else
{
// It's even

To get it to update instantly as a user enters an odd number in the dialog box you have to use Refresh() or Update() in the get/set or one of those things I've since forgotten after not programming in C# in a while I'm sure someone else can help if needed.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #4 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,611 since Aug 2009
Thanks Given: 11,336
Thanks Received: 2,744


Big Mike View Post
A simple unfancy way is to let them input whatever, then just do a check once in your code to see if it's odd, and if so make it even.

Mike


Thanks,

I used that method when I first wrote the indicator and it does change the value to even.
However it seems as if I'm missing something and there should be a way to accomplish this at user input of the incorrect number.

Like when entering a decimal value in a non-decimal field. An error occurs immediately or the value changes back to the original contents.

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Started this thread Reply With Quote
  #5 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,213
Thanks Received: 101,599


DavidHP View Post
Thanks,

I used that method when I first wrote the indicator and it does change the value to even.
However it seems as if I'm missing something and there should be a way to accomplish this at user input of the incorrect number.

Like when entering a decimal value in a non-decimal field. An error occurs immediately or the value changes back to the original contents.

Yes. There is. I just can't think of an indicator that does it at the moment so can't post sample code, and I've forgotten how to do it exactly, and am no longer using NT.

Perhaps @bukkan can help, or @tarantino or @gomi or @fluxsmith, or any number of other excellent programmers on the site.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #6 (permalink)
 bukkan 
Calcutta, India
 
Experience: Intermediate
Platform: ArthaChitra
Posts: 278 since Jun 2009
Thanks Given: 161
Thanks Received: 271


DavidHP View Post
Can anyone tell me how to limit the parameters in an indicator to only EVEN numbers?
I want the min value to be 2.

I want the user to be able to select the Value but if they choose an ODD number I want only EVEN numbers to be allowed.

Kind of like when you try to enter a zero and the Math.Max(1,value) is in the code and an error is given that the value is not allowed.

Here is where the code should go I think:
 
Code
        public int ValueToShow  
        {
            get { return valuetoShow; }
            set { valuetoShow = Math.Max(2, value); }
        }
Thanks,

try like this

 
Code
public int ValueToShow
{
    get{return valuetoshow;}
    set{valuetoshow = Math.Max(2,value);    //minimum value 2
          if (valuetoshow % 2 != 0) valuetoshow -= 1; }  //make sure its even
//or +1 depending on what you want. for eg if you enter 15 and want the figure to be 14 then subtract it by 1 or if you want it to be 16 then add it by 1.
}

Reply With Quote
Thanked by:
  #7 (permalink)
tarantino
Willowbrook, IL
 
Posts: 32 since Sep 2010
Thanks Given: 71
Thanks Received: 39

How about:

 
Code
 
public int ValueToShow  
        {
            get { return valuetoShow; }
            set { valuetoShow = Math.Max(2, value % 2 == 0 ? value : value + 1); }
        }
Bukkan: thanks, seems like we were answering at the same time

Reply With Quote
  #8 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,213
Thanks Received: 101,599

Look at that. Ask and ye shall receive




And didn't even need the Update() code I was concerned about.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #9 (permalink)
 bukkan 
Calcutta, India
 
Experience: Intermediate
Platform: ArthaChitra
Posts: 278 since Jun 2009
Thanks Given: 161
Thanks Received: 271


tarantino View Post
How about:

 
Code
 
public int ValueToShow  
        {
            get { return valuetoShow; }
            set { valuetoShow = Math.Max(2, value % 2 == 0 ? value : value + 1); }
        }
Bukkan: thanks, seems like we were answering at the same time


Reply With Quote
  #10 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,611 since Aug 2009
Thanks Given: 11,336
Thanks Received: 2,744



Big Mike View Post
Look at that. Ask and ye shall receive




And didn't even need the Update() code I was concerned about.

Mike


WOW,

Thanks guys that was super.

It works just as I wanted.

Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on Twitter Started this thread Reply With Quote




Last Updated on October 10, 2010


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts