Similar to EntryHandling parameter.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multi-option drop down parameters
Collapse
X
-
Excellent, I'm familiar with it.
heres an example for anyone else
Code:public enum PosTypes {Long, Short} // be sure to make this public PosTypes posType = PosTypes.Long; [Description("Pos Type")] [Category("Parameters")] public PosTypes PosType { get { return posType; } set { posType = value } }
Comment
-
Hm, that's interesting.Originally posted by NinjaTrader_Dierk View PostFYI: There already is an equivalent NT enum: NinjaTrader.Cbi.MarketPosition.
Is there also such a class for relational operators? (<,>,>=,etc)
I was just wondering, because I'm making an indicator, and would like to include a drop-down menu with various relational operators so that the user can choose how the condition should be tested. For example with such an drop-down menu it would be possible for the user to choose between 'Variable1 > Variable2' condition and the 'Variable1 < Variable2' condition.
How can I achieve such a feature with enums? (or perhaps a different way?)
Any thoughts are highly appreciated
Regards,
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
50 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
16 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment