Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
On each tick" and "On price change"
Collapse
X
-
Hello kiss987,
Thanks for the post.
Calculating on each tick will run the OnBarUpdate method on every incoming tick. OnPriceChange will run the OnBarUpdate when the price changes.
OnPriceChange calculation can improve your PC's performance because you can have multiple incoming ticks and the price can stay the same.
Here is the help guide page on NinjaScript calculation mode for more details:
Please let us know if we may be of any further assistance.
-
Hello everington_f,
Thanks for the reply.
You can use the BarsInProgress index to know the context of the OnBarUpdate (Which series OnBarUpdate is being called for).
Please let me know if this does not resolve your inquiry.Code:protected override void OnBarUpdate() { if(BarsInProgress == 0) { Print("Primary series OnBarUpdate called"); } if(BarsInProgress == 1) { Print("1019 Minute series OnBarUpdate called"); } }
Comment
-
Thanks for the tips! Works just fine now.
________________________________
Transfer Pricing ConsultantsLast edited by Marius Titulescu; 10-24-2019, 06:51 AM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
52 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
70 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment