fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Traderz
    3. Posts
    T
    • Profile
    • Following 1
    • Followers 3
    • Topics 12
    • Posts 41
    • Best 2
    • Controversial 0
    • Groups 0

    Posts made by Traderz

    • RE: Are variables in temporary memory

      @traderz said in Are variables in temporary memory:

      @fxdreema Thanks for your reply
      and Do counters also considered as temporary ?

      @fxDreema Can you clarify this please ?
      I mean if I made a counter that won't pass trade group number 2 but once until group number 1 is closed which will reset the counter
      If the terminal restarted the group number 2 can pass again even I didn't reset the counter ?

      posted in Questions & Answers
      T
      Traderz
    • RE: Are variables in temporary memory

      @fxdreema Thanks for your reply
      and Do counters also considered as temporary ?

      posted in Questions & Answers
      T
      Traderz
    • RE: Are variables in temporary memory

      Also , Do block counters that allow to pass once will have the same way as variable so if the terminal restart it can allow to pass one more time wrongly without being reset

      posted in Questions & Answers
      T
      Traderz
    • Are variables in temporary memory

      Hello ,
      I'm asking about if any value store in a variable will be in temporary memory so that if the computer or even the terminal restart it will be erased
      If that tru how can I save a value that won't be erased until I manually change it because I'm building many things on Variable but once the terminal restart it's all collapsed

      posted in Questions & Answers
      T
      Traderz
    • RE: Time Filter

      @richard96816
      I got you , but it will be more complicated as only I want to skip early monday and late Friday and other than that all day are good to go 24 hours so I think it will be heavy for the code for nothing

      posted in Questions & Answers
      T
      Traderz
    • RE: Time Filter

      @fxDreema
      Weekday filter will allow trading or reject it in the whole day so How I can I do what I want ?

      posted in Questions & Answers
      T
      Traderz
    • Time Filter

      Hello,
      I want a time filter to allow trading from opening of London session on Monday till closure of London session on Friday

      Is the filter right like that ,, https://fxdreema.com/shared/zmwr7JChb

      Do we type name of days simply like that , should it be all small letters ?

      Thanks

      posted in Questions & Answers
      T
      Traderz
    • RE: Finally , Integration of News Filter :) [ MT4 Only ]

      @ambrogio
      Yes, Don't Compile it with FXDreema but export the file as .mq4 then open it with Metaeditor and added what's in the block " Global Scope "
      in the global scope section of the file ( it's the very first beginning of the file just after you name the variables and constans and before any functions )

      posted in Tutorials by Users
      T
      Traderz
    • RE: Virtual Stops break after restart

      @fxdreema
      The problem is I don' even know where is the problem and as you said it doesn't show everytime and I don't think it's related to specific pair but for me my self I can't even know how to trigger it , it just comes up randomly

      posted in Questions & Answers
      T
      Traderz
    • Virtual Stops break after restart

      Hello,
      I use Virtual Stops for all my projects but after 1 months of running it on live I noticed this ,

      After MT4 restart , The EA forget Stops for some trades and there is no Stops at all while for other trades it's still there no matter how many restarts you do , I just try it now to prove to my self , The EA opened a trade on USDCHF with Virtual TP drawn as a line on the chart then I restarted EA and boom the line is gone at you can't trigger TP even when it crosses it WHILE there was an AUDUSD trade running there for few days and after this restart ( and many before ) the line didn't go any where and it still there ?

      Thanks

      posted in Questions & Answers
      T
      Traderz
    • RE: Get the Variable out of the block

      @fxdreema
      Bucket blocks along with Modify Variables did the job
      Thanks !

      posted in Questions & Answers
      T
      Traderz
    • Get the Variable out of the block

      Hello ,
      How Can I get a variable calculated inside the block
      For example : " Check trades count " block , we can use it to compare trades with a specific number but How can we get that number it calculate ( ie : number of trades )
      I know that there is other option to calculate the number of running trades , but I want to get the number out of this block as he contain the filters I want

      Thanks

      posted in Questions & Answers
      T
      Traderz
    • RE: Can I just copy the block from MT4 to MT5

      @fxdreema
      And if blocks have different names like " No trade " or " If trade " in MT4 which called " No position " in MT5 . Still safe to go ?
      And is there any difference in how to calculate numbers after decimals , as there a huge project I made on MT4 to manage trades but Once I copy it to MT5 it doesn't work , Seems like once any trade is opened It can't control it properly and closed it immediately even if you make stops very big and if you open trades with it with Buttons , it can't open the lot properly , even if you make the lot 1 Standard it still read it smaller than Min Lot and ended up opening an order with just 0.01
      I don't ask you to review the project it's very big , I just wantd to know if there's any difference as you are the one who know better

      posted in Questions & Answers
      T
      Traderz
    • RE: Warning from condition block

      @fxdreema Aha Thanks alot

      posted in Questions & Answers
      T
      Traderz
    • Can I just copy the block from MT4 to MT5

      Hello @fxDreema ,
      After April update , Can we just copy the blocks we build on MT4 and paste it the a field for MT5 then export it ?

      posted in Questions & Answers
      T
      Traderz
    • RE: Warning from condition block

      @josecortesllobat
      whatever the content of the block it show the same warning while compiling
      For example : I have an option to enable or disable Trailing
      So the content is " ( Trailing == ture ) " so If this statement is true the condition pass to the next block
      not just this statement but whatever the statement it's going to be like that
      That's because in the code , this statement is translated into
      if (0| (c::Trailing==true) |0)
      instead of
      if (c::Trailing==true) which easily solve that warning
      so what's the function of those "0|" and "|0" here

      posted in Questions & Answers
      T
      Traderz
    • Warning from condition block

      Hello ,
      I just have a simple inquiry.
      When I use the condition block where you enter a custom “ if statement” it gives you a warning when compiling as “ expression not boolean “ as the program automatically add 0 before and after the statement .
      It doesn’t seem to affect the functionality of the program but I’d like to know of there’s somethin wrong I’m doing or if that warning can be permanently fixed
      Thanks

      posted in Questions & Answers
      T
      Traderz
    • RE: check the profit of bucket of trades in pips

      @isp00rt Thank you very much , it was exactly what I want , I had to connect the yellow output of the loop block to the condition block as it should only check the condition after the whole loop is finished
      Thank you again

      posted in Questions & Answers
      T
      Traderz
    • check the profit of bucket of trades in pips

      Hello,
      I want to know how to check the current running combined profit/loss of multiple trades
      I managed to do this in currency by put them in bucket then by condition block check the profit and loss of them but this is only in currency I want to do this pips as it's more functional and practical

      Thanks

      posted in Questions & Answers
      T
      Traderz
    • RE: Finally , Integration of News Filter :) [ MT4 Only ]

      Remember : Don't Compile it online , get mq4 version first then add what in "On Global Scope" tab in the global scope of the file then compile it locally

      posted in Tutorials by Users
      T
      Traderz
    • 1
    • 2
    • 3
    • 2 / 3