How to lower step in Parabolic SAR indicator
Greetings,
I would like to modify the step rate in the SAR (Parabolic SAR) indicator that comes standard in PTMC. Currently, the lowest step rate that can be used is 0.01, whereas I would like to be able to use a step of 0.005. Is there any way to gain this functionality in the PTMC SAR indicator?
Thanks in advance for all the replies.
danielcarlosjohnson, it is possible to do, just change validator in InputParameter attribute from 2 to 3.
Example:
[InputParameter("Step of parabolic SAR system", 0, 3)]
public double Step = 0.002;
and recompile it! Now you are able to set step with new precision!
RegardsThanks for the reply. I attempted to do this in AlgoStudio, but couldn't quite figure it out. Instead, I found the Parabolic Indicator in the Example Indicators folder in AlgoStudio, and exported it into the indicator folder. The version has all the functionality I needed. Thanks again.