--- title: "ichimoku: Beyond Visualization - Quantitative Strategies" output: rmarkdown::html_vignette: toc: true vignette: > %\VignetteIndexEntry{ichimoku: Beyond Visualization - Quantitative Strategies} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 7, fig.height = 5 ) ``` ```{r setup} library(ichimoku) ``` ## Introduction There are multiple ways to work with Ichimoku Kinko Hyo strategies using the ichimoku R package. First and foremost is visually, and the functions for visualization are described in the [reference vignette](reference.html). However, for performing analysis on the data directly, complications of the ichimoku system can quickly become apparent. The Chikou span in particular poses a challenge as the position of this indicator needs to be mapped in relation to the chart elements 26 periods previously, however this then affects trading decisions at the present point in time. The 'strategy layer' of the ichimoku package aims to prepare the data in a standardized format for ease of further analysis. Short strategy summaries are generated automatically, but are designed to serve as a quick reference rather than a replacement for a full backtest using a package such as 'PerformanceAnalytics'. The `autostrat()` function is used to further facilitate idea generation, and leverages the computational capability of R to simultaneously test all valid indicator combinations. Risk warning: past results are not necessarily indicative of future performance, and should always be considered within the context of a comprehensive risk analysis framework. ## Working with Strategies ### 1. Use `ichimoku()` To create an ichimoku object from the price data. ```{r ichimoku} # Simulated OHLC pricing data is assigned to data frame 'TKR': TKR <- sample_ohlc_data cloud <- ichimoku(TKR) ``` ### 2a. Simple strategies using `strat()` To test a simple strategy with an indicator condition of the form 'long (or short) while c1 > c2'. Here 'c1' and 'c2' are the quoted column names of the ichimoku object representing either candlestick values e.g. 'close' or cloud values e.g. 'tenkan'. Note: the indicator condition remains of the form c1 > c2 even for short trades. Hence please take care, for example, when inverting 'long while close > tenkan' to 'short while close < tenkan', this should actually be formulated as 'short while tenkan > close'. ```{r strat} strat <- strat(cloud, c1 = "cloudB", c2 = "kijun") print(strat[100:105, ], plot = FALSE) ``` The use of `strat()` returns an augmented ichimoku object. The printout above of a slice of the object (rows 100 to 105) shows that the following columns are appended: - `$cond`: '1' if the indicator condition is met at the close of the the time period (note: if the indicator condition involves chikou span, the comparison will be of past periods) - `$posn`: '1' represents that a position is held during this time period (i.e. from the 'open' to the 'close') - `$txn`: '1' represents a transaction to enter a new position, '-1' represents a transaction to exit an existing position. All transactions are assumed to happen at the 'open' of the respective period - `$logret`: the log returns from the 'open' price of the period to the 'open' price of the next period. For the avoidance of doubt, 'log returns' means the natural logarithm of the difference between the prices - `$slogret`: the log returns for the strategy. It is simply logret * posn, i.e. the returns where a position is held - `$ret`: the discrete returns from the 'open' price of the period to the 'open' price of the next period. For the avoidance of doubt, this is calculated as e raised to the power of 'logret' minus 1 - `$sret`: the discrete returns for the strategy. It is simply ret * posn, i.e. the returns where a position is held Note: the following assumptions apply to all strategies: - confirmation of whether a condition is satisfied is received at the 'close' of a particular period - a transaction is initiated at the immediately following 'open' - all transactions are conducted at opening prices All events are aligned to their correct time periods, which are taken to be from the 'open' to the 'close' inclusive of that period: - 'cond' refers to if the condition is satisfied at the 'close' of the period - 'posn' refers to whether a position is held at the 'close' of the period - 'txn' refers to if there has been a transaction during the period (occurring at the 'open') ### 2b. Complex strategies using `strat()` Complex strategies can be created by `strat()` simply by supplying 'c3' and 'c4' to the function. These are the quoted column names of the ichimoku object that form the second part of the indicator condition. To create the desired complex strategy, the argument 'type' must also be specified. By default this is set to 2, which means the strategy will be a combined strategy formulated as 'c1 > c2 & c3 > c4', where both conditions must be satisfied. If 'type' is set to 3, the strategy will be formulated as an asymmetric strategy 'c1 > c2 x c3 > c4', where 'c1 > c2' is used as a position entry indicator, and 'c3 > c4' as a position exit indicator. + Note: when the strategy is, for example, 'close > tenkan x tenkan > close', this is equivalent to the simple strategy 'close > tenkan' but not identical due to the strict inequality. In the former, the situation 'close = tenkan' does not trigger a position exit but in the latter it does ### 3. View strategy summary with `summary()` A summary of the strategy is saved as an attribute to the ichimoku object and can be accessed by the `summary()` method for ichimoku objects. ```{r summary} summary(strat) ``` The summary is designed to provide a quick overview of whether a strategy is effective / desirable: - Strategy returns are compared with the benchmark, which is simply holidng a position throughout the period - Comparing returns combined with total periods in the market can help determine if the strategy is substantially different from just taking market risk - Total trades along with average trade length can be used to filter out undesirable strategies that over-trade - Trade success % helps to characterise the consistency of the strategy or whether it relies on a small percentage of outsize returns - The return of the worst-performing trade provides a measure of downside risk See [strategy summary specification](#strategy-summary-specification) for details of the reported measures. ### 4. Visualize by calling `plot()` or `iplot()`. ```{r plot} plot(strat, theme = "dark") ``` The periods where the strategy results in a market position are now shaded on the ichimoku cloud chart. The strategy is also printed as the chart subtitle (if not otherwise specified). To view the original chart without the strategy, simply pass the argument `strat = FALSE` when calling `plot()` or `iplot()`. ### 5. Combine strategies using `stratcombine()` `stratcombine()` can be used to create custom combined strategies from existing strategies contained in ichimoku objects 's1' and 's2' to form 's1 & s2'. ```{r combine} strat2 <- strat(cloud, "kijun", "tenkan") newstrat <- stratcombine(strat, strat2) summary(newstrat) ``` Note: rather than combining simple strategies using `stratcombine()`, it is preferable to supply all 4 arguments 'c1', 'c2', 'c3', and 'c4' directly to `strat()` to generate a strategy of 'c1 > c2 & c3 > c4'. ### 6. Further backtesting and returns analysis The strategy returns are saved within the ichimoku object in the columns 'slogret' (strategy log returns) and 'sret' (strategy discrete returns). The benchmark returns for all periods are saved as 'logret' (log returns) and 'ret' (discrete returns). As the ichimoku object inherits the 'xts' class, these columns may be fed directly into other econometrics or time series analysis packages such as 'PerformanceAnalytics', as per the example below. ```{r perfana, eval=FALSE} library(PerformanceAnalytics) # To chart performance comparison of strategy vs benchmark, daily returns and drawdowns charts.PerformanceSummary(strat[, c("sret", "ret")]) # For a table detailing drawdowns, including depth, length of recovery etc. table.Drawdowns(strat[, "sret"]) ``` ## Advanced Strategies and ML ### `autostrat()` The analytic capability of R can be leveraged to generate and evaluate all possible strategies. This function is designed for simplicity and can be called on an ichimoku object without any additional arguments. The optional arguments it does take are limited to: - `n` [default 8] number of strategies to return - `dir` [default 'long'] trade direction 'long' or 'short' - `level` [default 1] to return simple strategies. For complex strategies, set `level = 2` to return combined strategies of the form 's1 & s2' or `level = 3` to return asymmetric strategies of the form 's1 x s2' - `quietly` if set to TRUE, will suppress printing of additional output to the console and return quietly ```{r autostrat} autostrat(cloud, n = 3) ``` The output of `autostrat()` is a list of ichimoku objects. Each object may be accessed by its position in the list e.g. `[[1]]` for the first object. The metadata is also saved as attributes to the list and can be accessed by the function `look()`: - **logret**: the log returns of all combinations computed by autostrat - **summary**: the strategy summaries Note: the strategies returned may not be in order of strategy returns as displayed in the strategy summaries. This is due to the fact that the implementation via `mlgrid()` simultaneously tests all strategies using the same time interval for comparability. However individual strategies are then run on the top 'n' strategies using all of the available data for those indicators, which may be more than that used during comparison. Note: as SenkouA, SenkouB, cloudT and cloudB are used in conjunction with other indicators, it is possible to get a series of similar returns with cloudB > close, senkouB > close etc. Although these strategies may at times be equivalent or considered equivalent, this is not always the case and all such results are returned. ### `autostrat()` Levels 2 and 3 Set the argument `level = 2` to `autostrat()` to test all strategies with a combination of up to 2 indicator conditions, i.e. strat() with type = 2. ```{r autostrat2} autostrat(cloud, n = 3, dir = "short", level = "2") ``` Set the argument `level = 3` to `autostrat()` to test all strategies using an asymmetric combination of up to 2 indicator conditions, i.e. strat() with type = 3. Note that level 3 autostrat is considered somewhat experimental as the results will tend to have higher sensitivity to the data and in particular the starting conditions. ```{r autostrat3} autostrat(cloud, n = 3, dir = "long", level = "3") ``` ### `mlgrid()` The ML layer provides tools for further developing quantitative ichimoku solutions. `mlgrid()` generates a numeric representation of the relationship between ichimoku cloud chart elements, which represent a set of stationary price features. Its purpose is to provide a base grid for machine learning workflows. The returned object is a data.frame or matrix in a 'tidy' format with one observation per row and one feature per column with the target 'y' as the first column. `mlgrid()` is used to power the `autostrat()` and `relative()` functions. The 3 basic types of grid are shown below. 'boolean' produces a '1' or '0' depending on whether the condition c1_c2 (read c1 > c2) is met: ```{r mlgrid} mlgrid(cloud, y = "logret", dir = "long", type = "boolean", unique = TRUE)[100:105, 1:4] ``` 'numeric' produces the numeric difference of c1 - c2: ```{r mlgrid2} mlgrid(cloud, y = "ret", dir = "short", type = "numeric", unique = FALSE)[100:105, 1:4] ``` 'z-score' produces the standard score of a 'numeric' type grid: ```{r mlgrid3} mlgrid(cloud, y = "ret", dir = "short", type = "z-score", unique = FALSE)[100:105, 1:4] ``` Note: only valid combinations are included within the grid. Any combination involving 'open' is excluded as it is in effect a lagged indicator and not contemporaneous. The following trivial or highly-collinear pairs are also excluded: {high, close} ,{low, close}, {low, high}, {cloudT, senkouA}, {cloudB, senkouA}, {cloudT, senkouB}, {cloudB, senkouB}, {cloudB, cloudT}. The parameter 'unique' defaults to TRUE to return only unique combinations of c1 and c2, but can also be set to FALSE to return both c1 > c2 and c2 > c1 where the situation merits. The 'y' column can be switched between log and discrete returns. The date-time index corresponds to when the condition is met at the close for that period. The return is the single-period return achieved by transacting at the immediately following opening price until the next opening price. In this sense, the time periods do not strictly match, but are nevertheless correctly paired. The calculation of the returns and correct pairing effectively uses up 2 periods, hence in order to obtain the grid for the latest available price data, y must be set to 'none', in which case a grid is returned without the target variable. ### `relative()` Produces a statistical summary of the latest numeric representation of the ichimoku cloud chart relative to historical values contained within the ichimoku object. This can aid in determining whether current trading falls within or outside of normal ranges. Takes the following optional arguments: - `order` [default FALSE] set to TRUE to order the results by the absolute 'z-score'. Those with the highest values are listed first - `signif` [default 0.2] set a significance threshold for which if 'p' is equal or lower, the element will be starred with a '*'. Note: this value may be freely set and the default of 0.2 is arbitrary with no special significance - `quietly` if set to TRUE, will suppress printing of additional output to the console and return quietly ```{r relative} relative(cloud, signif = 0.4)[1:10, ] ``` 'mean(X)' is the mean value for each element X, 'sd(X)' the standard deviation, and 'X[n]' the nth or latest observed values. 'res' is the residual X[n] - mean(X) and represents a centred measure of deviation for the latest observed value. The 'z-score' (or standard score) is calculated as res / sd(X) and is a centred and scaled measure of deviation for the latest observed value. 'p >= |z|' represents the empirical probability of the latest observed absolute 'z-score' or greater. 'p*' will display a star if 'p >= |z|' is less than or equal to the value of the argument 'signif'. 'E(|res|)|p' represents the mean or expected absolute value of 'res', conditional upon the absolute 'z-score' being greater than equal to the latest observed absolute 'z-score'. This provides an indication by how much 'res' might increase in more extreme cases. ## Strategy Summary Specification `---` **Strategy cuml return %**: The (discrete) percentage return achieved by pursuing the strategy, assuming all returns are compounded. This measure is equivalent to the sum of log returns converted back into a discrete return **Per period mean ret %**: The percentage return (above) divided by the periods in market (below) **Periods in market**: The number of periods (days, or whatever the periodicity of the data is) in the market **Total trades**: Total number of trades to implement the strategy. Note that each trade requires 2 transactions, one to enter the trade and one to exit. Note: generating the benchmark return would imply one trade **Average trade length**: Periods in Market (above) divided by total trades (above) **Trade success %**: Number of trades where the return is strictly greater than zero divided by the total number of trades **Worst trade ret %**: The (discrete) percentage return of the worst-performing trade `---` **Benchmark cuml return %**: The (discrete) percentage return achieved using a 'buy and hold' strategy **Per period mean ret %**: The percentage return (above) divided by the periods in market (below) **Periods in market**: The number of periods (days, or whatever the periodicity of the data is) from the 'start' to 'end' dates `---` **Ticker**: The ticker saved in the ichimoku object **Start/end**: The start and end dates of the backtest. These dates will differ for different cloud lines depending on how many periods it takes to calculate them **Direction**: 'long' or 'short' trade direction as can be set via the argument 'dir'. Only single direction strategies are considered ## References Sasaki, H. 佐々木 英信 (1996), *一目均衡表の研究 [ichimoku kinkouhyou no kenkyuu]*. Tokyo, Japan: Toushi Radar. ---