{% extends "base.html" %} {% block css %} {% end %} {% block scripts %} {% end %} {% block title %} {{ "%+.2f %s" % (args['revenue'].amount, args['display_name']) }} - Trading {% end %} {% block content %}

{{ args['display_name'] }} Trading

{% module StartEnd(args['start_end_widget']['start_time'], args['start_end_widget']['end_time']) %}
{% if args['end_timestamp'] < args['now_timestamp'] %}

Net

{% else %}

Current

{% end %}

{{ '%s %.2f' % (args['open_position'].currency, args['open_position'].amount) }}

{{ '%s %.2f' % (args['open_pl'].currency, args['open_pl'].amount) }}

Volume

{{ '%s %.2f' % (args['volume'].currency, args['volume'].amount) }}

Revenue/Fees (m)

{{ args['revenue'] }}

{{ args['matched_fees'] }} {% if args['matched_volume_currency_fees'] %}
({{ "%s %0.2f" % ( args['volume_currency'], args['matched_volume_currency_fees'].amount, )}}) {% end %}

{% end %}