How to create hidden strategy for trading

Forums ProRealTime English forum ProBuilder support How to create hidden strategy for trading

Viewing 9 posts - 1 through 9 (of 9 total)
  • #130207

    Hi, from how I understand it a strategy must be open to be able to use it for trading (Please correct me if this is not the case).

    Is someone able to point me in the right direction about how I can hide the logic of my strategy in an indicator (or another way) so that it’s not visible and can’t be copied by anyone and include that in my strategy.

    Any links or code/ pseudocode examples would be awesome since I can’t find too much on the subject and am completely new to the platform.

    Cheers

    Kai

    #130213

    This is and indicator (named Example):

    export it so that it cannnot be modified (you can also select to enable/disable multiple copies).

    Then create you strategy:

    Now you can give anyone your protected indicator (distribute only the .ITF file) + the strategy as a text file to be used as a strategy.

    The user will never know WHY that signal is generated.

     

    3 users thanked author for this post.
    #130223

    Thank you robertogozzi 🙂

    #142487

    Hello  robertogozzi,

    I was wondering if the indicator code could be also like this:

     

     

     

    #142492

    Yes, it will return 1 when true, 0 otherwise.

    The CALLing strategy needs to check that the returned value is <> 0.

    It’s important that your protected indicator does something else and returns further data, otherwise it is useless since the strategy is readble and modifiable and the line with “CALL” could be simply deleted or commented out to skip the check.

     

    #208767

    Hi Robertogozzi,
    when i distribute my algo, the indicator is still unhidden, why ?

    #208792

    In my example above line 1 is:

    since exports both the strategy and the indicator, making it visible, you should
    replace that line with:

    then export both the strategy and the protected indicator, then instruct your client to edit that line and remove 1// in the ITF file.

    #208838

    Hi guys,

     

    great post! however, I would like to know how I can limit the date that the indicator / algo is valid for? say I want it to expire in 1 week, how do I do that?

     

    thanks

    #208853

    Dont worry, solved using date params, cheers

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

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