<?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>Istanto Blog - Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online. &#187; Tips &amp; Trick</title>
	<atom:link href="http://www.istanto.net/category/tips-trick/feed" rel="self" type="application/rss+xml" />
	<link>http://www.istanto.net</link>
	<description>Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online.</description>
	<lastBuildDate>Sat, 04 Feb 2012 23:09:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Stop WP-CRON.php From Using To Much CPU Usage</title>
		<link>http://www.istanto.net/how-to-stop-wp-cron-php-from-using-to-much-cpu-usage.html</link>
		<comments>http://www.istanto.net/how-to-stop-wp-cron-php-from-using-to-much-cpu-usage.html#comments</comments>
		<pubDate>Thu, 05 Jan 2012 06:46:18 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[Cron Job]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-cron]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2569</guid>
		<description><![CDATA[Three days ago arvixe telling my site using to much their cpu usage. They complaint about wp-cron.php and index.php process which I believe it was looping and won&#8217;t stop in background. wp-cron is just like cron job in normal condition. The crazy thing everyone doesn&#8217;t know is, it&#8217;s loading each time visitors coming to their [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2012/01/ist-cron-job.jpg"><img class="alignleft size-thumbnail wp-image-2572" title="ist-cron-job" src="http://www.istanto.net/wp-content/uploads/2012/01/ist-cron-job-150x150.jpg" alt="" width="150" height="150" /></a>Three days ago arvixe telling my site using to much their cpu usage. They complaint about wp-cron.php and index.php process which I believe it was looping and won&#8217;t stop in background. wp-cron is just like cron job in normal condition. The <em>crazy</em> thing everyone doesn&#8217;t know is, it&#8217;s loading each time visitors coming to their site. I don&#8217;t know why wordpress don&#8217;t fix it or at least give options to run it each time frame.</p>
<p style="text-align: justify;">For a site using wordpress and have a lot articles/pages the optimization for it is just disable wp-cron, another option is disable wp-cron and running cron job from cpanel which can be setup in time frame.</p>
<p style="text-align: justify;">You will lose schedulle post feature but it&#8217;s better than get suspended right? You still can run cron in time frame you setup from cron job panel than using crazy method like spawn it each time visitors coming to your site. Let&#8217;s do this thing, it&#8217;s very easy&#8230;</p>
<ol>
<li>Open your wp-config.php and put this after the &lt;?php. <strong>define(&#8216;DISABLE_WP_CRON&#8217;, true);</strong></li>
<li>Open wp-includes folder and find a file with name <strong>cron.php</strong></li>
<li>Find string &#8220;<strong>function wp_cron() {</strong>&#8220;</li>
<li>Replace all function with code below :<br />
function wp_cron()<br />
{// Prevent infinite loops caused by lack of wp-cron.php<br />
if ( strpos($_SERVER['REQUEST_URI'], &#8216;/wp-cron.php&#8217;) !== false || ( defined(&#8216;DISABLE_WP_CRON&#8217;) &amp;&amp; DISABLE_WP_CRON ) )<br />
return;if ( false === $crons = _get_cron_array() )<br />
return;$local_time = time();<br />
$keys = array_keys( $crons );<br />
if ( isset($keys[0]) &amp;&amp; $keys[0] &gt; $local_time )<br />
return;$schedules = wp_get_schedules();<br />
foreach ( $crons as $timestamp =&gt; $cronhooks ) {<br />
if ( $timestamp &gt; $local_time ) break;<br />
foreach ( (array) $cronhooks as $hook =&gt; $args ) {<br />
if ( isset($schedules[$hook]['callback']) &amp;&amp; !call_user_func( $schedules[$hook]['callback'] ) )<br />
continue;<br />
// spawn_cron( $local_time );<br />
break 2;<br />
}<br />
}<br />
}</li>
<li>Save it/replace cron.php file with the new edited cron.php</li>
<li style="text-align: justify;">Done</li>
</ol>
<p style="text-align: justify;">After doing this your wp-cron has been disabled and never ever run each time a visitors coming to your site. But you will lose schedulle post, to fix this problem open your hosting control panel and set cron job from there to run your wp-cron.php. You can set it run each 24 hours or in time frame you need.</p>
<p style="text-align: justify;">After doing this small optimization arvixe not complaint to me. It&#8217;s mean this is maybe the big issue for worpdress to update their cron setting.</p>
<p>That&#8217;s a share for today, have a great day everyone, and Happy New Year! <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/how-to-stop-wp-cron-php-from-using-to-much-cpu-usage.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Fix WordPress Database Error</title>
		<link>http://www.istanto.net/how-to-fix-wordpress-database-error.html</link>
		<comments>http://www.istanto.net/how-to-fix-wordpress-database-error.html#comments</comments>
		<pubDate>Mon, 07 Nov 2011 03:37:46 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Computer And Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[database error]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql cache]]></category>
		<category><![CDATA[optimize database]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2559</guid>
		<description><![CDATA[If you are using wordpress or other cms and have a lot of data in you sql, your site usually will unavailable with common message database error. What actually error on your database? Nothing, this is all about query limitation on your hosting. Your blog will grown in time, say in the last months you [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If you are using wordpress or other cms and have a lot of data in you sql, your site usually will unavailable with common message database error. What actually error on your database? Nothing, this is all about query limitation on your hosting. Your blog will grown in time, say in the last months you got 10,000 readers and in the next month you got 1,000,000 readers. When people access your site it&#8217;s continuously reading data again from your database, when it to much some hosting will stop it to executed. This is not good for SEO because your potential readers will gone (robots also can&#8217;t indexing full your site). Usually bad hosting will ask you to upgrade into vps or dedicated server. Everyone know it, there is no free lunch, you will have to pay more and more, if you got good revenue maybe it&#8217;s fine but how if not?</p>
<p style="text-align: justify;">In this short articles I will give some tips and trick to fix common wordpress database problem. When you&#8217;re planning to get a lot of visitors to your site you better looking for a ways to optimize your sql query. There is one options for this, using DB cache so when people coming to your site request the articles server don&#8217;t need to re-query database again. You just need to sacrifice some memory and space which may be better in result if you&#8217;re not planning to go for vps or dedicated at the moment.</p>
<p style="text-align: justify;">How to do this? Search on google is good idea, I found many articles for database caching last night, <a href="http://www.howtogeek.com/howto/programming/speed-up-your-web-site-with-mysql-query-caching/" target="_blank">this is</a> the best one. For wordpress users there is a simple solution. Just get and install <a href="http://wordpress.org/extend/plugins/db-cache-reloaded-fix/" target="_blank">DB-CACHE-RELOADED</a> plugin, setting it as you need, example you want cache stays for 24 hours or maybe just 10 minutes.</p>
<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2011/11/ist-db-cache-reloaded.jpg"><img class="aligncenter size-medium wp-image-2560" title="ist-db-cache-reloaded" src="http://www.istanto.net/wp-content/uploads/2011/11/ist-db-cache-reloaded-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p style="text-align: justify;">In this sample I set 180 minutes (3 hours). Cache will stay for 3 hours and then when it expired all cache files will deleted from cache folder and generated new cache. The result after using this plugin is better than not using it. When I tested it I have never seen wordpress database error again (of course because when someone read articles again server doesn&#8217;t need to re-read again from the sql). If you like this plugin you can spare some money for Ivan for his great works <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="text-align: justify;">The effect?? I&#8217;m not sure but in the past when I&#8217;m using similar plugin like this I have error on feed, when this happen disable the plugin clear all the cache files and reactivate plugin again. But if not then you don&#8217;t need to do anything just keep monitors your site availability and traffic. Before I close this articles I want to tell you, you can also combine this plugin with auto cron job to repair and optimize your mysql, just search on my blog you will find the articles. This combination will giving a better result.</p>
<p style="text-align: justify;">That&#8217;s share for today, I need back to work on project he he, Have a great day everyone <img src='http://www.istanto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/how-to-fix-wordpress-database-error.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ideas On How To Become A Disciplined Forex Trader</title>
		<link>http://www.istanto.net/ideas-on-how-to-become-a-disciplined-forex-trader.html</link>
		<comments>http://www.istanto.net/ideas-on-how-to-become-a-disciplined-forex-trader.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 08:59:35 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Forex]]></category>
		<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[capital]]></category>
		<category><![CDATA[forex]]></category>
		<category><![CDATA[forex strategy]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[trader]]></category>
		<category><![CDATA[trading]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2552</guid>
		<description><![CDATA[Attempting to trade currencies can become very complicated. There is definitely a lot of lingo you must be privy to, and that&#8217;s not even touching on the other knowledge you need in order to succeed. Find out about what it takes to achieve financial success in the Foreign Exchange Market with these tips. Learn the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2011/11/How-To-Become-A-Disciplined-Forex-Trader.jpg"><img class="alignleft size-full wp-image-2553" title="How To Become A Disciplined Forex Trader" src="http://www.istanto.net/wp-content/uploads/2011/11/How-To-Become-A-Disciplined-Forex-Trader.jpg" alt="" width="300" height="300" /></a>Attempting to trade currencies can become very complicated. There is definitely a lot of lingo you must be privy to, and that&#8217;s not even touching on the other knowledge you need in order to succeed. Find out about what it takes to achieve financial success in the Foreign Exchange Market with these tips.</p>
<p style="text-align: justify;">Learn the technical language used in the currency trading world. When reading informative forex news articles, there may be terms used that you do not understand. By keeping a glossary of commonly used forex terms at hand you will be able to quickly find out what the terms mean and the greater your understanding of the news articles will be.</p>
<p style="text-align: justify;">There are many automated Forex trading systems on the market. You will get a lot of results from any search engine. Automated systems are making their mark and are highly popular. This type of technology enables you to turn profits and approach a more diversified trading method.</p>
<p style="text-align: justify;">You can always stand out of a trade, you have that personal right. If you are doubtful about your position of a trade, it is best to stay out of it. If you do not have enough information to make an informed decision, it&#8217;s better to sit out of the trade than to make risky uninformed decisions.</p>
<p style="text-align: justify;">Forex is very unique in that it is one of the few international exchanges in existence. It is open twenty four hours a day and you are competing against people from all over the world, many which may have higher intelligence and experience than you at the game. Make sure you are completely comfortable with how things work before you &#8220;step into the ring&#8221; as it can be a financial downfall for you if you aren&#8217;t prepared.</p>
<p style="text-align: justify;">Successful currency traders enjoy trading. If you spend most of your days with sweaty palms and indigestion from staring at your trading platform, then something needs to change. If you are stressed out with trading instead of calm, you are more likely to make poor choices. Relax and enjoy the process!</p>
<p style="text-align: justify;">The best forex trading methods are also the simplest. A more complicated trading method is not more likely to be successful than a simple one. All a complicated trading method will do is confuse you, leading you to mistrust your plan, overextend your account, and eventually suffer major losses of capital.</p>
<p><span id="more-2552"></span></p>
<p style="text-align: justify;">When learning about the research process that will make you successful with the Forex market, take a good bit of time to learn about inter-market analysis. You will learn how to watch the other markets to try to figure out how they are going to influence the Forex market. This includes stocks, real estate and commodities.</p>
<p style="text-align: justify;">Peak</p>
<p style="text-align: justify;">Never trade if you are feeling unwell or sick. Your physical condition should be at a prime rate when you are thinking about making trades, as heavy analysis is required at peak performance. Only trade when you are feeling at the top of your game, to maximize your profit over time.</p>
<p style="text-align: justify;">Trading while the market is at its peak will be a great way to maximize on your profits. So no matter which time zone you live in, it&#8217;s always a good idea to set your schedule around the active markets. Remember, Forex is a worldwide trading platform, so while the sun may be down in your neck of the woods, it&#8217;s day-trading time somewhere else.</p>
<p style="text-align: justify;">Success is relative to everyone, but if you had to give it a universal definition, you could say that it&#8217;s profiting instead of losing. This should be your ultimate goal in Forex and the main reason that you&#8217;re reading the tips in the above article. Don&#8217;t forget that you need to use this information to profit. Flying solo is a surefire way to crash.</p>
<p style="text-align: justify;">Written By <em>investorsibuks[at]yahoo.com</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/ideas-on-how-to-become-a-disciplined-forex-trader.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tips For Trading On The Foreign Exchange Market</title>
		<link>http://www.istanto.net/quick-tips-for-trading-on-the-foreign-exchange-market.html</link>
		<comments>http://www.istanto.net/quick-tips-for-trading-on-the-foreign-exchange-market.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 09:51:54 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Forex]]></category>
		<category><![CDATA[Guest Blogger]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[Exchange Market]]></category>
		<category><![CDATA[Foreign Exchange Market]]></category>
		<category><![CDATA[forex]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[profits]]></category>
		<category><![CDATA[trading]]></category>
		<category><![CDATA[Trading Tips]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2547</guid>
		<description><![CDATA[Quick Tips For Trading On The Foreign Exchange Market Investing using the currency trader forex can be quite dangerous for an inexperienced investor. Fortunately, there are brokers and other tools out there to protect you from experiencing losses. Don&#8217;t be ashamed to ask for help. This article also can function as help, as it will [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Quick Tips For Trading On The Foreign Exchange Market</p>
<p style="text-align: justify;">Investing using the currency trader forex can be quite dangerous for an inexperienced investor. Fortunately, there are brokers and other tools out there to protect you from experiencing losses. Don&#8217;t be ashamed to ask for help. This article also can function as help, as it will offer some advice about investing using forex.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Trading</strong></span></p>
<p style="text-align: justify;">When you first start trading forex consider opening a &#8220;cent&#8221; account or something similar so you can trade in very small amounts. This allows you to practice trading on the real market without risking much per trade. You can try different strategies and learn how trading works in the real market.</p>
<p style="text-align: justify;">Don&#8217;t get into Forex trading unless you have a good amount of capital to trade. Market action should be the driver behind your trading decisions. When financial circumstances cause you to alter your trades, you may have trouble staying in the market when it temporarily goes against your positions.</p>
<p style="text-align: justify;">When trading in the foreign exchange markets, follow the trends in order to make the best profits. Don&#8217;t buy into something hoping it will turn around. Don&#8217;t sell on a rising currency, and don&#8217;t buy into one that is falling. Trends are more likely to continue than they are to end.</p>
<p style="text-align: justify;">Be patient while trading and show discipline. Trading forex should not be overly exciting. You should make calm, rational decisions. If you aren&#8217;t, then you are in the wrong game. You won&#8217;t make money, except by luck, if you are thrill seeking. Patient disciplined trading is the best way to survive for the long term.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Trader</strong></span></p>
<p style="text-align: justify;">Do not let the hype around Forex fool you into thinking you need to spend money on wonder methods and that you will be able to make money quickly. Forex is about studying the market and working hard to become a good trader. You can get most of the resources you need for free on the internet.</p>
<p style="text-align: justify;">To protect yourself from fraud, thoroughly research any Forex trader. Forex scams are plentiful, and taking the time to check people out can protect your money. If you&#8217;re pressed for time, you can do a quick search of the trader and see what kind of commentary you find. If you see negative commentary or if the trader is not being discussed, you should avoid them.</p>
<p style="text-align: justify;">High rewards for minimal risk is what every forex trader is looking for. Be wary of fraud companies and scam artists that prey on this desire, though. There are limits to the possibilities in forex, and no trader can generate profits without taking risks. Once a new trader gets a feel for the market he or she will have a better nose for the too-good-to-be-true scams.</p>
<p style="text-align: justify;">Use leverage with caution. Using leverage can lead to large gains if properly applied, however, without careful study and tracking of trends you can leverage yourself into a hole. If you are a less experienced trader do not leverage greater that 10:1. This will allow you to gain without risking large quantities of your capital should the market turn.</p>
<p style="text-align: justify;">Forex offers a good opportunity for an investor to try his chance at trading currencies. It is rife with the possibility for failure, but with the right advice failure is far less likely. This article had the a goal to equip you with the ammunition to turn profits using forex.</p>
<p style="text-align: justify;">Written By <em>investorsibuks[at]yahoo.com</em><strong style="text-align: justify;"></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/quick-tips-for-trading-on-the-foreign-exchange-market.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make Money: Strategy To Earn Money In Neobux With Guarantee Result</title>
		<link>http://www.istanto.net/make-money-strategy-to-earn-money-in-neobux-with-guarantee-result.html</link>
		<comments>http://www.istanto.net/make-money-strategy-to-earn-money-in-neobux-with-guarantee-result.html#comments</comments>
		<pubDate>Tue, 16 Aug 2011 12:50:28 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Online Business]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[make money formula]]></category>
		<category><![CDATA[neobux]]></category>
		<category><![CDATA[neobux strategy]]></category>
		<category><![CDATA[Referrals]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2543</guid>
		<description><![CDATA[Hi Everyone, In the past articles I promised to share some of my strategy for my neobux direct referrals and here is the one. This strategy need money to start but it not very big and I believe everyone can accept it. As we already know the key to earn more money in neobux is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi Everyone, In the past articles I promised to share some of my strategy for my neobux direct referrals and here is the one. This strategy need money to start but it not very big and I believe everyone can accept it. As we already know the key to earn more money in neobux is referrals. The problem is rented referrals <del><em>sucks</em></del> and it&#8217;s may costly more than money we earn back.</p>
<p style="text-align: justify;">In this strategy we will using referrals but not rented referrals, it&#8217;s direct referrals which there is no cost to earn from them. You may have problem to get real referrals, so I will teach you how to get them. As we already know there is some PTS (paid to sign up) site which promised to send us a guaranteed sign up.</p>
<p style="text-align: justify;">We can use this PTS to promote our link to get direct referrals. Of course we need to calculate everything first so we will not loss any cent. Example: 4 ads daily from 1 direct referrals will make us earn $0,04 daily. If they click 4 ads daily for 4 (fourth) days we will earn $0,04&#215;4=$0,16 Take a deep breath here is the key&#8230; You pay them $0,10 for sign-up and active for 4(fourth) day so you will get profit $0,16-$0,10=$0.06</p>
<p style="text-align: justify;">$0,06 sounds to small but how if we buy 1,000 direct referrals 1,000x$0,06 = $60&#8230; So you will earn $60 in only 4 (fourth) days. If in a month you will earn 30/4x$60 = $450 a month! more direct referrals you buy more money for you! Remember <span style="text-decoration: underline;"><strong>you will not loss anything</strong></span> using this strategy because you don&#8217;t have to pay them if they just signup and not click at least 16 ads for you.</p>
<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2011/08/referrals.gif"><img class="aligncenter size-medium wp-image-2544" title="referrals" src="http://www.istanto.net/wp-content/uploads/2011/08/referrals-300x158.gif" alt="" width="300" height="158" /></a></p>
<p style="text-align: justify;">Simple as you think <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  The hardest job for you is to find legit and cheap PTS site to promoting your offers. People love free stuff, I believe they will take your offers as long both of you earn money. This strategy also will work on paid offers, example you promote paid hosting, you can use PTS to get people to sign-up and buy the product but your shares to them should less than commission that you will get per-sales.</p>
<p style="text-align: justify;">Better if we get 30% shares more than we got nothing. Internet is a big place and there is such a big opportunity. Poor people can be rich on Internet if he know the formula, We need to think smart.</p>
<p style="text-align: justify;">That&#8217;s share for today, have a nice day everyone <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/make-money-strategy-to-earn-money-in-neobux-with-guarantee-result.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Everything You Need To Gain Profit in Forex Trading</title>
		<link>http://www.istanto.net/everything-you-need-to-gain-profit-in-forex-trading.html</link>
		<comments>http://www.istanto.net/everything-you-need-to-gain-profit-in-forex-trading.html#comments</comments>
		<pubDate>Sun, 14 Aug 2011 13:54:24 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Online Business]]></category>
		<category><![CDATA[Tips & Trick]]></category>
		<category><![CDATA[forex]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[profits]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[trading]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2526</guid>
		<description><![CDATA[Hi everyone, In this short articles I will share some of my technique or ways to gain profit in Forex trading. As we already know Forex market is the best place to grown your money if you do the right things on there, but it also risky place if you don&#8217;t know what you&#8217;re doing [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hi everyone, In this short articles I will share some of my technique or ways to gain profit in Forex trading. As we already know Forex market is the best place to grown your money if you do the right things on there, but it also risky place if you don&#8217;t know what you&#8217;re doing on there. Basically there is 2(two) Forex analysis it was Fundamental and Technical. Fundamental will predicted movement based on news, condition, report, etc. Technical will predicted movement based on some indicators, ex: Parabolic, CCI, etc.</p>
<p style="text-align: justify;">Both of this analysis (Fundamental and Technical) are opposite each others. So, You will never find the answer if you following both analysis. You need to choose only 1 (one) <em><span style="text-decoration: underline;">I recommended Fundamental</span></em>. Here is some tips and trick from me. You will need this tips to gain profits. When you&#8217;re success please spare some to my bank account he he.. <em>JK</em>.</p>
<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2011/08/Forex.jpg"><img class="aligncenter size-medium wp-image-2534" title="Forex" src="http://www.istanto.net/wp-content/uploads/2011/08/Forex-300x283.jpg" alt="" width="300" height="283" /></a></p>
<p style="text-align: justify;">1. Analyze the yearly and monthly chart, Find out what the Major trends, Do not fight it.</p>
<p style="text-align: justify;">This is basically fits for long terms traders. Sometimes people don&#8217;t know how to analyze MAJOR trends. Forex indicators only shown a 5 minutes or 30 minutes chart and newbie don&#8217;t know they should buy or sell. Once movement false they will cry and out the market with result loos their money.</p>
<p style="text-align: justify;">2. Reads the news from best and trusted financial producer.</p>
<p style="text-align: justify;">This is very good tips for analysis. I give a sample, when I read the news about riots in London (3 or 4 days ago) I was predicted GBP (Great Britain Pound Sterling) will going down and it&#8217;s happen GBP down really bad in that day. In another sample I remember when Obama will become the United States president. USD (US dollars) strong for 4 days continuously! When there is no news or event like this how we can predict the movement? Read about unemployment report or S&amp;P (standard and poor)  rating. This will help you to predicted market movement.</p>
<p style="text-align: justify;">3. When to enter, Market time, Fast and stable Internet connection.</p>
<p style="text-align: justify;">I already give this tips long time ago, you can read it from <a title="Learn session to trade" href="http://www.istanto.net/forex-learn-time-to-trade.html">this link</a>. Use google search to find when the time market open. Use a service from windows time (or other) and synchronize your local time. Usually (not always) when first market open it will going up! <strong>but remember it&#8217;s not always happening</strong>.</p>
<p style="text-align: justify;">Make sure you&#8217;re using fast and stable Internet connection because this is an real time trading platform which need an Internet connection. Don&#8217;t ever use slow connection! (1 pips hurt)</p>
<p style="text-align: justify;">4. Money Management.</p>
<p style="text-align: justify;">If you&#8217;re not planning to get margin call and loose you money make sure you calculate everything before you open position. You should create a small calculator (use excel or hire professionals to created it) Calculate how much you will trade with some money you have in account.</p>
<p style="text-align: justify;">5. Stop when profit and start it on next day.</p>
<p style="text-align: justify;">Sometime when we got profit we will crazy to trade, this is bad. Once you got profit and you think it&#8217;s enough stop it. Why? This is about your emotional, usually people will have their best focus in 4-6 hours daily. When you&#8217;re not focus again how you can trade?</p>
<p style="text-align: justify;">6. Buy premium signal.</p>
<p style="text-align: justify;">Some Forex professional trader out there will give you signal about market prediction. Of course you need the premium one (pay them) which you will get a real suggestion from professional traders. Don&#8217;t take free signal seriously it&#8217;s more likely gambling.</p>
<p style="text-align: justify;">7. Use the scalping technique.</p>
<p style="text-align: justify;">Read my old article about <a title="forex strategy" href="http://www.istanto.net/forex-strategywait-and-see-daily-chart.html">wait and see daily chart</a>. Learn <a title="forex strategy" href="http://www.istanto.net/forexlearn-to-set-stop-loss-and-target-point.html">how to stop loss and target point</a> (Technical analysis). Learn <a title="forex strategy" href="http://www.istanto.net/forex-strategy-lock-your-profit-point-to-handle-market-movement.html">how to lock market movement</a>. You can search more in google search there is a lot great result for Forex strategy.</p>
<p style="text-align: justify;">8. Analyze Forex and Commodities.</p>
<p style="text-align: justify;">When gold price going down it will affect some currencies using gold as their base. I will just share 1 I know the AUD (Australian dollar) movement based on gold price. <em>*sometimes there is delay so this is your chance :p</em></p>
<p style="text-align: justify;"><span style="color: #ff0000;"><strong>What you should not do</strong></span>:</p>
<p style="text-align: justify;">1. Using Forex Robots.</p>
<p style="text-align: justify;">This is really bad technique, If you&#8217;re trading on forex using robots. Even some people claim they &#8216;re not doing anything and robots take care for all tradings I believe this is just a <em>words of marketing</em>. Just curious if they robots can make them billion dollars why they sell it for some dollars. Help others? No! <span style="text-decoration: underline;"><em>there is no free lunch</em></span> remember that.</p>
<p style="text-align: justify;">2. Don&#8217;t Trade if you don&#8217;t know the pair currency character.</p>
<p style="text-align: justify;">When you don&#8217;t know the pair currency characters I suggest you to learn using an virtual account first. Ex: GBP/USD have a pips range 100-300 daily. The result will not same with other pair.</p>
<p style="text-align: justify;">That share for today, Have a good day everyone <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/everything-you-need-to-gain-profit-in-forex-trading.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

