apply my personnal indicator to graph

Forums ProRealTime English forum ProBuilder support apply my personnal indicator to graph

Viewing 13 posts - 16 through 28 (of 28 total)
  • #89371

    If your indicator output is normally between -15 and +15 then the above will do what I was suggesting. Tune the multiple to match individual markets.

    #89399

    i can still use it only as support/resistance when it crosses zero but i wanted to improve it a little bit more.

    oh, easier to understand with a picture! Indeed, what you want is possible. Please share the indicator code in order to incorporate all the necessary code to it. I’m sure we’ll be able to add the graphical component you miss.

    #89432

    it’s a really simple code, but it can give you pretty decent signal if you use it correctly.

    #89458

    a = RSI[30](close) – RSI[100](close)

    That is a bounded indicator as RSI is bounded between 0 and 100 so your combination of two RSI’s is now bounded between 100 and -100 as those are the maximum and minimum results possible.

    If you apply your indicator to my code you get a line that flips above and below price.

    Screenshot_4

    2 users thanked author for this post.
    #89461

    Nice job Vonasi, but line 3 should be replaced by

    to replicate the true indicator.

     

    #89463

    when my indicator turn positive, it should be below the price and vice versa.

    I think mine is correct if I understood the above comment from the OP correctly.

    #89465

    Here is a version that draws a buy or sell arrow when the line crosses medianprice as Porion requested this originally I seem to recall.

     

    #89472

    Thanks a lot guys for your help, it seems quite encouraging. i used Vonasi’s first code. i think it would be better if i was able to smooth it a little bit but it return me an error message.

    #89475

    Quite interessing as i’m now able to see where i should short (late december, as you can see on the chart) but with the old indicator i wasn’t.

    #89478

    i think it would be better if i was able to smooth it a little bit

    Try changing line for something like this:

     

    #89479

    I think I messed up the code in post #89465 as I was playing with Roberto’s suggestion. I have edited the post and corrected it now so you might want to try it again.

    #89489

    Thanks Vonasi,

    i added

    to your code to smooth the indicator a little bit(in yellow)

    #89494

    Increasing the period from 3 upwards will smooth it more but at the expense of lag.

Viewing 13 posts - 16 through 28 (of 28 total)

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