// Some sell condition triggers Variable0 = 0;
// Some buy condition triggers Variable0 = 1;
// Sell signal is triggered, wait for first crossover
if (Variable0 == 0 && CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)) {
Variable1 = 1;
}
// Buy signal is triggered, wait for first crossover
if (Variable1 == 1 && CrossAbove(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)) {
Variable1 = 1;
}
if (Variable1 == 1 && Variable0 == 0 && CrossAbove(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)) {
Variable2 = 1;
}
if (Variable1 == 1 && Variable0 == 1 && CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1) && (Time[0].DayOfWeek != DayOfWeek.Monday)) {
Variable2 = 1;
}
// Wait for next crossover to sell
if (Variable1 == 1 && Variable2 == 1 && Variable0 == 0 && CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)) {
EnterShort(1, "sell");
Variable0 = 0;
Variable1 = 0;
Variable2 = 0;
}
// Wait for next crossover to buy
if (Variable1 == 1 && Variable2 == 1 && Variable0 == 1 && CrossBelow(Stochastics(7, 14, 3).K, Stochastics(7, 14, 3).D, 1)) {
EnterShort(1, "buy");
Variable0 = 0;
Variable1 = 0;
Variable2 = 0;
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Function to wait for next consecutive crossover?
Collapse
X
-
Function to wait for next consecutive crossover?
I seem to be having issues implementing a strategy which waits for the consecutive time that an indicator crosses over. Is there a Ninjascript function that does that? For example, let's say I want to use the two consecutive crossovers of the stochastic indicator as a buy/sell signal... I am using multiple "counter" variables like this and it works right now, but it seems messy:
Thanks!Code:Tags: None
-
Got it! Thanks a lot Matt. I really wish to extend my sincerest gratitude to you and the rest of the support team; thanks to you guys, my strategy development has been going on well and I intend to upgrade to the multi-broker version soon (barely a month after getting the single-broker version). Have a great day!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
65 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
23 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
26 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
52 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment