PureBytes Links
Trading Reference Links
|
janco0202 wrote
> I wanted to ask if somebody uses, or knows the formula
> for Amibroker of RSI with BOLLINGER BANDS.
Janco, you have to plot the three built-in formulas.
For example,
// set your parameters
RSILength = Param(...);
BBLength = Param(...);
StDevTimes = Param(...);
// plot the formulas
Plot(RSI(RSILength), "RSI", yourColor, styleLine);
Plot(BBandTop(RSI(RSILength), BBLength, StDevTimes), "Bollinger Top", yourColor, styleLine);
Plot(BBandBot(RSI(RSILength), BBLength, StDevTimes), "Bollinger Bottom", yourColor, styleLine);
Franco
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/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/
|