<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Silver Value &#187; silver</title>
	<atom:link href="https://silvervalue.co/tag/silver/feed/" rel="self" type="application/rss+xml" />
	<link>https://silvervalue.co</link>
	<description>SilverValue.co</description>
	<lastBuildDate>Mon, 19 May 2014 03:47:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Silver Value Calculator</title>
		<link>https://silvervalue.co/silver-value-calculator/</link>
		<comments>https://silvervalue.co/silver-value-calculator/#comments</comments>
		<pubDate>Thu, 13 Mar 2014 15:38:52 +0000</pubDate>
		<dc:creator><![CDATA[mike]]></dc:creator>
				<category><![CDATA[Silver Market]]></category>
		<category><![CDATA[silver]]></category>
		<category><![CDATA[silver value]]></category>
		<category><![CDATA[silver value calculator]]></category>

		<guid isPermaLink="false">http://silvervalue.co/?p=104</guid>
		<description><![CDATA[Use our calculator to properly calculate the current and past values of silver in various weights, purity, and value.]]></description>
				<content:encoded><![CDATA[<p>Use our calculator to properly calculate the current and past values of silver in various weights, purity, and value.</p>
<script>ajaxurl = 'https://silvervalue.co/wp-admin/admin-ajax.php'</script><section class="gc-wrap silver-converter" id="aa-converter-1">
	<h2>Current Silver Price: $78.21/oz</h2>
	<form class="forms">
		<table class="tables1">
			<tr>
				<td>Amount(USD): </td>
				<td><input type="text" id="price-amount" value="78.21" style="background-color: #CCFFFF"/></td>
				
				<td>Silver: </td>
				<td><input type="text" id="metal-amount" value="1" style="width: 75%;" /> <span id="measure-unit">Ounces</span></td>
			</tr>
			
			<tr>
				<td colspan="4">
					<h3 class="no-margin gc-settings">Settings</h3>
				</td>
			</tr>
			
			<tr>
				<td>Measure: </td>
				<td colspan="3"><select id="measure-dropdown">
					<option value="oz">Ounces</option>
					<option value="g">Grams</option>
					<option value="kg">Kilograms</option>
				</select></td>
				
				<!-- td>Carat: </td>
				<td>
					<select id="goldcarat">
	                    <option value="1" selected="selected">24 Carat (99.99%)</option>
	                    <option value="0.958">23 Carat (95.8%)</option>
	                    <option value="0.917">22 Carat (91.7%)</option>
	    				<option value="0.9">21.6 Carat (90%)</option>
	    				<option value="0.875">21 Carat (87.5%)</option>
	    				<option value="0.833">20 Carat (83.3%)</option>
	    				<option value="0.792">19 Carat (79.2%)</option>
	    				<option value="0.75">18 Carat (75%)</option>
	    				<option value="0.708">17 Carat (70.8%)</option>
	   					<option value="0.667">16 Carat (66.7%)</option>
	   					<option value="0.62.5">15 Carat (62.5%)</option>
	   					<option value="0.583">14 Carat (58.3%)</option>
	   					<option value="0.542">13 Carat (54.2%)</option>
	   					<option value="0.5">12 Carat (50%)</option>
	   					<option value="0.458">11 Carat (45.8%)</option>
	   					<option value="0.417">10 Carat (41.7%)</option>
	   					<option value="0.375">9 Carat (37.5%)</option>
	   					<option value="0.333">8 Carat (33.3%)</option>
	   					<option value="0.292">7 Carat (29.2%)</option>
	   					<option value="0.25">6 Carat (25%)</option>
	                </select>
				</td -->
			</tr>
			
			<tr>
				<td>Date: </td>
				<td>
					<label><input type="radio" name="date_today" id="date_today" checked="" /> Today</label> &nbsp; &nbsp;
					<label><input type="radio" name="date_today" id="date_previous" /> Previous</label>
				</td>
				
				<td class="date-selection"><div class="inside">Select Date:</div></td>
				<td class="date-selection"><div class="inside"><input type="text" id="date" class="date" style="width: 55%;"/> <span class="date-price"></span></div></td>
			</tr>
		</table>
	</form>
	
	<script>
	jQuery(document).ready(function($)
	{
		var context = $('#' + "aa-converter-1");
		var my_data = {"today_price":"78.21","conv":{"g_to_oz":0.032150746568600001296100998615656862966716289520263671875,"kg_to_oz":32.150746568599998909121495671570301055908203125}};
		var current_price = my_data.today_price;
		var fields = {
			carat: 1,
			measure: 'oz',
			price_amount: current_price,
			metal_amount: 1,
		};
		
		$('#date_previous, #date_today', context).change(function()
		{
			if($('#date_today', context).is(':checked'))
			{
				$('.date-selection .inside', context).fadeTo('fast', 0).css('visibility', 'hidden');
				current_price = my_data.today_price;
				updateValues();
			}
			else
				$('.date-selection .inside', context).css('visibility', 'visible').fadeTo('fast', 1);
		}).change();
		
		$('#date', context).datepicker({
			dateFormat: 'MM dd, yy',
			minDate: new Date('Feb 22, 2014'), 
			maxDate: -1,
		}).change(function()
		{
			$('.working-div', context).fadeIn();
			$.post(ajaxurl, {action: 'gc_get_the_price', metal: 'silver', date: $(this).val(), _wpnonce: '4e614979a1'}, function(data)
			{
				$('.working-div', context).fadeOut();
				if(data && data.success && data.price)
				{
					current_price = parseFloat(data.price);
					$('.date-price', context).html('$' + current_price.toFixed(2) + "/oz");
					
					updateValues();
				}
			}, 'json');
		});
		
		$('#goldcarat', context).change(function()
		{
			var v = $(this).val();
			if(!isNaN(v) && v.length)
			{
				fields.carat = parseFloat($(this).val());
				updateValues();
			}
		});
		
		$('#measure-dropdown', context).change(function()
		{
			fields.measure = $(this).val();
			$('#measure-unit').html($(this).find('option:selected').html());
			
			updateValues();
		});
		
		$('#metal-amount', context).on('keyup change', function()
		{
			var v = $(this).val();
			if(!isNaN(v) && v.length)
			{
				fields.metal_amount = parseFloat($(this).val());
				updatePrice();
			}
		});
		
		$('#price-amount', context).on('keyup change', function()
		{
			var v = $(this).val();
			if(!isNaN(v) && v.length)
			{
				fields.price_amount = parseFloat($(this).val());
				updateMetal();
			}
		});
		
		
		function updateValues()
		{
			updatePrice();
		}
		
		function updatePrice()
		{
			var weight = fields.metal_amount;
			if(fields.measure == 'g')
		 		weight *= my_data.conv.g_to_oz;
 			else if (fields.measure == 'kg')
 				weight *= my_data.conv.kg_to_oz;
			
			var total = weight * current_price;
			if(fields.carat < 1)
				total *= fields.carat;
			
			$('#price-amount', context).val(total.toFixed(2));
		}
		
		function updateMetal()
		{
			var weight = fields.price_amount / current_price;
			if(fields.measure == 'g')
		 		weight /= my_data.conv.g_to_oz;
 			else if (fields.measure == 'kg')
 				weight /= my_data.conv.kg_to_oz;
			
			if(fields.carat < 1)
				weight /= fields.carat;
			
			$('#metal-amount', context).val(weight.toFixed(2));
		}
	});
	</script>
	
	<br clear="both" />
	
	<div class="working-div"></div>
</section>
]]></content:encoded>
			<wfw:commentRss>https://silvervalue.co/silver-value-calculator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Silver Flatware Buying Tips</title>
		<link>https://silvervalue.co/4-silver-flatware-buying-tips/</link>
		<comments>https://silvervalue.co/4-silver-flatware-buying-tips/#comments</comments>
		<pubDate>Wed, 12 Mar 2014 20:41:07 +0000</pubDate>
		<dc:creator><![CDATA[mike]]></dc:creator>
				<category><![CDATA[Silver Articles]]></category>
		<category><![CDATA[flatware]]></category>
		<category><![CDATA[Rogers Bros]]></category>
		<category><![CDATA[Rogers Bros silver]]></category>
		<category><![CDATA[silver]]></category>
		<category><![CDATA[silver flatware]]></category>
		<category><![CDATA[silver fork]]></category>
		<category><![CDATA[silver knife]]></category>
		<category><![CDATA[silver spoon]]></category>

		<guid isPermaLink="false">http://silvervalue.co/?p=98</guid>
		<description><![CDATA[Looking to pick up some silver flatware in the next few months or years? Silver flatware if you can afford it is a great long term investment for your family. It may not make sense financially 100% but in terms of family heirlooms a set of silver flatware (forks, spoons, knives etc) ranks right up their ...]]></description>
				<content:encoded><![CDATA[<div id="attachment_99" style="width: 310px" class="wp-caption alignright"><a href="http://silvervalue.co/wp-content/uploads/2014/03/silver-flatware-1.jpg" rel="lightbox-0"><img class="size-medium wp-image-99" alt="Silver Flatware Set" src="http://silvervalue.co/wp-content/uploads/2014/03/silver-flatware-1-300x225.jpg" width="300" height="225" /></a><p class="wp-caption-text">Rogers Bros 1847 Silverplate Silverware</p></div>
<p>Looking to pick up some silver flatware in the next few months or years? Silver flatware if you can afford it is a great long term investment for your family. It may not make sense financially 100% but in terms of family heirlooms a set of silver flatware (forks, spoons, knives etc) ranks right up their with the living room clock, or moms ring.</p>
<p>On the whole, you either buy silver flatware for the silver content or you buy it to own a truly beautiful set of dinnerware. If you&#8217;re buying in terms of silver investment, you have certain margins you&#8217;ll be looking to hit while those looking for an investment in dinnerware will be looking at more than the value of the silver. Here are some tips to keep in mind when evaluating silver flatware:</p>
<p><strong>1 &#8211; Silver Content</strong> If the pieces or the set you&#8217;re looking at isn&#8217;t marked &#8220;Sterling&#8221; or &#8220;925&#8221; or even &#8220;.925&#8243; then you&#8217;re probably looking at a silver plated or silver inlaid flatware set. Sterling silver (aka 925 or .925) is 92.5% silver and 7.5% other metals such as copper which makes the utensils more durable. See examples of <a title="Sterling Silver Marks" href="http://cointrackers.com/blog/25/sterling-silver-prices/#photos" target="_blank">sterling silver marks</a> here.</p>
<p><strong>2 &#8211; Which Pieces Will Be &#8220;Solid&#8221;</strong> When weighing and valuing silver flatware, the &#8220;butter&#8221; knives, forks, spoons and some specialty items will be Sterling and should be marked as such. However, items some knives, serving utensils, salt and pepper shakers and candle sticks will contain such things as sand, concrete, steel or other metals for balance and added weight. The rule of thumb is to weigh these separately and assume these items only contain 25% silver.</p>
<p><strong>3 &#8211; Condition</strong> If you&#8217;re looking at silver flatware for the silver content, condition is a negligible concern. Silver weight is silver weight and pieces with bends, dents or even tarnish aren&#8217;t going to affect the value of the silver.</p>
<p><strong>4 &#8211; High Value Flatware </strong>When looking for silver flatware as a collectable, you&#8217;re looking at more than the silver weight. Brands and hallmarks will play a very important part in your search for rare and expensive flatware. As an example, the French maker, Christofle, is a highly respected maker of sterling silver and even silver plated flatware which commands a premium price. This premium is sometimes hundreds, even thousands, of times the silver weight value.</p>
<p>Silver is silver and most flatware is exactly that. If you&#8217;re looking for a useful and functional way to make a silver investment, buying silver flatware isn&#8217;t a bad way to do it at all. However, if you&#8217;re looking to make a true investment in silver flatware, the collectable sets are the way to go.</p>
]]></content:encoded>
			<wfw:commentRss>https://silvervalue.co/4-silver-flatware-buying-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silver Coins vs Silver Bullion</title>
		<link>https://silvervalue.co/silver-coins-vs-silver-bullion/</link>
		<comments>https://silvervalue.co/silver-coins-vs-silver-bullion/#comments</comments>
		<pubDate>Mon, 24 Feb 2014 19:56:27 +0000</pubDate>
		<dc:creator><![CDATA[mike]]></dc:creator>
				<category><![CDATA[Silver Articles]]></category>
		<category><![CDATA[Silver Market]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[silver]]></category>
		<category><![CDATA[silver bullion]]></category>
		<category><![CDATA[silver coin]]></category>
		<category><![CDATA[silver investment]]></category>

		<guid isPermaLink="false">http://silvervalue.co/?p=74</guid>
		<description><![CDATA[When it comes to investing, especially in metals, gold is an expensive buy-in while silver makes a much more palatable investment, especially for the entry-level investor. However, when you look at silver and the silver market in general, many people discover a very important question. Which is the better investment, silver bullion or silver coins? ...]]></description>
				<content:encoded><![CDATA[<p>When it comes to investing, especially in metals, gold is an expensive buy-in while silver makes a much more palatable investment, especially for the entry-level investor. However, when you look at silver and the silver market in general, many people discover a very important question. Which is the better investment, silver bullion or silver coins? The answer may surprise you and, if you&#8217;ve already started making some commitments in silver, you may wish you&#8217;d have seen this sooner.</p>
<div id="attachment_24" style="width: 310px" class="wp-caption alignright"><a href="http://silvervalue.co/wp-content/uploads/2014/02/sv1.jpg" rel="lightbox-0"><img class="size-medium wp-image-24" alt="Buying Silver" src="http://silvervalue.co/wp-content/uploads/2014/02/sv1-300x222.jpg" width="300" height="222" /></a><p class="wp-caption-text">Buying Silver</p></div>
<h2>Let&#8217;s take a look at silver bullion:</h2>
<p>On the whole, silver bullion, whether in 1oz., 100oz. or 1000oz. bars is pretty much directly tied to current silver prices. This means if the spot price for silver drops some 15% as it did over a 2 day period in April, 2013, the value of your silver drops as well. It doesn&#8217;t much matter if your bar has the basic hallmarks for purity and actual weight or if your bars were made by a mint or a private firm, silver bullion is only going to be worth what the silver market says it is. If you&#8217;re looking at silver from a very strict investment standpoint, this could well be the answer you&#8217;re looking for as the buy-in is relatively inexpensive and storage and transport is fairly straightforward.</p>
<p>However, when you take a look at silver coinage, especially coins that were not designed to be a &#8220;replacement&#8221; for silver bullion, the investment angle takes on a whole new perspective. When you take a look at coins such as the Morgan silver dollars and half dollars, Mercury dimes, Canadian silver coins and a variety of other silver coins from other countries, the investment angle shifts from a strict silver value to the age of the coin, the rarity of the coin and the condition of the coin.</p>
<p>As an example, the current melt value for a common Morgan silver dollar in poor to fair condition is running right at $17 (give or take a few cents). This is based on current silver prices and the fact that a Morgan dollar is actually 90% silver. However, as a coin, a quick scan of eBay shows you&#8217;re not going to get one in pretty much any condition for less than $25. To complicate that even further, when you start looking at the rarity of the coin, especially when you&#8217;re trying to track down those with a CC (Carson City) mint mark, the price jumps dramatically with some coins in &#8220;perfect&#8221; condition running over $800 each.</p>
<h2>Overall Bullion Vs. Coins</h2>
<p>Granted, the buy-in for coins will be higher than purchasing straight bullion bars. However, since coins are valued by far more factors that strictly spot silver market prices, your money is actually somewhat safer since coin prices do not fluctuate nearly as significantly as metal prices. This not only gives you a safer investment but, as most trends show, coin prices rarely drop. As a matter of fact, with the exception of price spikes during the mid-1980s, the price for a MS65 Morgan silver dollar has remained pretty much in the $100-150 range, especially over the last decade. If you&#8217;re looking for a great way to conserve capital while keeping a solid investment portfolio, silver coinage definitely has a much more solid platform than bullion.</p>
]]></content:encoded>
			<wfw:commentRss>https://silvervalue.co/silver-coins-vs-silver-bullion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Should I Buy Silver?</title>
		<link>https://silvervalue.co/where-should-i-buy-silver/</link>
		<comments>https://silvervalue.co/where-should-i-buy-silver/#comments</comments>
		<pubDate>Thu, 20 Feb 2014 23:26:33 +0000</pubDate>
		<dc:creator><![CDATA[mike]]></dc:creator>
				<category><![CDATA[Silver Articles]]></category>
		<category><![CDATA[buy]]></category>
		<category><![CDATA[buy online]]></category>
		<category><![CDATA[buy silver]]></category>
		<category><![CDATA[buying]]></category>
		<category><![CDATA[buying silver]]></category>
		<category><![CDATA[purchase]]></category>
		<category><![CDATA[silver]]></category>

		<guid isPermaLink="false">http://silvervalue.co/?p=23</guid>
		<description><![CDATA[Looking to buy silver online safely? Again we want to start off by saying we are not being paid to promote, or get kickbacks from these companies. They just happen to be the ones we&#8217;ve had the most experience with in the past. So now that we have that established lets speak about a few ...]]></description>
				<content:encoded><![CDATA[<div id="attachment_24" style="width: 220px" class="wp-caption alignright"><a href="http://silvervalue.co/wp-content/uploads/2014/02/sv1.jpg" rel="lightbox-0"><img class=" wp-image-24 " alt="Buying Silver" src="http://silvervalue.co/wp-content/uploads/2014/02/sv1-300x222.jpg" width="210" height="155" /></a><p class="wp-caption-text">Buying Silver</p></div>
<p>Looking to buy silver online safely? Again we want to start off by saying we are not being paid to promote, or get kickbacks from these companies. They just happen to be the ones we&#8217;ve had the most experience with in the past. So now that we have that established lets speak about a few of our favorite places online to buy both Gold and Silver. Silver is a great long term investment and one of the very few that have real intrinsic value, but where can you purchase this shiny metal safely online?</p>
<h2>Apmex</h2>
<p>If you have been making online purchases within the last 8 or so years you are aware of APMEX. These guys are one of the big cheeses. The have a wide selection, and their prices are fair. The prices are not the best in terms of premiums, but they are an established company. These guys are so large they moved into the old Federal Reserve building a few years back. We have both bought and sold to them, and transactions are usually completed and delivered within 3-5 business days. Online at <a href="http://www.apmex.com/">http://www.apmex.com/</a> or call 1-800-375-9006</p>
<h2>Gainesville Coins</h2>
<p>Gainesville Coins online at <a href="http://www.gainesvillecoins.com/">http://www.gainesvillecoins.com/</a> has a large selection of items on their site, but many of them are out of stock. I hate finding an item only to see that it&#8217;s out of stock. If you don&#8217;t sell the thing then pull it from your site I say. <img src="https://silvervalue.co/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h2></h2>
<h2>JM Bullion</h2>
<p>Site found online at <a href="http://www.jmbullion.com/">http://www.jmbullion.com/</a> has a large selection of fine silver coins and you guessed it&#8230;bullion as the name might suggest. Their phone number is 1-800-276-6508 These guys sell silver and gold to those wishing to take physical delivery of the items.</p>
<h2>ProvidentMetals.com</h2>
<p>Another good place to buy precious metals is <a href="http://providentmetals.com">providentmetals.com</a>, their phone number is 1-877-429-8790</p>
<p>If you know or have used any other companies let us know, and tell us how your experience has went. Thanks for reading!</p>
]]></content:encoded>
			<wfw:commentRss>https://silvervalue.co/where-should-i-buy-silver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Invest In Silver?</title>
		<link>https://silvervalue.co/invest-in-silver/</link>
		<comments>https://silvervalue.co/invest-in-silver/#comments</comments>
		<pubDate>Mon, 20 Jan 2014 21:46:21 +0000</pubDate>
		<dc:creator><![CDATA[mike]]></dc:creator>
				<category><![CDATA[Silver Articles]]></category>
		<category><![CDATA[coins]]></category>
		<category><![CDATA[silver]]></category>
		<category><![CDATA[why silver]]></category>

		<guid isPermaLink="false">http://silvervalue.co/?p=8</guid>
		<description><![CDATA[We&#8217;ll let me tell you first off I&#8217;m not pushing silver, I have no ulterior motive, I&#8217;m not going to sell you anything. This isn&#8217;t one of those sky is falling websites that use fear to drive traffic. I&#8217;ve been collecting and investing in silver and other metals for about 25 years. Holding a silver ...]]></description>
				<content:encoded><![CDATA[<div id="attachment_20" style="width: 310px" class="wp-caption alignright"><a href="http://silvervalue.co/wp-content/uploads/2014/02/silver-bars-1.jpg" rel="lightbox-0"><img class="size-medium wp-image-20  " title="Silver Bars" alt="Silver Bars" src="http://silvervalue.co/wp-content/uploads/2014/02/silver-bars-1-300x224.jpg" width="300" height="224" /></a><p class="wp-caption-text">Silver Bars</p></div>
<p>We&#8217;ll let me tell you first off I&#8217;m not pushing silver, I have no ulterior motive, I&#8217;m not going to sell you anything. This isn&#8217;t one of those sky is falling websites that use fear to drive traffic. I&#8217;ve been collecting and investing in silver and other metals for about 25 years. Holding a silver coin or bar in my hand makes me feel good if nothing else. With all the other asset opportunities in the world why would someone want to buy silver? Here are a few reasons&#8230;</p>
<p><strong>Reasons To Like Silver</strong></p>
<ul>
<li>It Has Real Value &#8211; while the value might fluctuate, silver in itself holds value.</li>
<li>Coins Are Fun &#8211; Most of older coins are made from 90% silver (pre 1965).</li>
<li>Enjoy Storing Wealth &#8211; Having a small stash of bullion or silver coins is enjoyable. If you are feeling down and possibly worthless as many of us in these poor economic times do, a visit to your silver pile might just cheer up your day.</li>
<li>Your Heirs Will Love You &#8211; Having a few coins or small 5 or 10 oz bars of silver divvied up in your will doesn&#8217;t cost much.</li>
</ul>
<p>These are just a few reasons to include silver in your life. If you can think of any more please post in the comment section below. Just don&#8217;t spam us with any links we&#8217;ll just delete your post before it goes live.</p>
]]></content:encoded>
			<wfw:commentRss>https://silvervalue.co/invest-in-silver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
