[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] indicator on indicator



PureBytes Links

Trading Reference Links










Hi Ron:  welcome to Amibroker….this
is one of the best pieces of software on the planet and this group matches that
as being one of the most helpful.  I will try and speak to your questions.

 

Worden Bros three indicators listed in
your message, BOP, TSV, and MS are proprietary to Worden Bros. They do not
disclose the formulas and thus you can not plot them in Amibroker. There is an
approximation of TSV floating around but I have never seen an equivalent
approximation to the other two.  Thus, you will have to find your own
indicators that you come to like as much as those three in order to plot them
in AB.

 

You can plot a moving average of an
indicator by writing statements which calculate the ma of the indicator and
then plotting it.

 

Here is some code that can do this. 
Note that RSIa is a built in indicator for RSI of another variable vs RSI which
calculates RSI of price only.

 

Good luck.

 

Ken

 

<font size=2 color=green
face="Courier New">/* Moving Avg Ribbon of RSI   */

<font size=2 color=black
face="Courier New"> 

<font size=2 color=black
face="Courier New">Key=<font size=2 color=blue
face="Courier New">RSIa<font size=2 color=black
face="Courier New">(<font size=2 color=red
face="Courier New">C<font size=2 color=black
face="Courier New">,<font size=2 color=fuchsia
face="Courier New">14<font size=2
color=black face="Courier New">);

<font size=2 color=black
face="Courier New"> 

<font size=2 color=green
face="Courier New">// Now calculate various MAs of KEY

<font size=2 color=black
face="Courier New"> 

<font size=2 color=black
face="Courier New">M5=<font size=2 color=blue
face="Courier New">MA<font size=2 color=black
face="Courier New">(Key,<font size=2
color=fuchsia face="Courier New">5<font
size=2 color=black face="Courier New">);

<font size=2 color=black
face="Courier New">M8=<font size=2 color=blue
face="Courier New">MA<font size=2 color=black
face="Courier New">(Key,<font size=2
color=fuchsia face="Courier New">8<font
size=2 color=black face="Courier New">);

<font size=2 color=black
face="Courier New">M13=<font size=2 color=blue
face="Courier New">MA<font size=2 color=black
face="Courier New">(Key,<font size=2
color=fuchsia face="Courier New">13<font
size=2 color=black face="Courier New">);

<font size=2 color=black
face="Courier New">M21=<font size=2 color=blue
face="Courier New">MA<font size=2 color=black
face="Courier New">(Key,<font size=2
color=fuchsia face="Courier New">21<font
size=2 color=black face="Courier New">);

<font size=2 color=black
face="Courier New">M34=<font size=2 color=blue
face="Courier New">MA<font size=2 color=black
face="Courier New">(Key,<font size=2
color=fuchsia face="Courier New">34<font
size=2 color=black face="Courier New">);

<font size=2 color=black
face="Courier New"> 

<font size=2 color=green
face="Courier New">// Now plot the Mx's

<font size=2 color=black
face="Courier New"> 

<font size=2 color=blue
face="Courier New">Plot<font size=2 color=black
face="Courier New">(M5,<font size=2
color=fuchsia face="Courier New">"M5"<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">4<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">1<font
size=2 color=black face="Courier New">);

<font size=2 color=blue
face="Courier New">Plot<font size=2 color=black
face="Courier New">(M5,<font size=2
color=fuchsia face="Courier New">"M8"<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">4<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">1<font
size=2 color=black face="Courier New">);

<font size=2 color=blue
face="Courier New">Plot<font size=2 color=black
face="Courier New">(M13,<font size=2
color=fuchsia face="Courier New">"M13"<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">4<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">1<font
size=2 color=black face="Courier New">);

<font size=2 color=blue
face="Courier New">Plot<font size=2 color=black
face="Courier New">(M21,<font size=2
color=fuchsia face="Courier New">"M21"<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">4<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">1<font
size=2 color=black face="Courier New">);

<font size=2 color=blue
face="Courier New">Plot<font size=2 color=black
face="Courier New">(M34,<font size=2
color=fuchsia face="Courier New">"M34"<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">4<font
size=2 color=black face="Courier New">,<font size=2
color=fuchsia face="Courier New">1<font
size=2 color=black face="Courier New">);

 

 

-----Original Message-----
From: mrdavis9
[mailto:mrdavis9@xxxxxxxxxx] 
Sent: Friday, March
 07, 2003 <span
 >1:53 AM<font size=2
face=Tahoma>
To: amibroker tips
Cc: ronald davis; jeff davis
Subject: [amibroker] indicator on
indicator

 



I am a newbie to Amibroker and to using computers. I have
included a TC2000 chart that has multiple moving averages applied to RSI
in the middle window, and to MONEYSTREAM in the lower window.  I have
obviously been using other indicators in TC2000.





This chart is included in order to assist me in
explaining just what it is that I want to do in Amibroker.  I
searched the Amibroker user manual trying  to find out how to apply
many different timeframes of moving averages to all sorts of other indicators in
Amibroker. I failed to find how to apply a moving average to another
indicator.  To put things in context, I just became 60 in January, and I
am pretty new at using a computer, so please keep this in mind when you
respond to this request.  My family puts up with me, so I am hoping
that some of you will also.  I simply want to know which indicators
most closely correspond to the Worden Bros. proprietary indicators of
MONEYSTREAM, TIME SEGMENTED VOLUME, AND BALANCE OF POWER.  I also want to
know how to apply multiple timeframes of moving averages to these and other
indicators.  I sort of have a day job, so if I do not quickly respond to
one of your posts, I will respond later in the day.  I am moving
to Amibroker because of the dearth of indicators offered by TC2000. 
Ron D



 


 
  
  <span
  ><img width=1 height=1
  src="">
  
 



 










Yahoo! Groups Sponsor


  ADVERTISEMENT









Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.