<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/3560/" />
	<updated>2015-05-06T12:34:38Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/3560/widners-supportresistance-oscillators-wso-wro/</id>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/29016/#p29016" />
			<content type="html"><![CDATA[<p>Iam tring to learn with each indicator i make but some times the easy indicator or short written indicator is the hardest ones for me&nbsp; <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Any How Could you Make the Code</p><p>Regards</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2015-05-06T12:34:38Z</updated>
			<id>https://forexsb.com/forum/post/29016/#p29016</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/29009/#p29009" />
			<content type="html"><![CDATA[<p>Here is source in AFL (amibroker thing) for interested parties:</p><div class="codebox"><pre><code>/////////////////////////
// RSI of WRO and WSO ///
////////////////////////


TimeFrameSet(60*in1Minute);

// WRO - WIDNER&#039;S RESISTANCE OSCILLATOR 
p1=-4;
p2=9;
r1=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),1);
r2=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),2);
r3=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),3);
r4=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),4);
r5=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),5);
r6=ValueWhen(Ref(L,p1)==LLV(L,p2),Ref(L,p1),6);
r1m=Max(0,Min(1,int(r1/C)));
r2m=Max(0,Min(1,int(r2/C)));
r3m=Max(0,Min(1,int(r3/C)));
r4m=Max(0,Min(1,int(r4/C)));
r5m=Max(0,Min(1,int(r5/C)));
r6m=Max(0,Min(1,int(r6/C)));
WRO=100*(1-(r1m+r2m+r3m+r4m+r5m+r6m)/6);
Plot(WRO,&quot;&quot;,colorGreen,styleDashed);

// WSO - WIDNER&#039;S SUPPORT OSCILLATOR 
p1=-4;
p2=9;
s1=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),1);
s2=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),2);
s3=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),3);
s4=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),4);
s5=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),5);
s6=ValueWhen(Ref(H,p1)==HHV(H,p2),Ref(H,p1),6);
s1m=Max(0,Min(1,int(s1/C)));
s2m=Max(0,Min(1,int(s2/C)));
s3m=Max(0,Min(1,int(s3/C)));
s4m=Max(0,Min(1,int(s4/C)));
s5m=Max(0,Min(1,int(s5/C)));
s6m=Max(0,Min(1,int(s6/C)));
WSO=100*(1-(s1m+s2m+s3m+s4m+s5m+s6m)/6);
Plot(WSO,&quot;&quot;,colorRed,styleDashed);

// AVERAGES + RSI
x1=EMA(WRO,5);
x2=EMA(WRO,10);
x3=EMA(WRO,15);
x4=(x1+x2+x3)/3;
x5=RSIa(x4,5);

y1=EMA(WSO,5);
y2=EMA(WSO,10);
y3=EMA(WSO,15);
y4=(y1+y2+y3)/3;
y5=RSIa(y4,5);

