| PureBytes Links Trading Reference Links | 
Hello,
Thank you very much for your kind reply.
Regards.
--- In amibroker@xxxxxxxxxxxxxxx, Shri P Mamgain <mm9547@xxx> wrote:
>
> _SECTION_BEGIN("VOLUME_Hight of Volume Bars Control");
> 
> 
> PlotVOL = ParamToggle( "plot Volume?","No| Yes",0);
> 
> VolColor = (C>O OR (C==O AND
> (H-C)<=(C-L) ))*ParamColor( "VUpColor" ,colorBlueGrey) +
> 
> (C<O OR (C==O AND
> (H-C)>(C-L)) )*ParamColor( "VDnColor" ,colorPink) ;
> 
> VolScale = Param("1/Vol. Height (TimeBar chart)(fraction of window) 5=1/5=20%",10, 2, 100, 1.0) ; // Timebars
> 
> if (PlotVOL >0) 
> 
> {
> 
> Vheight = VolScale;
> 
> Plot(Prec(Volume ,0),"V",VolColor,
> styleNoTitle| styleOwnScale| styleNoLabel| styleThick| ParamStyle( "VStyle", styleHistogram,maskHistogram| styleNoLabel) ,Vheight ); }
> //Plot(MA(Volume,50),"",colorLightBlue,styleLine);
> _SECTION_END();
> 
> You can tweak the height of Bars in parameters.
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to 
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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:
    amibroker-digest@xxxxxxxxxxxxxxx 
    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/
 |