For an indicator I'm writing I'm using an Enum that will hold all the tickers.
public enum Tickers
{
AA ,
AXP,
BA,
BAC,
CAT,
CVX,
DD,
DIS,
GE,
HD,
HPQ,
}
Do you have any suggestion how to solve this?
Thanks in advance!

Comment