(for example) Open and Close using the TickSize or perhaps differently??
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Help, the problem with the calculation of ticks
Collapse
X
-
Help, the problem with the calculation of ticks
Hello, please tell me how to make a strategy to determine what number of ticks between
(for example) Open and Close using the TickSize or perhaps differently??Tags: None
-
Hello Papercut110,
Thanks for your post.
Here is an example of code to first take the absolute value of Close[0] - Open[0] which will provide the price difference divided by the TickSize which will convert to the number of ticks:
int numberofticks = Convert.ToInt32(Math.Abs((Close[0] - Open[0]) / TickSize)) ;
Reference:
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
45 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment