I have a cusom enum. Let's assume it is:
public enum SignalType{
Buy,
Sell,
No,
Both
}
I know how to add this enum in the input parameters. However, in the input parameters I want to see not just 'Buy', 'Sell', etc options, but 'Type Buy', 'Type Sell', etc. I want to see it with spaces (not 'TypeBuy', 'TypeSell').
Something like this. We see 'On bar close', and not 'OnBarClose':
How can I do this?

Comment