fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: Excellent work by fx dreema

      One, me

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Excellent work by fx dreema

      It is unknown because I'm rarely advertising it. One of the reasons for this is that I think I will not be able to support many users at once. But surprisingly enough for me, there are 1-5 people registering every day "by chance" and I feel good with that.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MQL5 OnChartEvent

      I was waiting for someone to wishes this feature 🙂 Currently not available, but I can work for it.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Incorrect Declaration in MT4

      Global variables from "Formula" are always double type.

      I think it will be the best for me to just add server time as the second column in "File write" block. This sounds reasonable.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: EA events in MQL4? (Trade, Timer and so on...)

      I believe this should work (load attached .xml file into fxDreema)... but unfortunately I can't get values from this indicator in EA 😮

      If you know MQL4 a little, you can try to get values with:

      Alert(iCustom(Symbol(),0,"CCIarrow",  14  ,0,0));
      

      But this always gives me 0, even when arrow exists.

      This indicator has one input parameter, three buffers (0 -> %(#0000FF)**, 1 -> %(#FF0000)[Red], 2 -> %(#00FF00)[Green]), but they didn't work...

      ......
      Using CCI Arrow custom indicator.zip

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Video tutorials from our member RidoyRx

      http://www.youtube.com/user/Dj1Ridoy

      Thanks!

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: DrawRectangle Success Node - Not Generating Code Prob..

      Corrected. Thanks for this bug report!

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Static and Global Variables
      1. Custom code the whole thing in function to be used as library (block), not a special indicator.

      You talk about indicator values coming from "Condition" block. There are 2 operands - Left and Right. And yes, static variables can be managed to appear automatically in blocks. The thing is - how to get them after that? In the same block? Because as they are static, they are accessible only in the same block.

      I'm not sure if I understand the whole concept. Or I cant imagine something...

      You want to set 3 different flags like that:

      • 1st flag at the moment when MACD > 0
      • 2st flag at the moment when CCI > 50
      • 3rd flag at the moment when 3 bars with higher lows

      and those three flags will happen in different moments of time? Or at the same time?

      What if:

      • moment 1 - MACD becomes > 0
      • moment 1 - CCI becomes > 50
      • moment 3 - MACD becomes < 0
      • moment 4 - 3 bars with higher lows (CCI is still > 50, but MACD is not > 0)

      I think it's ok to recalculate indicators at every tick, again and again in realtime. If they are properly programmed, only last uncalculated tick(s) will be calculated and all the previous ticks data is already in the memory, not recalculated. In this way all the 3 conditions will be awaited to happen at the same time with no problem and slowering EA so much.

      But if you need to get 3 conditions as separate in time, maybe use of Formula is not a bad idea. Or Project Variables. These are global variables, not static, and they can be used in any block at any time to store and use temporary data.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: candlestick HeikinAshi

      This indicator is included in MetaTrader 4 Custom indicators collection. It can be used in FxDreema. Go to "My Indicators -> Add new indicators" and upload "Heiken Ashi.mq4". There are 4 buffers that this indicator has, and I don't know what they represents... but you can give them names. Then, in Condition block go to My Indicators and use it.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Bizarre behavior of Desktop version [SOLVED]

      The full name of block 12 is "ADX +DI<ADX -DI", and the part "<adx" is what caused the problem. I have never expected that there is a html <adx> tag... but the problem is actually caused by my fault. I missed to clear block names from html content before visualising them.

      Check your mail for the answer.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Bizarre behavior of Desktop version [SOLVED]

      This looks horrible. But you better don't try to solve it. I think there was a problem while saving database files last time and something is missing or wrong there. Obviously there is something with block 12. This needs to be inspected. Can you enter the chat?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: MQ4 code getting a Compile Error [SOLVED]

      Yes, yes... I edited something, uploaded it and ran away... sorry for that, my fault 😏

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: FXDreema Desktop version - Copy / Paste Bug error...[SOLVED]

      What happens if you go to any past point in Actions History?
      I thought that if it works fine here on my PC, it will work fine on others. Seems that it not happens just like that.

      Can you enter the chat?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Copy and Paste EA Code Building Blocks

      Select one or more blocks with a mouse
      Right click over one of them, choose Copy or Cut
      Then go and right click at the empty space aroud - you should see Paste menu

      If you left click somewhere and deselect blocks - Paste menu will not be available.

      Still not working?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Copy and Paste EA Code Building Blocks

      This is something that exists. Well, I have to describe it into the documentation 🙂 You know that right click on block opens it's parameters window... try to right click when a block or group of blocks are selected (yellow glowing).

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: EA events in MQL4? (Trade, Timer and so on...)

      One of the MQL5 advantage is that there are more event functions available. OnTrade or OnTimer... more here: http://www.mql5.com/en/docs/basis/function/events

      The 3 basic events in MT4 are well known - Init, Deinit and Start (Tick).
      What is strange for me... in FxDreema there is a Timer event that actually doesn't work right now (never worked, it's just something that is left unfinished), but no one ever told me that he needs it.

      With some crazy MQL4 manipulations I think it's possible for some events to be created. "Trade" event like in MQL5 for example. But do someone needs that? Do someone use "Trade" event for MT5 projects?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Desktop version of FxDreema?

      Drew, it all depends on the server logic. For other sequrity reasons I was thinking about to save a copy of the project files before they are deleted in something like Recycle Bin. This makes sence when a user deletes a project accidentally.
      But currently FxDreema works the way you like it - all the files are deleted and no backup files left.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Sharing the details of successful projects

      I am not good at creating experts. That's why maybe the best idea that I have is 2'nd example in Examples. This can be described as: buying only with huge limits - more than 300 pips, only when some big MA on big timeframe is rising.
      Nothing with scalping, obviously. It's slow, it looks not attractive... but it shows some results over a big periods of time 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Desktop version of FxDreema?

      Sometimes people ask me if there is a desktop version available. Currently, there is not. The main reason for this question is of course - sequrity of the projects and ideas.

      Yes, all the projects are placed on the server. And yes, I have access to all of them. But I must ensure you that I have zero interest in any of the projects someone have. I have personally 5 or 6 margin calls (working manually) and honestly, I don't like trading Forex anymore. But I like the product I developed. I am the only one who is attached to FxDreema.

      Why FxDreema is web-based? Well... because I started it like this. I have no experience programming PC applications, I am a web-applications developer and for me PHP is the easiest way to program something.

      How many of you are worried about own projects and feel fear that they will be stolen?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Save as... [DONE]

      Done. Without Custom blocks support for now.
      Because this is new, some bugs may appear. Tell me if you find some.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 371
    • 372
    • 373
    • 374
    • 375
    • 374 / 375