any ideas is appreciated.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
store bid ask spread
Collapse
X
-
Hi, you could use GetCurrentBid() and GetCurrentAsk() for this and then implement your logic for averaging the spread and storing it realtime. You might be also interested in the approach posted and discussed here - http://www.ninjatrader-support2.com/...ad.php?t=16006
-
i just want to average spread for each bar. just want to make sure that this is a correct way of getting the simple average of the spread.
my pseudocode is
onBarupdate
{
if(firsttickofbar){
spreadsum=0
}
spreadsum+= Math.Abs(GetCurrentAsk() - GetCurrentBid());
Spread.Set(spreadsum/Bars.TickCount);
}
another input that i need from you folks is
Does TickCount count bid and ask separely. ie getting 1 Bid and 1 Ask result in TickCount=2
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
31 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
184 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
341 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
264 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment