PureBytes Links
Trading Reference Links
|
Hi,
Do you mean like in this example ?
http://www.amibroker.com/guide/h_indbuilder2.html
Best Regards
--- In amibroker@xxxxxxxxxxxxxxx, "murthysuresh" <money@xxx> wrote:
>
> hello
> i want to paint the space between the 2 ma in a different color if the
> DrawStyleCloud conditions are true. i need some help with coding the
> style cloud.
> pl help.
>
> _SECTION_BEGIN("EMA");
> P7 = EMA( C, 7 );
> P15 = EMA( C, 15 );
> Plot( P7, "P7", colorGreen, styleLine );
> Plot( P15, "P15", colorBlue, styleLine );
> range=MA(High-Low,15);
>
> DrawStyleCloud=IIf(C<P7<P15 AND (P7-Low)<range,True,False);
> // now how do i draw style clound between P7 and P15
> _SECTION_END();
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|