// 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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
83 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
90 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
84 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
61 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment