Yes, order matters. Just like B-tree indexes in other databases, the index can be used efficiently when filters match a prefix of the index columns - to be more specific, the index can be efficiently seeked into on equality filters on the first k columns of the index optionally followed by an inequality/range filter on the k+1st column.
In your example, index order Type, BusinessDate or Type, Account, BusinessDate would be good options.