...
Example | Description |
---|---|
max(0.003%, 0.003) | Result will be the highest of : (0.003 * trade value) or (0.003 * quantity) |
min(0.003%, 0.003, 3) | Result will be the lowest of : (0.003 * trade value) or (0.003 * quantity) or 3 |
Markup/Markdown
To mark up or mark down a received (original) fee you can specify a fee as follows (PropReports v1.5.97.14.36 and greater):
Important: When using in Fee Rules plan, the fee that is being marked up/down is the computed Exchange Fee. If you need to mark up/down a different trade fee, you will need to use this within a Per Execution plan type.
Example | Description |
---|---|
markup(0.003) | Add a charge of 0.003 per share to the imported fee. |
markdown([1]) | Reduce imported fee by $1 |
...