TextParameterDefinition broken?

Looking to see how to add a text input to a custom indicator and I came across TextParameterDefinition.

https://github.com/tradovate/custom-indicators/blob/master/typescript/params.d.ts#L52

However the ‘def’ field for the TextParameterDefinition default value has type boolean instead of string.

It looks like it may be a copy/paste error and someone just copied the BooleanParameterDefinition above it and forgot to change the type of ‘def’ from boolean to string.

Has anyone ever added a text input to a custom indicator?

Can we get someone from Tradovate dev to look at this?

yeah since it’s a custom indicator tradovate probably won’t fix it anytime soon best bet is to work around it maybe use a numeric or enum param and map it to text in your code not ideal but might be the only option