<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Sometimes Live Volume for indicators are different between FST and MT4]]></title>
		<link>https://forexsb.com/forum/topic/4837/sometimes-live-volume-for-indicators-are-different-between-fst-and-mt4/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/4837/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Sometimes Live Volume for indicators are different between FST and MT4.]]></description>
		<lastBuildDate>Mon, 09 Jun 2014 18:38:56 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25340/#p25340</link>
			<description><![CDATA[<p>Thanks for script, modified and executed it successfully with latest example.</p><p><a href="http://postimg.org/image/6dj2y8jd7/"><span class="postimg"><img src="http://s1.postimg.org/6dj2y8jd7/strange_behaviour_part3.jpg" alt="http://s1.postimg.org/6dj2y8jd7/strange_behaviour_part3.jpg" /></span></a></p><p>Maybe there is an issue with reading certain bars or refresh rate, but you understand the backend by far better so I can only guess.</p>]]></description>
			<author><![CDATA[null@example.com (akaras17)]]></author>
			<pubDate>Mon, 09 Jun 2014 18:38:56 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25340/#p25340</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25339/#p25339</link>
			<description><![CDATA[<p>I&#039;m surprised from that !?</p><p>I made a script to see what MT expert returns for that bar:</p><div class="codebox"><pre><code>void OnStart()
{
   datetime totime = D&#039;2014.06.09 19:58&#039;;
   
   string symbol = Symbol();
   string period = Period();
   
   int    shift = iBarShift(symbol, period,totime);
   
   int    digits = MarketInfo(symbol, MODE_DIGITS);
   string time   = TimeToStr(iTime(symbol, period, shift), TIME_DATE) + &quot;|&quot; +
                   TimeToStr(iTime(symbol, period, shift), TIME_SECONDS);
   string open   = DoubleToStr(iOpen (symbol, period, shift), digits);
   string high   = DoubleToStr(iHigh (symbol, period, shift), digits);
   string low    = DoubleToStr(iLow  (symbol, period, shift), digits);
   string close  = DoubleToStr(iClose(symbol, period, shift), digits);
   string volume = DoubleToStr(iVolume(symbol, period, shift), 0);
   
   Print(time + &quot; &quot; + open + &quot; &quot; + high + &quot; &quot; + low + &quot; &quot; + close + &quot; &quot; + volume);
}</code></pre></div><p>The script is attached below. Run it on the chart and it will print the data in the &quot;Experts&quot; journal of MT4.<br />You can change the date in the script.</p><p><a href="http://postimg.org/image/qbh4o0rqv/"><span class="postimg"><img src="http://s7.postimg.org/qbh4o0rqv/screenshot_413.jpg" alt="http://s7.postimg.org/qbh4o0rqv/screenshot_413.jpg" /></span></a></p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 09 Jun 2014 17:58:09 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25339/#p25339</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25338/#p25338</link>
			<description><![CDATA[<p>Hm interesting.</p><p>Please review screenshot. I have done exactly Ctrl+S method and exported live chart data from MT4 to desktop and picked one of the latest problem bars and seems like volume for this bar is 31 in Live MT4 chart as well as history center, and it is 27 volume for the same bar in FST.</p><p>I have attached a screenshot, let me know what you think.</p><p><a href="http://postimg.org/image/ygkc3lw4t/"><span class="postimg"><img src="http://s14.postimg.org/ygkc3lw4t/strange_behaviour_part2.jpg" alt="http://s14.postimg.org/ygkc3lw4t/strange_behaviour_part2.jpg" /></span></a></p>]]></description>
			<author><![CDATA[null@example.com (akaras17)]]></author>
			<pubDate>Mon, 09 Jun 2014 17:13:40 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25338/#p25338</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25337/#p25337</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>Is there a way for me to grab Live Chart data from MT4</p></blockquote></div><p>It&#039;s very easy and it&#039;s my favorite method.</p><p>Press <strong>Ctrl </strong>+ <strong>S</strong> on the chart and save the chart data.</p><p>You have to probable force MT4 to load more chart data by pressing <strong>Home</strong> key.<br />It becomes faster if you reduce the zoom to minimum.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 09 Jun 2014 16:46:01 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25337/#p25337</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25336/#p25336</link>
			<description><![CDATA[<p>I see so technically speaking it is nearly impossible to get FSB = MT4 data, as History Center in MT4 will always load it is own data (it will be about 97~99% accurate to Live Chart MT4 data, with exception of Volume values as we can see in some scenarios).</p><p>You have a good suggestion. Is there a way for me to grab Live Chart data from MT4, as I am unfortunately not sure how to do it.</p><p>Thanks again.</p>]]></description>
			<author><![CDATA[null@example.com (akaras17)]]></author>
			<pubDate>Mon, 09 Jun 2014 16:24:58 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25336/#p25336</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25335/#p25335</link>
			<description><![CDATA[<p>I&#039;m not sure that the data in the MT4 History Center are same as in the charts.</p><p>Compare the volume from the MT4 chart with the data in the History Center.</p><p>FST takes data from the MT4 charts. MT4 also executes the trades taking into account the chart data.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Mon, 09 Jun 2014 16:12:32 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25335/#p25335</guid>
		</item>
		<item>
			<title><![CDATA[Sometimes Live Volume for indicators are different between FST and MT4]]></title>
			<link>https://forexsb.com/forum/post/25334/#p25334</link>
			<description><![CDATA[<p>Hi,</p><p>I have noticed this behavior a weak ago after resolving another issue here http://forexsb.com/forum/topic/4819/charts-are-wrong-for-fsb-vs-fst/<br />but couldnt find time to post a new thread until now.</p><p>I was able to recreate this behavior with 2 different machines, 3 MT4s with two different Demo Brokers and 1 Real account.</p><p>I used different Demo and Live strategies for it. For this example I have used standard Demo MACD Reversal.</p><p>My Setup (Windows 8.1 Pro x64):</p><p>1. MT4 with Armada Markets broker as a test<br />2. FST installed without any modifications (only selected multiple working copies)<br />3. Selected Demo MACD Reversal and simply execute it<br />4. Chart EURUSD 1 min</p><p>To recreate the problem I have simply wait 15 minutes and start comparing last loaded 15 bars.<br />Chances are you will get something like this (showed in my screenshot)</p><p>Let me know what you think or if I have done something wrong as this all are fresh copies of MT4 and FTS.</p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (akaras17)]]></author>
			<pubDate>Mon, 09 Jun 2014 15:39:29 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/25334/#p25334</guid>
		</item>
	</channel>
</rss>
