in condition properties try change Candle ID to 1

Posts made by miro1360
-
RE: RSI X> value not working properlyposted in Questions & Answers
-
RE: swing high or lowposted in Questions & Answers
I dont know block which can do this automatically ... but something similiar is doing Fractal indicator, so maybe you can try it but I dont know if that helps you
... look for indicator which is doing this things, like zigzag trendline indicator:
0_1490204937893_ZigZag_Channels.mq4
from this page: https://www.xpworx.com/download-free/mt4-indicators/zigzag-channel-indicator.phpthis indicator creates objects trendlines "dntrend" and "uptrend" so maybe you can use them in EA for breakouts etc ... just try it

you dont need import this indicator into My Indicators, attach it into chart first and than attach EA into the same chart
-
RE: First green/red bar above/below MAposted in Questions & Answers
use condition block where you set Candle Low is above MA ... this will automatically means that candle is above MA ... next condition is to detect if candle is bear or bull (there are more ways for this, one can be condition block where you compare Candle_Open < Candle_Close which means bull candle) ...
next before all this conditions you need something what is called switch ... because you need only first candle above/below ... this switch can be done easily using flag state (or variables) ... just save state when Candle Close id 2 was below MA and Candle_Close id is above MA - set switch to Up, when opposite - to down ....
and now when switch (flage) state is up, you will wait for first candle above MA, when this happens, set switch to neutral and wait when candle closes below MA (to switch down and start looking for first candle below MA) ...
.
are you able do it? -
RE: can i in fxdreema create indicator ? and how do this ( like my EA but show me buffer arrow or else )posted in Questions & Answers
here was some question and answer about it
...
https://fxdreema.com/forum/topic/4546/simple-question-print-objects-multiple-times-on-initialization-of-indicatorfor next candles (created in future) create conditions in on Tick ... but for history candles in on Init ...
but it is not exactly as indicator, it still as EA .... -
RE: different indicators in different timeframesposted in Questions & Answers
I tried it many times and it was worked, and I am sure it is working
... send here example where it is not working 
-
RE: different indicators in different timeframesposted in Questions & Answers
why just not changed TF directly in condition block?

-
RE: Once a day not working?posted in Questions & Answers
maybe new tick was not arrived at 00:01 ...
something like this have greater certainty that reset happens

https://fxdreema.com/shared/Y6WhJP0Sb
-
RE: How Put ComboBox for constants ?posted in Questions & Answers
so only manually in mql code with metaeditor (after generation from fxdreema) ...
https://docs.mql4.com/basis/types/integer/enumerationand after few changes and new generation from fxdreema you need do it again ... I think it can cost you a lot of effort for small visual change

-
RE: How Put ComboBox for constants ?posted in Questions & Answers
which values exactly?
if you want choose from non-standard mql4 values, you can do this only manually in mql code ...
but if your values are standard (like timeframes, prices, modes) - it can be done easily ....
for timeframe input type is ENUM_TIMEFRAMES

-
RE: Place 3 Break evenposted in Questions & Answers
hmm, I tried did it and have not found easy way how to do this and probably I have overcomplicated it
.. maybe somebody find something better ... but probably this is also workinghttps://fxdreema.com/shared/6hSs2lxKd

-
RE: how i can do this in fxdreema ?posted in Questions & Answers
maybe delete seconds filter and keep only minutes filter
I dont know try it somehow 
-
RE: how i can do this in fxdreema ?posted in Questions & Answers
try this:
https://fxdreema.com/shared/8uznCHQGbwith button open trade and this trade is closed on skipped H1 candle (set in inputs) ...
note that these time filters must not properly working in tester, so test it with demo ...
maybe it is whole not working and must be done in other way ... -
RE: Simple question: print objects multiple times on initialization of indicatorposted in Questions & Answers
it can be done, but you need do it with loop block and increasing some variables ...
try to start with my example:https://fxdreema.com/shared/IqDgwqv1b


it plots arrow when two MAs are crossed:

-
RE: how i can do this in fxdreema ?posted in Questions & Answers
try set up time filters ...
this example close trades at in time interval 1-9 seconds before H1 candle is closed

I guess, I have not tried

-
RE: Loop bar emaposted in Questions & Answers
I dont know what you need to do with this code ... because now:
for loop is looking into history of 400 candles, if somewhere EMA is inside candle
... and if it is inside, IF condition is true ...
result is, that you can be sure that this MA is most time inside candle
...
question is, what you will to do with this history? .... if you need only look if EMA is inside candle, just do this:https://fxdreema.com/shared/T5toN1U8d


-
RE: Only SELL operationposted in General Discussions
I tested it as you posted, and it is working for me



....
maybe if you will try to change this RSI crossing to only > or < ,,, or increase cross width to more candles, like 3-4 ... becase it is hard to find "matching" two crosses in one time (candle over MA and RSI in one time) ...

-
RE: Opening Range Breakout: something wrong, but how to find it?posted in Questions & Answers
@cavery23 said in Opening Range Breakout: something wrong, but how to find it?:
@miro1360 Hi How did you get the box below value and numeric as a blue NR ? Thanks so much
read this help, here it is well explained:
https://fxdreema.com/help/working-with/constants-and-variables -
RE: Only SELL operationposted in General Discussions
have you checked if conditions for Buy are right?
or share here your project, I check it better ... (generate shared link)