Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Choosing PriceType Programatically?
Collapse
X
-
Choosing PriceType Programatically?
Was wondering how you can set the PriceType progamatically. Basically I'm creating an primary indicator that uses another secodary indicator within it, how can i set what the PriceType for the secondary indicator is within the code of the primary indicator?Tags: None
-
Don't want to start a new thread for this, as it is related to PriceType.
If I code an indicator without further specifying the PriceType in the Initialize Section(), the PriceType will always default to "Close".
If I specify "PriceType = PriceType.Typical" in the Initialize() section, it cannot be changed by the user afterwards, as the indicator will always revert back to "Typical":
Is it possible to set "PriceType = PriceType.Typical" as default, but let the user choose another option, when she/he puts it on the chart? I am aware that this is only a matter of comfort, as the PriceType can be selected, when the indicator is added to a chart.
Comment
-
Thanks for the answer, this is not important, as the preferred settings can be saved via chart template.Originally posted by NinjaTrader_Bertrand View PostHi Harry, unfortunately I'm not aware of a workaround other than adding more custom coding - you could not change the default input type Close to be Typical.
Comment
-
Make a boolean user parameter/property UseTypicalPrice which, if set to false will override your code, thus:
Thus, if UseTypicalPrice has a default of true, then you have the behavior you want: if the use sets it to false, they can specify another type of PriceType with no issue.Code:if (UseTypicalPrice) PriceType = PriceType.Typical;
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
173 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
129 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
209 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment