How to change probabilities in a cloned tree
Hi, I would like to make a clone that has the same structure as the cloned model but with different transition probabilities. It is possible to do this and if so, how?
Hi, I would like to make a clone that has the same structure as the cloned model but with different transition probabilities. It is possible to do this and if so, how?
Comments
Yes, you can.
You must reference the same variable names in the clone master and clone copy.
However, any of those variables can be defined differently for the clone master and clone copy be placing one variable definition just to the left of the clone master and a different variable definition for the same variable name just to the left of the clone copy.
You can then use those two separate definitions to send different values for the same variable into the clone master and copy.
To create a variable definition at a specific node, right-click on the node then choose Define Variable from the context menu.
Hi, I also would like to assign different transition probabilities and payoffs in different clone copies (I have more than 5 clone copies). I am not quite clear on the suggestion mentioned above. Could you provide step-by-step detailed instructions or any tutorials which I can refer to?
Thank you
The same logic applies whether it is a probability, payoff or any other value.
pProgress
pProgress_Str1 = number
pProgress_Str2 = number
etc.
pProgress = pProgress_Str1
pProgress = pProgress_Str2
etc.
This is described in TP2023 R1 Help section 26.4.5.
Please sign in to leave a comment.