I have a set of user inputs as follows:
//Entry Indicator Selection
tog_entry1 = input.string(title="Entry Indicator 1", defval="KST", group="Entry Indicators", options=["KRI", "KST", "Supertrend", "None"])
tog_entry2 = input.string(title="Entry Indicator 2", defval="None", group="Entry Indicators", options=["KRI", "KST", "Supertrend", "None"])
tog_entry3 = input.string(title="Entry Indicator 3", defval="None", group="Entry Indicators", options=["KRI", "KST", "Supertrend", "None"])
The idea is to allow users to pick up to three entry indicators from a bank of options. At the moment, the options are not mutually exclusive - e.g., the user could pick "Supertrend", "Supertrend", "Supertrend", and so on.
Using Pine, Is there any way to eliminate options that have already been selected from the remaining lists?