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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
47 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
23 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
33 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
51 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment