fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Zackry
    3. Posts
    • Profile
    • Following 2
    • Followers 6
    • Topics 82
    • Posts 407
    • Best 27
    • Controversial 0
    • Groups 0

    Posts made by Zackry

    • RE: On Trade Event Data not working when Posting HTTP

      @kekhumbo not sure if this will help:
      as you know , when the Ea sends an http request the EA execution is halted for the time being till it receives the response back from the server, may be this is whats causing the issue (however i doubt that)

      secondly you said you want to send all 34 requests at the same time , i am afraid it wont be possible using FXdreema , because the http request block only allow 10 keys per block so there will always be a slight delay (few milliseconds) between the execution of each http request block (dependent on the time it takes to receive the response from the server)
      i would recommend that you use the custom mql block to send all 34 requests from the EA at the same time.

      what server are you using ? the issue could be at the server end maybe its not sending the response back to a particular request (just a thought)

      posted in Bug Reports
      Zackry
      Zackry
    • RE: Need help with a custom indicator (HMA hulls moving average)

      @sli1-0 said in Need help with a custom indicator (HMA hulls moving average):

      HMA that gave buffers for me to read

      sli1-0 can you please share the HMA that allow to read the buffers ?

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: BUG: Block Apply Template, applies template and then erases the EA itself

      @fxfun hey there , i used the apply template block a few days ago , everything was working perfectly , can you confirm if the template you are applying is saved after the ea is attached to the chart? (meaning if the template do not have the ea attached then it will remove when the template is applied)

      i had a look at the project you have shared above and its not a fxdreema bug , its a logical mistake , here is whats happening :
      when you attach the ea to the chart it immediately loads the template which causes the ea to be removed because the template that is being loaded do not have the EA in it so it wont load the EA

      Now there are 2 ways to remedy this situation :

      Solution 1: https://fxdreema.com/shared/jhulzt8ud
      in this way your EA will save the template with EA attached before applying the Template , how ever it will do this on all the charts which will cause some problems hence i added the condition block to check for an int constant
      I recommend that you run the EA on the chart with the "Mode = 0" so the EA can save the template with the EA attached , once you get a template with EA on chart , you can change the value to a non zero value and it will always load the template and you can have the ea attached

      Solution 2: remove the custom mql block and condition block from my shared project and add a custom mql block before the apply template block and write : Sleep (15000); and attache the ea to the chart and save the template within 15 seconds , ( you can remove that block after you get a template with ea attached )

      posted in Bug Reports
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @miro1360 perfect .... thanks 🙂

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @miro1360 Hi miro sorry to bother you again , but a question pleas ... can you please shed some light on this:
      0_1594660865367_Screenshot_1.png
      what is this portion of the code used for ??

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @kestra non of us can do that, only admin can
      But in my opinion 10 connections are enough in free tier
      If you need more connections then you can buy the full version, price for full version is more than fair..... It's nothing compared to what developers will charge for one EA

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @l-andorrà true that 🙂

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @miro1360 Awesome , absolutely awesome 0_1594221706564_3486101d-078a-4d62-96ed-10befb60ef9d-image.png

      I have been trying to solve this issue for a very long time , i even tried the option of creating individual blocks for each cross and i ended up with more then 400 blocks and the resulting ea was slow as hell

      Its amazing how 400 blocks can all fit into 2 custom mql blocks, you are genius **Hats off **

      your code is working splendidly , and you are right about (EUR>AUD and AUD<EUR, because both are valid in for loop)

      I will try and add a check before the alert code to make sure it only alerts for the currency pairs which are present in the market watch or will try and write a list of all 28 valid currency pairs , i think this can help avoid the issue of (EUR>AUD and AUD<EUR, because both are valid in for loop) since AUDEUR is not a pair so it will skip the second alert

      Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... Thank you ....... for all the effort you put into writing the code

      YOU are AWESOME

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      Hi @roar
      thanks for your reply
      yes you are right i was experiencing the issue of non existing buffers , so i added sort of a counter check to make sure the number do not exceed to the non existing index (not good with these dynamic things but i tried)
      here it is please take a look : https://fxdreema.com/shared/JVWB9MzYc

      if we simply look at the blocks and the logic i think it should work ....
      but there seems to be something that i am missing here , and i cant figure it out on my own due to my limited knowledge of fxdreema

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @miro1360 ...... @roar..... , you guys around 😅
      Really sorry tag you guys like this, but I am kinda desperate 😬 I'll appreciate if you could point me to the right direction please 🙏

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @l-andorrà any idea , why this isnt working ? https://fxdreema.com/shared/EpxvbhDBc
      i have exhausted most of my brain cells just to find out whats wrong , but didn't find anything

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: need advice on using variables to select buffers of a custom indicator...

      @l-andorrà well i was thinking the same thing to use the iCustom function in the custom code block and then use the variable in the buffer parameter
      i was just hoping to stay away from using custom code , because i get nervous when i use code 😄 "i guess , curse of not being a programmer ;)"

      posted in Questions & Answers
      Zackry
      Zackry
    • need advice on using variables to select buffers of a custom indicator...

      Hello.
      i am trying to select the indicator's buffer using the variables , but there seems to be something wrong with it and its not running the block where the variables are being used to select the buffers, is it something that fxdreema dont allow ? or its some other problem in my logic?

      Here in Block 3 i am using the variables as the buffer names :
      0_1593439955372_Screenshot_6.png
      But the EA seems to be halting the execution at block 3 and not executing any other block after the block 3

      Here is the EA i am working on :
      https://fxdreema.com/shared/Yg3NrL95c
      https://fxdreema.com/shared/JVWB9MzYc

      This is the indicator i am using :
      https://www.mql5.com/en/market/product/11131

      The idea is to loop through all the buffers in sequence and generate alert for each and every cross (and giving the name of the currencies that crossed) ie;
      AUD buffer crosses above all other buffers
      then cad buffer crosses above all other buffers
      chf crosses above all other buffers
      .
      .
      .
      .
      .
      till the last buffer usd buffer crosses all other buffers

      i do know there is an option to individually select the buffers and then generating alerts for every pair i i am stupid enough to actually try that but it went upto 400 blocks and it ended up 100K lines of code , which is not that feasible, so i thought maybe its possible to achieve this using a loop

      Thanks in Advance

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: Apply template on chart ?

      @ambrogio same here , altho i thought i was onto something but apparently it was just my mind playing tricks on me (its a bit difficult for someone like me, who knows nothing about programming...
      )
      but i am still looking for a way tho, i will update here as soon as i find something useful...

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: Apply template on chart ?

      @josecortesllobat i am aware of this block and it only apply the template to the chart the ea is attached to and this is not what i am looking for , i need a way to apply the template to all the charts even if the ea is not attached to those chart (meaning change the template of all charts by just adding the ea on one chart)

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: Apply template on chart ?

      @ambrogio i am currently trying something with custom mql code
      if it works then i will post the code here

      posted in Questions & Answers
      Zackry
      Zackry
    • Apply template on chart ?

      is there any way to accomplish this :
      if i attach the ea to one chart , and whenever a new chart is opened then the ea automatically adds the selected template on that chart

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: Buttons on chart

      @l-andorrà same here didnt find anything , i guess we need to create a proper content index of the posts made by miro 😄 😄

      posted in Questions & Answers
      Zackry
      Zackry
    • RE: Buttons on chart

      @l-andorrà was it a tutorial made by @miro1360 ? i am also interested in the solution
      i will try and search it from miro's profile if possible , but he has a lot of posts

      posted in Questions & Answers
      Zackry
      Zackry
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 20
    • 21
    • 5 / 21