fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. roar
    3. Posts
    • Profile
    • Following 0
    • Followers 184
    • Topics 35
    • Posts 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: How to do I build a multi timeframe\symbol portfolio?

      What error are you getting, exactly?
      If its the 'x' - undeclared identifier in your latest shared, its referring to your constants list - x is not a number. I believe you can delete those symbol constants anyway.

      image.png

      posted in Questions & Answers
      roar
      roar
    • RE: All Blocks Resized + Lost All Connections

      @Jim67 there is a limit already
      de1b12aa-a33b-4068-aebd-0a2f39f62070-image.png

      posted in Bug Reports
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman where do you populate the array with symbols? If its block 25 in your screenshot, there must be some connection with that block - alone blocks never execute on fxdreema, they are essentially disabled. So you can just make a dummy connection to a pass block.

      Also, the array populating must be done before the main system does its work, so its best to do it On Init

      posted in Questions & Answers
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman the array just needs to be string datatype (not int), just as your individual market variables are.

      Tip: when copying a shared project, you can download the .mq5 file and then import it back to your builder. You will get all variables automatically.

      posted in Questions & Answers
      roar
      roar
    • RE: Converting MQ4 files and their include files MQH

      @ZakTrading

      just delete the code which is making a problem

      I wish every coding problem could be solved like that lol

      posted in Questions & Answers
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman the sym_array variable needs to be an array (stores multiple values at once). This is denoted in the variables list by putting square brackets after the name, like this

      sym_array[]

      posted in Questions & Answers
      roar
      roar
    • RE: How to enable EA to Execute Button

      @Jim67 that works. Remember to set the variable false again, after successful buy. You can use the quick variable adjust window to set the variable true or false, "modify variables" block is never needed for boolean variables.

      6ede2e06-cae6-492a-9096-a7731af7dd4f-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to enable EA to Execute Button

      This might work. I dont use "turn on/off" blocks myself, a boolean variable does the same thing
      image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to scan previous day for engulfing bars

      @cyberspace you need to change your candle id value in a loop.
      Here is a simplified example https://fxdreema.com/shared/xeDNx924e

      posted in Questions & Answers
      roar
      roar
    • RE: How to enable EA to Execute Button

      @Jim67 block 2 is turned off again and again on every tick

      posted in Questions & Answers
      roar
      roar
    • RE: Pause for a tick

      You can just use the seconds filter block, allow seconds from 2 to 60... But its weird that the EA sometimes uses ID 3 and sometimes ID 2, the real problem might be elsewhere

      posted in Questions & Answers
      roar
      roar
    • RE: Moving average help please

      @Tulefi either way will work the same. Difference is that the MA shift will visually move the MA line

      posted in Questions & Answers
      roar
      roar
    • RE: EMA Cross - Distance between EMAs

      You can also use raw values and type for example "20*_Point" to get 20 points every time, regardless of your broker, trading instrument or pips settings.

      posted in Questions & Answers
      roar
      roar
    • RE: How to enable EA to Execute Button

      @Jim67 you can execute other blocks at any point with this bad boy here
      575f0982-92f5-4ffd-a780-4f73201fe319-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Highest Value

      @andrewfrank remember to reset the variables every time

      bba90dcb-4deb-4f03-a303-a65638b080cf-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman that works. If you want to get fancy, you can put the symbols into an array and loop through that array. This might be easier managed version, as you can make the symbols list in excel. I have ran 2000+ symbols that way.
      Check OnInit tab

      https://fxdreema.com/shared/VwmyF0FAd

      839dcab2-00a6-4e03-951c-9502e3dd7e47-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman well if you have many targets for rsi, maybe there should be some variables, like tgt1 tgt2 etc, or an array... But it might be unnecessarily complicated that way.

      Why do you need to check multiple levels in the first place? Surely, if RSI is not above 60, there is no need to check if RSI is above 70. So, we could just use the smallest target.

      I'm not sure where the sleep loop error comes from, can't test with those symbols myself. Try some smaller list of symbols, maybe there is just some limit in the symbols loop (if so, there's another structure to do, of course hehe)

      posted in Questions & Answers
      roar
      roar
    • RE: How to do I build a multi timeframe\symbol portfolio?

      @gooseman why do you have the same symbol repeating multiple times there?

      posted in Questions & Answers
      roar
      roar
    • RE: How to recognize a candle

      So you need to add this "id" variable to your variables list?

      https://fxdreema.com/tutorial/builder/constants-and-variables

      posted in Questions & Answers
      roar
      roar
    • RE: Custom Indicator not showing data after X bars

      @joseanrod the total number of bars is in variable called Bars.
      But the indicator probably needs some history before it can start calculating the indicator results, so you can try something like this:

      i = Bars - 100;
      

      https://docs.mql4.com/predefined/bars

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 9
    • 10
    • 11
    • 12
    • 13
    • 120
    • 121
    • 11 / 121