Genesis Strength Index

The Genesis Strength Index (GSI) is an indicator type that measures price changes over a certain period and produces a value between 0 and 100. The GSI code used in this example also supports various types of MAs (Moving Average) and Bollinger Bands.

User Manual for Genesis Strength Index (GSI)

01/

Indicator Settings

The various parameters of this indicator are listed below:

Bar count for comparison - Over a certain period, the current closing price is compared with the previous closing prices. This period is determined by the user.

Source - The price data used in the calculation of the indicator. This is usually the closing price, but another price data can also be used.

MA Type (Moving Average Type) - The type of average used for smoothing the price data. Current options include SMA, Bollinger Bands, EMA, SMMA (RMA), WMA, and VWMA.

MA Length (Moving Average Length) - The number of bars used for average calculation.

Bollinger Band StdDev - The standard deviation value that controls the width of Bollinger Bands.

Smoothing period for EMA - The period used for smoothing the EMA.

GSI Div Extremity Up - The value considered to be overbought for GSI.

GSI Div Extremity Down - The value considered to be oversold for GSI.

Divergence Bar Count - The minimum number of bars required to determine divergence.

Maximum Divergence Bar Count - The maximum number of bars used to determine divergence.

Minimum Divergence Bar Count - The minimum number of bars used to determine divergence.

Divergence Control Length - The period range examined for the detection of divergences. As for how to use the indicator, it is generally used to measure the strength of a trend and to determine overbought or oversold conditions. If the GSI exceeds 80, it generally shows overbought conditions, and if it falls below 20, it shows oversold conditions. These levels usually signal the end of a trend and mean that the price may reverse. In addition, there may be divergences between the indicator line and price movement. That is, if the price makes a new high while the indicator line does not make a new high, this usually signals the start of a downtrend. Similarly, if the price makes a new low while the indicator line does not make a new low, this usually signals the start of an uptrend.

Indicator Settings

02/

What are the strengths and weaknesses of the Genesis Strength Index (GSI)?

Strengths:

Flexibility: GSI supports various types of averages, allowing users to adapt to different market conditions.

Measuring Trend Strength: Thanks to its ability to measure the strength of a trend, GSI provides buy and sell signals to investors. Overbought and oversold levels usually mark points where prices will reverse.

Divergence Detection: GSI can detect divergences between price movement and the indicator itself. This often provides early warnings of trend changes.

Weaknesses:

Misleading Signals: Like all technical indicators, GSI can give misleading signals, especially if market conditions are unstable. For example, during a strong. trend, the indicator may continuously show overbought or oversold conditions, leading to misleading sell or buy signals.

Lag: GSI is an indicator based on past price data, so it can be subject to lag. This can be particularly problematic when market conditions change rapidly.

Parameter Selection: Correct parameters need to be selected for GSI to work correctly. Incorrect parameter selection can lead to misleading signals. In conclusion, technical indicators like GSI are just one of the tools used to support an investment decision. Investors should use these types of indicators in conjunction with other technical analysis tools and fundamental analysis information.

What are the strengths and weaknesses of the Genesis Strength Index (GSI)?

03/

What's the difference from RSI? Why should this indicator be preferred?

The key differences between the Genesis Strength Index (GSI) and the Relative Strength Index (RSI) could be the flexibility of GSI and its more dynamic calculation method. Here are the main differences between these two indicators:

Calculation Method: The RSI generally compares average gains and losses over a certain period. However, GSI calculates a normalized closing price using the highest and lowest prices over a certain period. This provides a more complex calculation method and potentially creates a more responsive indicator.

Flexibility: RSI usually uses a specific calculation method (smooth moving average). GSI allows the user to choose the type of moving average (for example, simple, exponential, weighted, etc.). This gives the user a better ability to adapt to specific market conditions. These features of GSI potentially make it more suitable in various market conditions and different trading strategies. However, when deciding which indicator to use, the investor's own trading goals, risk tolerance, and market knowledge should be taken into account. Both indicators have their own strengths and weaknesses and are generally used together or with other technical analysis tools. As an investor, it is always important to understand how indicators work and to check whether they are compatible with your trading strategy and market conditions before using them.

What's the difference from RSI? Why should this indicator be preferred?

04/

Why does the plot (line) color change?

In this code, different colors are determined for two situations when the plot value is above 50 and below 50. This changes the color of the signal follower in the indicator's graph.

Relevant code: signalColor = smoothed_close > 50 ? color.rgb(0, 241, 8, 40) : color.red

This code makes the line color turn green (color.rgb(0, 241, 8, 40)) when the 'smoothed_close' value is above 50, and red (color.red) when it is below 50. This helps the indicator to give the user clearer visual feedback about price movements. In other words, this color change makes it easier for the user to quickly determine whether the Plot value of the indicator is higher or lower than 50. This can be useful especially in cases where market conditions may change when the 'smoothed_close' value of the indicator passes this threshold.

Why does the plot (line) color change?

05/

If I wanted to make a trade, how should I use this indicator for long and short?

This indicator provides a series of signals that could be useful in forming a trading strategy. Below are some suggestions for when you might take long and short positions using the Genesis Strength Index (GSI) indicator:

For Long Positions (Buying):

When the Plot value comes up from the bottom, i.e. 20-30-40 and finally exceeds 50, this is generally interpreted as a buy signal. This situation shows that the prices have been low recently and are now entering an uptrend. Also, a bull divergence signal can also be considered as a buy signal. In this case, as the GSI drops, it is expected that prices will make a new low. This divergence shows that the market is close to finding the lower level and could soon start to rise. When GSI falls below the 'oversold' level and then rises above it, this is also generally considered a buy signal.

For Short Positions (Selling):

When the Plot value comes down from the top, i.e. 80-70-60 and finally falls below 50, this is generally interpreted as a sell signal. This situation shows that the prices have been high recently and are now entering a downtrend. A bear divergence signal can also be considered as a sell signal. In this case, as the GSI rises, it is expected that prices will make a new peak. This divergence shows that the market is close to peaking and could soon start to fall. When GSI rises above the 'overbought' level and then falls below it, this is also generally considered a sell signal. However, it should be remembered that any indicator can be misleading when used alone. The Genesis Strength Index should be used to provide additional information within an overall trading strategy. You should consider using additional information, tools, and analyses when making trading decisions. This may include the analysis of other indicators, trend lines, support and resistance levels, news, and general market conditions. Moreover, do not forget to take risk management measures and set an appropriate stop and profit-taking level.