<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — **Detect Enough Space Between 2 Moving Average]]></title>
		<link>https://forexsb.com/forum/topic/8414/detect-enough-space-between-2-moving-average/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/8414/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in **Detect Enough Space Between 2 Moving Average.]]></description>
		<lastBuildDate>Sat, 12 Nov 2022 19:33:05 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/72213/#p72213</link>
			<description><![CDATA[<p>Hello mr Alireza </p><p>&nbsp; I think you can chat easily in Farsi and you are probably an Iranian like me. I have been familiar with Forex Strategy Builder for a while now and I am studying it and practicing a little bit. I think you can use Makdi very well for your purpose.&nbsp; The MACD indicator shows three moving averages on the chart, usually the average of 12, 26, and 9 and the average of 12.<br />&nbsp; The mean is fast and twenty-four is slow, and the mean is nine, they call the Makdi line, and a histogram is produced from the difference between slow and fast, and I think it will fulfill your purpose, and of course you can change these numbers. Anyway, Makdi is one of the most famous.&nbsp; There are indicators<br />سلام علیرضا جان</p><p> فکرکنم شما به زبان فارسی راحت میتونین قحبت کنین و احتمالا مثل من یه ایرانی هستید من مدت کمی هست که با فارکس استراتژی بیلدر آشنا شدم و دارم مطالعه اش میکنم و کمی هم تمرین من تصور میکنم شما برای هدفتون خیلی خوب بتونین از مکدی استفاده کنین، اندیکاتور مکدی سه تا مووین اوریج روی چارت میندازه، بطور عادد میانگین ۱۲&nbsp; &nbsp;و ۲۶ و ۹ و میانگین دوازده&nbsp; <br /> رو میانگین سریع و بیست و چهار رو کند و میانگین نه رو خط مکدی میگن و از تفاضل کند و سریع هیستوگرام تولید میشه&nbsp; &nbsp; &nbsp;و فکر میکنم با اون هدف شما برآورده میشه و البته میشه این اعداد رو تغییر داد.به هر حال مکدی از معروف ترین اندیکاتور ها هست</p><p> به هر حال هیچ اندیکاتوری نمیتونه آینده ی بازار رو پیشگویی کنه و این از محالاته</p><p>Anyway, no indicator can predict the future of the market and this is impossible</p><br /><p>موفق باشی<br />good luck</p><p>✋✋✋</p>]]></description>
			<author><![CDATA[null@example.com (reza_akrami_azar)]]></author>
			<pubDate>Sat, 12 Nov 2022 19:33:05 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/72213/#p72213</guid>
		</item>
		<item>
			<title><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/60882/#p60882</link>
			<description><![CDATA[<p>Thank you Sir<br />i will try it</p><div class="quotebox"><cite>Blaiserboy wrote:</cite><blockquote><p>You may wish to use ADX</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (alireza_nil)]]></author>
			<pubDate>Wed, 27 May 2020 22:02:20 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/60882/#p60882</guid>
		</item>
		<item>
			<title><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/60881/#p60881</link>
			<description><![CDATA[<p><strong>Many Thanks For your Guide<br /></strong></p><div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>You can use &quot;MA Oscillator&quot;.</p><p>The MA Oscillator is the difference between Fast MA and Slow MA. The actual &quot;distance&quot; is the &quot;Level&quot; parameter.</p><p>You can try &quot;MA Oscillator is higher than the Level line&quot;, where Level is in the price of the chart currency. </p><br /><div class="codebox"><pre><code>            double[] maFast = MovingAverage(fastPeriod, 0, maMethod, Price(basePrice));
            double[] maSlow = MovingAverage(slowPeriod, 0, maMethod, Price(basePrice));
            var oscillator = new double[Bars];

            for (int bar = firstBar; bar &lt; Bars; bar++)
            {
                oscillator[bar] = maFast[bar] - maSlow[bar];
            }</code></pre></div></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (alireza_nil)]]></author>
			<pubDate>Wed, 27 May 2020 21:57:51 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/60881/#p60881</guid>
		</item>
		<item>
			<title><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/60852/#p60852</link>
			<description><![CDATA[<p>You can use &quot;MA Oscillator&quot;.</p><p>The MA Oscillator is the difference between Fast MA and Slow MA. The actual &quot;distance&quot; is the &quot;Level&quot; parameter.</p><p>You can try &quot;MA Oscillator is higher than the Level line&quot;, where Level is in the price of the chart currency. </p><br /><div class="codebox"><pre><code>            double[] maFast = MovingAverage(fastPeriod, 0, maMethod, Price(basePrice));
            double[] maSlow = MovingAverage(slowPeriod, 0, maMethod, Price(basePrice));
            var oscillator = new double[Bars];

            for (int bar = firstBar; bar &lt; Bars; bar++)
            {
                oscillator[bar] = maFast[bar] - maSlow[bar];
            }</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Wed, 27 May 2020 06:50:26 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/60852/#p60852</guid>
		</item>
		<item>
			<title><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/60847/#p60847</link>
			<description><![CDATA[<p>You may wish to use ADX</p>]]></description>
			<author><![CDATA[null@example.com (Blaiserboy)]]></author>
			<pubDate>Wed, 27 May 2020 01:36:19 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/60847/#p60847</guid>
		</item>
		<item>
			<title><![CDATA[**Detect Enough Space Between 2 Moving Average]]></title>
			<link>https://forexsb.com/forum/post/60846/#p60846</link>
			<description><![CDATA[<p>Hello Friends</p><p>How can Detect Enough space between 2 moving Average?<br />I have a SMA(A) and SMA(B) in my strategy<br />i need open position when SMA(A) Cross SMA(B)&nbsp; like --&gt; X (Multiply)<br />But Sometime in Sideways Market These SMA cross Together in less space&nbsp; like ---&gt;~ (worm)<br />So I need open position when Market have good degree up or down trend and SMA(A) and SMA(B) Crossed together ، even These crossed happened on 1 or 2 previous bars</p><br /><p>i hope my meaning be clear </p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (alireza_nil)]]></author>
			<pubDate>Tue, 26 May 2020 22:41:30 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/60846/#p60846</guid>
		</item>
	</channel>
</rss>
