fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Claude101
    3. Posts
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 14
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by Claude101

    • RE: Histogram crossed over MA

      I am glad I posted here. I was able to make the last indi on my algo to work. Thanks very much @biztet @l-andorrà @dragonfly617.

      Here is how I set it up,
      0_1608395739954_11bf278f-3fb1-4215-8bb0-646a5ab42536-image.png

      And now it is only taking trades if the conditions are met.
      0_1608395936243_c6f2bb4f-c900-4bcd-b2e6-6b395b12a881-image.png

      Thanks again everyone. Will share this to my colleagues that have the same issue with volume indicators.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @biztet Thanks man. Rather than just changing the candleID, I just set it up under custom indicators rather than My Indicators list and it worked. I had to edit the Param using mlq4 editor so I don't need to input param on fxdreema.

      You really helped me out man. Thanks very much. I am new to fxdreema and just copied how you set your blocks.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @biztet if you are talking about the candleID, yes, have tried it already. If you are referring to using custom indicator rather than importing it on My indicators, NO, not yet.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      Tried that one already. I tried candle 1, tried candle 2, tried candle 0. Tried once per day. tried timed, and there was no difference.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      P.S I am using the same block setting as the image I posted on the begging of the thread. But those setting are not properly set by the blocks on the EA.

      The indicator itself uses this enum code

      // Enumerations by Custom Indicators

      enum enPrices
      {
      pr_close,
      pr_open,
      pr_high,
      pr_low,
      pr_median,
      pr_typical,
      pr_weighted,
      pr_average,
      pr_medianb,
      pr_tbiased,
      pr_haclose,
      pr_haopen,
      pr_hahigh,
      pr_halow,
      pr_hamedian,
      pr_hatypical,
      pr_haweighted,
      pr_haaverage,
      pr_hamedianb,
      pr_hatbiased
      };

      enum maTypes
      {
      ma_sma,
      ma_ema,
      ma_dsema,
      ma_dema,
      ma_tema,
      ma_smma,
      ma_lwma,
      ma_pwma,
      ma_alxma,
      ma_vwma,
      ma_hull,
      ma_tma,
      ma_sine,
      ma_linr,
      ma_ie2,
      ma_nlma,
      ma_zlma,
      ma_lead,
      ma_ssm,
      ma_smoo
      };

      Could this be the reason why fxdreema was unable to work with this indi?

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      I think I found out what was the reason why it was not taking any trades.
      Somehow, the parameters of the indicator that was set by the EA is incomplete.

      Please check the img below.
      0_1608369678782_16f61c6a-5344-4d79-adf2-d5b5d7c5e972-image.png
      0_1608369717324_3df6fb5e-136c-4d2c-b00a-b8ec662556c3-image.png
      The Parameters are incomplete, making the indicator incapable of calculating, so technically, no buffer crossed above another buffer.

      The Indi should look like this:
      0_1608369863531_f03a8451-7fd1-4561-a9ac-518484f4472e-image.png
      0_1608369883249_9a7f98a4-42bd-444a-a348-e9e21c8e1e26-image.png

      It seems I need to learn MQ4 language, or I need to learn how to use iCustom and fix the param setting via code to fix this issue.

      Here is the coding of the expert in Mq4 file. if you can check the coding and let me know . That would be really appreciated.
      0_1608370019991_V1 try.mq4

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @l-andorrà Here is how I have it in the beginning. I am using the No trade block and candle ID 1 on condition block. but it still does not do anything.

      https://fxdreema.com/shared/xEqYczlWc

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @biztet is it the condition block where I have to use IF-THEN-ELSE logic and manually write the condition? if that is the case, is there a tutorial or even a document I can read to create one?

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @l-andorrà https://fxdreema.com/shared/cIBhEmu1e here is the link. I read somewhere that indicator visible will do the trick but don't have a clue on how it should be done.

      https://fxdreema.com/forum/topic/9105/tutorial-working-with-ex4-ex5-indicator-file/3

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @biztet I did used that logic "above" value but to no avail.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      If I use "cross above" rather than "above", the system just create trades every candle.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      @l-andorràHere's What I did. If I use candleID0 it does not create any trades. not at all, even if on the indi the buffer clearly went above the blue buffer.

      The next one, I tried using CandleID1, still no trade is being created.
      I really wanted to make this indi work on my EA because it works perfectly in my algo to filter trades with less volume.

      I read about indi appear but somehow not sure how the logic with that block works. so I can't even try it out.

      0_1607987457153_bc7153b7-3569-4334-8b45-8c5716667a65-image.png

      I am sure that after I stopped the tester, the said indi should show up on the visual chart but for some reasons it is not.

      posted in Questions & Answers
      C
      Claude101
    • RE: Histogram crossed over MA

      Here is the copy of my Volume EA test

      https://fxdreema.com/shared/cIBhEmu1e

      What I want to do is to make sure that the volume indi will work on as it should be. So what I am trying to do is to make the EA take a trade if volume is above buffer 3(blue) and do not trade if below the said buffer. this way I can make sure that it will meet the condition that I can use on the full EA.

      P.S. Currently on demo so I can't create more than 10 blocks to test.
      P.S. I watched your vids, as an introduction to FXDreema.

      posted in Questions & Answers
      C
      Claude101
    • Histogram crossed over MA

      I am having a hard time to make this volume indicator to work

      I want buffer 1 or 2 (green or red) to take trade only if it went over buffer 3 (blue MA) but what it does is always take trades every candle. I tried doing it on different candle, I even used specific time but the outcome is the same. Here is the volume indi I am currently working.

      0_1607866846176_waddah attar explosion averages nmc alerts 2_2.mq4

      Not sure what I am doing wrong.
      here is the current condition it is set to:
      0_1607867047372_3b162c23-62dd-44c9-aed2-b8b88ff80f4b-image.png

      This is how the indicator looked like.
      0_1607867091523_4f881d7d-1672-431a-a7cf-efb37bbd40bf-image.png

      Hope I can get some guidance from people who are used to work with histogram type indicators.

      posted in Questions & Answers
      C
      Claude101
    • 1 / 1