// 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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
115 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
161 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
83 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
127 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
87 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment