Next big release (AmiBroker 7.x) wish list

Would love the ability to save the columns in optimization report. Each time I do an optimization I have to manually retoggle them, and it is becoming tedious.

I wish we get AI enabled afl editor that can write complex code and loops based on the prompts we provide.

1 Like

Ability to set selected symbol via AFL or modify SetForeign() to include date arrays.

This will allow us to verify the last data date using a known symbol that is likely to be current

Better support for debugging include files.

Identify line number of error in include file

2 Likes

You can do this right now. Just create a single formula that you would "INSERT LINKED" into two panes.

#pragma enable_static_decl ""
static _period;

mode = ParamToggle("Mode", "0|1" );

switch( mode )
{
   case 0:
	_period = Param("RSI Period", 14, 2, 100 ); 
	Plot( Close, "Price", colorDefault, styleCandle );
	break;
	
   case 1:
    Plot( RSI(_period), "RSI"+_period, colorRed );
	RequestTimedRefresh(1);
    break;
}

You insert the very same formula twice. In lower pane you change mode parameter to "1" (so it shows RSI). Now you can control _period parameter in BOTH panes simultaneously using upper pane (with mode == 0).

2 Likes