fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. hilavoku
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 30
    • Posts 131
    • Best 2
    • Controversial 0
    • Groups 0

    hilavoku

    @hilavoku

    2
    Reputation
    1737
    Profile views
    131
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    hilavoku Unfollow Follow

    Best posts made by hilavoku

    • RE: Save as... [DONE]

      Mmmhh. I can only export the XML file; no MQ4

      posted in Questions & Answers
      H
      hilavoku
    • RE: line on chart

      Hi.

      As you have spoken of the 'draw horizontal line' block. When i draw such a line with the help of the block i would like to reference it like a handle. So for example i have the ability to move the line 10 pips up. Is this possible?
      If I could give the line a name then i could use that name when using the 'For each object' block. Its only a workaround but would make it possible to be really 'aware' of object.

      Thanks in advance
      hilavoku

      posted in Questions & Answers
      H
      hilavoku

    Latest posts made by hilavoku

    • RE: Read content of Expert -Tab Log entries

      @spuzy 🙂
      I know where the log files are but MT4 doesn't write the log files to disk when they change in MT4.
      MT4 does create the log file when you open the log folder within MT4 for example. You can open the log folder with teh windows explorer and you won't see a log file from the current day.
      When you now right click into the history log in MT4 and select 'Open', MT$ will immediately create the log file.
      There also seems to be no way to force MT4 to write the log to disk when you need it.
      Thats the problem...

      posted in General Discussions
      H
      hilavoku
    • RE: Read content of Expert -Tab Log entries

      Experts Tab

      posted in General Discussions
      H
      hilavoku
    • RE: Read content of Expert -Tab Log entries

      Thanks Spuzy for the reply.

      There is a EA running which writes some info data which you can see in the 'Experts' Tab in MT4. The problem is that MT4 won't flush the Log data directly from memory to disk. Then it won't be a problem for my external program to get the log data.

      I know the 'Write to file' block but it can't get the data from that tab. So I'am stuck at the moment.

      posted in General Discussions
      H
      hilavoku
    • Read content of Expert -Tab Log entries

      Hi.

      I have running an EA which outputs some information in the Experts-Tab Log on the MT4 screen.

      I want to write an indicator which can read those entries and write them to a csv file.
      I can't find a fxDreema command for reading those outputs.

      Can somebody point me into the right direction?

      Thanks in advance!
      hila

      posted in General Discussions
      H
      hilavoku
    • RE: TicksData function

      You have a function TicksData().

      I think there is a bug in it.

      if (shift<=0) {
               if (type==MODE_ASK) {
                  return(MarketInfo(symbol, MODE_ASK));
               }
               else if (type==MODE_BID) {
                  return(MarketInfo(symbol, MODE_BID)); 
               }
               else {
                  double mid=((MarketInfo(symbol, MODE_ASK)-MarketInfo(symbol, MODE_BID))/2);
                  return(mid);
               }
      

      I think when you wan't to return the mid value it should be

      double mid=((MarketInfo(symbol, MODE_ASK)**+**MarketInfo(symbol, MODE_BID))/2);
      

      see you
      hila

      posted in Bug Reports
      H
      hilavoku
    • RE: last action at tick

      That sounds cool. To have more then one event pages. Nice.
      When I have more then one block with a text-ID. Will they be executed in alphabetical order?

      posted in Questions & Answers
      H
      hilavoku
    • RE: last action at tick

      Puuuhhh.
      When I give this special block the ID 999 which at that moment would be the greatest one then its okay but when I add a new block then the new one will be 1000 and I have a problem.

      When do you wan't to change the handling of the IDs? Do I have then still the possibility to use the 'Run block' block?

      posted in Questions & Answers
      H
      hilavoku
    • RE: last action at tick

      Hiho.

      I wan't to have a block which should be running just as a last action before the EA waits for the next tick.
      Is there a chance? Something with the block ID?

      posted in Questions & Answers
      H
      hilavoku
    • RE: Custom function error

      Working fine!

      I'am the only person here which uses custom functions!? Wondering...

      posted in Questions & Answers
      H
      hilavoku
    • RE: Custom function error

      Thanks. Will check it now! 🙂

      posted in Questions & Answers
      H
      hilavoku