PureBytes Links
Trading Reference Links
|
Hi,
To plot a cloud you have to set the upper/lower levels of the cloud-area however your four "r" values are all the same so they will plot as a line. You need to decidee what the upper and lower cloud borders are.
bets regards,
herman
Sunday, February 11, 2007, 11:22:09 AM, you wrote:
> Hello
> I am still trying to understand how the stylecloud works. I have the
> following example where i am trying to plot the cmf in style cloud.
> i start off by getting a function cmf to return the cmf values.
> then i am using the plot ohlc to plot it in stylecloud. i still get
> only a line graph. can someone explain how the style cloud works and
> how i can make this one work properly.
> _SECTION_BEGIN("Chaikin Money Flow");
> function CMF(r1)
> {
Graph0=Sum(IIf( H>>L && V>0,((( C-L )-( H-C )) / ( H-L ))*V,0),r1) /
> Sum(V,r1);
> return Graph0;
> }
> r1=Param("Periods", 21);
> r=CMF(r1);
> SetChartOptions(0,0,ChartGrid30 | ChartGrid70 );
>
> Plot( r, "CMF", colorBlack );
> PlotOHLC( r,r,r,r, "", IIf( r > 50, colorRed, colorGreen ),
> styleCloud , 30, 70 );
> 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.35/680 - Release Date: 2/10/2007 9:15 PM
|