@xyon126 share the portion you have already created? I suspect using the same data will be the solution
Posts made by TipsyWisdom
-
RE: How to open a BUY LIMIT or SELL LIMIT order with 3 horizontal lines.posted in Questions & Answers
-
RE: 2 conditions which don't workposted in Questions & Answers
@bagheria try no position solution and once per bar, see which you like
-
RE: 2 conditions which don't workposted in Questions & Answers
@bagheria that logic says, if MACD main is over MACD signal, then every time the RSI value crosses below 30 over the last 20 candles, it will buy.
It will trade many times. You may want to limit it to once per bar, and I would do that just before 'buy now.' You could also start the tree with, If No position
Now if you wanted to say...if MACD main is over MACD signal, then for the next 20 candles I want to wait for the RSI to cross below 30, if it doesn't then reset the MACD signal....that's different.
-
RE: Define VWAP indicator in FxDreemaposted in Questions & Answers
i would get 2 or 3 different ones, just incase the first one doesnt have the necessary outputs, buffers, or enumerations you will need to be able to use the indicator
-
RE: Define VWAP indicator in FxDreemaposted in Questions & Answers
best way to get the indicator to avoid more confusion is to download it from your terminal software so that it automatically installs correctly. Then use dreema indicator import to find that exact file.
-
RE: 2 conditions which don't workposted in Questions & Answers
@bagheria you are seeking for 2 crosses to happen at the exact same time. It would work better if you had the first condition as above or below instead of cross. The 2nd condition of cross, will be initiation of the trade.
-
RE: how to insert an ea into another oneposted in Questions & Answers
@baccicin How is the other EA coded?
-
RE: Robot in real account?Who can help me?posted in Questions & Answers
@james-d said in Robot in real account?Who can help me?:
@emreizmir simply click on the EA button on top...
^ he said that here. haha!
-
RE: Projects will not loadposted in Questions & Answers
@drewliedadeuce
maybe try a different browser?
-
RE: How to read signals from Telegram channel ?posted in Questions & Answers
interestingly enough though, a guy on my discord team may know the solution to that with what he's been learning lately. maybe not though because application based stuff isn't something you will find around these parts surely. This is software, generally speaking, for those who don't know how to code.
-
RE: How to read signals from Telegram channel ?posted in Questions & Answers
@kvinvest copying other persons telegram signals to sell as your own? smooth move.
small lot size, those telegram guys have huge stops.
-
RE: News Indicatorposted in Questions & Answers
@darekl mladenfx@gmail.com is the indi creating guru, if you need anything converted or custom.
https://fxdreema.com/forum/topic/5866/finally-integration-of-news-filter-mt4-only
-
RE: News Indicatorposted in Questions & Answers
I dont use news avoidance in my strats but there are tons of solutions already in the forums for Mt4, unless you must use that specific news indicator.
For what its worth as well, especially working for a professional firm, you may want to start converting all yours strats to MT5. Metaquotes is no longer providing support for the software so its up to the brokers.
-
RE: News Indicatorposted in Questions & Answers
I had a talking point on this just earlier today, for you, would a spread filter solve most problems in regards to trading during less than ideal times?
-
RE: tillson indicator t3maposted in Questions & Answers
best way to get indi's is MQL5 as he suggested, but I would take it a step further and specifically use the market within the terminal to it automatically installs to the correct location.
-
RE: ZIG ZAG problem please help im new to fxdreemaposted in Questions & Answers
yep, do an advance search of the forums and search Zig Zag, authored by Miro
-
RE: Multi-symbol variablesposted in Questions & Answers
The simplest less stressful thing to do is to run the same EA across several symbols.
Do you already know how you're going to close those trades? Are you expecting to be open on several pairs at once? Do you have a cumulative profit planned? If so, that a whole other task to figure out next.
Some ways to do it:
Within the set market block, you can put several symbols just separated by a comma and for each symbol all the blocks will be ran below for that symbol.
You could do several set market blocks as you put, but rather than replicating everything, over and over just do it towards the top half of your EA before your conditions. You could also make several buy and sell blocks for the conditions above and then specify the different symbol in each buy and sell block.