Skip to main content

Auction - types of auction and their characteristics

Types of Auction and the characteristics


v  Ascending-bid auction (English Auction)
       Real time interactive auction
       Bidders present physically or electronically
       Seller gradually increases price- bidders drop out until one bidder remain to win the auction.
v  Descending-bid auction (Dutch Auction)
       Real time interactive auction
       Bidders present physically or electronically
       Seller gradually decreases price from high value.
       The first bidder, who accepts the current price, wins the bid.
       These auctions are called Dutch auctions because flowers have long been sold in the Netherlands using this procedure
v  First price sealed bid
       Offline auction
       Bidders submit sealed bid to the seller
       Seller opens all the bids together.
       The highest bidder wins the bid and the object.
v  Second price sealed bid (Vickrey Auction)
       Offline auction
       Bidders submit sealed bid to the seller
       Seller opens all the bid together.
       The highest bidder wins the bid and the object and pays the value of second highest bidder.
v  Multi-Unit Auction – Dutch
       Starts with low price and increase the price till supplier willing to provide one unit of the goods or service.
       Price raised slowly until suppliers have committed to all unit desired by buyer
       Each unit is supplied with different price.
v  Multi-unit Auction – English Auction
       Starts with high price and bidders announce the unit they are willing to supply.
       If the quantity that supplier willing to supply is more than required by buyer, the buyer reduces the price until the quantity matches the buyer’s requirement.
       All suppliers get to supply at this price.
       This auction is referred as Uniform-price auction

Factors influence performance of a bid
       Supplier’s cost structure – interdependent and correlated.
       In similar market and similar processes, the interdependence and correlation is higher
       If the supplier is symmetric with the costs that are interdependent and correlated, English auction brings lowest price for the buying firm.
       If the structure is asymmetric, then second-price auction may do better than English auction
Best practices
       Buyer must reveal all the information of the supply Chain task
       By not revealing all the information, suppliers shade the bids to guard against Winner’s curse
       Clear idea of buyer’s own value, supplier’s value
       Divide the bargain surplus in proportion to contribution of each party.


Comments

Popular posts from this blog

Hybris Beanshell and Groovy script example

While doing support, we need to check some of the scenario and their result in the production server. The beanshell and groovy script comes very handy on this. Below are the few example of how I used/using it in my various project. This is very handy to test your data as well 1.        Check the log: Sometimes getting server access is very painful in the enterprise landscape. However, person joined in the project is required to work as soon as they inducted in the project. In this scenario, below groovy script is very useful.   Please note, run these in the rollback mode unless and until the otherwise is required. a.        The application is running from the container. For the POC, it was running in the tomcat server (tomcat/bin). To know the exact directory, run the below script in groovy console println "pwd".execute().text Below will be printed in the output tab /usr/sap/hybris/bin/platform/tomcat/bin ...

SonarCube and Hybris integration

There are some issues reported for SonarCube 6.7 integration with Hybris. The recommended version is Sonar 6.4 or less. For Sonar 6.4, there is no need to build the database. Please follow the below steps to use sonarcube with Hybris. For the POC, we have used Hybris 6.4.0.2 and sonar 6.4. Sonar Cube configuration 1.        Download sonar 6.4 and install/unzip. 2.        For the POC, we have used Embedded Database (default). But multiple database is supported. Access management can also be implemented. However, for the simplicity purpose, it is not used for the POC 3.        The java properties can be set at the sonar.properties file (not used in our case). Example of the property is sonar.web.javaOpts=-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError which can be enabled in the sonar.properties file under conf folder of the installed folder. 4.      ...

Beanshell/Groovy example - Change Local.properties permanently using script

Sometimes we need to change some of values defined for properties key in local.properties/project.properties. There are three ways to do it Update via HAC Update Local.properties Update using beanshell/groovy script If we use the first process, after server re-start, changes will go. So, the value will remain in the system memory till the server got re-started. Here, will give an example how to change local.properties and changes remain even after rebuild. Run the below script in the HAC script tab with "commit" on. import org.apache.commons.configuration.PropertiesConfiguration; import java.io.File; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; //The new value to be stored in the key/value pair in local.properties. String changedValue = "NEW_VALUE"; //Key name in the local.properties String propertyName = "test.properties.value"; PropertiesConfiguration config = new PropertiesConfiguratio...