Hi, i am learning the amibroker,
Does anyone know how to hide the long information box below the crosshair?
Thank you very much!
Hi, i am learning the amibroker,
Does anyone know how to hide the long information box below the crosshair?
Thank you very much!
Uncheck Tools --> Preferences --> Miscellaneous --> "Price data tooltips" option:
If you do not want to disable it globally then on per chart pane basis you may add chartDisableTooltips of SetChartOptions to your AFL.
e.g.
SetChartOptions( 1, chartShowDates | chartShowArrows | chartDisableTooltips );
Then hit Apply button of Formula editor
Milosz and fxhrat, thank you very much. It totally works!