z1=(x5+y5)/2;
z2=EMA(z1,5);
z3=Zig(x2,5);
Cond=IIf(z3&gt;Ref(z3,-1),colorGreen,colorRed);
Plot(z3,&quot;&quot;,Cond,8);
Plot(15,&quot;&quot;,colorBlue,1);
Plot(85,&quot;&quot;,colorBlue,1);
PlotShapes(IIf(Cross(z3,15),shapeUpArrow,shapeNone),colorGreen);
PlotShapes(IIf(Cross(85,z3),shapeDownArrow,shapeNone),colorRed);</code></pre></div><p>I&#039;m not particularly well-acquainted with AFL, did you compare your indicator values with amibroker platform? I don&#039;t have that capability.</p><p>If I were you, I&#039;d turn to mq4 sources you posted before, I saw that they are coded by Mladen, a coder I respect and admire very much! Look how clean his code is! If you have the first version in FSB working, but values don&#039;t match, you can compare array values between mt and FSB, that&#039;s how you will know where the culprit might be. I&#039;ve been practicing this method in recent times with difficult projects, a bit of a fuss, but eventually gets you where you want it to be. If any specific problems arise, post them, I&#039;ll try to advise to best of my little knowledge I possess.</p><p>HTH</p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2015-05-06T12:02:26Z</updated>
			<id>https://forexsb.com/forum/post/29009/#p29009</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/29006/#p29006" />
			<content type="html"><![CDATA[<p>sources in ur mail</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2015-05-06T11:30:56Z</updated>
			<id>https://forexsb.com/forum/post/29006/#p29006</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/28993/#p28993" />
			<content type="html"><![CDATA[<p>Which source you used? Honestly I don&#039;t see any similarities between those 2 sources above and your trial... It&#039;s very hard to give pointers and advice.</p>]]></content>
			<author>
				<name><![CDATA[footon]]></name>
				<uri>https://forexsb.com/forum/user/1242/</uri>
			</author>
			<updated>2015-05-06T00:03:33Z</updated>
			<id>https://forexsb.com/forum/post/28993/#p28993</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/28992/#p28992" />
			<content type="html"><![CDATA[<p>Hello <br />Its an old topic and i wish we can finish this tricky indicator </p><p>attached my trial for the indicator but it gives a different results it seams need some tweaking inside the code <br />Any help from pop or footon&nbsp; will be appreciated</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2015-05-05T23:26:11Z</updated>
			<id>https://forexsb.com/forum/post/28992/#p28992</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/22808/#p22808" />
			<content type="html"><![CDATA[<p>It&#039;s a pity no one devotes energy to create such indicator. It could make a huge difference. Support and resistance are one of the best tools out there...<br />I would do it myself but I need to learn how to code in C (I guess).</p>]]></content>
			<author>
				<name><![CDATA[nquental]]></name>
				<uri>https://forexsb.com/forum/user/7477/</uri>
			</author>
			<updated>2013-11-27T07:49:34Z</updated>
			<id>https://forexsb.com/forum/post/22808/#p22808</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/22742/#p22742" />
			<content type="html"><![CDATA[<p>Yes it would be mostly welcome <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[nquental]]></name>
				<uri>https://forexsb.com/forum/user/7477/</uri>
			</author>
			<updated>2013-11-20T18:31:28Z</updated>
			<id>https://forexsb.com/forum/post/22742/#p22742</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/22587/#p22587" />
			<content type="html"><![CDATA[<p>Hello footon <br />could you manage to code this wso wro indicator !! <br />thanks in advance</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-11-05T18:40:57Z</updated>
			<id>https://forexsb.com/forum/post/22587/#p22587</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/19442/#p19442" />
			<content type="html"><![CDATA[<p>Hi ahmedalhoseny,<br />Do you know when this indicator will be converted to FSB?</p>]]></content>
			<author>
				<name><![CDATA[kazik1616]]></name>
				<uri>https://forexsb.com/forum/user/6916/</uri>
			</author>
			<updated>2013-05-04T11:36:45Z</updated>
			<id>https://forexsb.com/forum/post/19442/#p19442</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/19042/#p19042" />
			<content type="html"><![CDATA[<p>Hello Kazik its a nice indicator and i wish one of coders here convert it to FSB code soon </p><p>wish it helps</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-03-25T20:37:46Z</updated>
			<id>https://forexsb.com/forum/post/19042/#p19042</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/19041/#p19041" />
			<content type="html"><![CDATA[<p>Hello ahmedalhoseny,<br />Thanks for sharing great indicator! This is the first time I hear about it. Sounds interesting.</p>]]></content>
			<author>
				<name><![CDATA[kazik1616]]></name>
				<uri>https://forexsb.com/forum/user/6916/</uri>
			</author>
			<updated>2013-03-25T20:16:39Z</updated>
			<id>https://forexsb.com/forum/post/19041/#p19041</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/18790/#p18790" />
			<content type="html"><![CDATA[<p>hello </p><p>Any luck to code that indicator!!!!</p><br /><p>NB: attached is the WSO WRO oscillator with moving average</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2013-03-14T00:42:33Z</updated>
			<id>https://forexsb.com/forum/post/18790/#p18790</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/16042/#p16042" />
			<content type="html"><![CDATA[<p><a href="http://www.flickr.com/photos/85383260@N03/7823615886/in/photostream/lightbox/">http://www.flickr.com/photos/85383260@N … /lightbox/</a></p><p>levels are <br />0 ,100, 66.6667 , 83.3333 , 50 , 16,6667 , 33.3333<br />and these all levels we can see so we cannot see level 40 and so on <br />its like a stears not actual numbers like other osc <br />So they could replaced by 1,2,3,4,5 and 6 levels</p><p>sup go up<br />sup go down<br />sup unchanged<br />sup at level 100 <br />sup at level 0<br />sup at level 66.6 <br />sup at level 83.3<br />sup at level 50 <br />sup at level 16.6<br />sup at level 33.3 <br />res go up<br />.<br />.<br />.etc</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-20T14:08:33Z</updated>
			<id>https://forexsb.com/forum/post/16042/#p16042</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/16041/#p16041" />
			<content type="html"><![CDATA[<p>How to insert an image in the body of post&nbsp; <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> ?????</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-20T13:18:33Z</updated>
			<id>https://forexsb.com/forum/post/16041/#p16041</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Widner’s Support/Resistance Oscillators  WSO / WRO]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/16040/#p16040" />
			<content type="html"><![CDATA[<p>here is another link shows also how indicator could be used&nbsp; along with MT4 indicator </p><p>http://mechanicalforex.com/2011/02/the-indicator-series-dr-widners-support-and-resistance-oscillators.html</p>]]></content>
			<author>
				<name><![CDATA[ahmedalhoseny]]></name>
				<uri>https://forexsb.com/forum/user/1512/</uri>
			</author>
			<updated>2012-08-20T11:57:13Z</updated>
			<id>https://forexsb.com/forum/post/16040/#p16040</id>
		</entry>
</feed>
