Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Tick difference
Collapse
X
-
Found this on other thread:
if (FirstTickOfBar)
{
Up = 0;
Down = 0;
}
prevTick = currTick;
currTick = Close[0];
if (currTick > prevTick)
Up++;
else if (currTick < prevTick)
Down++;
Will this work?
I am familiar with NT programming now, so my questions these days are more to getting familiar with the APIs that NT provided and other resources that we can use without re-inventing the wheels. Thanks again
Comment
-
I tried both of these snippets:
Method 1 =================
prevTick = currTick;
currTick = Close[0];
if (currTick > prevTick)
tick_count++;
else if (currTick < prevTick)
tick_count++;
Method 2 =============
if (Close[0] >= GetCurrentAsk())
tick_count++;
elseif (Close[0] <= GetCurrentBid())
tick_count--;
===================
Both yield different results. Method 1 seems to always count positive even in red bars, while method 2 gives better results with neg counts in red bar (not always, but it is more realistic)
Any idea why?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
22 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
12 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
8 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
10 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment