RE: adding bollinger bands into the RSI indicator window?? gator oscillator?
abcdavid13 said:
Hi guys. how do we add the bollinger bands INTO THE RSI WINDOW? in other words, put an indicator inside an indicator.
i saw a video where he added RSI first. then when he added the bollinger bands, there was an option that said "SOURCE: RSI". however, when i tried it on my web-based cTrader, there was no such option for "Source"... please help.
also, is there a Gator OSCILLATOR for Ctrader? this is the gator version that looks like a histogram on the bottom of the chart, and not the three wavy lines on the candles.
Replace Source Series to Rsi.Result . Good luck
rsi = Indicators.RelativeStrengthIndex(MarketSeries.Close, RSI_parameter);
ema = Indicators.ExponentialMovingAverage(rsi.Result, ema_parameter);
hungnvh6868
22 Nov 2020, 19:20
RE: adding bollinger bands into the RSI indicator window?? gator oscillator?
abcdavid13 said:
Replace Source Series to Rsi.Result . Good luck
rsi = Indicators.RelativeStrengthIndex(MarketSeries.Close, RSI_parameter);
ema = Indicators.ExponentialMovingAverage(rsi.Result, ema_parameter);
@hungnvh6868