AFL to show High and Low price of candles

pkgmtnl

Well-Known Member
#11
Respected Anant ji,.
is it possbile in Ami to auto slide of dispaying charts of selected watchlist.

I mean Like we have 20nos scripts in a watchlist,
Can it be possible that they could be auto displayed like slides one by one?
 

asnavale

Well-Known Member
#12
Respected Anant ji,.
is it possbile in Ami to auto slide of dispaying charts of selected watchlist.

I mean Like we have 20nos scripts in a watchlist,
Can it be possible that they could be auto displayed like slides one by one?
I will check it and reply.

-Anant
 
Last edited:
#13
Anantji,

Is it possible to display OHLC price in real time as we move cursor around the screen? Presently we can see the OHLC price when we select the bar or we move bar using right or left arrow button. I have tooltips but they take forever to popup. I am sure there must be some setting which will enable this option. I have tried to find this answer in Manual and on websites without any luck.

Regards,

Rakesh
 

Sunny1

Well-Known Member
#14
I am using amibroker 5.00. earlier when i keep pointer on candle it would show value of high ,low ,open and close. since I uninstalled pattern explorer it showing only close value..
how to get it back to show high low open close values??
 
#15
I am using amibroker 5.00. earlier when i keep pointer on candle it would show value of high ,low ,open and close. since I uninstalled pattern explorer it showing only close value..
how to get it back to show high low open close values??

put this line to your afl

ToolTip=StrFormat("Open: %g\nClose: %g\n+/-: %g\nHigh: %g\nLow: %g\nVolume: "+NumToStr(V, format = 1, separator=True), O, C, SelectedValue(C-O), H, L);