fxDreema

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

    Claude101

    @Claude101

    0
    Reputation
    138
    Profile views
    14
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Claude101 Unfollow Follow

    Latest 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