Treating the Bid/Ask spread as a Normal Distribution and
computing the probability for getting a fill for the own offer price
(that lies between the last/current Bid and Ask in the orderbook).
Obviously the probability for getting a fill for the MidPrice has to be p = 0.5 (ie. 50%).
And in case of a Long:
p(Bid) = 0.0, p(Ask) = 1.0
And in case of a Short:
p(Bid) = 1.0, p(Ask) = 0.0
The task is of course to compute this:
p(OwnOfferPrice) = ...
Bid and Ask are the ultimate limits, ie. the whole address space lies inbetween.
So, the question is: how to do this mathematically as we don't have a StdDev?
Can we arbitrarily use 34.1% for the StdDev?
Any other solution?
computing the probability for getting a fill for the own offer price
(that lies between the last/current Bid and Ask in the orderbook).
Obviously the probability for getting a fill for the MidPrice has to be p = 0.5 (ie. 50%).
And in case of a Long:
p(Bid) = 0.0, p(Ask) = 1.0
And in case of a Short:
p(Bid) = 1.0, p(Ask) = 0.0
The task is of course to compute this:
p(OwnOfferPrice) = ...
Bid and Ask are the ultimate limits, ie. the whole address space lies inbetween.
So, the question is: how to do this mathematically as we don't have a StdDev?
Can we arbitrarily use 34.1% for the StdDev?
Any other solution?
Last edited: