Login Page - Create Account

Support Board


Date/Time: Wed, 14 May 2025 10:06:18 +0000



dynamic RSI

View Count: 2404

[2016-04-17 14:47:43]
User970904 - Posts: 9
Hello,


i cannot seem to find a dynamic RSI indicator in SC ?

http://images0.tcdn.nl/dft/nieuws_dft/article23375722.ece/BINARY/original/RANDSTAD.JPG

It uses BB on the RSI ?

Is this possible to create in SC ?

thank you
[2016-04-17 21:37:06]
Sierra Chart Engineering - Posts: 104368
This is supported by using the Based On setting with the Bollinger Bands study:
https://www.sierrachart.com/index.php?page=doc/doc_ChartStudies.html#BasedOn

Here is an example:
http://www.sierrachart.com/image.php?Image=1460929008821.png
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing
[2016-04-18 07:18:30]
User970904 - Posts: 9
thank you !
[2016-04-18 12:11:50]
User970904 - Posts: 9
I would like these BB values in a custom study.


"In your custom study function you may need to work with the results of other studies/indicators, like a Moving Average or some other study. There are several methods to accomplish this."

"Use one of the Intermediate Study Calculation Functions like sc.SimpleMovAvg."

Is it possible to use the BB values (based on RSI input) using this method ?

The "FloatArrayIn" for the BB would then have to be the RSI array ?
How do i refer the RSI array as FloatArrayIn for BB ?

sc.RSI(sc.BaseDataIn[SC_LAST], sc.Subgraph[0], MOVAVGTYPE_SIMPLE, 14);
sc.BollingerBands(sc.Subgraph[0].Arrays[0][sc.Index], sc.Subgraph[1], 14, 1.8, MOVAVGTYPE_SIMPLE);

doesn't seem to work


thank you
Date Time Of Last Edit: 2016-04-18 12:35:31
[2016-04-18 17:24:00]
Sierra Chart Engineering - Posts: 104368
Here is the correct code:
sc.RSI(sc.BaseDataIn[SC_LAST], sc.Subgraph[0], MOVAVGTYPE_SIMPLE, 14);

sc.BollingerBands(sc.Subgraph[0].Data, sc.Subgraph[1], 14, 1.8, MOVAVGTYPE_SIMPLE);

Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account