smithman 8 posts msg #108138 - Ignore smithman |
9/21/2012 2:12:06 AM
How do I get the 7-period moving average of an RSI(13), please?
Do I have to use the set{} command?
What about calculating Heikin-Ashi values?
For example: HA=(open+close+high+low)/4
I'm stuck and need help to move forward.
Newbie
|
Kevin_in_GA 4,599 posts msg #108139 - Ignore Kevin_in_GA modified |
9/21/2012 6:28:31 AM
You use the Custom Moving Average or Custom Exponential Moving Average syntax ...
Simple moving average of an indicator: CMA(indicator, number of days)
Exponential moving average of an indicator: CEMA(indicator, number of days)
In your specific case that would be CMA(RSI(13),7)
|
smithman 8 posts msg #108144 - Ignore smithman |
9/21/2012 9:58:16 AM
Thank you so much Kevin.
|
mahkoh 1,065 posts msg #108151 - Ignore mahkoh |
9/21/2012 4:33:01 PM
For your HA you will be needing the set command:
set{a,open + close}
set{b,a + high}
set{c,b + low}
set{HA,c/4}
|