Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Disable PlaySound() if running in Strategy
Collapse
X
-
Hello RandyT,
Thanks for your post.
Out of box, an indicator does not have any knowledge if it is added to a strategy. As a workaround, you could create an AddOn with static methods/variables for a means to have the strategy and the indicator communicate and share if that indicator is added by the strategy. C# code using GetHashCode() could be used to uniquely identify a specific instance of a NinjaScript object.
An example for creating an AddOn for shared methods can be found below.
Please let us know if you have any additional questions.
-
You can invent this yourself.Originally posted by RandyT View PostIs there a State flag I can use or something similar to avoid playing audio when an indicator is being used in a strategy? (Indicator I am developing)
Why not create your own public non-browsable boolean property in your indicator that controls whether sound is played or not?
When adding the indicator to the strategy, the strategy programmer explicitly sets this property to make the indicator 'go silent'.
Problem solved.
Comment
-
Thanks bltdavid,
This is the way I have handled this. Seems a bit messy.
Is there a way to may parameters optional when loading an indicator from a strategy? Just use the defaults? That would allow me to keep the PlaySound() false and load the indicator without passing a string of parameters every time. Not a huge deal, but generally I am just wanting default parameters for these indicators anyway.
Comment
-
A public property which is non-browsable does not get added as an argument, so calling the indicator from a strategy does not change in any way. That is, you want a public property specifically coded such that it is not added to the property grid or the parameter list.Originally posted by RandyT View PostThanks bltdavid,
This is the way I have handled this. Seems a bit messy.
Is there a way to may parameters optional when loading an indicator from a strategy? Just use the defaults? That would allow me to keep the PlaySound() false and load the indicator without passing a string of parameters every time. Not a huge deal, but generally I am just wanting default parameters for these indicators anyway.
Are you sure you know what 'non-browsable' means?
creates a public property called 'Silence' which defaults to false.Code:[Browsable(false)] public bool Silence { get; set; }
This property, although public, is not added to the parameter list of your indicator.
Why? Read about Browsable and NinjaScriptProperty (which is new for NT8) attributes.
In your indicator, you check the value of this property before calling PlaySound, for example, setup a wrapper function, like this,
In your strategy, load your indicator like this,Code:private void MyPlaySound(string filnam) { if (!Silence) PlaySound(filnam); }
Make sense?Code:MyIndicator ind = MyIndicator(...); ind.Silence = true; AddChartIndicator(ind); // optional
Good luck!
Last edited by bltdavid; 08-15-2018, 01:41 AM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
344 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
557 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment