
Posts made by miro1360
-
RE: EA to Place orders at specific priceposted in Questions & Answers
and what about pending orders?
-
RE: Newbie alert - Trades triggering above Stochposted in Questions & Answers
from my view, it is because you are working with current candle (Candle ID 0) and this candle is not closed (is moving up down) and that means, it can be closed above or below ...
you can try to work with candle ID 1 (which is first Closed candle) ...
... you can try in both blocks, or in stochastic ... test it with visual tester

-
RE: How to program this in the Condition block?posted in Questions & Answers
right, sorry my bad
... it are fewer candles ... but logic still the same ...

-
RE: Combined point trading systemposted in Questions & Answers
https://fxdreema.com/shared/aWkdkULae
try thisdont worry about calculation in one tick, it is fast enough
-
RE: Combined point trading systemposted in Questions & Answers
yes wait while I check on it and show you example ...
-
RE: MT4 and MT5 codeposted in Questions & Answers
MT4, MT5 both ... but they are created separatelly ... (admin is working on converter, you can try it - from mq4 to mq5, it is experimental) ...
blocks is theoretically unlimited
... but fewer is better (for speed, etc), I heard, there are projects with more than 1000 blocks ... -
RE: add or close running trades after % of tp or sl are reachedposted in Questions & Answers
for this situation dont use this Counter, better if you use once per trade block (from pink blocks) ... and in block nr.2 check if you have right parameter (% of current TP or SL?) ...
-
RE: How to set close allposted in Questions & Answers
look into block "Check profit (unrealized)" - with this block you can check your profit from opened trades and compare it with x money ... after this block connect Close trades block ...
-
RE: Combined point trading systemposted in Questions & Answers
question is: are conditions meet in one time (at once) for collecting points, or can be delay between conditions?
if at once, just use variables ...

that "no buy" block can be first in scheme
.. -
RE: How to program this in the Condition block?posted in Questions & Answers
how exactly you mean "one year back"? ...
is it Close from previous year (last Close in 2016) ....
or is it Close 365 days back? -
RE: How to place Break Even?posted in Questions & Answers
better you ask it here:
https://fxdreema.com/forum/category/2/Working-with-fxDreemabut anyway ... breakeven must be connected with other block, the same like trailing:
https://fxdreema.com/examples#Trailing... -
RE: How to know the distance on chart?posted in Questions & Answers
you dont need coding in fxdreema ... as admin said, try Check distance block ....
-
RE: Tutorial 06 - My Indicators in fxDreemaposted in Tutorials by Users
just add next block with MA to your conditions

-
RE: How to know the distance on chart?posted in Questions & Answers
using formula block you can calculate .. but note, your output can be negative value ...
-
RE: Variables and Formula..posted in Questions & Answers
this save previous day High and Low price into variables aa and bb
than using formula calculade mid price cc
compare this calculated price with current price and if is > and is not opened buy, open buy ...
https://fxdreema.com/shared/Eid2CtX0d
