%
var instruments = model.models;
if (!instruments) {
return;
}
%>
<% var mv = '';
var decimals;
var topFlopCls;
var ticker;
var min;
var max;
_.each(model.models, function (instrument) {
mv = instrument.getDescriptorValue("MV");
decimals = instrument.getDecimals();
url = instrument.composeDetailsUrl(); %>
-
<%= instrument.getDescriptorValue(INFOBOLSA.Descriptors.InstrumentTicker)%>
<% if (view.options.type === '3') { %>
<%= instrument.formatAsNumber(INFOBOLSA.Descriptors.Cash, 0) %>
<% } else { %>
<%= instrument.formatAsNumber(INFOBOLSA.Descriptors.Volume, 0) %>
<% } %>
<%
});
%>