Hi All,
The title says it all really, does PRT have the capability to plot an indicator of an indicator rather than using the price of the security as the input?
So for example a Stochastic of True Strength Index (TSI)?
Yes that’s possible and with almost all indicators available.
Example with a Stochastic of a moving average:
avg = average[5]
sto = stochastic[5,3](avg)
return sto
The value you want the stochastic to be calculated on is in parenthesis (variable “avg” in that example).
Thanks for that Nicolas.
Apologies for my belated reply.
Ross