| 
 PureBytes Links 
Trading Reference Links 
 | 
Sample of a Average Price ribbon plot. (Kinda).
Thought it was an interesting visual 
effect of a Plots - STYLECANDLE.
Pardon if it has been expressed before.
Jack Kinsey 
Plot( C, "", colorBlack, styleCandle);	// Plot "ACTUAL" Price Candles
P1 = Param("P1", 20, 5, 200, 1);	// Parameters for moving Avgs
P2 = Param("P2", 50, 5, 200, 1);
C = MA(C, P1);	// Change Close & Open arrays
O = EMA(C, P2);         // to Moving averages.
Plot( C, "", colorBlack, styleCandle);	// Plot spread between MAs as
Candles
RestorePriceArrays ();			// Restore Price Arrays
Title = Name() + "    " + FullName() + "      " + Date() +	// Build Title
"\nOpen  " + O +  "    Close  " + C +
"\nHigh  " + H + "     Low  " + L ;
------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12heje1vi/M=362343.6886682.7839641.1493532/D=groups/S=1705632198:TM/Y=YAHOO/EXP=1123107987/A=2894350/R=0/SIG=10tj5mr8v/*http://www.globalgiving.com">Make a difference. Find and fund world-changing projects at GlobalGiving</a>.</font>
--------------------------------------------------------------------~-> 
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to 
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
 
 |