You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: DONE_TO_DO.md
+5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Release notes
2
2
3
+
## Version 0.12.0
4
+
5
+
* Capital correction now works. New methods: system.accounts.capital_multiplier, system.accounts.portfolio_with_multiplier, system.portfolio.get_actual_positon, system.portfolio.get_actual_buffers_with_position, system.accounts.get_buffered_position_with_multiplier. See this [blog post](http://qoppac.blogspot.co.uk/2016/06/capital-correction-pysystemtrade.html) and [the guide](https://github.com/robcarver17/pysystemtrade/blob/master/docs/userguide.md#capcorrection)
6
+
7
+
3
8
## Version 0.11.2
4
9
5
10
* Smooth fixed weights as well as variable: removed ewma_span and moved to new config item forecast_weight_ewma_span and same for instruments. Removed override of get_instrument_weights, get_forecast_weights method from estimated classes.
Copy file name to clipboardexpand all lines: docs/userguide.md
+55-5
Original file line number
Diff line number
Diff line change
@@ -2725,9 +2725,6 @@ base_currency: "USD"
2725
2725
Note that the stage code tries to get the percentage volatility of an instrument from the rawdata stage. Since a rawdata stage might be omitted, it can also fall back to calculating this from scratch using the data objectand the default volatility calculation method.
2726
2726
2727
2727
2728
-
#### New or modified position scaling stages
2729
-
2730
-
In the future I'll update this stage to allow for variable capital.
You may also want to use *cumulated* returns, which use compound interest rather than the simple addition I normally use. See this blog for more information FIXME
2963
+
You may also want to use *cumulated* returns, which use compound interest rather than the simple addition I normally use. See this [blog post](http://qoppac.blogspot.co.uk/2016/06/capital-correction-pysystemtrade.html).
2967
2964
2968
2965
```python
2969
2966
acc_curve.cumulative()
@@ -3211,7 +3208,7 @@ I plan to include ways of summarising profits over groups of assets (trading rul
3211
3208
# Processes
3212
3209
</a>
3213
3210
3214
-
This section gives much more detail on certain important processes that span multiple stages: logging, estimating correlations and diversification multipliers, andoptimisation.
3211
+
This section gives much more detail on certain important processes that span multiple stages: logging, estimating correlations and diversification multipliers, optimisation, andcapital correction.
I've included a smoothing function, other wise jumps in the multiplier will cause trading in the backtest. Note that the FDM is calculated on an instrument by instrument basis, but if instruments have had their forecast weights and correlations estimated on a pooled basis they'll have the same FDM. It's also a good idea to floor negative correlations at zero to avoid inflation the DM to very high values.
3489
3486
3490
3487
3488
+
<a name="capcorrection">
3489
+
## Capital correction: Varying capital
3490
+
</a>
3491
+
3492
+
Capital correction is the process by which we change the capital we have at risk, and thus our positions, according to any profits or losses made. Most of pysystemtrade assumes that capital is*fixed*. This has the advantage that risk is stable over time, and account curves can more easily be interpreted. However a more common method is to use *compounded* capital, where profits are added to capital and losses deducted. If we make money then our capital, and the risk we're taking, and the size of our positions, will all increase over time.
3493
+
3494
+
There is much more in this [blog post](http://qoppac.blogspot.co.uk/2016/06/capital-correction-pysystemtrade.html). Capital correction is controlled by the following config parameter which selects the function used for correction using the normal dot argument (the default here being the function `fixed_capital`in the module `syscore.capital`)
3495
+
3496
+
YAML:
3497
+
```
3498
+
capital_multiplier:
3499
+
func: syscore.capital.fixed_capital
3500
+
```
3501
+
3502
+
Other functions I've written are `full_compounding` and `half_compounding`. Again see the blog post [blog post](http://qoppac.blogspot.co.uk/2016/06/capital-correction-pysystemtrade.html) for more detail.
3503
+
3504
+
To get the varying capital multiplier which the chosen method calculates use `system.accounts.capital_multiplier()`. The multiplier will be 1.0 at a given time if the variable capital is identical to the fixed capital.
3505
+
3506
+
Here's a list of methods with their counterparts for both fixed and variable capital:
| Get capital at risk |`positionSize.get_daily_cash_vol_target()['notional_trading_capital']`|`accounts.get_actual_capital()`|
3511
+
| Get position in a system portfolio |`portfolio.get_notional_position`|`portfolio.get_actual_position`|
3512
+
| Get buffers for a position |`portfolio.get_buffers_for_position`|`portfolio.get_actual_buffers_for_position`|
3513
+
| Get buffered position |`accounts.get_buffered_position`|`accounts.get_buffered_position_with_multiplier`|
3514
+
| Get p&l for instrument at system level |`accounts.pandl_for_instrument`|`accounts.pandl_for_instrument_with_multiplier`|
3515
+
| P&L for whole system |`accounts.portfolio`|`accounts.portfolio_with_multiplier`|
3516
+
3517
+
All other methods in pysystemtrade use fixed capital.
3491
3518
3492
3519
<a name="reference">
3493
3520
# Reference
@@ -3646,6 +3673,8 @@ Other methods exist to access logging and cacheing.
3646
3673
|`portfolio.get_instrument_diversification_multiplier`| Standard / Estimate || D |Get instrument div. multiplier |
3647
3674
|`portfolio.get_notional_position`| Standard |`instrument_code`| D,O |Get the *notional* position (with constant risk capital; doesn't allow for adjustments when profits or losses are made) |
3648
3675
|`portfolio.get_buffers_for_position`| Standard |`instrument_code`| D,O |Get the buffers around the position |
3676
+
|`portfolio.get_actual_position`| Standard |`instrument_code`| D,O | Get position accounting for capital multiplier|
3677
+
|`portfolio.get_actual_buffers_for_position`| Standard |`instrument_code`| D,O |Get the buffers around the position, accounting for capital multiplier |
3649
3678
3650
3679
3651
3680
@@ -3656,6 +3685,7 @@ Inputs:
3656
3685
| Call | Standard?| Arguments | Type | Description |
|`accounts.get_notional_position`| Standard |`instrument_code`| I |`portfolio.get_notional_position`|
3688
+
|`accounts.get_actual_position`| Standard |`instrument_code`| I |`portfolio.get_actual_position`|
3659
3689
|`accounts.get_capped_forecast`| Standard |`instrument_code`, `rule_variation_name`| I |`forecastScaleCap.get_capped_forecast`|
3660
3690
|`accounts.get_instrument_list`| Standard || I |`portfolio.get_instrument_list`|
3661
3691
|`accounts.get_notional_capital`| Standard || I |`positionSize.get_daily_cash_vol_target`|
@@ -3665,6 +3695,7 @@ Inputs:
3665
3695
|`accounts.get_daily_returns_volatility`| Standard |`instrument_code`| I |`rawdata.daily_returns_volatility`or`data.daily_prices`|
3666
3696
|`accounts.get_raw_cost_data`| Standard |`instrument_code`| I |`data.get_raw_cost_data`|
3667
3697
|`accounts.get_buffers_for_position`| Standard |`instrument_code`| I |`portfolio.get_buffers_for_position`|
3698
+
|`accounts.get_actual_buffers_for_position`| Standard |`instrument_code`| I |`portfolio.get_actual_buffers_for_position`|
3668
3699
|`accounts.get_instrument_diversification_multiplier`| Standard || I |`portfolio.get_instrument_diversification_multiplier`|
3669
3700
|`accounts.get_instrument_weights`| Standard || I |`portfolio.get_instrument_weights`|
3670
3701
|`accounts.get_trading_rules_list`| Standard |`instrument_code`| I |`combForecast.get_trading_rule_list`|
@@ -3681,15 +3712,21 @@ Diagnostics:
3681
3712
|`accounts.get_instrument_forecast_scaling_factor`| Standard |`instrument_code`, `rule_variation_name`| D |IDM* instrument weight *FDM* forecast weight|
3682
3713
|`accounts.get_capital_in_rule`| Standard |`rule_variation_name`| D | Sum of `get_instrument_forecast_scaling_factor`for a given trading rule|
3683
3714
|`accounts.get_buffered_position`| Standard |`instrument_code`| D | Buffered position at portfolio level|
3715
+
|`accounts.get_buffered_position_with_multiplier`| Standard |`instrument_code`| D | Buffered position at portfolio level, including capital multiplier|
3684
3716
|`accounts.subsystem_turnover`| Standard |`instrument_code`| D | Annualised turnover of subsystem|
3685
3717
|`accounts.instrument_turnover`| Standard |`instrument_code`| D | Annualised turnover of instrument position at portfolio level|
3686
3718
|`accounts.forecast_turnover`| Standard |`instrument_code`, `rule_variation_name`| D | Annualised turnover of forecast|
3687
3719
|`accounts.get_SR_cost_for_instrument_forecast`| Standard |`instrument_code`, `rule_variation_name`| D |SR cost * turnover for forecast|
3720
+
|`accounts.capital_multiplier`| Standard || D, O | Capital multiplier, ratio of actual to fixed notional capital|
3721
+
|`accounts.get_actual_capital`| Standard || D | Actual capital (fixed notional capital times multiplier)|
3688
3722
3689
3723
3690
3724
Accounting outputs:
3691
3725
3726
+
| Call | Standard?| Arguments | Type | Description |
|`accounts.pandl_for_instrument`| Standard |`instrument_code`| D | P&l for an instrument within a system|
3729
+
|`accounts.pandl_for_instrument_with_multiplier`| Standard |`instrument_code`| D | P&l for an instrument within a system, using multiplied capital|
3693
3730
|`accounts.pandl_for_instrument_forecast`| Standard |`instrument_code`, `rule_variation_name`| D | P&l for a trading rule and instrument |
3694
3731
|`accounts.pandl_for_instrument_forecast_weighted`| Standard |`instrument_code`, `rule_variation_name`| D | P&l for a trading rule and instrument as a % of total capital |
3695
3732
|`accounts.pandl_for_instrument_rules`| Standard |`instrument_code`| D,O | P&l forall trading rules in an instrument, weighted |
@@ -3702,6 +3739,7 @@ Accounting outputs:
3702
3739
|`accounts.pandl_for_all_trading_rules`| Standard || D | P&l for trading rules across whole system |
3703
3740
|`accounts.pandl_for_all_trading_rules_unweighted`| Standard || D | P&l for trading rules across whole system |
3704
3741
|`accounts.portfolio`| Standard || O,D | P&l for whole system |
3742
+
|`accounts.portfolio_with_multiplier`| Standard || D | P&l for whole system using multiplied capital|
3705
3743
3706
3744
3707
3745
@@ -4424,3 +4462,15 @@ forecast_cost_estimate:
4424
4462
use_pooled_turnover: True### Use weighted average of turnover across instruments with the same set of trading rules
4425
4463
```
4426
4464
4465
+
#### Capital correction
4466
+
4467
+
Which capital correction method should we use?
4468
+
4469
+
YAML:
4470
+
```
4471
+
capital_multiplier:
4472
+
func: syscore.capital.fixed_capital
4473
+
```
4474
+
4475
+
Other valid functions include full_compounding and half_compounding.
0 commit comments