NexusFi: Find Your Edge


Home Menu

 





Code Syntax question


Discussion in NinjaTrader

Updated
    1. trending_up 1,062 views
    2. thumb_up 1 thanks given
    3. group 1 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

Code Syntax question

  #1 (permalink)
 
Zxeses's Avatar
 Zxeses 
San Francisco CA
 
Experience: Intermediate
Platform: Ninja
Broker: CQG
Trading: ES
Posts: 139 since Jun 2014
Thanks Given: 90
Thanks Received: 172

I was just editing some code in a strategy (and much thanks go out to the coders)

I've noticed a lot of what I'd call unnessesary grouping parens, would someone look at this code and let me know if I shouldn't rewrite this:

 
Code
		if ( 
			(Historical)&&
			 (
			 (Instrument.FullName == "$USDJPY") || 
			 ( Instrument.FullName=="$GBPJPY" ) || 
			 ( Instrument.FullName=="$EURJPY" ) || 
			 ( Instrument.FullName=="$AUDJPY" ) || 
			 ( Instrument.FullName=="$NZDJPY")
			 )
			)

to this...?

 
Code
		if ( Historical &&
			(
			Instrument.FullName == "$USDJPY" || 
			Instrument.FullName == "$GBPJPY" || 
			Instrument.FullName == "$EURJPY" || 
			Instrument.FullName == "$AUDJPY" || 
			Instrument.FullName == "$NZDJPY"
			)
		)
...

Taking my first stab at C# but some syntax rules seem obvious to me, just wanna make sure I'm not F'*kin this up by applying standard syntax.

-Zx

Visit my NexusFi Trade Journal Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
How to apply profiles
Traders Hideout
NexusFi Journal Challenge - May 2024
Feedback and Announcements
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
44 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
21 thanks
  #3 (permalink)
 
ratfink's Avatar
 ratfink 
Birmingham UK
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: TST/Rithmic
Trading: YM/Gold
Posts: 3,633 since Dec 2012
Thanks Given: 17,423
Thanks Received: 8,425



Zxeses View Post
I was just editing some code in a strategy (and much thanks go out to the coders)

I've noticed a lot of what I'd call unnessesary grouping parens, would someone look at this code and let me know if I shouldn't rewrite this:

 
Code
		if ( 
			(Historical)&&
			 (
			 (Instrument.FullName == "$USDJPY") || 
			 ( Instrument.FullName=="$GBPJPY" ) || 
			 ( Instrument.FullName=="$EURJPY" ) || 
			 ( Instrument.FullName=="$AUDJPY" ) || 
			 ( Instrument.FullName=="$NZDJPY")
			 )
			)

to this...?

 
Code
		if ( Historical &&
			(
			Instrument.FullName == "$USDJPY" || 
			Instrument.FullName == "$GBPJPY" || 
			Instrument.FullName == "$EURJPY" || 
			Instrument.FullName == "$AUDJPY" || 
			Instrument.FullName == "$NZDJPY"
			)
		)
...

Taking my first stab at C# but some syntax rules seem obvious to me, just wanna make sure I'm not F'*kin this up by applying standard syntax.

-Zx

They are equivalent but your second version is much better, imho. (I'm guessing like you) I like to see parentheses in conditionals only when needed (i.e. for changing evaluation precedence or logical equivalence). It is an individual preference thang as well though, we all have different eyes.

Just as an aside, remember that '==' is fine if both sides are strings, otherwise you may need to use 'if (myThing.IsEquals("xxx")) instead if one isn't, rarer though.

Travel Well
Visit my NexusFi Trade Journal Reply With Quote
Thanked by:




Last Updated on August 26, 2014


© 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