PureBytes Links
Trading Reference Links
|
Anthony and Herman,
thanks for the help. Relly appreciated.
Werner
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> You can force the RSI to the bottom of the screen by setting its
own Yaxis:
> MaxY=500;
> Plot(C,"Close",colorBlack,styleCandle);
> Plot(RSI(14),"RSI",colorRed,styleLine|styleOwnScale,0,MaxY);
> Plot(30,"",0,styleOwnScale|styleNoLabel,0,MaxY);
> Plot(50,"",0,styleOwnScale|styleNoLabel,0,MaxY);
> Plot(70,"",0,styleOwnScale|styleNoLabel,0,MaxY);
> Plot(100,"",0,styleOwnScale|styleNoLabel,0,MaxY);
> Plot(100,"",colorBlue,styleArea|styleOwnScale|styleNoLabel,0,MaxY);
>
>
> herman
>
> -----Original Message-----
> From: Anthony Faragasso [mailto:ajf1111@x...]
> Sent: Wednesday, March 10, 2004 6:43 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: Re: [amibroker] Indicator and Price in same window
>
>
> Plot(RSI(14),"RSI",colorred,styleline|Styleownscale);
> Plot(C,"Close",colorblack,stylecandle);
>
>
> ----- Original Message -----
> From: "Werner" <WKRAG@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, March 10, 2004 5:23 AM
> Subject: [amibroker] Indicator and Price in same window
>
>
> > Good day,
> >
> > I'd like to plot an indicator (let's say RSI) in the SAME
window as
> > the price chart. This is for better visibility. I know how to
create
> > an indicator and let it appear UNDER the price chart in a 2nd
window.
> > But how about having it appear in the SAME window with price ?
> >
> > Thank you.
> >
> > Werner
> >
> >
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > 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
> >
> >
> >
> >
> >
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.614 / Virus Database: 393 - Release Date: 3/6/2004
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 Sponsor
> ADVERTISEMENT
>
>
>
>
>
> --------------------------------------------------------------------
--------
> --
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
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/
|