Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Need to Set up a Stochastics Alarm
Collapse
X
-
Need to Set up a Stochastics Alarm
I know how to set up period D crossing above/below period K, but is there a way to set an alarm when the Stochastics Period-D rises or falls below the 50 (median) line in Ninjascript?Tags: None
-
Bertrand,
Thanks for the response. I didn't see any coding on how to set up a Stochastics alert, but I tried a couple of different ways though. I tried “D” crossing above/below “K” and I tried the user defined inputs and numeric values (see below), but it still isn’t working. I’m sure it’s something simple I not seeing. Are you able to determine from the data below what the issue is?
__________________________________________________ ________
{
// Condition set 1
if (CrossAbove(Stochastics(1, 3, 2).D, Stochastics(1, 3, 2).K, 1))
{
Alert("MyAlert3", Priority.High, "", "", 0, Color.White, Color.Black);
}
// Condition set 2
if (CrossBelow(Stochastics(1, 3, 2).D, Stochastics(1, 3, 2).K, 1))
{
Alert("MyAlert1", Priority.High, "", "", 0, Color.White, Color.Black);
}
- AND –
{
// Condition set 1
if (Stochastics(1, 3, 2).D[0] > Median50)
{
Alert("Alert3", Priority.High, "", "", 0, Color.White, Color.Black);
}
// Condition set 2
if (Stochastics(1, 3, 2).D[0] < 50)
{
Alert("Alert1", Priority.High, "", "", 0, Color.White, Color.Black);
}
__________________________________________________ ____________________
Comment
-
Hello RookieTrader,
From the descrption of your first post, it seems like you want to be alerted when the d crosses 50. On the right side of the condition builder select Misc > Numeric value > type in 50.
The snippets below are closer to this:
Code:// Condition set 1 if (CrossAbove(Stochastics(7, 14, 3).D, 50, 1)) { Alert("MyAlert0", Priority.High, "", "", 0, Color.White, Color.Black); } // Condition set 2 if (CrossBelow(Stochastics(7, 14, 3).D, 50, 1)) { Alert("MyAlert1", Priority.High, "", "", 0, Color.White, Color.Black); }Ryan M.NinjaTrader Customer Service
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
67 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
149 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment