on init, condition block, login != xxxxxx, another condition with 2nd number, another condition with 3rd, terminate block, all connected by orange.
Best posts made by jstap
-
RE: Make EA only work on on 3 trading accountposted in Questions & Answers
-
RE: I need help my ea not workingposted in Questions & Answers
On init is on initialisation (bot start), this should work on tick, put the buffers into a comment, visually check on back test if you have, usable values.
-
RE: time valueposted in Questions & Answers
@mohammadmozaffari You can get the ZZ last Hi/Lo as in the link, without adding other logic, you will have to wait for lines to draw: https://fxdreema.com/shared/sThpMl31b
-
RE: How do I print onto the chart the candle ID above each candle?posted in Questions & Answers
Candle ID's change, because current is always 0, would make more sense to record the time.
-
RE: How Does On Tick Boxes Workposted in Questions & Answers
As long as all being true this should work, but it relies on a tick happening on candle open like many things, so I will often set a condition that can happen over a little time.
-
RE: How will you write this logic?posted in Questions & Answers
ID 1 candle high is > ID 2 high, if you want instant, ID 0 X> ID 1 high, draw arrow
-
RE: EA start settingposted in Questions & Answers
The auto trading stops trades being placed, if you want behind the seen ' calculations to wait, you have to set some logic to achieve this, some thing like, set a flag to false on init, then on tick set to true, then check to do what you want.
-
RE: How to create EA open order at certain spreadposted in Questions & Answers
Use the spread filter block that's in green time filters section
-
RE: repeated pending orderposted in Questions & Answers
Try this way round, I prefer to use once per daily bar, waits for 1st tick before working:

-
RE: EA improvement - Distance based on ATRposted in Questions & Answers
1 Daily ATR(14) is the average true range of the last 14 days, from candle ID1, you can do this:

-
RE: several levelsposted in Questions & Answers
Pending is best, decide when to place, add number of pips apart pendings.
-
RE: controlling the last 50 bars pls helpposted in Questions & Answers
I think you want to do something like this: https://fxdreema.com/shared/b5UOpxyS
-
RE: heikin expert shadow problemsposted in Questions & Answers
For no shadow high or low == open, draw lines on the chart so you can see what each value is doing, and think the standard blocks are now working.
-
RE: How to make EA comment number of pending orders??posted in Questions & Answers
You need to add a link, but I think you need bucket of orders, and a comment
-
RE: hello everyone, how do i turn indicator that dosent have buffers Into EA. Breakout box indicator. please can anyone helpposted in Questions & Answers
And that is the problem, you have to find if some are usable values, then work out how to decide which ones you want to use, and then get these values. Unfortunately, this is quite an advanced concept.
-
RE: EA project assistanceposted in Questions & Answers
You do not use on timer tab, that tab only works on demo/live, not backtest. If you want a trade placed at a certain time, use no trade, and a time filter block, on tick tab.
-
RE: how to connect mt4 to telegram with fxdreemaposted in Questions & Answers
Not easy, for a start you would need the code for the channel from an administrator.
-
RE: Multi time frame EAposted in Questions & Answers
Rather than trying to fight through all your blocks, set up a test project so you are only sorting the 6 you are having issues with