type it as Show_Divergence_Alerts
with underscores
Posts made by miro1360
-
RE: Tutorial 06 - My Indicators in fxDreemaposted in Tutorials by Users
-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
You can display chart ID easily:

instead of looking for specific ID of a chart, ID of a first chart can be used (EA in first chart is your signal EA)

-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
maybe something like this can read that ... I am not sure how this object(signal) looks like

1 is chart ID, it can be 0 or any number ...
"objectName" is name of object whare is signal
OBJPROP_TEXT is description of that object (or signal itself), it can be also OBJPROP_NAME or something else, based on object -
RE: For Each Closed Trade Bugposted in Bug Reports
this in tester is working right ...
https://fxdreema.com/shared/vHUCzoRGb -
RE: testing and optimizingposted in Questions & Answers
EA from fxdreema is fast enough, but logic between blocks must be right used, it took some time to understand how to use some blocks.
One can create slow EA directly in mql
In metatrader case, the speed is more about logic.Anyway, what is speed?
... one can spend weeks or months with average EA in mql and result is the proof of lossable strategy,
or one can spend 1 day with the same EA in fxdreema
... so what is speed?

-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
and what do you need?
-
RE: Using For each Closed Trade with Write to file?posted in Questions & Answers
give file name without path:

your file is located in Files folder (in MQL5 data folder)

-
RE: How To Extract data from every barposted in Questions & Answers
lets say you are looking for example: save candles data into a file, where MA1 cross MA2 above
use tester, set Date period From-To to desired range
3 blocks is all will you need
and run this EA in tester
https://fxdreema.com/shared/l1FroNppccreated file is located in folder "tester\files\yourfile.csv
based on that you can change Condition block for your own to get another signals
-
RE: How To Extract data from every barposted in Questions & Answers
extract where? into a file?
if you want every bar where signal arrow appear, you must create loop which goes through each bar or given bars count
I provided a lot of replies for loop examples, search for them in forum.
-
RE: Using For each Closed Trade with Write to file?posted in Questions & Answers
this should working:

Condition should be something which is not triggered each tick, rather once per some time period or based on other events (you can place that into on Trade section and when trade is closed write that into file)
-
RE: Could some friend help me?posted in Questions & Answers
What is this history from the market telling you about the future?
People are looking for many different paterns as profitable holy grail, but that never worked - acutally it worked only in tester for some period of time, but not for the future.
You can trade probability and create tools for that. Following this member can help you: https://www.forexfactory.com/alphaomega -
RE: Add a constant to each operation.posted in Questions & Answers
it is one of martingale systems:

-
RE: Could some friend help me?posted in Questions & Answers
this strategy is not profitable, was tested many times intensively in the tester by many experienced guys (even by me), and yeah, is not profitable

-
RE: Button on chart changes timeframeposted in Questions & Answers
https://fxdreema.com/shared/8s6x69b0c
you can do it with one row of custom code:

here are IDs (enumerations) for all timeframes for MT4 (change them in your blocks for other timeframes)
https://docs.mql4.com/constants/chartconstants/enum_timeframesand with the same way it should working for MT5, where are more timeframes:
https://www.mql5.com/en/docs/constants/chartconstants/enum_timeframes... Symbol() can be replaced by pair name with quotes ("EURUSD", "GBPUSD", ...) and that way pair should be changed, I have not tried it
-
RE: Comparing EA performance Live or Demoposted in Questions & Answers
-
if your strategy heavily depends on ticks or calculation based on ticks (or not closed current candle) - opening and closing trades, than it is not possible to test with good accuracy in tester
-
if your strategy depends on repainted signals, it is not possible to test with good accuracy in tester
-
if your strategy (opening and closing trades) depends on history candles (first closed candle, or second, or indicators based on that, and so on) than you can test it in tester
.... and so on ... it all depends on that strategy
.... and also for demo/live, if you was profitable first month, the second one you can be lossy (this is true for all strategies) ... forex is more lossy than a casino (99% of all traders lose their money - if anyone claims the opposite, than is working for some organization (books, forex training, signals, EAs based on shits, broker itself) or is not experienced enough) -
-
RE: Add SL, TP, TSL to new Signal Orderposted in Questions & Answers
0 is only for manually opened trades ...
-
RE: Why don't work well??posted in Questions & Answers
multiplier is *
adding is +so if you want only add, do not multiply
lotsSell = lotsSell + lotsMultiplier;name lotsMultiplier is not right in this case, but should working
-
RE: Can I create a bucket of orders with one only?posted in Questions & Answers
you can do it with filtering inside that loop, you can filter trades based on your conditions inside that For each Trade loop and find trade that way ...
