Arpit T: t I want this to convert value_eUp[l] into static array so it can be accessed as a global variable outside for loop
So do it. Move the array outside. All globally declared variables are static.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
When I print the value_eUp[l] it prints dynamic values for 500 bars for e.g. 3001,3002,3003
but I want this to convert value_eUp[l] into static array so it can be accessed as a global variable outside for loop
so it prints statically in a variable double
How can i do that