Using the IsValidSymbol() there are many international symbols that return zero meaning they are invalid even though they are valid eSignal symbols. For example $NIFTY and $CNXIT. How can I get the IsValidSymbol() function to recognize these as valid symbols?
Here is a sample call to IsValidSymbol(). This will return zero.
WideString wSymbol= "$NIFTY";
SymStatus = Hooks1->IsValidSymbol( wSymbol ); //0=Not Valid
Here is a sample call to IsValidSymbol(). This will return zero.
WideString wSymbol= "$NIFTY";
SymStatus = Hooks1->IsValidSymbol( wSymbol ); //0=Not Valid
Comment