<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Chetan Shah's Blog</title>
	<link>http://chetan.krshah.org</link>
	<description>Chance favours the prepared mind</description>
	<pubDate>Mon, 07 Dec 2009 20:10:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Move securities to Roth Account</title>
		<link>http://chetan.krshah.org/2009/12/07/move-securities-to-roth-account/</link>
		<comments>http://chetan.krshah.org/2009/12/07/move-securities-to-roth-account/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 20:10:09 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/12/07/move-securities-to-roth-account/</guid>
		<description><![CDATA[If you have securities for which you are losing money and do not want to part with it then one way of avoiding future tax payment is to transfer the securities over to a Roth IRA account that way when in future it is making money, you will not be taxed on profit the security [...]]]></description>
			<content:encoded><![CDATA[<p>If you have securities for which you are losing money and do not want to part with it then one way of avoiding future tax payment is to transfer the securities over to a Roth IRA account that way when in future it is making money, you will not be taxed on profit the security returns. In addition you will be able to claim the loss now as part of your current year tax filing. </p>
<p>For example : If you bought a stock of ABC company at $15 and now it is trading at $10 but you do not want to part with it, then a strategy could be to sell the ABC stock at $10 and claim tax deduction (if you have held it for more than a year) for loss ($500 loss if you have 100 shares) and after 30 days buy the same stock in your Roth IRA account. </p>
<p>The advantage of doing so will be :</p>
<p>1. You get a tax deduction now because of the loss you had by selling it.</p>
<p>2. You will not be required to pay on the profits you make in future. </p>
<p>With the income caps going away in 2010, opening a Roth IRA account should be even more easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/12/07/move-securities-to-roth-account/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Leverage Checksum to determine identical files</title>
		<link>http://chetan.krshah.org/2009/11/28/leverage-checksum-to-determine-identical-files/</link>
		<comments>http://chetan.krshah.org/2009/11/28/leverage-checksum-to-determine-identical-files/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 01:27:17 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/11/28/leverage-checksum-to-determine-identical-files/</guid>
		<description><![CDATA[An easy way to identify if two files are exactly the same or not is by determining the check sum of each file and comparing the check sum. If the check sum for both the files is exactly same then it can said that the two files are identical. 
I have written a little java [...]]]></description>
			<content:encoded><![CDATA[<p>An easy way to identify if two files are exactly the same or not is by determining the check sum of each file and comparing the check sum. If the check sum for both the files is exactly same then it can said that the two files are identical. </p>
<p>I have written a little java program which determines the check sum of file.  </p>
<p><strong><br />
import java.io.FileInputStream;<br />
import java.security.DigestInputStream;<br />
import java.security.MessageDigest;</p>
<p>public class Checksum {</p>
<p>	public static String computeCheckSum(String fileName) {</p>
<p>		try {<br />
			FileInputStream stream = new FileInputStream(fileName);<br />
			MessageDigest md = MessageDigest.getInstance(&#8221;SHA-1&#8243;);</p>
<p>			DigestInputStream dIS = new DigestInputStream(stream, md);<br />
			dIS.on(true);</p>
<p>			byte [] b = new byte[1000];</p>
<p>			while (dIS.read(b,0,1000) > -1);</p>
<p>			byte []signature = md.digest();<br />
			//System.out.println(&#8221;The signature is :&#8221;);<br />
			for (int i = 0; i < signature.length; i++) {<br />
				System.out.print(signature[i]);<br />
			}<br />
		} catch (Exception e) {<br />
			e.printStackTrace();<br />
		}</p>
<p>			return "";<br />
	}</p>
<p>	public static void main(String [] a) {<br />
		Checksum.computeCheckSum(a[0]);<br />
	}</p>
<p>}<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/11/28/leverage-checksum-to-determine-identical-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CAMS Certification Preparation</title>
		<link>http://chetan.krshah.org/2009/10/04/cams-certification-preparation/</link>
		<comments>http://chetan.krshah.org/2009/10/04/cams-certification-preparation/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:50:58 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[AML]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/10/04/cams-certification-preparation/</guid>
		<description><![CDATA[I took the CAMS certification examination (and passed with good points) after 2 months of prep work (approx. 1 hour per day max). The exam is not tough but a good prep work is required. The study guide provided by ACAMS is an excellent resource. In addition to that I reviewed the supplemental guide also. [...]]]></description>
			<content:encoded><![CDATA[<p>I took the CAMS certification examination (and passed with good points) after 2 months of prep work (approx. 1 hour per day max). The exam is not tough but a good prep work is required. The study guide provided by ACAMS is an excellent resource. In addition to that I reviewed the supplemental guide also.  I think all the topics covered in the study guide are equally important and strongly suggest to not skip any chapters. I did not make any notes (I think I am not good at making notes) </p>
<p>I am assuming that someone will take this examination not to just get one more certification but has sincere interest in AML domain and is currently working on projects which are AML related. The test tries to identify how much practical knowledge a candidate has. I certainly would not recommend taking this examination just to get one more certification as in that case it is not worth the time and money spent to get it.</p>
<p>I strongly recommend this test to candidates who have just started in AML field and want to explore it further as their career. It certainly helps the candidate to get a good understanding on various AML aspects, regulations, bodies etc.</p>
<p>Hope this helps and Best of Luck for CAMS Examination!</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/10/04/cams-certification-preparation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Section 311 etc. (ACAMS Notes)</title>
		<link>http://chetan.krshah.org/2009/08/30/section-311-etc-acams-notes/</link>
		<comments>http://chetan.krshah.org/2009/08/30/section-311-etc-acams-notes/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 21:19:54 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[AML]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/08/30/section-311-etc-acams-notes/</guid>
		<description><![CDATA[Section 311:
Special measure for Primary Money Laundering concerns, this include foreign country, financial institution, type of an account or type of a transaction.
By designating an entity a primary money laundering concern, the government can force US banks to halt financial dealings with the designated entity. It can ask the domestic financial institution to
1.	Keep records of [...]]]></description>
			<content:encoded><![CDATA[<p>Section 311:<br />
Special measure for Primary Money Laundering concerns, this include foreign country, financial institution, type of an account or type of a transaction.<br />
By designating an entity a primary money laundering concern, the government can force US banks to halt financial dealings with the designated entity. It can ask the domestic financial institution to<br />
1.	Keep records of each transaction including all the transaction participants and beneficiaries</p>
<p>2.	Obtain information of beneficial ownership of any accounts maintained in US by a non US person or his/her representative.</p>
<p>3.	Obtain information of all customers who are permitted to use or whose transactions are routed thru the designated financial institution’s<br />
        correspondent account.</p>
<p>4.	Obtain information of all customers who are permitted to use or whose transactions are the designated financial institution’s payable thru account.</p>
<p>5.	Order closure of payable thru and/or correspondent account.</p>
<p>Section 312:<br />
Requires EDD for Correspondent and Private Banking.<br />
The correspondent banking rule applies to bank, broker deals, future commission merchants, mutual funds and introducing broker dealers<br />
The due diligence requirements are based on risk based approach.<br />
EDD for private banking should include senior political figures, their families and close associates.<br />
To fall under this rule Private Banking account must maintain a USD 1 Million or more of minimum aggregate deposit<br />
Private bankers should identify the benefial owners of the account and their source of funds and how they plan to use it.</p>
<p>Section 313:<br />
Do not transaction with Shell Banks.<br />
In addition it prohibits the respondent bank to permit shell bank to access its correspondent bank account through nested correspondent relationship.</p>
<p>Section 319(b):<br />
Allows the Treasury Secretary or attorney general to issue summons or to subpoena records of, a foreign bank that maintains a correspondent account in the US.</p>
<p>Foreign banks must designate a registered agent in US to accept service of such subpoenas.</p>
<p>Section 319(a):<br />
If the funds the US pursues are deposited in a foreign bank  which keeps  an interbank account at a US bank, the US may attempt to forfeit the crime-tainted funds in the US account.</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/08/30/section-311-etc-acams-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FATF Membership Points (ACAMS Notes)</title>
		<link>http://chetan.krshah.org/2009/08/24/fatf-membership-points-acams-study-guide/</link>
		<comments>http://chetan.krshah.org/2009/08/24/fatf-membership-points-acams-study-guide/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 00:43:41 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[AML]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/08/24/fatf-membership-points-acams-study-guide/</guid>
		<description><![CDATA[To qualify for FATF membership, a country must :
- Strategically Important.
- Be a member of FATF style body(for example : Asia Pacific Group(APG), Eurasian Group (EAG) etc.
- Provide a letter from appropriate government official making a political commitment to implement FATF recommendations (1, 5, 10 and 13 at the minimum) within a reasonable time frame [...]]]></description>
			<content:encoded><![CDATA[<p>To qualify for FATF membership, a country must :</p>
<p>- Strategically Important.</p>
<p>- Be a member of FATF style body(for example : Asia Pacific Group(APG), Eurasian Group (EAG) etc.</p>
<p>- Provide a letter from appropriate government official making a political commitment to implement FATF recommendations (1, 5, 10 and 13 at the minimum) within a reasonable time frame and to undergo a mutual evaluation process.</p>
<p>- Criminilize money laundering and terrorist financing; require financial institutions to perform KYC, EDD and report suspicious transaction to the country&#8217;s Financial Intelligence Unit (FIU).</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/08/24/fatf-membership-points-acams-study-guide/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet Casinos and Prepaid Cards/E-Cash (ACAMS Notes)</title>
		<link>http://chetan.krshah.org/2009/08/22/internet-casinos-and-prepaid-cardse-cash-acams-notes/</link>
		<comments>http://chetan.krshah.org/2009/08/22/internet-casinos-and-prepaid-cardse-cash-acams-notes/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 22:23:43 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[AML]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/08/22/internet-casinos-and-prepaid-cardse-cash-acams-notes/</guid>
		<description><![CDATA[Internet Casinos
•	Prime mode of payment used is Credit Card.
•	Casinos being on offshore location prevents prosecution
•	Government receive tax dollars due to internet casino and therefore have lax controls
•	Citibank has banned the usage of Visa and Mastercard for Internet Casino usage
•	Banks can identify the type of transaction conducted via credit card by interpreting the transaction codes.
•	Internet enables [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Casinos<br />
•	Prime mode of payment used is Credit Card.<br />
•	Casinos being on offshore location prevents prosecution<br />
•	Government receive tax dollars due to internet casino and therefore have lax controls<br />
•	Citibank has banned the usage of Visa and Mastercard for Internet Casino usage<br />
•	Banks can identify the type of transaction conducted via credit card by interpreting the transaction codes.<br />
•	Internet enables fast transmission of money<<br />
•	Online gambling does not lend to any cash movement.</p>
<p>PrePaid Cards and E-Cash<br />
•	New Payment technologies like internet payment, mobile payment, digital precious metals, prepaid cards)<br />
•	Prepaid cards are like cash, they are portable, exchangeable, valuable and anonymous.<br />
•	The cards can be purchased by one person and used by another and that too in a different part of the world.<br />
•	There maybe an account for each prepaid card issued or alternatively there may be a pooled account that holds funds for all issued prepaid cards.<br />
•	Potential Risk Factors</p>
<li>Anonymous card holders</li>
<li>Anonymous funding of cards </li>
<li>Can be virtually anywhere on the globe</li>
<li>No limits on how many cards an individual can buy.</li>
<li>High  Value Limits</li>
<li>Offshore card issuers may not observe laws in all jurisdictions</li>
<p>•	In Germany, adding value to a prepaid card is considered as making a deposit and therefore the card issuers are considered credit institutions which require full banking license and follow country’s AML regulations.<br />
•	Electronic Purses (or stored value cards) are cards that electronically store value on the chips embedded on the card.<br />
•	E-Purses issuance is declining<br />
•	Potential Risk Factors for E-purses</p>
<li>Anonymous users</li>
<li>Anonymous funding </li>
<li>No High Value</li>
<li>No Transaction Records</li>
<p>•	Measure to limit Prepaid/E-Purse vulnerability to AML</p>
<li>Limit number of cards issued to a customer</li>
<li>Assign High Value Limit</li>
<li>Track Transactions</li>
<li>Linking payments technology to banking institutions</li>
<li>Establishment of global standards</li>
<li>Record keeping procedures requirements for the issuing banks</li>
<li>Capability to examine the records by investigating authorities</li>
<p> <a href="http://chetan.krshah.org/2009/08/22/internet-casinos-and-prepaid-cardse-cash-acams-notes/#more-63" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/08/22/internet-casinos-and-prepaid-cardse-cash-acams-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spousal IRA</title>
		<link>http://chetan.krshah.org/2009/08/05/spousal-ira/</link>
		<comments>http://chetan.krshah.org/2009/08/05/spousal-ira/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 00:47:59 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/08/05/spousal-ira/</guid>
		<description><![CDATA[I cannot stress enough the importance of saving money using Roth IRA.  Roth IRA is a great vehicle to save money as the investment proceeds from this account are completely tax free.  That means that if you make a 20%, 30% or any number of profit on your investment, IRS cannot ask you [...]]]></description>
			<content:encoded><![CDATA[<p>I cannot stress enough the importance of saving money using Roth IRA.  Roth IRA is a great vehicle to save money as the investment proceeds from this account are completely tax free.  That means that if you make a 20%, 30% or any number of profit on your investment, IRS cannot ask you to pay income on that profit.</p>
<p>Which makes me think to open a Roth IRA account for my wife also.  She does not work and therefore has no income to report on our joint Income tax. The question is can I open a Roth IRA for her too and contribute the maximum allowable limit in her account also (in addition to making my 100% contribution to my Roth IRA).  The answer is YES, you can contribute to your spouse&#8217;s Roth IRA account (even if s/he does not work).  </p>
<p>IRS Link : http://www.irs.gov/newsroom/article/0,,id=134667,00.html</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/08/05/spousal-ira/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Buying Call Options.</title>
		<link>http://chetan.krshah.org/2009/05/15/buying-call-options/</link>
		<comments>http://chetan.krshah.org/2009/05/15/buying-call-options/#comments</comments>
		<pubDate>Fri, 15 May 2009 19:43:42 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/05/15/buying-call-options/</guid>
		<description><![CDATA[Lately I have been hearing that &#8220;buy and hold&#8221; is dead. I am not sure whether I am completely sold on that thought but I do believe in keeping small (10% or less) portion of my investing funds assigned to short term trading. Before my &#8220;options&#8221; days I used to buy a stock outright and [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I have been hearing that &#8220;buy and hold&#8221; is dead. I am not sure whether I am completely sold on that thought but I do believe in keeping small (10% or less) portion of my investing funds assigned to short term trading. Before my &#8220;options&#8221; days I used to buy a stock outright and then sell it when it fetched me a pre-determined profit margin. Thus if the stock price was $10, it would have costed me $1000 to buy 100 shares. I would sell it when it hits $15 thus making a $500 profit due to this transaction. i. e. : 50% return.</p>
<p>From options perspective it is all about &#8220;differences&#8221;. Please refer to my <a href="http://chetan.krshah.org/2008/01/25/options/">options </a>blog to get an overview of what call and put options mean.</p>
<p>Therefore in this scenario, if the call option for this stock is trading at a $1 I would be able to buy 10 contracts (each contract comprises of 100 shares). If the stock hits $15, the option value will rise by $4 thus making it a $5 value option. Since I bought 10 contracts, my profit will be $4000 as compared to $500 if I had bought the stock outright. Taking the options route I was able to get a 400% as compared to a meagre 50% by taking the stock purchase route.</p>
<p>Caution :<br />
1. This strategy only works when you are buying a stock to sell it in a short time period. </p>
<p>2. Options do expire at a predetermined date. If the stock goes down below the strike price then the option is worthless and you will end up losing the entire ($1000 in the above example). If you had taken the stock route, atleast you will be holding the stock and have a chance to recuperate your losses in future.</p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/05/15/buying-call-options/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Watchlist filtering white paper</title>
		<link>http://chetan.krshah.org/2009/01/07/watchlist-filtering-white-paper/</link>
		<comments>http://chetan.krshah.org/2009/01/07/watchlist-filtering-white-paper/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 21:18:09 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[AML]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2009/01/07/watchlist-filtering-white-paper/</guid>
		<description><![CDATA[I have written a white paper on watch list filtering. Please feel free to comment on it.
Link to White Paper on Watch List Filtering
]]></description>
			<content:encoded><![CDATA[<p>I have written a white paper on watch list filtering. Please feel free to comment on it.</p>
<p><a href="http://banktech.com/whitepaper/Regulation-Compliance/Anti-Money-Laundering-AML/watch-list-filtering-solution-consideration-wp1229532009591;jsessionid=Q25IMBYZUTUM0QSNDLOSKHSCJUNN2JVN?articleID=53900003">Link to White Paper on Watch List Filtering</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2009/01/07/watchlist-filtering-white-paper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Autonumber in Microsof Excel (works after inserting rows)</title>
		<link>http://chetan.krshah.org/2008/10/31/autonumber-in-microsof-excel-works-after-inserting-rows/</link>
		<comments>http://chetan.krshah.org/2008/10/31/autonumber-in-microsof-excel-works-after-inserting-rows/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 15:39:28 +0000</pubDate>
		<dc:creator>Chetan Shah</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://chetan.krshah.org/2008/10/31/autonumber-in-microsof-excel-works-after-inserting-rows/</guid>
		<description><![CDATA[If you want the autonumber to work even after you insert a row in Excel, use the following formula.
=CELL(&#8221;contents&#8221;, INDIRECT(CONCATENATE(&#8221;B&#8221;, ROW()-1)))+1
I am assuming the list of values are in B column.
A simple formula =&#8221;aboverow&#8221;+1 does not work if you insert a new row which falls in the value range.
If you have a better way of [...]]]></description>
			<content:encoded><![CDATA[<p>If you want the autonumber to work even after you insert a row in Excel, use the following formula.</p>
<p>=CELL(&#8221;contents&#8221;, INDIRECT(CONCATENATE(&#8221;B&#8221;, ROW()-1)))+1</p>
<p>I am assuming the list of values are in B column.</p>
<p>A simple formula =&#8221;aboverow&#8221;+1 does not work if you insert a new row which falls in the value range.</p>
<p>If you have a better way of doing this please let me know <img src='http://chetan.krshah.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://chetan.krshah.org/2008/10/31/autonumber-in-microsof-excel-works-after-inserting-rows/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
