
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
I am trying something like this
if Index >= TestValue then
{
}
Else if Index <= TestValue then
{
}
Now Normally I would just make 2 If Then sections of Code like this
if Index >= TestValue then
{
}
If Index <= TestValue then
{
}
But the problem I am running into is during the First block I can Modify TestValue and in doing so the second block will execute when I dont want it too.
Any Ideas?
Thanks for your Time
EK