it seems so, it is ideal to ask the original author 
Posts made by miro1360
-
RE: How to fix this mq4 file?posted in Questions & Answers
-
RE: Change Timer period block doesn't work.posted in Bug Reports
timer is working fine:
https://fxdreema.com/shared/9H2lN5lrc
(clicking on the blue square increases the timer value, the red square decreases by 1s)
set the initial period to a desired value in project settings :

timer is unable in tester, only live chart
-
RE: zero divide error MT5posted in Questions & Answers
workaround:
add this to line 569:
if (SymbolInfoDouble(symbol, SYMBOL_POINT) == 0) { return (CustomPoint(symbol) / xxx); }
where xxx is 0.00001 or 0.001 ... or any (depends on symbol) -
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
it has some shift option, set candle ID and shift to 0 ...
I am not creator of this indicator 

-
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
the bands indicator is different from supply and demand ...
based on your picture: https://fxdreema.com/shared/LImFmFUoe
don't expect good result from it -
RE: A question about the http requestposted in Questions & Answers
yes, if it is your server, you can do all the stuff, just check some simple tutorials on youtube:
https://www.youtube.com/watch?v=dgvLegLW6ek
if it is a different server, you need to adapt to it -
RE: A question about the http requestposted in Questions & Answers
yes it should work
or use the Custom MQL code block, compose a line of the WebRequest() function using this note:
https://docs.mql4.com/common/webrequest -
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
this function draws objects on the chart:

and there are more functions that can work together

you would have to study the logic of the whole indicator ... my recommendation is to stay with the objects, because they are already done -
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
these buffers are useless for your purpose, because anyway the objects creation is based on it ... you will have to work with objects, or transform the whole logic of creating those objects into EA (which is many times more complicated) ...
-
RE: Draw Pitchfork chart !?posted in General Discussions
you have to improve your skills by practicing, because even if I gave you a working example here, you wouldn't be able to work with it ... use the search button and you will find all my topics about zigzag, about variables, chart objects, and overall all my posts and with them you will be able to do almost anything
-
RE: Draw Pitchfork chart !?posted in General Discussions
find and save the points into variables with a little help of zigzag and a few conditions, then use these variables for drawing pitchfork
it may be easy, but it can also escalate into complexity 
-
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
@alphaomega
the logic is similar for reading prices from that supDem indicator, just change the object name, try it
-
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
I think there may be other problems ... if a trade zone appears, the price is inside, and if the zone disappears the trade will be opened
but I'm not sure this was a long time ago when I created it 
it was just a demonstration of how to load and check indicator objects with fxdreema, there is still a lot to be done for a logic bulletproof EA
-
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
try this, I added the option for enabling or disabling the untested, also the ATR is removed from buy sell blocks
https://fxdreema.com/shared/arhx2dkU
note: the project it is also untested

-
RE: Tutorial 07 - Read prices from indicator objectsposted in Tutorials by Users
@alphaomega share your example project
-
RE: ANYONE WITH SUCCESS USING CUSTOM INDICATOR ON FXDREEMA MT5 VERSION WITH BUFFERS AND INPUT PARAMETERS KINDLY PUT ME THROUGHposted in Questions & Answers
@kayzworld said in ANYONE WITH SUCCESS USING CUSTOM INDICATOR ON FXDREEMA MT5 VERSION WITH BUFFERS AND INPUT PARAMETERS KINDLY PUT ME THROUGH:
PipFinite Trend Pro MT5
demo is working fine in MT4, I have not tried MT5 and I will not
be sure it has not a missing character in the indicators name (can be renamed, but must match), and the indicator is located directly in the Indicators folder (it can be located in any folder, but the name/path must correspond to that)




