fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. roar
    3. Posts
    • Profile
    • Following 0
    • Followers 184
    • Topics 35
    • Posts 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      How did you convert it? What kind of errors does it give?

      posted in Questions & Answers
      roar
      roar
    • RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5

      Can you share your project?

      posted in Questions & Answers
      roar
      roar
    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      Can you give some more information? Did you get the .ex5 file?

      posted in Questions & Answers
      roar
      roar
    • RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5

      This, before all other blocks

      0_1549146748839_c04219dc-18fa-4a64-87fd-0266250ad080-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5

      Use the "set current market" block

      posted in Questions & Answers
      roar
      roar
    • RE: How to create sl under bollingerband

      What do you mean, 3 trades? I havent used the % risk in a long time, should look into it...

      posted in Questions & Answers
      roar
      roar
    • RE: How to create sl under bollingerband

      This sets the fixed level at the moment the trade is opened.
      If you want the sl to move with bb, use "once per bar" -> "modify stops of trades" instead.
      0_1549116303471_445f48d5-8339-4195-9dc9-0669cefbb8e3-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Trace lines open order to close order

      I think this should work https://fxdreema.com/shared/mXKoz8wae

      posted in Questions & Answers
      roar
      roar
    • RE: Write To File: Swing

      Like, just add these blocks to your current project:
      0_1548865577129_b51292e7-14f9-4223-b8e4-1fd0bee49d39-image.png

      Then, run mt4 backtest
      0_1548865611322_7cad004d-25ee-4178-b810-e9fc9304006b-image.png

      The data will be in the journal now
      0_1548865649969_92407ad6-a943-4d13-bef2-6784f899267d-image.png

      Use notepad++ to open the .log file
      0_1548866632782_06b93e9f-e8e8-4ed1-bf2c-2eaeb0f31941-image.png

      Paste it to excel, the format will be messy at this point, we can use formula =RIGHT(C1;(LEN(C1)-51)) to pick only the interesting part to column L.
      Hit Ctrl+enter to apply the formula to entire column.
      0_1548866421097_0ddb9783-4518-45ec-b92b-a160498d26f9-image.png

      I know, this is not optimal approach by any means, but it works in a pinch 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Write To File: Swing

      I think the "write to file" needs a specific file path, like "D:\Metatrader..."
      I am too lazy to have ever figured it out, instead I have used my own dirty stop-gap solution:
      Just write the variables to your mt4 journal tab, with fxdreema block "Log message". Then generate the .log file and use some other programs (notepad++, excel) to further arrange the data

      posted in Questions & Answers
      roar
      roar
    • RE: Stop and reverse strategy(No martingale)

      @seemab Hi! I dont know about any courses, never participated on any, lol 😄
      You can freely add custom code to your fxdreema blocks. I have learned by trial and error x 1000 000.

      posted in Questions & Answers
      roar
      roar
    • RE: BUY , if Price above 10 PIPS from SMA 25, vice versa for sell

      0_1548792839393_ac75f96c-397d-495a-8860-02411bad23dc-image.png

      https://fxdreema.com/shared/aDZHtZc6b

      posted in Questions & Answers
      roar
      roar
    • RE: Confusion - Trailing Stop

      Pardon my handwriting lol
      0_1548789160646_a628441f-40a9-4079-ad87-0f9e98d9ce85-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Making a EA base on a picture

      @setsuna
      Almost right, just put the adjust to the other side, with the candle 2 open.

      I think the adjustment as "candle ID 1 close is above candle ID 2 open even though we lifted it by 1 pips"

      posted in Questions & Answers
      roar
      roar
    • RE: Issue with a counter CCI last 5 candles below level

      This is how I'd loop it. There is a dedicated loop block in the builder, too, but it is not necessary. You have to be careful though, if the loop never ends you will get a stack overflow error.
      0_1548620215476_ac0eb499-ea2a-484d-93d8-910f18556a6f-image.png
      https://fxdreema.com/shared/h2FzCXa3b

      Now that I think of it, this would probably most easily be done with the "indicator moves within limits" block, lol

      posted in Questions & Answers
      roar
      roar
    • RE: Issue with a counter CCI last 5 candles below level

      Hi!
      The method with 5 different blocks should work just fine, although a looped solution would be my choice as it would allow to select any number of candles.
      How can you know it doesnt work? Try chopping your strategy to different pieces and test each one alone. The draw line -block is great for troubleshooting with visual backtesting.

      Why the green counter blocks? Have you tried without them?

      posted in Questions & Answers
      roar
      roar
    • RE: Making a EA base on a picture

      You want to use the "adjust" field there. Check the example picture:
      0_1548610029691_fe7edce2-9b8b-4933-a9e2-118b01a2a4b0-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Unwanted Trade Triggered

      Maybe your current trade is different group number, or manually opened?
      Try setting the group filter to "all":
      0_1548596427184_f3449533-199b-4d89-afa5-01e2f34d2afb-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Stop and reverse strategy(No martingale)

      Here's the other project with RSI. I understand the "engulfing" as higher high + lower low in a candle. This reduces the entries quite a lot, can't say if it is good or bad. I used some variable and constants tricks in the project, it may take a while to wrap your head around it, lol 😄
      0_1548539059725_00fce234-e100-4bbb-a0f6-9f094fe7b941-image.png
      https://fxdreema.com/shared/Cy0GAae1c
      If you get the project by importing the .mq4, it automatically sets the variables in place for you:
      0_1548539085270_SAR.mq4

      posted in Questions & Answers
      roar
      roar
    • RE: Stop and reverse strategy(No martingale)

      We can set the TP with "modify stops", connecting from the FALSE output of "No trade".
      Edit: oh you can actually do the same thing directly from the Buy now / Sell now block.
      0_1548537741119_4fce1066-9566-474c-818c-1c0dc2701347-image.png

      I only backtested to see the logic is ok. I don't expect this to make profit, although it is a nice start, and good practise.
      There is a simple "thought test" you can perform: if someone else has probably tested the same thing before, then it will probably not be profitable. Someone has surely tested 2 bears 2 bulls before, so its no good. You have to make something more advanced. Innovate.
      But as said, it is still very good practise in this business.

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 100
    • 101
    • 102
    • 103
    • 104
    • 120
    • 121
    • 102 / 121