when i try to make an volume indicator for an stock index i get this error:
The Symbol Limit (7) for a formula has been exceeded.
what i do is i repeatedly get volumes for the stocks that are included in this index:
omxs30volume += ((volume(0, "ABB-SSE")) * 0.0094);
i do this 30 times since theres 30 stocks in the index. but i dont use them simultaneously. but it seems like efs thinks so, is there a function for closing symbols so i can use others? any other way to come around this problem? the thing is, i dont need 30 symbols running at the same time, i just need to get the volume once at every bar. but there seems to be some missconception between my will and efs limit. would be glad if anyone could help me out.
The Symbol Limit (7) for a formula has been exceeded.
what i do is i repeatedly get volumes for the stocks that are included in this index:
omxs30volume += ((volume(0, "ABB-SSE")) * 0.0094);
i do this 30 times since theres 30 stocks in the index. but i dont use them simultaneously. but it seems like efs thinks so, is there a function for closing symbols so i can use others? any other way to come around this problem? the thing is, i dont need 30 symbols running at the same time, i just need to get the volume once at every bar. but there seems to be some missconception between my will and efs limit. would be glad if anyone could help me out.
Comment