PureBytes Links
Trading Reference Links
|
Hi Janco,
Try this:
<clip>
band_periods=Param("band_periods",15,2,20,1);
band_width=Param("band_width",1.5,.5,3,.5);
ind_period=Param("ind_period",14,2,30,2);
band_center=RSI(ind_period);
top_band=BBandTop(band_center,band_periods,band_width);
bot_band=BBandBot(band_center,band_periods,band_width);
Plot(band_center,"",colorBlack,1);
Plot(top_band,"",colorBlue,1);
Plot(bot_band,"",colorBlue,1);
Title="RSI("+NumToStr(ind_period,1)+"); BandTop="+NumToStr(top_band,1)+";
BandBottom="+NumToStr(bot_band,1)+" with Band
Periods="+NumToStr(band_periods,1)+" and Band
Width="+NumToStr(band_width,1.1);
-john
----- Original Message -----
From: "janco0202" <janco0202@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, May 14, 2004 7:58 AM
Subject: [amibroker] RSI + BB
Hi everyone,
This is only my 2nd or 3rd post since I have been reading the
messages here.
I wanted to ask if somebody uses, or knows the formula
for Amibroker of RSI with BOLLINGER BANDS.
I tried to create it, but without success... :(
Thank you in advance for your comments.
Regards,
Janco
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
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
---------------------------------------------------------------------~->
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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|