@roar thanks for replying. appreciate the effort 
Best posts made by vnpython 0
-
RE: Condition Bug?posted in Bug Reports
this only happens when 2 condition panel is opened. the selection on the newly opened will cause the first panel to react. if open individually, no such issue. for safety sake, i re-open the conditions one by one and check. after checking, the EA runs fine. before that was unable to do as designed...
-
RE: Generate a random chartposted in General Discussions
that's good idea! hope to put my ea into such test too. Can this be achieved in mt4?
-
RE: Possible bug in positioning candle in 'future' candlesposted in Bug Reports
hijacking my post haha
-
MA cross with negative period produce funny result?posted in Questions & Answers
ok, was toying some ideas and using simple MA crossover without negative period (0) and the buy/sell works fine. and when i use -1 on 1 of the fast MA, it gives only sell trade. and when i use 0 for fast MA and -1 for slow MA, it gives only buy trade T_T are negative period gives such result?
Latest posts made by vnpython 0
-
For Each Pending Order (Oldest / Newest) and If Demo Account... not working?posted in Bug Reports
https://fxdreema.com/shared/sPKAyHz6c
this is a stripped version of my idea and after playing around for some time, i think there is bugs of:
-
'For each pending order' block - the loop direction seem broken, and no matter how i config it, it always deletes from newest first. I wish to delete from the oldest first but couldnt.
-
'If demo account' block seem broken.. please check
(i delink 'if demo account' for you to try, you can link and check again)
thanks! -
-
RE: Trading costs toolposted in Tutorials by Users
i think is good filter method. i will google on this idea and read more about it.. if anyone already has pdf on this i will appreciate. if not google my way to it ^^
edit: https://www.investopedia.com/articles/forex/10/spread-pip-potential-pairs-day-trading.asp
-
RE: Create EA from MA crossover in MACD window.posted in Questions & Answers
isnt that 'main' line x> or x< 'signal' line?
-
RE: [Custom Block Release] Send a message or screenshot to Telegram Blocksposted in Tutorials by Users
@ranjayforex said in [Custom Block Release] Send a message or screenshot to Telegram Blocks:
I followed the steps thoroughly and now FxDreema cannot compile the EA? can someone assist?
edit: those who face this issue. please download the mq4 file and compile under meta editor. it work still. thanks @Spuzy wherever you are ^^ @ranjayforex take note if you're still struck
-
RE: will the fxDreema be further developed?posted in Questions & Answers
you want challenge? well, maybe do a section that allow us to make indicators! this would be great challenge!!
Edit: sometime lately i find my EA work in the past but when i tried to update it, now unable to work as intended... so i load up the old mq4 and compile again and it didnt work... until i remove 1 part (part of debugging process) and suddenly it work again. But the funny part is the old code able to work and now only work after remove 1 part.. did boss make update now and then?
-
RE: Possible bug in positioning candle in 'future' candlesposted in Bug Reports
@fxdreema said in Possible bug in positioning candle in 'future' candles:
I tried this: https://fxdreema.com/shared/OuUNxlf3d And I got an error "array out of range" when the EA tried to get value from future candle. It's because there is no data about the future candle, it doesn't exist. I believe that the Time attribute is like Open, High, Close, Low and Volume, it's connected with the candle, and with no candle there are no attributes.
You can get the time of the current candle, because that time is rounded, and add seconds to it. The time is the number of seconds since 1.1.1970. Look at this: https://www.epochconverter.com/ The "Comment" block may draw human readable version of the time, but in reality it is an integer number.
Here is another example: https://fxdreema.com/shared/wreYKAEL
I use that "shift in time" feature, but instead of using fixed number of minutes, I use Period(). It returns the number of minutes for the current period. If the period is M15, it returns 15. So that way you can put the EA on different period and it will show you the time of the non-existent future candle. You can use 1 * Period() or 2 * Period() or MyVariable * Period(). Even _Period should work instead of Period().i just tried on draw vertical line on Period() as per your 'comment' block but on 'draw line' block:
and cant draw line on both historical data and future data... @fxdreema please help? -
RE: Draw H-Line on Current Year Open Price?posted in Bug Reports

as you can see... the 2019.01.02 where the arrow is but the H-line is down below, to the candle open of today (11/5/2019)
-
RE: Draw H-Line on Current Year Open Price?posted in Bug Reports
@trader-philipps said in Draw H-Line on Current Year Open Price?:
@vnpython-0 I think there are several possible reasons.
-
You set (at least in shared project) the angle to 45 degrees. So maybe you just don't see the line. Can you see the object in the object list <CTRL-B>?

-
Not enough history on chart. It may also be that there is not enough history on the chart - especially on M1 timeframe. Did you test in tester or demo account live chart?
-
the line is shown straight and not in angle.. i think that option only affects trendline by angle which i havent try..
-
hm.. maybe you're right.. i will try and let's find out...
-
-
RE: Draw H-Line on Current Year Open Price?posted in Bug Reports
@l-andorrĂ said in Draw H-Line on Current Year Open Price?:
According to the info on your block, it will draw the line on the 2nd of January, 2019. That happened a long time ago. Try to put a closer day to present.
i think the issue is the line is drawn to M1, M5, M15 ... etc instead of using the timestamp function of the block...
