June 18, 2016 17:13
THIS IS A BETA VERSION OF THE SOFTWARE. EXPECT BUGS !!!
Backup your data files and entire AmiBroker folder first!
INSTALLATION INSTRUCTIONS
First you need to have full version of AmiBroker 6.10 installed. Then just run the BETA installer and follow the instructions.
Then run AmiBroker. You should see "AmiBroker 6.14.0" written in the About box.
See CHANGE LOG below for detailed list of changes. Note that only changes that affect end-user directly are listed here. Internal code changes/refactoring is usually not mentioned.
CHANGE LOG
CHANGES FOR VERSION 6.14.0 (as compared to 6.13.0)
CHANGES FOR VERSION 6.13.0 (as compared to 6.12.0)
0 - X and Y coordinates are expressed in screen pixels
1 - X coordinate is bar index, Y coordinate is price
2 - X coordinate is pixel, Y coordinate is price
3 - X coordinate is bar index, Y is pixel
x = 19;
m = 2;
s = 9;
printf("PDF %g CDF %g", NormDist( x, m, s, False ), NormDist( x, m, s, True ) );
x = -7;
m = 0;
s = 1;
printf("PDF %g CDF %g", NormDist( x, m, s, False ), NormDist( x, m, s, True ) );
mx = PriceVolDistribution( H, L, V, 100, False, fvb, lvb );
GfxSetCoordsMode( 1 );
GfxSelectPen( colorRed );
bins = MxGetSize( mx, 0 );
for( i = 0; i < bins; i++ )
{
price = mx[ i ][ 0 ]; // price level
relvolume = mx[ i ][ 1 ]; // relative volume 0..1
relbar = relvolume * (lvb-fvb+1);
GfxMoveTo( fvb, price );
GfxLineTo( fvb + relbar, price );
}
Plot( C, "Price", colorDefault, styleBar );
if( ParamToggle("BuildinVAP", "No|Yes") ) PlotVAPOverlay( 100, 100, colorGreen, 2 );
Example error codes:
Loading 'AmiBroker\Plugins\FT.dll' - failed. Error code: 126: The specified
module could not be found.. (0.63 ms)
- this means that the FT.DLL could not be loaded because it depends on
other DLL that is missing (or not found in search path)
Loading 'AmiBroker\Plugins\TC2K.dll' - failed. Error code: 1114: A dynamic
link library (DLL) initialization routine failed.. (0.23 ms)
- this means that TC2K.DLL was loaded fine but its InitInstance function
exited with error code. In that case it was because Telechart was not
installed and/or its OLE server not registerd
Loading 'F:\AmiBroker\Plugins\Sample.dll' - failed. Error code: 193:
Not a valid 32-bit DLL. (0.14 ms)
- this means that you attempted to use 64-bit DLL with 32-bit application
(not supported by OS)
CHANGES FOR VERSION 6.12.0 (as compared to 6.11.0)
Loading and drawing BMP files is much faster than PNG (as much as 10 times
faster), approx load and rendering time is 0.3 ms for BMP, 3 ms for PNG
(alphablended).
Timings that you get from Code check and profile are misleading for Gfx
functions because they don't include actual on-screen rendering.
GfxDrawImage( "wizard.bmp", 100, 0 ); // bitmap - fast
GfxDrawImage( "logo.png", 30, 30 ); // png - supports per-pixel
alpha channel / transparency
Plot( y, "exponential growth", colorRed );
CHANGES FOR VERSION 6.11.0 (as compared to 6.10.0)
Filter = 1;
AddColumn( DateTime(), "DT
ISO", formatDateTimeISO ); // generate a date/time
column that is always in ISO format regardless of regional settings in Windows
HOW TO REPORT BUGS
If you experience any problem with this beta version please send detailed description of the problem (especially the steps needed to reproduce it) to support at amibroker.com