Announcement

Collapse
No announcement yet.

EMA on the StochRSI

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • EMA on the StochRSI

    Any help to get an EMA 3 on the StochRSI would be really appreciated. My tries doing it myself has no success.

    Sorry for this absolute beginner question and I promise to do better :-).

    Thanks,

    Juergen

    PS: I know that I deserve the RTFM answer. But MetaStock / WealthScript was a bit easier for me.

  • #2
    Juergen
    It can be easy also in efs if you are familiar with the language [in the same way you would have to be familiar with Metastock's or Wealthlab's languages to be able to write it in those programs]
    PHP Code:
    function main(){
        return 
    ema(3stochD(14,3,3rsi(14)));

    If you want it based on the smoothed Stochastic %K just set the third parameter of the stockD function to 1. If you want it based on the raw Stochastic %K then set both the second and third parameters of the stochD function to 1
    Note that the above example is not the most efficient way to write the script but is only to illustrate how simple it can be
    You can find other examples on the use of efs2 functions in this thread
    Alex

    Comment

    Working...
    X