NexusFi: Find Your Edge


Home Menu

 





Syntax - what do question marks do?


Discussion in NinjaTrader

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




 
Search this Thread

Syntax - what do question marks do?

  #1 (permalink)
 
xigreek's Avatar
 xigreek 
Bradford, UK
 
Experience: Beginner
Platform: NinjaTrader
Trading: Gold
Posts: 9 since Oct 2011
Thanks Given: 10
Thanks Received: 2

Hi everyone

I was trying to code a new indicator and I started by one I'd downloaded from somewhere or other a long time ago...

It contains the following code - the syntax is something I'm not really familiar with - can anyone explain what this code does?


lasthi = hi[0] = useHiLo ? High[0] : Input[0];

I've never used questionmark in my code before and I'm not entirely sure what the colon is doing either!

Thanks.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
What broker to use for trading palladium futures
Commodities
MC PL editor upgrade
MultiCharts
Cheap historycal L1 data for stocks
Stocks and ETFs
 
  #2 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,103


xigreek View Post
Hi everyone

I was trying to code a new indicator and I started by one I'd downloaded from somewhere or other a long time ago...

It contains the following code - the syntax is something I'm not really familiar with - can anyone explain what this code does?


lasthi = hi[0] = useHiLo ? High[0] : Input[0];

I've never used questionmark in my code before and I'm not entirely sure what the colon is doing either!

Thanks.

The expression replaces if ..... then ....else. The meaning is
 
Code
if(useHiLo)
    lasthi = hi[0] = High[0]
else
    lasthi = hi[0] = Input[0];

The code executed when the expression "useHiLo" is true follows the question mark, the code that is executed when the expression "useHiLo" is false follows the colon.

You can look it up in the C# online reference.

Reply With Quote
Thanked by:




Last Updated on March 4, 2013


© 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