Looks correct, but everybody here would have to try run it in debugger which you can do yourself.
1. Set break points at every line by double clicking on the line numbers.
2. Run it through debugger.
3. Click the blue 🔵 play button again to jump to the next break point.
4. Mark and right click on variables to put them into observation through the context menu.
5. See how the variables change during the run.
Luandre Ezra:
Your lotsize might fail if your minimum LotSize for a Symbol is 0.1 . Trading volume should be a multiple of lotstep
Hi, I have a strategy that will open limit order at multiple price point. This time I tried to use switch case operator in my code, here's the result:
*code is complied but not tested.
For the syntax itself, does the usage in my code is correct?
Luandre Ezra: i, I have a strategy that will open limit order at multiple price point.
There is no need to create pending orders in code.
-
The pending has the slight advantage, A) you are closer to the top of the queue (filled quicker), B) there's no round trip network delay (filled quicker.)
Don't worry about it unless you're scalping M1 or trading news.
-
Humans can't watch the screen 24/7, so they use pending orders; EAs can, so no need for pending orders, have it wait until the market reaches the trigger price and just open an order.
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
Hi, I have a strategy that will open limit order at multiple price point. This time I tried to use switch case operator in my code, here's the result:
*code is complied but not tested.
For the syntax itself, does the usage in my code is correct?