<?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>AmiBroker Knowledge Base &#187; AmiQuote</title>
	<atom:link href="http://www.amibroker.com/kb/category/amiquote/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amibroker.com/kb</link>
	<description>Providing you with tips &#038; tricks for everyday AmiBroker use</description>
	<lastBuildDate>Sat, 17 Dec 2011 10:18:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AmiQuote and free data from Yahoo</title>
		<link>http://www.amibroker.com/kb/2007/08/04/amiquote-and-free-data-from-yahoo/</link>
		<comments>http://www.amibroker.com/kb/2007/08/04/amiquote-and-free-data-from-yahoo/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 19:19:35 +0000</pubDate>
		<dc:creator>Tomasz Janeczko</dc:creator>
				<category><![CDATA[AmiQuote]]></category>
		<category><![CDATA[Data]]></category>

		<guid isPermaLink="false">http://www.amibroker.com/kb/2007/08/04/amiquote-and-free-data-from-yahoo/</guid>
		<description><![CDATA[There are a couple of things you need to know about Yahoo Finance pages that AmiQuote uses to download &#8220;historical&#8221; and &#8220;current&#8221; quotes.
Current quotes are quotes for current day (or previous day if there is no trading session today). For example MSFT current quote page is here:
http://finance.yahoo.com/q?s=MSFT
AmiQuote uses rather &#8220;download data&#8221; link which is: http://download.finance.yahoo.com/d/quotes.csv?s=MSFT&#038;f=sl1d1t1c1ohgv&#038;e=.csv
But [...]]]></description>
			<content:encoded><![CDATA[<p>There are a couple of things you need to know about Yahoo Finance pages that AmiQuote uses to download &#8220;historical&#8221; and &#8220;current&#8221; quotes.</p>
<p>Current quotes are quotes for current day (or previous day if there is no trading session today). For example MSFT current quote page is here:<br />
<a href="http://finance.yahoo.com/q?s=MSFT">http://finance.yahoo.com/q?s=MSFT</a><br />
AmiQuote uses rather &#8220;download data&#8221; link which is: <a href="http://download.finance.yahoo.com/d/quotes.csv?s=MSFT&#038;f=sl1d1t1c1ohgv&#038;e=.csv">http://download.finance.yahoo.com/d/quotes.csv?s=MSFT&#038;f=sl1d1t1c1ohgv&#038;e=.csv</a><br />
But it is not relevant because both show same current quote.</p>
<p>Now there is a second source. Historical quotes are downloaded from Historical Prices page. For example MSFT historical page is here: <a href="http://finance.yahoo.com/q/hp?s=MSFT">http://finance.yahoo.com/q/hp?s=MSFT</a> (again AmiQuote uses rather plain text link: <a href="http://ichart.finance.yahoo.com/table.csv?s=MSFT&#038;d=7&#038;e=4&#038;f=2007&#038;g=d&#038;a=2&#038;b=13&#038;c=1986&#038;ignore=.csv">http://ichart.finance.yahoo.com/table.csv?s=MSFT&#038;d=7&#038;e=4&#038;f=2007&#038;g=d&#038;a=2&#038;b=13&#038;c=1986&#038;ignore=.csv</a> )</p>
<p>Why using two sources? That&#8217;s simple: current mode gives data during trading session, while historical is only updated many hours after markets close so both compliment each other. Current mode is also much faster as it downloads as many as 200 symbols at once, while historical must download one by one. So recommended usage is to use Yahoo Current mode everyday, and Yahoo Historical once a week.<br />
Of course you may use historical everyday as well if you have time and fast internet connection.</p>
<p>It is important to understand that AmiQuote is just the downloader (like Internet Explorer) and it does nothing except downloading the data, so if you belive that there is a bad quote &#8211; it is not AmiQuote, but rather Yahoo problem. To verify always go to relevant page (see links above) and check the quote on Yahoo Finance site directly.</p>
<p>It may happen that quotes on Yahoo Current page and Yahoo Historical pages differ. It is so because Yahoo gets them from different data vendors. If this happens the only solution is to report data error to Yahoo.</p>
<p>There are however 2 things you need to know about importing of data:
<ol>
<li>AmiBroker by default imports <strong>split and dividend adjusted data </strong>(&#8221;Adj. Close&#8221; on Yahoo Historical page). For more information on how data are adjusted see Yahoo Help page at: <a href="http://help.yahoo.com/l/us/yahoo/finance/quotes/quote-12.html">http://help.yahoo.com/l/us/yahoo/finance/quotes/quote-12.html</a></p>
<li>AmiBroker by default imports volume in HUNDREDS of shares (so if volume is 183,200 shares, the volume chart will show 1832). NOTE: This will NO LONGER apply in AmiBroker 5.30.
</ol>
<p>These things are adjustable, so if you don&#8217;t like them, you can change them.<br />
The import process of historical quotes is controlled using <strong>aqh.format</strong> file that you will find inside &#8220;Formats&#8221; subfolder. By default it looks as follows (you can open it with Windows Notepad).</p>
<p><code># AmiQuote historical quotes download format (.AQH extension)<br />
<strong>$FORMAT Date_DMY,Open,High,Low,Close,Volume,AdjClose</strong><br />
$SKIPLINES 0<br />
$BREAKONERR 0<br />
$SEPARATOR ,<br />
$DEBUG 1<br />
$AUTOADD 1<br />
$CONT 1<br />
$GROUP 254<br />
<strong>$VOLFACTOR 0.01</strong><br />
</code></p>
<p>Lines marked with bold mark important areas.</p>
<p>$FORMAT line controls the import format. AdjClose field says that AmiBroker should use adjusted price. If you don&#8217;t want adjusted prices simply replace $FORMAT line with:</p>
<p><code>$FORMAT Date_DMY,Open,High,Low,Close,Volume</code><br />
(note no AdjClose field)</p>
<p>$VOLFACTOR line controls the volume multiplier. If you want volume to be expressed in single shares instead of hundreds of shares replace $VOLFACTOR line with:</p>
<p><code>$VOLFACTOR 1</code></p>
<p>The same $VOLFACTOR change should be applied to <strong>aqd.format</strong> file that is responsible for importing data in Yahoo CURRENT mode (if you are using it).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amibroker.com/kb/2007/08/04/amiquote-and-free-data-from-yahoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AmiBroker for FOREX</title>
		<link>http://www.amibroker.com/kb/2006/08/09/amibroker-for-forex/</link>
		<comments>http://www.amibroker.com/kb/2006/08/09/amibroker-for-forex/#comments</comments>
		<pubDate>Wed, 09 Aug 2006 07:56:17 +0000</pubDate>
		<dc:creator>Marcin Gorzynski</dc:creator>
				<category><![CDATA[AFL]]></category>
		<category><![CDATA[AmiQuote]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Indicators]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://www.amibroker.com/kb/2006/08/09/amibroker-for-forex/</guid>
		<description><![CDATA[Here is an article that tells you everything you need to know about using AmiBroker for trading FOREX markets. 
I. DATA
AmiBroker is very flexible as regards the datasources that can be used to feed data to the program.
1) Realtime data
Forex traders usually require a realtime datasource and with AB you have a variety of choices.
The exact [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an article that tells you everything you need to know about using AmiBroker for trading FOREX markets. <span id="more-31"></span></p>
<p><strong>I. DATA</strong></p>
<p>AmiBroker is very flexible as regards the datasources that can be used to feed data to the program.</p>
<p>1) Realtime data</p>
<p>Forex traders usually require a realtime datasource and with AB you have a variety of choices.<br />
The exact configuration process depends on the particular source &#8211; click on the appropriate link to learn how to configure the source of your choice:</p>
<p>- eSignal &#8211; <a href="http://www.amibroker.com/video/esignal.html">http://www.amibroker.com/video/esignal.html</a> <br />
- IQFeed &#8211; <a href="http://www.amibroker.com/iqfeed.html">http://www.amibroker.com/iqfeed.html</a><br />
- Interactive Brokers &#8211; <a href="http://www.amibroker.com/video/ib.html">http://www.amibroker.com/video/ib.html</a><br />
- any source that supports DDE standard (this is a generic communication interface, check if your broker’s application supports DDE) &#8211; <a href="http://www.amibroker.com/dde.html">http://www.amibroker.com/dde.html</a><br />
- any source that delivers the data in MetaStock format &#8211; see:<br />
<a href="http://www.amibroker.com/guide/h_extsources.html">http://www.amibroker.com/guide/h_extsources.html</a></p>
<p> </p>
<p>2) AmiQuote downloader</p>
<p>If you do not require realtime quotations, but it&#8217;s enough for you to have the historical data (e.g. for backtesting your strategies) &#8211; then you can also use AmiQuote downloader program (a companion program that is installed with AmiBroker) and it will allow you to get FREE forex data (both EOD and intraday: 1-, 3-, 5-, 15-, 30-, 60- and 120-minute intervals).</p>
<p>AmiQuote can download the quotations for the following currency pairs:<br />
EURCHF,EURGBP,EURJPY,EURUSD,GBPUSD,USDCHF,USDJPY</p>
<p>The download process is shown in the video:<br />
<a href="http://www.amibroker.net/video/forex.html">http://www.amibroker.net/video/forex.html</a></p>
<p>You need to do the following:<br />
- set up database in AmiBroker (File -&gt; New Database, local database, base<br />
time interval, e.g. EOD)<br />
- run AmiQuote (START -&gt; Programs -&gt; AmiBroker -&gt; AmiQuote )<br />
- add forex symbols in AQ: (Edit -&gt; Add tickers )<br />
- select FOREX as a datasource<br />
- select time range<br />
- check &#8220;Automatic Import&#8221; field<br />
- choose: File -&gt; Start download<br />
The intraday forex quotes are available in the Registered version of AmiQuote only.<br />
Although the entire data range is very long, you must remember that in case of intraday quotes the saefst way is to get data in small parts, few weeks at a time.<br />
Otherwise the request may be too large for the data server to handle it and as a result it will reject the request.<br />
The other important thing to remember is that the data is not avalable for downloads between 13:00 &#8211; 22:00 GMT time (7:00 &#8211; 16:00 EST) &#8211; in these hours the data  vendor&#8217;s  server just rejects all the requests for intraday quotes.</p>
<p> </p>
<p>3) Text files.</p>
<p>You can also use any data that comes in the text files. The ASCII Importer available in AmiBroker is very flexible and accepts practically any standard of data.<br />
To import quotations &#8211; the most convenient is to use File -&gt; Import Wizard.</p>
<p>To learn more about importing the data from ASCII (text) files &#8211; please read the following tutorial:<br />
<a href="http://www.amibroker.com/guide/w_impwizard.html">http://www.amibroker.com/guide/w_impwizard.html</a><br />
<strong> </strong></p>
<p><strong>II.  SYMBOL GUIDE</strong></p>
<p>Once you configure the database (to read realtime data), then all you need to do is to add the symbol via: Symbol -&gt; New menu and AmiBroker will automatically read the data for the selected symbol. Please note that various datasources have different symbology, so please always refer to the data vendor&#8217;s Symbol guide to learn about the required symbol format.</p>
<p>Here you will find the links to the most popular vendors guidlines:</p>
<p>- eSignal:<br />
<a href="http://www.esignalcentral.com/support/symbol/symbol_format.asp#forexGarban">http://www.esignalcentral.com/support/symbol/symbol_format.asp#forexGarban</a><br />
<a href="http://www.esignalcentral.com/support/symbol/forex.asp">http://www.esignalcentral.com/support/symbol/forex.asp</a></p>
<p>- IQFeed:<br />
<a href="http://www.iqfeed.net/symbolguide/index.cfm?symbolguide=guide&amp;displayaction=support&amp;section=guide&amp;web=iqfeed">http://www.iqfeed.net/symbolguide/index&#8230;</a></p>
<p>- Interactive Brokers:<br />
<a href="http://www.amibroker.com/ib.html">http://www.amibroker.com/ib.html</a><br />
In case of Interactive Brokers &#8211; if you have any doubt what format to use -<br />
you can easily check any symbol in IB.</p>
<p>Just enter the symbol in Interactive<br />
Brokers TWS, then change the view to Symbol mode<br />
(View -&gt; Symbol mode). Now you can compose the actual symbol out of three<br />
fields:</p>
<p>SYMBOL-EXCHANGE-TYPE<br />
where:<br />
SYMBOL is the same as the symbol column as displayed in TWS while under<br />
symbol mode<br />
EXCHANGE is the exchange d in TWS while under symbol mode<br />
TYPE  is one the following: STK &#8211; stocks, FUT &#8211; futures, FOP &#8211; options on<br />
futures, OPT &#8211; options, IND &#8211; indexes, CASH -cash (ideal FX)</p>
<p> </p>
<p><strong>III. CHARTING</strong></p>
<p>Since most currency pairs requires 4 decimals to display the rates properly, it&#8217;s necessary to set-up AmiBroker accordingly. The number of decimal places can be defined  in Preferences dialog in:</p>
<p>Tools -&gt; Preferences -&gt; Miscellaneous</p>
<p><img src="http://www.amibroker.com/kb/wp-content/uploads/2006/08/fxprefs.gif" /></p>
<p>The changes will also affect such tools as Fibonacci Extension or Retracement drawing tools.</p>
<p> </p>
<p> </p>
<p><strong>IV. SCANNING and DATA EXPLORATIONS </strong></p>
<p>AmiBroker allows you to perform sophisticated scanning and data explorations (both in realtime and with use of historical quotes). To perform data analysis and display the values of chosen indicators in the customized table &#8211; we can use Automatic Analysis window. The detailed description on how to perform explorations is available at:<br />
<a href="http://www.amibroker.com/guide/h_exploration.html">http://www.amibroker.com/guide/h_exploration.html</a></p>
<p>As a short example &#8211; we will find the crossovers of MACD and its Signal line and additionally &#8211; display values of the symbol we test. The 3rd parameter of <strong><a title="AddColumn()" href="http://www.amibroker.com/f?addcolumn">AddColumn()</a></strong> function allows to customize the number of places after decimal point, so it&#8217;s possible to specify if we need 2 or 4 decimal places. If we use:</p>
<p><strong>AddColumn( Close, &#8220;Close&#8221;, 1.4);</strong><br />
then &#8211; 4 decimal places will be displayed. On the other hand &#8211; if we use:</p>
<p><strong>AddColumn( Close, &#8220;Close&#8221;, 1.2);</strong><br />
then AB will display only 2 decimals.</p>
<p>To perform the test - it&#8217;s necessary to do the following:<br />
- open the Formula Editor (Analysis -&gt; Formula Editor)<br />
- enter the formula:<br />
<code><span>Buy&nbsp;</span><span style="color: #000000">=&nbsp;</span><span style="color: #0000BB">Cross</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">MACD</span><span style="color: #000000">(),&nbsp;</span><span style="color: #0000BB">Signal</span><span style="color: #000000">()&nbsp;);<br />
</span><span style="color: #0000BB">Sell&nbsp;</span><span style="color: #000000">=&nbsp;</span><span style="color: #0000BB">Cross</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">Signal</span><span style="color: #000000">(),&nbsp;</span><span style="color: #0000BB">MACD</span><span style="color: #000000">()&nbsp;);<br />
</span><span style="color: #0000BB">Filter&nbsp;</span><span style="color: #000000">=&nbsp;</span><span style="color: #0000BB">Buy&nbsp;</span><span style="color: #000000">OR&nbsp;</span><span style="color: #0000BB">Sell</span><span style="color: #000000">;<br />
</span><span style="color: #0000BB">AddColumn</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">Close</span><span style="color: #000000">,&nbsp;</span><span style="color: #DD0000">&quot;Close&quot;</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">1.4</span><span style="color: #000000">);</span></code><br />
- Tools -&gt; Send to Auto-analysis<br />
- select the time-range of the exploration<br />
- press EXPLORE</p>
<p>As a result &#8211; we will get a list of MACD/Signal crossover points and the value of the chosen symbol on that bar.</p>
<p><strong>V. BACKTESTING</strong></p>
<p>First of all, it&#8217;s necessary to enter the symbol-specific information into Symbol -&gt; Information page (individually for each ticker). In case of currencies denominated in USD (like EURUSD) the following settings should be used:<br />
<img src="http://www.amibroker.com/kb/wp-content/uploads/2006/08/symbolinfo.gif" /></p>
<p>- <strong>Round lot size</strong> should be equal to 1 </p>
<p>- <strong>Tick size</strong> should be set to <strong>pip value</strong> equal 0.0001 for currencies with four decimal digits and to 0.01 for currencies with two decimal digits (so in case of EURUSD it&#8217;s 0.0001).</p>
<p>- <strong>Point value</strong> should be set to to the dollar value of a single pip divided by pip so for EURUSD it will be:<br />
             10$ / 0.0001  =  100000</p>
<p>- <strong>Margin Deposit</strong> in most cases should be set to 1000 (1% margin from $100&#8242;000)</p>
<p> </p>
<p>1) Currencies denominated in USD</p>
<p>Let&#8217;s analyse the results generated by a simple formula (a crossover of 12- and 24-day Moving Averages of Closing price, trading 3 contracts at a time). To perform a backtest &#8211; it&#8217;s necessary to do the following:</p>
<p>- open the Formula Editor (Analysis -&gt; Formula Editor)<br />
- enter the formula:<br />
<code><span>Buy&nbsp;</span><span style="color: #000000">=&nbsp;</span><span style="color: #0000BB">Cross</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">MA</span><span style="color: #000000">(</span><span style="color: #0000BB">Close</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">12</span><span style="color: #000000">)&nbsp;,&nbsp;</span><span style="color: #0000BB">MA</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">Close</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">24</span><span style="color: #000000">)&nbsp;);<br />
</span><span style="color: #0000BB">Sell&nbsp;</span><span style="color: #000000">=&nbsp;</span><span style="color: #0000BB">Cross</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">MA</span><span style="color: #000000">(</span><span style="color: #0000BB">Close</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">24</span><span style="color: #000000">)&nbsp;,&nbsp;</span><span style="color: #0000BB">MA</span><span style="color: #000000">(&nbsp;</span><span style="color: #0000BB">Close</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">12</span><span style="color: #000000">)&nbsp;);<br />
</span><span style="color: #0000BB">SetPositionSize</span><span style="color: #000000">(</span><span style="color: #0000BB">3</span><span style="color: #000000">,&nbsp;</span><span style="color: #0000BB">spsShares&nbsp;</span><span style="color: #000000">);</span></code></p>
<p> - choose: Tools -&gt; Send to Auto-analysis</p>
<p>As a result &#8211; the Automatic Analysis window will open. In the settings dialog (SETTNGS button) it&#8217;s necessary to turn on the FUTURES MODE (in order to use the information entered into the Information dialog) and define the Initial Equity.</p>
<p><img src="http://www.amibroker.com/kb/wp-content/uploads/2006/08/AAsettings.gif" /></p>
<p> </p>
<p>then &#8211; press OK. In the AA window main screen it&#8217;s necessary to define the time range of the backtest and the symbols included in the test. For our example that will be: <strong>Current Symbol, All quotations</strong></p>
<p>Then &#8211; once everything is configured &#8211; press <strong>BACKTEST</strong> button. Now let&#8217;s have a look at the results list.<br />
The profit is calculated as follows:</p>
<p><strong>NumContracts * (SellPrice &#8211; BuyPrice) * PointValue</strong><br />
 </p>
<p><img src="http://www.amibroker.com/kb/wp-content/uploads/2006/08/AAresults1.gif" /> </p>
<p>In the first transaction:<br />
- the <strong>Entry Price</strong> is equal to <strong>1.2154</strong><br />
- the <strong>Exit Price</strong> is equal to <strong>1.2304</strong><br />
- <strong>NumContracts</strong> = <strong>3</strong> (since we trade 3 contracts).<br />
- we trade on <strong>1% margin</strong> so deposit is $1,000 x 3 = <strong>$3,000</strong> (that&#8217;s expressed in <strong>Position Value</strong>)</p>
<p><strong>Profit</strong> =   3 * (1.2304 &#8211; 1.2154) * 100&#8242;000<strong> = 4&#8242;500</strong></p>
<p>So &#8211; the profit matches the results we&#8217;re getting by manual calculation.</p>
<p> </p>
<p>2) Currencies denominated in a different currency from USD (assuming that your account is in USD)</p>
<p>AmiBroker allows you to define a base currency and exchange rates (fixed or dynamic) for different currencies, and as a result - to get correct backtest results when testing securities denominated in different currency than your base portfolio currency.</p>
<p>These settings can be defined in: <strong>Tools -&gt; Preferences -&gt; Currencies </strong>dialog.</p>
<p><img src="http://www.amibroker.com/kb/wp-content/uploads/2006/08/pref13.gif" /></p>
<p> </p>
<p>AmiBroker allows to use both fixed and dynamic (historical) quotes for backtesting purposes (using dynamic quotes will allow you to check the real influence of the currency rates changes for your trades denominated in different currencies). </p>
<p>There are following requirements to use currency adjustements:<br />
a) Symbol-&gt;Information, &#8220;<strong>Currency</strong>&#8221; field shows currency different than BASE currency<br />
b) Appropriate currency (defined in Symbol-&gt; Information) has matching entry in Preferences-&gt;Currencies page<br />
c) the dynamic rate &#8220;FX SYMBOL&#8221; defined in the preferences EXISTS in your database and HAS QUOTES for each day under analysis range.</p>
<p> </p>
<p>&#8220;INVERSE&#8221; check box for in the preferences should be checked, when testing the FX rates like USDJPY or USDCHF &#8211; not denominated in the base currency of the portfolio.</p>
<p>For the same reason - if we look at the example of EURUSD &#8211; when &#8220;USD&#8221; is your BASE currency then EUR exchange rate would be &#8220;straight&#8221; EURUSD fx (e.g. ~1.25). But when &#8220;EUR&#8221; is your BASE currency then USD exchange rate would be INVERSE of EURUSD (i.e. ~1/1.25).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amibroker.com/kb/2006/08/09/amibroker-for-forex/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to use your LiveCharts account with AmiQuote ?</title>
		<link>http://www.amibroker.com/kb/2006/03/04/how-to-use-your-livecharts-account-with-amiquote/</link>
		<comments>http://www.amibroker.com/kb/2006/03/04/how-to-use-your-livecharts-account-with-amiquote/#comments</comments>
		<pubDate>Sun, 05 Mar 2006 01:41:58 +0000</pubDate>
		<dc:creator>Tomasz Janeczko</dc:creator>
				<category><![CDATA[AmiQuote]]></category>

		<guid isPermaLink="false">http://www.amibroker.com/kb/2006/03/04/how-to-use-your-livecharts-account-with-amiquote/</guid>
		<description><![CDATA[UPDATE April 2, 2008: We received the following information from eSignal:
&#8221; It wasn&#8217;t our intention to have this product be made compatible with 3rd party software[...] The new version of LiveCharts uses a different method of exporting data and it will no longer work with AmiQuote starting the week of April 14th, 2008.&#8221;
This effectivelly means [...]]]></description>
			<content:encoded><![CDATA[<p><font color='#ff0000'>UPDATE April 2, 2008: We received the following information from eSignal:<br />
&#8221; It wasn&#8217;t our intention to have this product be made compatible with 3rd party software[...] The new version of LiveCharts uses a different method of exporting data and it will no longer work with AmiQuote starting the week of April 14th, 2008.&#8221;</p>
<p>This effectivelly means that the instructions below will become obsolete April 14th, 2008.</font></p>
<p>You can use your Livecharts ($9.95/month) subscription to feed AmiQuote with real time data from Lycos. However, there is one extra step involved in order to make it work.<br />
<span id="more-4"></span><br />
The password that AmiQuote needs is not the same as you enter it on the Lycos page &#8211; it has to be encrypted. </p>
<p>To find out what encrypted password is you should:</p>
<ol>
<li>open <a href="http://www.quote.com/qc/livecharts/default.aspx" target="_blank">LiveCharts RT web page</a> (you need to log-in first)</li>
<li>click with right mouse button OUTSIDE of Java applet but inside the page and choose &#8220;View source&#8221; (or use Internet Explorer main menu: View->Source)</li>
<li>Choose Edit->Find&#8230; menu and type &#8220;Pswd&#8221; (without quotation marks) you will see line like this:
<p><code>&lt;param NAME=Pswd VALUE="sGdWUS3vudNZw"&gt;</code><br />
sGdWUS3vudNZw string will be your password (it will be different of course than mine) so you just mark the string, copy and paste to AMiQuote and it should be able to download RT quotes using your livecharts account.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.amibroker.com/kb/2006/03/04/how-to-use-your-livecharts-account-with-amiquote/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

