Good for you! 
Posts made by l'andorrà
-
RE: 3 questions about EAposted in Questions & Answers
This is what you need for the EA to 'find' previous trades:

-
RE: Set Order Level as Variableposted in Questions & Answers
Some operands of you condition blocks are working on candle ID 0 whereas other doing it on dandle ID 1. Please check tehm all to candle ID 1.
-
RE: Drawing 2 nearest horizontal lines (help)posted in Questions & Answers
Yes, you need to create a variable with that amount of pips and then add that number to the previous line level price.
-
RE: hi .i want to create robot hedjeposted in Questions & Answers
Obviously you are looking for a martingale. Believe me, they don't work in the long run.
-
RE: Working on pullback EA,but need help please.posted in General Discussions
All your condition blocks are working on candle ID 0. Just change them all (both operands) to candle ID 1. Click on 'More settings' tab to do it.
-
RE: detect the manual movement of the horizontal line ?posted in Questions & Answers
Your questions are always very interesting.
I guess so (and it's just a guess). On the 'on tick' tab you should store the price value of the line every tick and compare it on a tick by tick basis. When you move the line, the next price value would be detected and then a flag could be activated.Just an idea.

-
RE: TEST PREZZOposted in General Discussions
Ok. Please don't hesitate to be back for more help if required.
-
RE: Question about conditionsposted in Questions & Answers
If you are working on the 'on Tick' tab, every tick arriving to the EA will execute blocks from lower ID to higher ID on top of each tree. Then, within the tree, from up to down. Always. If any condition block is not met, all blocks below will be ignored. Then a new tick will arrive and the process will begin again from lower ID to higher ID on top of each tree. Then, within the tree, from up to down.
-
RE: Keltner uper band price crossposted in Questions & Answers
Working on candle ID 0 is always tricky. Pleasse confirm the solution provided by AlphaOmega is what you need.
-
RE: This Is an Easy EA Im trying to build. I need Help.posted in Questions & Answers
So you want to open 1 trade manually and then the EA to open 7 additional ones with the same settings as the first one? Why not launching all 8 at the same time? Yoy can creat an EA doing that.
-
RE: 3 questions about EAposted in Questions & Answers
- No unless you programmmed the EA to do it.
- Same as before.
- It depends. Did the EA launched them and there was no change in the magic number? Then yes.
-
RE: Check Positions Count (Limit Maximum Position Opened)posted in Questions & Answers
Is this the whole project or just a part of it. The logic is correct. No more than 6 open trades should be active at the same time.
-
RE: Set Order Level as Variableposted in Questions & Answers
Can you please share your project? It shouldn''t be difficult if your EA already identifies the correct buy candle.
-
RE: I want to calculate the current candle's pip distance between open to High & open to Lowposted in Questions & Answers
Yopu can try this for open to high:

You will need anothe onme for open - low to be stroed in a second variable.
-
RE: Drawing 2 nearest horizontal lines (help)posted in Questions & Answers
- The first block on top is unnecessary when using the EA on the GBPUSD chart. Unless you need it for another reason, you can remove it.
- Block ID 11 will be executed before any other one. Is the order of trees relevant as per ytouyr project? I guess so. Maybe you should review that.
- Are those two lines drawn every day or at a specific period? If the are to be drwan just once the whole structure should be moved to the 'on Init' tab.
