fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. trader.philipps
    3. Posts
    T
    • Profile
    • Following 3
    • Followers 38
    • Topics 20
    • Posts 1001
    • Best 91
    • Controversial 2
    • Groups 0

    Posts made by trader.philipps

    • RE: Terminal variables

      @zackry I think you should use this block to create them.

      0_1575564974956_422bd6c8-a0a8-4db1-9329-69e71bc95ae9-grafik.png

      You can read them from within other blocks like this

      0_1575565075108_6c659c9b-4619-47a1-ab83-f0257807dfb4-grafik.png

      But as I said, I don't have any experience within fxdreema. So maybe I'm wrong here.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Terminal variables

      @zackry Btw. if you want to see their values press F3 in MT4.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Terminal variables

      @zackry Besides writing to files what is even more ugly or having some Windows DLLs to communicate between charts (which seems to be a bit oversized) I think the terminal variables are the right way to use.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Terminal variables

      @zackry I haven't work with terminal variables in fxdreema, but have some experience with them.

      As long as your EA does not check the terminal variables, it will not do nothing. Also you might need to be careful with them as they survive a MT4 Terminal restart for instance.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to set sell after 30points of open selling candle

      @fxamoneymaker Try connecting the lines the right way.

      Wrong:

      0_1575563694565_16cfbf9f-1ba1-4ca9-9092-6a2d439e1bae-grafik.png

      Right:
      0_1575563776273_4a457e3d-560f-4603-a5dc-41dee958fed0-grafik.png

      I'm not sure about the bear candle block, but start fixing the obvious issue first.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: can any option do refresh for indicator on chart every one minute ?

      @Moon If you'd have used the search function of the forum, you would have easily found this thread.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EA with BBands

      @giovanni The lot size with risk % from equity depends on SL and of course the account equity. If there is not enough equity for the SL, it will take the lowest possible wich is 0.01. You might change Buy and Sell blocks for risk % from balance maybe or any other money management from the list.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Pick Up Trades Upon Restart PC

      @jimmy-chee Well, that's unusual and probably might have to do with the way you do calculations in your EA. Could you share the project in order to have a deeper view? First check your exit conditions if all parameters and maybe indicators do have the right values after start of the terminal. I used to use a icustom indicator for instance that reqired 14 candles until it showed the right values.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: My EA doesn't work with some pairs like XAUUSD.

      @vish It must fit the decimals provided by your broker.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Formula - calculating difference

      @rafaels919 You didn't secify a candle ID such as ID1 as ID0 is the current candle and values may change during the candle is not closed. May that be the problem?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Formula - calculating difference

      @rafaels919 What is your code doing? Does it not open any trades? Or in wromg direction?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Combine multiple profit values within the same bar to form an added numerical value in the chart.

      @rupp Sorry to say, it looked easier as it is. Maybe @miro1360 could have a look as he is more experienced with order and order history than me.

      What I tried to do is to loop through the order history and calculate the candle time of the order close for each trade. Afterwards I wanted to sum all profits from the last close trade (on trade tab).
      However, I didn't find a function that supports me calculating the candle time (which should be the candle open time) or candle ID from an order close time. So maybe there is a different approach.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: If I have the module of fxdrema (one per bar) I must optimize for open bar, right???

      @siempre But that must applies for all trade actions (including TP and SL)!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Best way to increase volume

      @bogdaiki Check the (Money Management docuemtation) in fxdreema. I think you could use any of them besides the SL based ones.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: What should I do if I want to optimize for open price and not for ticks? I enter after the crossing of 2 ema and another condition

      @siempre Use ID1for your indicators for entry. The same would apply for exists otherwise your optimization results are not valid. Example: You open a trade at a given price .. let's assume 1.00000. Your SL would be 0.99900.
      When you use open price now, you would not consider that a candle low between open trade and some time in future reached below 0.99900 as you only care for open price. So in tester at some time later your trade will hit TP as it didn't get the SL that would have occured on on tick basis.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: i want to close trade if equity increases. How??

      @vpraveen 0_1575488041352_b0df3268-2993-4072-9457-e133f8aacc75-image.png

      That condition never will get true unless your Equity is 0. What you want to achieve is to compare equity at a given point in the past with the current equity value. In that case you need to store that euity value in past in a variable and compare it with the current equity.
      If there are no other trading actions on the account you may use Account Balance instead as that only changes if profit or loss ir realized.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: HOW CAN I FILTER ONE PER TICK?

      @khalids222 just a thought on it .. you may work with candle ID0 but only take those signals that occur when n % of the candle pasted. That would increase probability that the cross is a valid cross. Personally I don't use candle ID0 as the signals are not confirmed until candle is closed.
      On the other hand you might add a volume or momentum component to it. Cause if you enter a trade you'd prefer the market is pushing 8n the direction of your trade. And you want to eliminate the Criss cross MA actions on flat markets.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Is there a way to configure the EA to wait for 3 consecutive losses and then enter orders?

      @cpxiom Go ahead and open a new thread. As ms specify how that equity line should look like.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Is there a way to configure the EA to wait for 3 consecutive losses and then enter orders?

      @rafaels919 As of last request, here is the latest version.

      Changelog:

      • Re- introduced max number of virtual trades configurable in EA settings for Phase 1

      0_1575483529032_virtual_trades_count.mq4

      project link

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Combine multiple profit values within the same bar to form an added numerical value in the chart.

      @rupp I think you have everything you need. Just store the "orderprofit" in a variable and add the profit off all trades in that candle. if candle closes you reset that variable and start again from 0 on the next candle.

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 27
    • 28
    • 29
    • 30
    • 31
    • 50
    • 51
    • 29 / 51