AddRow
- add raw text row to exploration

Exploration / Indicators
(AmiBroker 60)


SYNTAX AddRow(''text'')
RETURNS NOTHING
FUNCTION The function adds a raw text row to the exploration (allows outputing things without respecting Filter and without being limited to number of bars). This function is preliminary and its parameters are subject to change.
EXAMPLE SetOption("NoDefaultColumns", True );
Filter = 1;
AddColumn( Close, "Column1" );
AddColumn( Null, "Column2" );

for( i = 0; i < 10; i++ )
{
   AddRow( StrFormat( "row %g second column", i ) );
}
SEE ALSO AddColumn() function , AddTextColumn() function

References:

The AddRow function is used in the following formulas in AFL on-line library:

More information:

See updated/extended version on-line.