Tooltip in amibroker 5.4

#12
now the point is that , what is the additional feature 5.40 over 5.30. any one know pls
it's much faster because of new multi-treading engine. completely rewritten.

version 5.5 will have multithreaded backtesting, scanning, exploring and optimization enabled. it also will have completely new analysis window which in addition will have the ability to run AA window in multiple instances.
 

kaly422000

Well-Known Member
#13
it's much faster because of new multi-treading engine. completely rewritten.

version 5.5 will have multithreaded backtesting, scanning, exploring and optimization enabled. it also will have completely new analysis window which in addition will have the ability to run AA window in multiple instances.
but as the main discussion of this thread , i (may be everyone) want the the tooltip as 5.30 , as we can see the open,high,low,close in sheet one.
 
#14
with this code we will have tooltip as AB 5.3

Plot( C, "Close", colorBlack , styleNoTitle+styleCandle );
Plot( O, "O", colorBlack, styleHidden );
Plot( H, "H", colorBlack, styleHidden );
Plot( L, "L", colorBlack, styleHidden );
Plot( C, "C", colorBlack, styleHidden );
 
Last edited:

kaly422000

Well-Known Member
#15
with this code we will have tooltip as AB 5.3

Plot( C, "Close", colorBlack , styleNoTitle+styleCandle );
Plot( O, "O", colorBlack, styleHidden );
Plot( H, "H", colorBlack, styleHidden );
Plot( L, "L", colorBlack, styleHidden );
Plot( C, "C", colorBlack, styleHidden );
now query like newbee , how to add this code , from edit formula. and if i place it as an afl in a different sheet . can i do that .
then what to add with it . if u help pls.
 
#16
now query like newbee , how to add this code , from edit formula. and if i place it as an afl in a different sheet . can i do that .
then what to add with it . if u help pls.
save the below one as tooltip.afl and add it to your (custom) price chart. that's it.

Code:
Plot( O, "O", colorBlack, styleHidden );
Plot( H, "H", colorBlack, styleHidden );
Plot( L, "L", colorBlack, styleHidden );
Plot( C, "C", colorBlack, styleHidden );
 

kaly422000

Well-Known Member
#17
save the below one as tooltip.afl and add it to your (custom) price chart. that's it.

Code:
Plot( O, "O", colorBlack, styleHidden );
Plot( H, "H", colorBlack, styleHidden );
Plot( L, "L", colorBlack, styleHidden );
Plot( C, "C", colorBlack, styleHidden );
if i replace the price formula in sheet 1 of ami 5.40 with the price formula of 5.30 or copy paste the price formula of 5.30 and insert it in any other sheet in 5.40 as afl.
 

Similar threads