Announcement

Collapse
No announcement yet.

Looking For Advice

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

  • Looking For Advice

    Hello,

    Currently I have a stategy used on Renko type charts, what I want to do is have the same buy/sell signals on a normal chart I want to see the difference in the stategy reports.

    At first I tried saving all entries {direction, Date, Time} to a text file and then reading that in to a normal candle chart but I wasnt able to get it to work

    So after thinking about this I decided to ask for advice here on the forum.

    What would be the best solution for this problem?

    Thank you for your Time
    EK

  • #2
    EK:

    Here is a link to an EFS implementation of a Renko chart that I put together. You could add your strategy code into this script and you would end up with a 'regular' chart that shows the buy/sell signals based on Renko trading.

    http://share.esignal.com/groupconten...rt&groupid=114

    Chris

    Comment


    • #3
      Wow!

      Hey Chris,

      Thats Awesome

      What would I need to do to all your code to accept block sizes smaller than 1?

      i.e. .001, .0005, .1??

      Thank you for your Time
      EK

      Comment


      • #4
        Just change the "setLowerLimit( 1 )" function on line 66 to something lower like "setLowerLimit( 0.0001 )". That should do it.

        Chris

        Comment


        • #5
          What about the Rounding

          Hello Chris,

          Should I remove the Rounding?

          i.e.
          nBlock = Math.round( fBlockSize );

          Thanks
          EK

          Comment


          • #6
            Sorry, you will also need to change line 101 from:

            nBlock = Math.round ( fBlockSize );

            to

            nBlock = fBlockSize;



            Chris

            Comment


            • #7
              Awesome!

              Thanks Chris,

              That Did it

              Thank you very much for your Time and Effort!
              EK

              Comment


              • #8
                Hi

                Emerald King

                Can you share your Renko stategy buy/sell signals on a normal chart please. I try to make some changes but didn't work.

                I want to see your Strategy where i make mistake.

                Thanks

                Comment

                Working...
                X