Paste FIX log lines below
Example 1 (with ^A delimiter)
Example 2 (with ' | ' delimiter)
{% if rows | length > 0 %}
FIX lines in a grid ({{ size }})
{% for header in headers %}
{{ header }} |
{% endfor %}
{% for row in rows %}
{% for cell in row %}
{% if cell | length > 36 %}
{{ cell }} |
{% else %}
{{ cell }} |
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}