I am wondering if there is currently any capability in AFL for defining param tooltips in AFL that appear when the mouse hovers over a parameter’s description.
empottasch, Thank you for your response. I could not figure out, from the documentation, how to add a tooltip to an individual Parameter’s description. Any other thoughts?
ok well, guess I didn’t read your question in detail. You can create your own toolstips but in specific creating parameter window tooltips I am not sure.
My goal was to provide additional information for each parameter. Since per-parameter tooltips are not a viable option, I found something better!. Essentially, I write my additional information to the Interpretation window. Very convenient! Here is a code snippet for anyone interested.
//****************************************************************
function Commentary(InfoText)
//****************************************************************
{
if( Status("action") == actionCommentary )
{
EnableTextOutput(1);
printf(InfoText);
EnableTextOutput(0);
}
showMACDParamHelp= ParamToggle("Show MACD Parameter Help ","No|Yes",defaultval = 0);
if (showMACDParamHelp AND Status("action") == actionCommentary)
{
Commentary("<b>MACD - Moving Average Convergence Divergence</b>\n"
+"Parameter Help\n\n");
Commentary("<b>\nMACD</b>\n");
Commentary("<b>Show MACD Lines:</b>\t" + "Plot the MACD Line and Signal Line\n");
}