PureBytes Links
Trading Reference Links
|
I don't think you can plot candlestick with only "C" datas. I have
never tried "plotohlc"; but I think this is what you want to do.
--- In amibroker@xxxxxxxxxxxxxxx, "William Peters"
<williampeters@xxxx> wrote:
> Hi,
>
> Try this but also see AmiBroker help file, search for StochD and
StochK.
>
> OverBought = (StochD(14) > 80) AND (RSI(14) > 70) AND (CCI(14)
>100);
> OVERSOLD =(StochD(14) < 20)AND(RSI(14) < 30) AND(CCI(14) < -100);
> Color = IIf (OverBought, 4, IIf (OVERSOLD,5,1));
> Plot( C, "C ", Color , 64);
> GraphXSpace=1;
>
> Regards,
> William Peters
> www.amitools.com
>
>
> -----Original Message-----
> From: Panos Boufardeas [mailto:akaraman@x...]
> Sent: Saturday August 2, 2003 6:46 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Ver440 & colors
>
>
> Hi
>
> in Candlesticks I cannot see any color in the following formula of
the new
> AB 443 and 444 Version
>
>
> OverBought = (Stoch(14) > 80) AND (RSI(14) > 70) AND (CCI(14) >100);
> OVERSOLD =(Stoch() < 20)AND(RSI(14) < 30) AND(CCI(14) < -100);
> Color = IIf (OverBought, 4, IIf (OVERSOLD,5,1));
> Plot( C, "C ", Color , 64);
> GraphXSpace=1;
>
> i am sure something i missing here but what?
>
>
>
> 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
>
> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|