<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — **Detect Enough Space Between 2 Moving Average]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/8414/" />
	<updated>2022-11-12T19:33:05Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/8414/detect-enough-space-between-2-moving-average/</id>
		<entry>
			<title type="html"><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/72213/#p72213" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[reza_akrami_azar]]></name>
				<uri>https://forexsb.com/forum/user/14228/</uri>
			</author>
			<updated>2022-11-12T19:33:05Z</updated>
			<id>https://forexsb.com/forum/post/72213/#p72213</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/60882/#p60882" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[alireza_nil]]></name>
				<uri>https://forexsb.com/forum/user/12103/</uri>
			</author>
			<updated>2020-05-27T22:02:20Z</updated>
			<id>https://forexsb.com/forum/post/60882/#p60882</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/60881/#p60881" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[alireza_nil]]></name>
				<uri>https://forexsb.com/forum/user/12103/</uri>
			</author>
			<updated>2020-05-27T21:57:51Z</updated>
			<id>https://forexsb.com/forum/post/60881/#p60881</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/60852/#p60852" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2020-05-27T06:50:26Z</updated>
			<id>https://forexsb.com/forum/post/60852/#p60852</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: **Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/60847/#p60847" />
			<content type="html"><![CDATA[<p>You may wish to use ADX</p>]]></content>
			<author>
				<name><![CDATA[Blaiserboy]]></name>
				<uri>https://forexsb.com/forum/user/2491/</uri>
			</author>
			<updated>2020-05-27T01:36:19Z</updated>
			<id>https://forexsb.com/forum/post/60847/#p60847</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[**Detect Enough Space Between 2 Moving Average]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/60846/#p60846" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[alireza_nil]]></name>
				<uri>https://forexsb.com/forum/user/12103/</uri>
			</author>
			<updated>2020-05-26T22:41:30Z</updated>
			<id>https://forexsb.com/forum/post/60846/#p60846</id>
		</entry>
</feed>
