how TPi_Price calculation looks like exactly?
Posts made by miro1360
-
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
-
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
group number is part of magic number ... so better is explanation with example:
magic:100 + no group =>> magic:100
magic:200 + group:1 =>>> magic:201
magic:210 + group:2 =>>> magic:212
... and so on(real magic number = magic from settings + group)
https://fxdreema.com/tutorial/builder/groups-and-magic-numbers
-
RE: EA Conditions to fullfill in sequenceposted in Questions & Answers
you are checking these conditions forward ...
here is example with moving averages, ... change them to your tdi ...
import this project to see all variables
https://fxdreema.com/shared/RTY3dqm8dmaybe you must add few another conditions to reset this TDI if something else happens ...

-
RE: Baby Stepsposted in Questions & Answers
second part still simple

0_1525631996117_miro1360_test_1.0.mq4

not much changed... note that it can be done better ... but we are not going to create graphics for games so you can do code as you want, here it does not matter ...

third+last part I think can be Condition blocks in fxdreema (you can import this indicator into My Indicators, and compare results with other indicators) ...
-
RE: How to use ZigZag [advanced]posted in Tutorials by Users
in case Once per bar do not use values with ID=0

-
RE: Baby Stepsposted in Questions & Answers
just few lines of code in metaeditor ...
this is your computation logic in code, which you described above
for loop goes through candle IDs (but only once, barsToCalculate is my own function to speed up indicator and not recalculate all bars in history when barsLimit is set to 0 ... (it calculate history bars only once and than calculate only current candle) ... when you use it in EA, set input parameter barsLimit to some reasonable number, like 10 --- only 10 bars will be calculated) ..

-
RE: Baby Stepsposted in Questions & Answers
0_1525388901672_miro1360_test_1.0.mq4
here is simple custom indicator with separate window, start from that, later you can use it in EA ... you can understand it easily, it is very simple ...

-
RE: Baby Stepsposted in Questions & Answers
for consolidation use Bollinger Band Squeeze indicator ... green dots is trend, red dots is consolidation

-
RE: How to get the candle time of previous LL on zig-zag indicator?posted in Questions & Answers
this is not so simple, but solution exist using my example
https://fxdreema.com/forum/topic/5060/how-to-use-zigzag-advanced?page=1with few custom code lines you can do this job easily

https://fxdreema.com/shared/spRoW4aDc



-
RE: Backtestingposted in Questions & Answers
maybe you must register here and try it again after login ...
-
RE: Backtestingposted in Questions & Answers
this
is smile ...
probability is very-very complex, read (and understand) all posts from this guy ...
https://www.forexfactory.com/search.php?searchid=3553793 -
RE: Backtestingposted in Questions & Answers
because your signals are not consistent
what was working yesterday, is not guaranteed for today
... look for at least 1 signal per day (not per month)
... people still do not understand that these charts are bad for a mechanical system, the only way can be the probability system ... it is like the casino
-
RE: Tutorial Loop [advanced?] - find and save specific value from indicator historyposted in Tutorials by Users
I am not sure what do you mean ....
do you mean using custom code between fxdreema blocks? you dont need do it if block exist, if is not exist you can do it or even create own block (in fxdreema studio, check forum for some replies about that) ...or do you mean whole EA in own custom code?
here not exist one answer ... because custom code can be done wrong, veery wrong, and therefore very slow ... you must be very experienced when you want create something pure in code, otherwise you will lose time (in that case it is better to learn something else as MQL programming, lets say it is better to learn javascript and web programming)... fxdreema is using sophisticated system of blocks which are called logically in order/loops ... now it is in OOP, so technically it is really fast ... someone can tell you, that there is a lot of unnecessary code, but it does not matter, because unprofitable EA will create the same loss with both
... from my experience, fxdreema is the best tool for creating EAs ... -
RE: Custom EX4 indicator is not working with fxDreemaposted in Questions & Answers
for simplicity, instead of enum use int as you did in first post, but in int use only numbers, that means in period you use 15 ... if that is not working, than try use it from 0 to x ... instead of "no" use 0, or 1 ... enum is somewhere in indicator code as int but reprezented with string name (but in core it is int) :


-
RE: 5 Mins Scrapping EA failed to Open Tradeposted in General Discussions
your EA in tester is working
if trade was not opened in real trading, there should be errors in console why (maybe broker rejected trade, or something that) ... -
RE: SuperTrend with Macd Divergence and Semafor EAposted in Questions & Answers
really, I completely forgot that this block exists .... so you can use this block for multipair

