if ("ToTime(Time[0]) > DailyTradingFinishTime &&" QuantityBeforeExecution != OrderCountLong && Position.Quantity == 0)
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Skip Part of Code
Collapse
X
-
Skip Part of Code
Hi, is there a way to use certain characters in coding so we can skip part of code? For instance I know using "//" any code after that in that line won't be executed but I am more interested in skipping on part of the line; for example, in code below what if I wanted program to skip part of the line between quotation markers and execute excluding that part:
if ("ToTime(Time[0]) > DailyTradingFinishTime &&" QuantityBeforeExecution != OrderCountLong && Position.Quantity == 0)Tags: None
-
Hello shahabjet1,
Thank you for your post.
To clarify, are you wanting to comment out a certain section of code from your condition?
Please note that in the support department at NinjaTrader we do not provide C# programming education services. This is so that we can maintain a high level of service for all of our clients as well as our partners.
That said, to comment out a section of your condition you could use a Multiple Line Comment ( /*Text here*/ ). See the publicly available link for more information - https://www.w3schools.com/cs/cs_comments.asp
Let us know if we may assist further.<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
-
Yes.Originally posted by shahabjet1 View PostHi, is there a way to use certain characters in coding so we can skip part of code? For instance I know using "//" any code after that in that line won't be executed but I am more interested in skipping on part of the line; for example, in code below what if I wanted program to skip part of the line between quotation markers and execute excluding that part:
if ("ToTime(Time[0]) > DailyTradingFinishTime &&" QuantityBeforeExecution != OrderCountLong && Position.Quantity == 0)
Use the delete key on your keyboard to delete the characters between the quotes.
Comment
-
shahabjet1 , this is what you looking for.
Use goto code.
You can refer the link below to know how to used it :
C# jump statements (break, continue, return, and goto) unconditionally transfer control from the current location to a different statement.
Example :
Code:goto exampleNAME; This is where the part you want to skip ...... ..... .... exampleNAME : do anything here
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
89 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
135 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
69 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment