Following this question Generate a fictitious stock option price variation
I wish to simulate that the price change, while users gives an order of buy or sell, like the real stock exchange. (I make a user case to help you to understand.)
Initial state "Stock option example" :
Company X, price of the stock option $20,000
A CRON task makes the price variation each second, with this PHP script :
function stockVariation($price,$max_up,$max_down)
{
// Variation calculate, with volatility max (10 to 100)
$ratio=(mt_rand(0,$max_up)-mt_rand(0,$max_down))/10000;
// New price
$price+=$ratio;
return round($price,5);
}
Volatility is made by random news which makes $max_up > $max_down or $max_up < max_down for a random time. Between, $max_up = $max_down.
Result in picture (1hour by minutes)

User case "Buy example" :
- A user send an order to buy 1000 of this option at $18,000
- The system store the order in database
- A CRON task verify each minute, if the price was <= to a buy order, the last minute
- When the price of this option <= to this order, the user gets this stock option.
User case "Sell example" :
- A user send an order to sell 1000 of this option at $22,000
- The system store the order in database
- A CRON task verify each minute, if the price was >= to a sell order, the last minute
- When the price of this option >= to this order, the user sells this stock option.
My problem
It works fine, but it is not a real variation of a stock exchange market.
My question
How to make the price variation by the prices and quantities of the orders ?
Like the "law of supply and demand".
For example (edit regarding Peter answer) :
function stockOrder($orderPrice,$orderQuantity,$type)//$type= buy or sell
{
// Record the order in database (ok)
// Compare with other orders (ok)
// $orderPrice<=$dbSellPrice or $orderPrice>=$dbBuyPrice
if checks
// Buy and sell at the best prices
// for quantities available holded by users (ok)
// Record/update the holding of the stock (ok)
// Update the price of the stock
end if
}
Perhaps I'm a little bit crazy to think that it could be possible to automatize that, but I believe in it, any help will be greatly appreciated.

buyOrder()andsellOrder()functions to take a price, which means they are effectively limit orders. With this in mind, the logic should be something like this: On receiving an order for a given price, search the database for a corresponding "matching" order and fulfill the order at the "correct" price, i.e. a price within the limit of each order. Then execute the order, removing the entries from the database and updating the last sold price. – Peter Feb 21 '12 at 15:32