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: EA Works in Test but not Live

      @kmfoster79 Well, I thought that it wouldn't be that easy somehow. Can't help you at the moment as I'm on mobile and have no idea how to open a block with touch screen.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EA Works in Test but not Live

      @kmfoster79 Because of block 19?!?! It only opens trades if EA is running in Strategy Tester.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels Check this out for starting. Project

      posted in General Discussions
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels Never mind. I will try to guide you. However, let's first check conditions.

      0_1574125078356_5350dd5b-fcbb-4e57-817f-194b5c9f9d86-grafik.png

      So you expect all 3 crossing conditions to happen at the same time? That ios very unlikely unless all involved indicators do the same calculations. You should first define what is the major condition to trigger the trade and than think about the other 2 ones if they can be re-defined a bit.

      Example: Main condition is cross of Tema with Dema. It is sufficient if price is > psar and stochastic between 20 and 30 .. or something like that.

      posted in General Discussions
      T
      trader.philipps
    • RE: can you make this for me because i don't know how can make i am tied

      @l-andorrĂ  I guess that candles touching the MA do not count. So you look for first bullish candle (x>) or first bearish candle (x<) that does noz touch the MA again. I further guess that the trade will be opened on the open of the candle thereafter.
      Sometimes it's really like a puzzle to understand the strategies that are posted here :))

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Another simple request guys

      @ssekajoe In that case change candle ID 1 to candle ID 0 on all relevant blocks, but keep in mind that on candle ID 0 as long as candle is not closed values may change again (called repaint). Thus it's better to use candle ID1!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: how to limit trades number of trades

      @fxadels Keep Buy and Sell path seperated! The trade count block only makes sense if the EA can open more than one trade, which doesn't seem to be possible due to block 1 (No position).

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels
      0_1574077623439_44f0bfaf-712d-4d0b-8afd-12d75e5fa652-image.png

      Do you understand what I mean?

      posted in General Discussions
      T
      trader.philipps
    • RE: Compile Error

      @jzfusion Can you share your project. please?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Hedge, Simultaneously Open BUY/SELL STOP (Pending ORDER) with Executed order

      @princebobby That strategy may not work as you expect it on live account due to spread and slippage of pending orders. However, you could use the "on trade" tab to manage the counter order on the "Trade created" block to catch whenever a trade was opened.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Finding buffer in source code of indicator

      @simharr Can you share the indicator? An what exactly is the problem? There can be empty buffers as their values may not be required for painting anything, but for further calculations. Do you need values other than the painted ones?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Can anyone help me with this error. "Compilation errors 'BuyOrSell' - constant expected 'BuyOrSell' - constant expected.

      @glen-mckinnie Okay, I did export only. Checked the source code again.
      0_1573952880989_38afa250-dc0f-4ac5-be98-d8b6c56467ca-image.png

      Unckeck the 2 backtesting if you use a variable as input. You may use a constant instead in order to have variable values with MT4 optimization.

      posted in Questions & Answers
      T
      trader.philipps
    • RE: How to set up EA business days and hours?

      @fabiobioware I did so by using flags in one of my projects. That looks like that.
      0_1573869428014_ebfebdb2-9810-4d87-9281-2d3c995e1e1a-image.png

      So with set Flag you set it for instance to true or false and with check flag you check if it is true.

      Alternatively you may turn on / off some of your blocks.
      0_1573869581026_4f3c6b2a-5c26-49e8-aea3-2be840877e1a-image.png

      Usually you'd want the EA to not open trades outside your trading hours rather than completely stop working (for instance close open trades or adjust stopps and so on).

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Variable values from CSV file

      @gunterd Check this thread: read-file-data

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Can anyone help me with this error. "Compilation errors 'BuyOrSell' - constant expected 'BuyOrSell' - constant expected.

      @glen-mckinnie ^Well, I can import your mq4 file in my project and compile without errors. Maybe try to do the same?!

      posted in Questions & Answers
      T
      trader.philipps
    • RE: Can anyone help me with this error. "Compilation errors 'BuyOrSell' - constant expected 'BuyOrSell' - constant expected.

      @glen-mckinnie Can you share your project please?

      posted in Questions & Answers
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels .. I was too quick with my update. Check positions count after a no trade block should always be 0 unless you opened a trade somewhere in your path. In that case the count is not necessary!

      posted in General Discussions
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels Okay, look at the Check positions count block. You specify Pos count == 2 ! Thus you only open a new position if 2 trades are open.
      Split the Buy and sell block and check positions count twice (one for buy on the buy path and 1 for sell on the sell path). If you don't want more than 2 trades open, specify "Lower than or equals ro" criteria.
      Hope that helps.

      posted in General Discussions
      T
      trader.philipps
    • RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELP

      @fxadels From the order of blocks it looks okay. Maybe you can share a link to the project that we can look inside the blocks. Especially the No position block I'd guess may not work correctly.

      posted in General Discussions
      T
      trader.philipps
    • RE: Another simple request guys

      @ssekajoe Haven't tested, but that should give you an idea: RSI Demo Project

      posted in Questions & Answers
      T
      trader.philipps
    • 1
    • 2
    • 32
    • 33
    • 34
    • 35
    • 36
    • 50
    • 51
    • 34 / 51