PureBytes Links
Trading Reference Links
|
Hello Kusnady,
To plot with an XShift of 5 use it like this:
Plot( C*1.05, "close", colorRed, style = styleLine,0,0,5);
0, and 0, are not doing anything, in this example, because I am not using style own scale, but they still need to be there if I want to shift.
On the other hand the last three parameters can be left off if we just want to plot a line etc ... in this example styleLine is replaced with the numeric shorthand:
Plot( C*1.05, "close", colorRed,1);
In the help manual you can see that Tomasz uses null, instead of 0, for the unused max and min values (these only apply when using styleOwnScale).
--- In amibroker@xxxxxxxxxxxxxxx, Kusnady <sawios@xxx> wrote:
>
>
> Dear firends,
> Do you have an idea the parameter in PLOT for volume in Red,
>
> Is this the Vol Factor or the XShift?
> Plot( array, name, color/barcolor, style = styleLine, minvalue = {empty}, maxvalue = {empty}, XShift = 0 )
>
> Is it not-documented? as if it is changed, than the plot also changed vertically.
>
>
>
> on command below:
>
>
>
> Plot( Volume, _DEFAULT_NAME(), ParamColor("Color", colorBlueGrey ), ParamStyle( "Style", styleHistogram | styleOwnScale | styleThick, maskHistogram ), 2 );
>
>
> Berselancar lebih cepat. Internet Explorer 8 yang dioptimalkan untuk Yahoo! otomatis membuka 2 halaman favorit Anda setiap kali Anda membuka browser. Dapatkan IE8 di sini!
> http://downloads.yahoo.com/id/internetexplorer
>
------------------------------------
**** 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:
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/
|