'; } else { snackbarContainer.classList.remove('reactified') } } function addBannerToWebsite() { var messageContainer = document.querySelector('#registrationNotice'); if (messageContainer === null || messageContainer === undefined) { jQuery('#registrationNotice').innerHtml = mgBannerHTML + hiddenHTML; } else { jQuery('#registrationNotice').removeClass('notificationBar').removeClass('reactified'); } } function removeBannerFromWebsite() { var bannerContainer = document.querySelector('#registrationNotice'); if (bannerContainer !== null || bannerContainer !== undefined) { jQuery('#registrationNotice').hide(); } } function handleCloseSuccessMessage(){ Object.assign(snackbarMessageBootstrap, {open: false}); addSnackbarToWebsite(); renderReactComponents(); } function bidderApproved() { Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Successful', variant: 'success'}); addSnackbarToWebsite(); removeBannerFromWebsite(); renderReactComponents(); } function bidderPending() { // TODO Add snackbar message when verbiage is established // Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Pending', variant: 'warning'}); // addSnackbarToWebsite(); updateApprovalStatusMsg(true, null); // renderReactComponents(); } function bidderDeclined() { Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Declined', variant: 'error'}); addSnackbarToWebsite(); removeBannerFromWebsite(); renderReactComponents(); } function bidderError() { Object.assign(marketguardMessageBootstrap, {registrationStatus: 'ERROR'}); addBannerToWebsite(); renderReactComponents(); } // Make custom message available to Javascript functions var getCustomTier4Message = ""; var messageHTML = ''; var renderReact = '0' === '1'; var registrationStatus = ''; var depositRequired = '' === 'False'; var depositAmt = ''; var auctionId = '240151'; var depositChoice = 0; var depositHTML = '
'; var mgBannerHTML = '
'; var legacyHTML = '
'; var hiddenHTML = '
' + '' + '' + '' + '' + '' + '' + '' + '' + '
'; cc = CreditCardModal; var marketguardMessageBootstrap = { registrationStatus: registrationStatus, clientProxyUrl: 'https://clientproxy.proxibid.com', bidderId: '', auctionId: auctionId }; var depositMessageBootstrap = { clientProxyUrl: 'https://clientproxy.proxibid.com', bidderId: '', auctionId: auctionId, coreToken: '15091885-4a39-4d33-bde7-81ca85ee7a67', variant: 'small', options: { amount: depositAmt, currency: htmlDecode('') } }; if (renderReact) { if (depositRequired && (registrationStatus === '-1' || registrationStatus === '0')) { messageHTML += depositHTML; } else { messageHTML += mgBannerHTML; } } else { messageHTML += legacyHTML; } messageHTML += hiddenHTML; document.getElementById('registrationNotice').innerHTML += messageHTML; renderReactComponents(); function htmlDecode(value) { return $j('
').html(value).text(); } function showChangeCCDeposit() { depositChoice = 1; registerBidder('240151'); } function registerBidder(auctionId) { openProgressModal(); getNeedsAGDecision(auctionId, function(needScore) { if (needScore === 'true') { jQuery.ajax({ timeout: 60000, url:'/asp/getAuctionGuardDecision.asp', data: { auctionID: auctionId, ssn: 0, curp: 0 }, success: function(data) { var response = new RegExp(/.*String>(.*)).exec(data)[1]; handleAGResponse(response); }, error: function (XMLHttpRequest, textStatus, errorThrown) { sendBidderToFraudQueue(10, 'AuctionGuard call timed out after 60 seconds', true, null, true); console.error(errorThrown); } }); } else if (needScore === 'declined') { registrationStatus = '2'; handleCCResponse(registrationStatus); } else if (needScore === 'approved') { registrationStatus = '1'; handleCCResponse(registrationStatus); } else if (needScore === 'loggedOut') { if (confirm('You must login to apply to bid')) { window.location.href = '/asp/LoginBidder.asp'; } } }); } function handleAGResponse(response) { if (response !== null) { switch (response) { case "APPROVED_WHITELIST_AUCTION_COMPANY": case "APPROVED_WHITELIST_PROXIBID": case "APPROVED": registrationStatus = '1'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "DECLINED_BLACKLIST": case "DECLINED_BLACK_FLAG": case "BANNED_COUNTRY": case "DECLINED": case "PENDING_IP_NOT_TRUSTED": case "PENDING_BAD_SCORE": case "PENDING_FAILED_SSN_VERIY": case "PENDING_FRAUD": case "PENDING_CREDIT_CARD_CHECK_FAILED": registrationStatus = '2'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_FINANCIAL_QUESTIONNAIRE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsFinancialQuestionnaire(); break; case "PENDING_BIDDER_COULD_NOT_GET_CC": jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); registrationStatus = '0'; agCheckAlertMsg('You have exceeded the maximum number of attempts to add a credit card. Please contact us for further assistance.', function() { sendRegistrationEmail(0); if(showBidderStatusMessage){ updateApprovalStatusMsg(true); } callBack(false); }); registrationStatus = '0'; break; case "PENDING_EMAIL_VERIFICATION": //do not let the bidder continue until they have validated their email. registrationStatus = '0'; jQuery('#progressModal').dialog('close'); displayEmailNotVerified(); break; case "PENDING_NEED_SCORE": case "PENDING_WAITING_FOR_SCORE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsScore(); break; case "PENDING_NO_CC_ON_FILE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsCreditCard(); break; case "PENDING_NEED_SSN": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsSSN(); break; case "PENDING_NEED_CURP": jQuery('#progressModal').dialog('close'); handleNeedsCURP(); break; case "PENDING_IP_NOT_IN_AUCTION_COUNTRY": //This is an international bidder, they must call either the auction company or proxibid to get on white list CAN NOT BID YET case "PENDING_BILLING_ADDRESS_NOT_IN_AUCTION_COUNTRY": case "PENDING_CALL_AUCTION_COMPANY_WHITE_LIST": //they must call either the auction company or proxibid to get on white list CAN NOT BID YET case "PENDING_NEED_MANUAL_APPROVAL": //Need manual approval from the auction company. Cannot allow bidding case "PENDING_CALL_PROXIBID": case "PENDING_CREDIT_CARD_VENDOR_DOWN": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PROCESSING": registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_NEED_DEPOSIT": case "PENDING_AUTO_DEPOSIT": var ccId = jQuery('#ConfirmCCID').val(); var ccToken = jQuery('#ConfirmCCToken').val(); if (ccId != '' && registrationStatus !== '2' && depositChoice !== 1) { openProgressModal(); cc.getDeposit(ccId, ccToken, function(responseCode) { switch(responseCode) { case (1): // Approved registerBidder('240151'); break; case (0): case (2): // Declined registrationStatus = '2'; break; case (3): // Pending registrationStatus = '0'; break; default: registrationStatus = 'ERROR'; break; } jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); }, null, {depositAmt: depositAmt}); } else if (registrationStatus !== 2) { openProgressModal(); cc.launchSelectCCModal( function() { var status = cc.ccStatusCode; switch (status) { case (1): case (4): // CC Approved getAuctionGuardScore(0, 0, function(approved) { if (approved) { registrationStatus = '1'; } else { registrationStatus = '2'; } handleCCResponse(registrationStatus); }, false, 'Continue', auctionId); break; case (2): case (3): case (5): // CC Declined or max attempts reached if (cc.ccReasonCode === 2) { // Bidder Canceled action, just bow out break; } else { registrationStatus = '2'; break; } case (6): // CC Pending registrationStatus = '0'; break; default: registrationStatus = 'ERROR'; break; } jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); }, { selectCardTitle: 'Select a Credit Card for your Deposit', addCardTitle: 'Add a Credit Card for your Deposit', depositMode: true, depositAmt: depositAmt }, true); } break; case "ERROR_GENERAL_EXCEPTION": sendBidderToFraudQueue( 11, "ERROR_GENERAL_EXCEPTION", false, null, true); registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_NEED_TELESIGN_VERIFICATION": handleNeedPhoneVerification(); registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; default: sendBidderToFraudQueue( 11, "General AG Excpetion", false, null, true); registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; } } else { registrationStatus = 'ERROR'; } } function handleCCResponse(registrationStatus) { sendRegistrationEmail(registrationStatus); if (registrationStatus === '0') { agAlertDialog( 'Your selected credit card is pending validation before it can be used. Please update your credit card information to try again. For assistance, contact Proxibid".', null, false, {height: 170}); } else if (registrationStatus === '-1') { // Do nothing, the bidder must have canceled their deposit } else { Object.assign(marketguardMessageBootstrap, {registrationStatus: registrationStatus}); document.getElementById('registrationNotice').innerHTML = mgBannerHTML + hiddenHTML; renderReactComponents(); } } function submitDeposit(ccId, paymentToken, amount) { cc.getDeposit(ccId, paymentToken, function(responseCode) { switch(responseCode) { case 0: registrationStatus = '2'; handleCCResponse(registrationStatus); break; case 1: registrationStatus = '1'; handleCCResponse(registrationStatus); break; case 2: agAlertDialog('You have exceeded the maximum number of attempts to add a credit card. Please contact us for further assistance.'); registrationStatus = '2'; handleCCResponse(registrationStatus); break; case 3: registrationStatus = '0'; handleCCResponse(registrationStatus); break; default: agAlertDialog('An error occured when processing your credit card. Please try again.'); registrationStatus = '-1'; handleCCResponse(registrationStatus); } }, null, {depositAmt: amount}); } handleAgEvent(bidderApproved, bidderPending, bidderDeclined, bidderError); jQuery('html').bind('SUBMIT_DEPOSIT_CHANGE_CC', function() { showChangeCCDeposit(); }); jQuery('html').bind('sendRegistrationEmail', function(event) { sendRegistrationEmail(event.detail.registrationStatus) }); jQuery('html').bind('SUBMIT_DEPOSIT', function(event) { submitDeposit(event.details.ccId, event.details.token, event.details.amount); });
Item Description: Translate description Specification: Model: Rolex Submariner
Estimated Retail Replacement Value: $29,865.00
Ref: IRA28000
Item no.: ARXU-058
Movement: Perpetual, Self-winding
Case Material: Stainless Steel
Bracelet Materials: 18K Yellow Gold & Stainless Steel
Bracelet Style: Oyster, Flat Three Piece Links
Bezel Material: 18K Yellow Gold
Bezel Style: Unidirectional rotatable 60-minutes Bezel
Winding Crown: Rolex screw down, Trip-lock triple waterproofness
Water-Resistance: 1000ft.
Winding: Bidirectional self-winding via Perpetual rotor
Dial: Custom Slate “Serti†Great Condition - Shipping notes: We ship 4-10 Business day after the clearance of payment. Tracking numbers are emailed once the package(s) are shipped. Most shipments are sent by FEDEX Priority, UPS Priority, or US PRIORITY MAIL INSURED
Unable to retrieve AutoCheck Summary Report, please try back later.
Summary Vehicle History Report below provided by AutoCheck.
AutoCheck® vehicle history reports deliver information on reported accidents, odometer rollback, lemon vehicles, branded titles and much more.
AutoCheck found record(s) for this
VIN:
Style/Body:
Engine:
Get the full report to learn more:
Know the exact vehicle you want? One report may be all you need.Single Report $24.99
Researching more than one vehicle? Run as many reports as you like for 21 daysUnlimited Reports for 21 Days $44.99
FAQs
How much is a stainless steel Rolex Submariner worth? ›
Rolex Submariners are available in stainless steel, two tone, and precious metals. The price of a Submariner ranges from $9,100 to $42,000. The most popular Rolex Submariner references are 124060 & 126610LN which have an MSRP of $9,100 and $10,250.
Which Rolex Submariner is rare? ›The rarest are the ref. 5517 based on ref. 5513 cases, so-called double-reference because of both 5513 and 5517 reference numbers. That makes this Military Submariner a highly sought-after collectible.
Is A Rolex Submariner a professional watch? ›Rolex dubbed its tool watches “Professional”, with its first series starting with the Oyster Perpetual Explorer and the Oyster Perpetual Submariner.
How many jewels does a Rolex Submariner date have? ›Common Features. Both of these Rolex watches use the 31-jewel, Rolex Calibre 3135 movement that shows the hour, minutes, seconds, and has a window showing the day of the month. Both the Submariner Date and the Sea-Dweller 4000 have an approx. 50-hour power reserve.
Which Submariner is most valuable? ›#1 – Rolex Submariner 6538, circa 1956 (2018)
This Rolex Submariner ref. 6538 is the most expensive Rolex Submariner ever sold, after selling for $1,068,5000 USD at Christies 'An Evening of Exceptional Watches' auction in 2018.
But how much can you get for a used Rolex Submariner? Generally speaking, prices for pre-owned Submariner watches in today's market range from $10,000 to $15,000 for steel models, $13,000 to $19,000 for two-tone models, and $36,000 to $44,000 for gold models.
How to check if a Rolex is real? ›A Rolex serial number is always engraved deeply into the metal, while the fake watches have serial numbers that are simply etched with acid. The placement of the serial number is also a sign of whether it is a true Rolex or not. Look for the serial number on the 6 o'clock side where the band connects to the lug.
Does a Rolex have to be serviced by Rolex? ›To guarantee continued accuracy and waterproofness, Rolex recommends that you periodically return your watch to an Official Rolex Retailer or Service Centre for professional servicing. It is recommended to service your Rolex approximately every 10 years depending on the model and real-life usage.
What Rolex is the best investment? ›The GMT Master and GMT Master II. Rolex GMT Master and Rolex GMT Master II are the best Rolex watches for investment. They are practical and hardwearing watches with the prestigious Rolex branding. You can get a GMT Master at a few thousand pounds, but rarer models can go for tens or hundreds of thousands.
What is the most sought after vintage Rolex Submariner? ›For example, the Rolex Submariner “James Bond” 6538 is one of the most sought-after Submariners and is highly sought after by collectors due to its unique features and rarity.
What is the rarest Rolex ever? ›
Paul Newman's Rolex Daytona is the most expensive Rolex watch ever sold. Photo by Phillips. Paul Newman's Rolex Daytona is not only the most expensive Rolex ever sold, but it's also the most expensive watch ever sold in the world.
Are Rolex stamped with 18K on it? ›Rolex gold bracelet: Fake or Real ? Rolex President bracelets are stamped with hallmarks and other markings including Rolex logo, Geneve, Swiss Made, 18K, bracelet reference number etc on the inside of the folding clasp, as shown below.
Does Submariner hold its value? ›The Submariner, first introduced in 1953, is best known for holding value or even increasing in value over time.
Which Submariner is more popular? ›Hulk. Arguably the most popular recent Rolex in memory is the Rolex Submariner green, aka the Hulk. This reference was produced in stainless steel and had a green dial/bezel combination.
Is A Submariner a good investment? ›The Rolex Submariner is the perfect watch for those who want a classic design with modern features. It is also an excellent investment piece that will hold its value over time. The Rolex Submariner is the perfect choice if you're looking for a watch that will elevate your personal style.
How much will a Rolex Submariner increase in value? ›Submariner and Submariner Date
Regarding the classic date version with a black dial and bezel, the increase in 2023 follows a 9.8% rise in 2022. In 2021, reference 126610LN was priced at EUR 8,650 compared to EUR 10,200 now, meaning that the model is up by 17.9% over two years.
The first watch worn by James Bond in film was a Rolex Submariner reference 6538. It appeared on the wrist of Sean Connery on a leather strap as seen above (left) in the first ever Bond film: Dr. No (1962).
What is the best auction to sell Rolex? ›Rolex Consignment
Sotheby's, your most reliable resource for Rolex watch auction appraisal and consignment, continues to outpace market competitors, often achieving hammer prices well above our low estimates.
- How to value your Rolex watch.
- Authenticate the brand.
- Check your model & serial number.
- Check the condition of your watch.
- Check the material your watch is made of?
- Check if you have the original box & papers.
- Check the market value.
Jewelers (local or online):
This is by far the best option for selling a pre owned Rolex watch. With that being said, make sure that the jeweler/jewelry store is trustworthy and reputable.
How much is the cheapest Rolex? ›
What is the cheapest Rolex? As the market currently stands, the cheapest Rolex is the Oyster Perpetual with a starting price of $4,900. Available with a variety of dial colors, the Oyster Perpetual has no additional complications other than being able to tell the time but remains an elegant luxury watch.
Can you track Rolex by serial number? ›Yes, they can. And, we want to encourage you to take the following steps to protect your Rolex. Rolex keeps a record of every watch produced. So, if your Rolex watch gets stolen, you can reach out to Rolex with your serial number.
Do real Rolexes scratch? ›Although Rolex watches are made to be superior in their resistance to scratching and dulling, they will occasionally display minor scratches on the bracelet but you needn't believe that can't be fixed.
Can I service my Rolex without papers? ›Yes, you can get your authentic Rolex watch serviced without your original papers. Losing your original paperwork is not a rare occurrence at all. Rolex will still service your watch but needs a little more information first if you can't simply hand over your green guarantee card.
Should you stop your Rolex when not using it? ›No matter what, your Rolex will require winding if it is not worn. Modern Rolex watches have a power reserve time between 48 and 72 hours. Older Rolex watches don't have a substantial power reserve time, so they can quickly stop running after just a few hours.
Should you wear your Rolex all the time? ›One of the best things about owning a Rolex watch is wearing it and enjoying it every day. This daily, constant wear is one of the best ways you can care for your watch. While Rolex watches are famous for their durability and robustness, your Rolex will inevitably gain scratches and dings while you wear them.
What is the most sought after watch in 2023? ›1. Graff Diamonds Hallucination. Topping the list of the most expensive watch in the world 2023 is the Graff Diamonds Hallucination. As the name rightfully suggests, the watch is breathtakingly beautiful and fantastically brilliant, causing quite a stir making heads turn everywhere.
Which Rolex model holds most value? ›Of all these top models, which Rolex holds its value the best? Many experts agree that the Submariner 16610 takes top marks in this category. And, despite the fact that gold prices often increase, the steel Submariner seems to be the most popular simply because of its timeless appearance and its durable reliability.
Which Rolex will be discontinued 2023? ›Discontinued Rolex Models in 2023 - Rolex Datejust 41 with a Meteorite Dial. Rolex announced the discontinuation of the Datejust model with a mother-of-pearl dial. Interestingly, ONLY in the 41mm line. This fact has left watch enthusiasts curious about the reasons behind this decision and its implications on the market ...
Are older Rolexes worth more? ›The value of your vintage Rolex will increase if it has its original dial, movement, or bezel. Many are under the mistaken belief that if they overhaul their old watch with new parts it adds value.
What is the difference between the old submariner and the new submariner? ›
The Rolex Submariner reference 126610LN is something of a mix of old and new. The case diameter is larger now, at 41mm rather than the 40mm dimension it has been for many decades. However, it is more refined and sophisticated in its design. It's smoother, more ergonomic.
Does a Rolex Submariner lose value? ›Rolex has built such a strong brand and reputation in the market that it's rare for a Rolex to drastically decrease in value over time. If your Rolex is kept in great condition over the course of time it's on your wrist, it will most likely maintain its value fairly well and sometimes noticeably increase in value.
What is the most faked Rolex? ›The most commonly faked watches include the Datejust, Submariner, Yacht-Master and the Oyster Perpetual – as well as the other famed series we will look at now: the Rolex Cosmograph Daytona.
Why no one can buy a Rolex? ›Clearly, divergent supply and demand is what's driving the scarcity of Rolexes available for purchase. Demand is astronomically high, and even a supply of one million new watches per year can't meet it.
What is the rarest face on a Rolex watch? ›The Datejust Tiger's Eye dial is one of the rarest Rolex watches.
How much gold is in a 18k gold Rolex? ›There is 75% pure gold in a Rolex watch. Rolex uses 18k gold which is composed of 75% pure gold and 25% other materials such as silver, copper, platinum, or palladium.
How can you tell if 18k gold is real or gold-plated? ›Acid test.
An acid test can reveal the karat of solid gold jewelry, but it can also show whether jewelry is solid gold or gold-plated. With an acid test, a small sample of the jewelry is removed and exposed to acid to induce a color change. The resulting colors indicate which type of metal the jewelry is made of.
So, does 18k gold-plated tarnish? Yes, it can. Even while 18k gold is of greater quality than 14k or 10k gold, it can oxidize and become discolored with time.
Does a Rolex Submariner hold its value? ›The Submariner, first introduced in 1953, is best known for holding value or even increasing in value over time. This iconic dive watch is what other brands base their diver's watch designs on.
Will a Submariner hold its value? ›Market demand plays a major role in the valuation of any timepiece. As the most popular luxury watch brand in the world, there is always a steady demand for Rolex watches. The rarer models, such as the Daytona and Submariner, can fetch high prices even when the overall market is declining.
How much does a Rolex Submariner go up in value? ›
Submariner and Submariner Date
Regarding the classic date version with a black dial and bezel, the increase in 2023 follows a 9.8% rise in 2022. In 2021, reference 126610LN was priced at EUR 8,650 compared to EUR 10,200 now, meaning that the model is up by 17.9% over two years.
Reference | Retail Price |
---|---|
Submariner Date 126618LN | $39,000 |
Submariner Date 126618LB | $39,000 |
Submariner Date 126619LB | $42,000 |
Rolex Submariner Waitlist
If you have a positive relationship and purchase history with an authorized dealer, you can expect to receive a Submariner within 6-12 months. For those who don't have a relationship or purchase history it is highly doubtful you'll receive the Submariner.
An official Rolex remains an incredible timepiece and will still appeal to buyers without the papers. As such, you can sell a Rolex without the guarantee card. While the absence of a guarantee card will likely reduce the watch's value, the impact might be more negligible than you think.
Why is Rolex Submariner so hard to get? ›Clearly, divergent supply and demand is what's driving the scarcity of Rolexes available for purchase. Demand is astronomically high, and even a supply of one million new watches per year can't meet it. It comes down to a numbers game, and there's no sign that this will be changing any time soon.
How long should a Rolex Submariner last? ›In the majority of cases, a Rolex timepiece can last a lifetime, especially if it's serviced regularly. While Rolex recommends service every ten years, it's a good idea to have your watch looked at every 5 to 7 years to ensure optimal performance.
What is the best Rolex to buy for investment? ›Rolex GMT Master and Rolex GMT Master II are the best Rolex watches for investment. They are practical and hardwearing watches with the prestigious Rolex branding. You can get a GMT Master at a few thousand pounds, but rarer models can go for tens or hundreds of thousands.
Is used Rolex Submariner a good investment? ›As with any luxury watch brand, some Rolexes hold their value better than others. Some of the best models to invest in include Daytona, Day-Date with the President bracelet, Milgauss and Submariner. These are some of the most popular watches in the world and they tend to hold and increase in value incredibly well.
How much was a Rolex Submariner in 1980? ›Year | Price | Price w/ Inflation |
---|---|---|
1980 | $950 | $2,887 |
1988 | $1,450 | $2,928 |
2007 | $4,525 | $5,226 |
2012 | $6,300 | $6,505 |
The reason why Rolex watches are expensive is because of the quality and value of their product. Both Rolex quality and value has created an environment where demand far exceeds supply and their watches are now considered investments, often selling for 2 to 3 times used than new at MSRP.
What is the cheapest Rolex I can get? ›
The most affordable Rolex range is the Oyster Perpetual family. This family dates all the way back to 1926 when Rolex paid its ground-breaking water-resistant case (the Oyster) with its automatic (perpetual) movement.