PureBytes Links
Trading Reference Links
|
Hello, maybe this is what you are looking for
Regards
Jim
//CCI Trend
T = 20;
Title = "301-4 " + Name () + " " + FullName() + " "
+ "CCI" + " " + "periods:" + WriteVal(T);
MaxGraph = 5;
Graph2 = CCI (T);
Uptrend = 100; Downtrend = -100;
Graph2BarColor = IIf (Graph2 > uptrend, 5,
IIf (Graph2 < downtrend,4,6));
Graph4 = Graph2;
Buy = Cross (Graph2, 0) AND (Ref (Graph2,-1) < 0) AND (Ref (Graph2,-
2) < 0)AND (Ref (Graph2,-3) < 0) AND (LLV (RSI(9),10) < 30) AND Cross
(RSI (9),50);
--- In amibroker@xxxxxxxxxxxxxxx, "mroman59" <mroman59@xxxx> wrote:
> AB comes with CCI but I looking for CCI that will show the periods
> or bars along with the indicator. Someone told me what I am looking
> for is the histogram style. Can anyone help? See following links
> for picture:
>
> file:C:\Program Files\1stWORKS\hotCommLite\UPLOADS\NickTrader_03-01-
> 04_T184244.HCC
>
> OR
>
> file:C:\Program Files\1stWORKS\hotCommLite\UPLOADS\dloomis514_03-01-
> 04_T184258.HCC
>
> Thanks
> MR
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|