fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. miro1360
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 257
    • Topics 27
    • Posts 1611
    • Best 192
    • Controversial 5
    • Groups 0

    Posts made by miro1360

    • RE: RSI X> value not working properly

      in condition properties try change Candle ID to 1
      0_1490277710514_upload-8d202d71-5c3a-4ab4-b7a4-66d399df49d2

      posted in Questions & Answers
      M
      miro1360
    • RE: swing high or low

      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.php

      this 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 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: First green/red bar above/below MA

      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?

      posted in Questions & Answers
      M
      miro1360
    • RE: can i in fxdreema create indicator ? and how do this ( like my EA but show me buffer arrow or else )

      here was some question and answer about it 😄 ...
      https://fxdreema.com/forum/topic/4546/simple-question-print-objects-multiple-times-on-initialization-of-indicator

      for 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 ....

      posted in Questions & Answers
      M
      miro1360
    • RE: different indicators in different timeframes

      I tried it many times and it was worked, and I am sure it is working 😄 ... send here example where it is not working 🙂

      posted in Questions & Answers
      M
      miro1360
    • RE: different indicators in different timeframes

      why just not changed TF directly in condition block?
      0_1490048100829_upload-db9b0d84-efbe-477d-9bd5-93d498fb20a9

      posted in Questions & Answers
      M
      miro1360
    • RE: Once a day not working?

      maybe new tick was not arrived at 00:01 ...

      something like this have greater certainty that reset happens 🙂
      https://fxdreema.com/shared/Y6WhJP0Sb

      0_1490048260144_upload-425f6af7-86e5-45dc-8149-f933b936ceb4

      posted in Questions & Answers
      M
      miro1360
    • RE: How Put ComboBox for constants ?

      so only manually in mql code with metaeditor (after generation from fxdreema) ...
      https://docs.mql4.com/basis/types/integer/enumeration

      and 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 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: How Put ComboBox for constants ?

      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
      0_1489925952445_upload-4bbf9afc-0b24-4eaf-804a-dcb4ba2a8f65

      posted in Questions & Answers
      M
      miro1360
    • RE: Place 3 Break even

      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 working

      https://fxdreema.com/shared/6hSs2lxKd

      0_1489755229483_test01.mq4

      0_1489755181891_upload-aa805f17-aed8-47a1-b63d-eacbf19a305d

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can do this in fxdreema ?

      maybe delete seconds filter and keep only minutes filter 😄 I dont know try it somehow 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can do this in fxdreema ?

      try this:
      https://fxdreema.com/shared/8uznCHQGb

      with 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 ...

      posted in Questions & Answers
      M
      miro1360
    • RE: Simple question: print objects multiple times on initialization of indicator

      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

      0_1489685430217_upload-7689c182-7f2d-4d90-a238-9910607cee27

      0_1489685438231_upload-e6b1380f-119d-4796-a069-07b8b9e64d74

      it plots arrow when two MAs are crossed:
      0_1489685553177_upload-73e35f7b-6034-4387-8912-64d8e0feca06

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can do this in fxdreema ?

      try set up time filters ...
      this example close trades at in time interval 1-9 seconds before H1 candle is closed
      0_1489684245676_upload-a1195930-9263-43c2-8cdb-04e6f515ca77

      I guess, I have not tried 😄

      posted in Questions & Answers
      M
      miro1360
    • RE: how i can do this in fxdreema ?

      when new candle appear?

      posted in Questions & Answers
      M
      miro1360
    • RE: Loop bar ema

      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

      0_1489597039152_upload-e268fc78-e131-4247-95d0-35eb9e708715

      0_1489597059934_upload-8982d4cd-4ef4-4a06-a8d8-98e36ad77b5c

      posted in Questions & Answers
      M
      miro1360
    • RE: Only SELL operation

      I tested it as you posted, and it is working for me 😄

      0_1489595539002_upload-bc6f459e-f810-43fe-8f1f-26b82cef6405

      0_1489595547320_upload-2a70f6a9-76f7-468a-b5ac-28a45a0b2a66

      ....
      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) ...
      0_1489595665420_upload-035926bc-5da8-4362-b610-ac6e49dabc75

      posted in General Discussions
      M
      miro1360
    • RE: Opening Range Breakout: something wrong, but how to find it?

      @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

      posted in Questions & Answers
      M
      miro1360
    • RE: Only SELL operation

      have you checked if conditions for Buy are right?
      or share here your project, I check it better ... (generate shared link)

      posted in General Discussions
      M
      miro1360
    • RE: Only SELL operation

      how exactly are your blocks?

      posted in General Discussions
      M
      miro1360
    • 1
    • 2
    • 52
    • 53
    • 54
    • 55
    • 56
    • 80
    • 81
    • 54 / 81