Looking for EMA-MA Indicator

Forums ProRealTime English forum ProBuilder support Looking for EMA-MA Indicator

Viewing 8 posts - 1 through 8 (of 8 total)
  • #42520

    Hi,

    I am looking for EMA-MA indicator / tool for ProRealTime.

    I need to configure:

    EMA 3
    EMA 6
    MA 18
    MA 50
    MA 100

    Need your help with a proper indicator.

    Thanks guys

     

    #42522

    Hello,

    It should be this that can be pasted into an indicator:


    //Calculate average
    EMA3 = exponentialaverage[3](close)
    EMA6 = exponentialaverage[6](close)
    MA18 = average[18](close)
    MA50 = average[50](close)
    MA100 = average[100](close)
    //Return average
    Return EMA3, EMA6, MA18, MA50, MA100


    You can then add the indicator over the price on the chart.

    Best regards,

     

    #42523

    Great, thanks a lot i will try.

    All the best, Lior Grynwald

    #42524

    No problem, you can also use the “coloured(255,0,0)” after the variables in the return line to put colors of the averages.

    Ex. Return EMA3 coloured(255,0,0), EMA6 coloured(0,255,0), …. etc.

    Then you will not have to set the colors each time.

    #42525

    Perfect

    #42526

    Hi guys, just a few moderation messages to keep are forums tidy and topics searchable in the right places:

    • Lior Green, please update your country flag by selecting a location in your profile settings. Thank you 🙂
    • Swingforfortune, please use the “<>” (insert PRT code) button for adding code in the PRT format, thank you 🙂
    • There are several forums, this topic is more appropriate for the “probuilder forum” than the “platform support”, no worry I’ll move it to the right place for future searches, you don’t need to do anything, it’s just for info

     

     

    1 user thanked author for this post.
    #42528

    Thanks you, just updated mt country.

    How can i set the indicators names, as displays under settings?

    is it possible to Return with a value and alias name?

     

    #42529

    yes, as visible in the return line on screen at beginning of this PRT video for creating custom indicators, or at 4’20 (but it’s worth watching entirely if beginner):

    https://www.youtube.com/watch?v=Q8vEg3FvuMo

     

Viewing 8 posts - 1 through 8 (of 8 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login