Trade parameters 3 - investment control

The trade size - the number of contracts or currency units purchased - can be determined in four different ways. For directly ordering a certain number of contracts, use Amount or Lots. For investing a certain sum of money, use Margin. For risking a certain sum of money by determining the worst case loss, use Risk.

Lots

Trade size given by an integer number of lots (default = 1; max = LotLimit). 1 lot is defined as the smallest possible order size of the selected asset. Thus, a lot can be a multiple or a fraction of a contract, determined by LotAmount. Since it's the minimum, the trade size can never be less than 1 lot (see remarks). In binary trading mode (BINARY flag) or if Margin is used for the trade size, Lots determines the minimum number of lots to be opened per trade (normally 1). If Lots is 0, no trades are opened.

Amount

Alternative fractional trade size in multiples or fractions of 100,000 units for currencies, and of 1 contract or 1 unit for anything else (default = 0 = trade size given by Lots). This number is independent of the broker's minimum order size and is similar to a 'MT4 lot' for currencies (see remarks). If a nonzero Amount amounts to less than one lot, 1 lot is opened.

Margin

Alternative trade size by invested margin, in units of the account currency (default = 0.00000001 for always opening at least 1 lot). With no leverage, Margin is simply the money invested to purchase the asset. On a leveraged account, Margin is a part of the trade size - for instance 1% at 1:100 leverage - deposited for opening a trade. As long as the trade is open, the margin amount is locked on the account and can not be used for further trades. If Margin is 0 or negative, no trades are opened. Otherwise the trade size is Margin divided by MarginCost.
  The Lots variable still determines the minimum number of lots to be opened per trade. If the trade size by Margin is smaller than Lots and the MARGINLIMIT flag is set, trades are skipped. If the ACCUMULATE flag is set, the size of skipped trades is accumulated until it reaches the Lots amount. Keep Margin at its default value for controlling the number of lots only with the Lots variable.

Risk

Alternative trade size given by the trade risk in units of the account currency (default = 0 = no risk limit). The risk is the theoretical maximum that a trade can lose; it is determined from trade size, stop loss distance, commission, and spread (formula: RiskPerLot = PIPCost /PIP * (Spread + abs(Stop-Price)) + CommissionPerLot; Margin = Risk/RiskPerLot * MarginCost). Since risk is undefined when a trade has no stop loss, the Risk parameter must always be given in combination with Stop. If the risk of a trade at the given Margin is higher than the Risk variable, the trade margin is accordingly reduced.
  When the RISKLIMIT flags is set, trades are skipped when even with a trade size of 1 lot the trade risk is still higher than twice the given Risk value. When Margin is not set, the trade size is only limited by Risk; this can lead to extreme trade sizes and subsequent margin calls when the Stop distance is tight. Due to minimum lot amounts and/or deviations of entry price and current price, the real trade risk displayed in the trade log can deviate from the set up Risk value, especially with tight Stop distances.  

Capital

Initial invested capital in units of the account currency (default = 0 = no initial capital). This has no direct effect on trading, but on calculating the strategy performance in the simulation. Set this to the initial capital when the strategy reinvests profits; Zorro then calculates CAGR instead of AR/ROI and determines performance parameters from the initial invested capital instead of the required capital. If the free capital (Capital minus loss minus total margin on leveraged accounts) becomes negative, Zorro will set the MARGINCALL flag and liquidate trades for reducing the margin. Make sure to set Capital well above the required capital on leveraged accounts, and to reinvest in a way that margin calls are avoided. Setting Capital to a negative amount assumes temporary remargining and disables trade liquidation.

ScholzBrake

Global loss limit in units of the account currency (default = 0 = no loss limit). This limit is required due to a special 2021 German tax law invented by finance minister Olaf Scholz. Taxes are now due for all winning trades, while for losing trades only EUR 10,000 per year can be deducted. Set ScholzBrake to the maximum allowed loss at session start and at the begin of any year. All further losses will then decrease it until it reaches zero. Trades are then suspended until ScholzBrake is set again. In [Trade] mode the ScholzBrake variable is decreased by all losses of Zorro instances that have set it and are trading on real accounts on the same PC. It is updated once per bar and at any trade. See also LossGlobal and Scholz tax.

Type:

var
 

MaxLong

MaxShort

Maximum number of open and pending long or short trades with the same asset and algo. If the limit amount is reached in [Test] or [Trade] mode, enter calls do not enter more trades, but they still close reverse positions and update the stop limits, profit targets, and life times of open trades to the values that the new trade would have. If set to a negative number, open trades are not updated. The limits are ignored in [Train] mode. 

Type:

int
 

Remarks:

Examples:

// set margin from slider
Margin = slider(1,500,0,2000,"Margin","Average margin in $");

// activate the Scholz Brake
if(is(INITRUN) || year(0) != year(1))
  ScholzBrake = 9900;

See also:

enterLong/Short, Stop, Spread, PIP, PIPCost, MarginCost, Win/LossPayout, TradeMode

 

► latest version online