NexusFi: Find Your Edge


Home Menu

 





Syntax - what do question marks do?


Discussion in NinjaTrader

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




 
Search this Thread
  #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?
Bookmap Global Plus Lifetime + Lifetime Addons For Sale
Platforms and Indicators
Czechia Live at 52.5% as England Rides 4-2 Wave to Co-Fa …
Prediction Markets & Event Contracts
June 15 Peace Odds Surge From 3.6% to 12.25% After Trump …
Prediction Markets & Event Contracts
Roland Garros Final Day: $3M on Zverev at 80.5% -- Leban …
Prediction Markets & Event Contracts
CME Raises Energy Futures Margins After Iran-War Volatil …
Commodities
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
10 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 thanks
  #2 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Interactive Brokers
Trading: Futures & Stocks
Posts: 9,887 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,117


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


© 2026 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 - Downloads - Top
no new posts