View previous topic :: View next topic |
Author |
Custom Indicator - RSI with EMA |
SwingTrader Site Admin
Joined: 11 Aug 2006 Posts: 2903 Location: Hyderabad, India
|
Post: #1 Posted: Tue Dec 02, 2008 9:26 pm Post subject: Custom Indicator - RSI with EMA |
|
|
I am attaching a custom indicator file: RSI with EMA. This is RSI plotted with Exponential Moving Average. This is something many users had asked us.
To add this custom indicator, right click on any Indicator list drop down on the 2nd toolbar and select "Define New Indicator...". This will open the indicator definition window. Copy & Paste the contents of our attached file and click the OK button. You will see the indicator plotted under the chart in one of the two indicator areas.
NOTE: You will need to click the "Save Preferences" button to save the indicator to your preferences.
IMPORTANT: Custom Indicators are available only in JCharts (RT-Premium) and JCharts (RT-Comm)
Please post your questions about custom indicators in this forum. We will post clarifications. _________________ Srikanth Kurdukar
@SwingTrader |
|
Back to top |
|
|
|
|
maha White Belt
Joined: 05 Oct 2008 Posts: 24
|
Post: #2 Posted: Sun Jan 04, 2009 12:16 am Post subject: not able to add RSEX indicator |
|
|
Sir, not able to add this custom indicator known as RSEX, can you help me? |
|
Back to top |
|
|
vimalmehta White Belt
Joined: 07 Apr 2009 Posts: 20
|
Post: #3 Posted: Sat Sep 03, 2011 5:23 pm Post subject: Indicator Explanations |
|
|
Hi .. i know a lot of indicators but, is there a page where you could explain the wide variety of indicators offerred by you like BOP, trix etc...Basically a glossary of all indicators.
I also wonder if you provide custom indicators for market internals in our market. stuff like trin, tick, on balance volume, AD, breadth etc...( a lot of these are index specific stuff). Thanx Vimal. |
|
Back to top |
|
|
GHAISAS White Belt
Joined: 01 Feb 2010 Posts: 349
|
Post: #4 Posted: Sat Sep 03, 2011 6:34 pm Post subject: |
|
|
ST Sir, Thanks for info. I have plotted successfully. However, i feel the blue line is RSI and the brownish one is EMA. Parameter 1 is 21 and parameter 2 is 9. i am new to this thread. How to identify buy / sell / diversion etc? Can we change the parameters? Which parameter is best for Intraday trading? Kindly guide. Looking forward. |
|
Back to top |
|
|
newinvestor White Belt
Joined: 16 Feb 2010 Posts: 120
|
Post: #5 Posted: Sat Sep 03, 2011 11:04 pm Post subject: Re: Custom Indicator - RSI with EMA |
|
|
Hi ST. Possible to give a trial period of abt 15 days to Basic subscribers also, so we could check it out and if found useful, can upgrade the subscription to Premium in order to access JCharts RT Premium?
SwingTrader wrote: |
IMPORTANT: Custom Indicators are available only in JCharts (RT-Premium) and JCharts (RT-Comm)
Please post your questions about custom indicators in this forum. We will post clarifications. |
|
|
Back to top |
|
|
nageswararao_v White Belt
Joined: 22 Jul 2010 Posts: 54
|
Post: #6 Posted: Sun Sep 04, 2011 10:59 pm Post subject: Re: Custom Indicator - RSI with EMA |
|
|
newinvestor wrote: | Hi ST. Possible to give a trial period of abt 15 days to Basic subscribers also, so we could check it out and if found useful, can upgrade the subscription to Premium in order to access JCharts RT Premium?
SwingTrader wrote: |
IMPORTANT: Custom Indicators are available only in JCharts (RT-Premium) and JCharts (RT-Comm)
Please post your questions about custom indicators in this forum. We will post clarifications. |
|
Hi ST,
Could you tell me where can i find predefined functions documentation( how to find highest high in last 10 candles)? |
|
Back to top |
|
|
ProTrader Site Admin
Joined: 06 Jul 2008 Posts: 433
|
Post: #7 Posted: Mon Sep 05, 2011 6:32 am Post subject: |
|
|
Folks:
We don't advice you to use this indicator. This will slow down your data updates. This is a very old post as you can see the original date it was created.
There are no Trial Subscription .
We will publish a list of all indicators in JCharts and Live Charts and a brief description about it shortly.
Thanks & Regards,
ProTrader |
|
Back to top |
|
|
chiragbvyas White Belt
Joined: 18 Feb 2010 Posts: 469
|
Post: #8 Posted: Mon Sep 05, 2011 8:34 am Post subject: hi |
|
|
Nagesh,
if u wish to notify highest high and lowest low of any number of candles within your TF(5,10,15,30,60 minutes), just go to the LIVE CHARTS (PREMIUM), select DONCHIAN indicator, modify value to 10 , select TF (in your case it is 10 minutes), and thats it. if you choose donchian 20 then u will get highest high and lowest low of 20 bars.(set TF according to it). I think it can be useful to you. if find any doubts pls post yr query with charts, or u can see this method in SVKUM Sir's thread DONCHIAN Channel. Happy Trading.
Chirag. |
|
Back to top |
|
|
ven657 White Belt
Joined: 21 Oct 2009 Posts: 51
|
Post: #9 Posted: Mon Mar 19, 2012 1:25 pm Post subject: one more defined indicator request |
|
|
Rsex is great.
One more indicator ploting 3 period sma of pivotal point and pivotal point would be helpful.
ven657 |
|
Back to top |
|
|
welgro Brown Belt
Joined: 24 Sep 2012 Posts: 1784
|
Post: #10 Posted: Thu Nov 27, 2014 2:50 pm Post subject: |
|
|
Dear ST and PT ,
Here i attached the formula
Quote: | t=Param("t", 7, 1, 100, 1);
Top = Sum(High, t) / t;
Bottom = Sum(Low, t) / t;
av=(Top+Bottom)/2;
mc=IIf(av>Close, colorRed, colorGreen);
Plot(av, "", mc, styleStaircase); |
Kindly convert this formula in Jchart language..it will be more helpful..this indicator looks like a supertrend trading system... |
|
Back to top |
|
|
kamal.icharts Site Admin
Joined: 10 Apr 2013 Posts: 576
|
Post: #11 Posted: Fri Nov 28, 2014 11:16 am Post subject: |
|
|
Dear Member,
In JCharts, custom upper indicators cannot be defined. In Platinum, it can be coded as a custom indicator but the color change is not possible.
Regards
Kamal welgro wrote: | Dear ST and PT ,
Here i attached the formula
Quote: | t=Param("t", 7, 1, 100, 1);
Top = Sum(High, t) / t;
Bottom = Sum(Low, t) / t;
av=(Top+Bottom)/2;
mc=IIf(av>Close, colorRed, colorGreen);
Plot(av, "", mc, styleStaircase); |
Kindly convert this formula in Jchart language..it will be more helpful..this indicator looks like a supertrend trading system... |
|
|
Back to top |
|
|
|