R
ron
I need to run a query that will take a table of bids and one of asking
prices. I need to find the highest price I can get to get the maximum
number of matches.
currently I am just using the following:
ClosingPrice = ((Ask + Bid) / 2)
This workds, but I would like the ClosingPrice to be as high as I
possibly can, returning the maximum number of matches.
prices. I need to find the highest price I can get to get the maximum
number of matches.
currently I am just using the following:
ClosingPrice = ((Ask + Bid) / 2)
This workds, but I would like the ClosingPrice to be as high as I
possibly can, returning the maximum number of matches.