...
You can also specify a minimum/maximum of two or three fees (available in PropReports v1.5.91.17 and greater):
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 |
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):
Example | Description |
---|---|
markup(0.003) | Add a charge of 0.003 per share to the imported fee. |
markdown([1]) | Reduce imported fee by $1 |
Blocks
To avoid repeating the same condition you can specify blocks.
...