fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. oseiwe
    O
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 23
    • Best 3
    • Controversial 0
    • Groups 0

    oseiwe

    @oseiwe

    4
    Reputation
    445
    Profile views
    23
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    oseiwe Unfollow Follow

    Best posts made by oseiwe

    • RE: Candle position is lost when using a multi-symbol EA on MT5

      I am marking this post as resolved as I have realised the issue is local.
      I decided to test the same EA on another terminal/broker, and to my surprise it worked fine. Hence I reinstalled the terminal on which I initially experienced the issue, and that resolved the issue.

      posted in Bug Reports
      O
      oseiwe
    • Set Current Timeframe For Next Blocks Not Working

      It's taken me hours of troubleshooting to realise that the "Set Current Timeframe..." block does not work properly. In the below link, I have added two "Draw Line" blocks - both drawing trend lines. However one derives (or is supposed to derive) its timeframe from the "Set Timeframe..." block, while the other has it manually set to "H1".

      If you run the EA on a 1min chart, you will notice that the two lines drawn are different. The manually set one is correct while the other isn't.

      https://fxdreema.com/shared/hxZsOkC7b

      posted in Bug Reports
      O
      oseiwe
    • RE: Set Current Timeframe For Next Blocks Not Working

      @roar Precisely. I think what's happening is that it only works on fields named "Timeframe" and nothing else. So even fields named "Candle Timeframe" will not work.

      One could argue that it is working according to specification đŸ˜†

      587610f6-bc59-4b39-b925-b5562843392a-image.png

      posted in Bug Reports
      O
      oseiwe

    Latest posts made by oseiwe

    • RE: Set Current Timeframe For Next Blocks Not Working

      @roar Precisely. I think what's happening is that it only works on fields named "Timeframe" and nothing else. So even fields named "Candle Timeframe" will not work.

      One could argue that it is working according to specification đŸ˜†

      587610f6-bc59-4b39-b925-b5562843392a-image.png

      posted in Bug Reports
      O
      oseiwe
    • Set Current Timeframe For Next Blocks Not Working

      It's taken me hours of troubleshooting to realise that the "Set Current Timeframe..." block does not work properly. In the below link, I have added two "Draw Line" blocks - both drawing trend lines. However one derives (or is supposed to derive) its timeframe from the "Set Timeframe..." block, while the other has it manually set to "H1".

      If you run the EA on a 1min chart, you will notice that the two lines drawn are different. The manually set one is correct while the other isn't.

      https://fxdreema.com/shared/hxZsOkC7b

      posted in Bug Reports
      O
      oseiwe
    • RE: Candle position is lost when using a multi-symbol EA on MT5

      I am marking this post as resolved as I have realised the issue is local.
      I decided to test the same EA on another terminal/broker, and to my surprise it worked fine. Hence I reinstalled the terminal on which I initially experienced the issue, and that resolved the issue.

      posted in Bug Reports
      O
      oseiwe
    • RE: Candle position is lost when using a multi-symbol EA on MT5

      Ok great. Thanks @l-andorrĂ  ...was beginning to think I was seeing things

      posted in Bug Reports
      O
      oseiwe
    • Candle position is lost when using a multi-symbol EA on MT5

      I've been battling to make this work...until I realised it might be a bug...
      I have attached an example project to demonstrate the issue.
      Steps:

      1. Ensure GBPUSD, EURUSD, AUDUSD and GBPJPY are present in the Marketwatch window
      2. Ensure the strategy tester window has the 1hr TF selected
      3. Ensure the attached EA is selected
      4. Ensure the symbol selected is GBPUSD
      5. Run the EA and let it run for a few bars (4 bars or more should suffice)
      6. Pause the EA
      7. Compare the hour displayed in the comment (on the top left of the window) with candle time of the current candle that has just been created. You will notice that the hours are different. The one in the comment lags behind

      I have noticed that for every 2nd and 4th symbol in the Set "Current Market" for next blocks block, the candle id position lags behind by 1 candle. Hence it lags behind when symbol in the Condition block (block 3) is set to either EURUSD (which is the 2nd on the list) or GBPJPY (which is the 4th on the list)

      This issue makes it near-impossible to backtest multiple symbols if the logic utilises candle id positions (eg check that candle ID 1 closed above candle ID 2)

      https://fxdreema.com/shared/ot8lYxmGd

      posted in Bug Reports
      O
      oseiwe
    • RE: Modify Level of an already drawn fibonacci

      Not to worry. Worked it out. Just needed to write the level of the already drawn object's 100 level to a variable and leave it unchanged in the "Move" block...while the O level keeps updating with the current bar

      posted in Questions & Answers
      O
      oseiwe
    • Modify Level of an already drawn fibonacci

      Hi,
      Hope someone can help with this...
      I am trying to modify the 0 level price of an already drawn fib to always be the high of the current bar (where the 0 level is the highest level). That way, the fib will keep adjusting as price goes higher. But I can't see anywhere that the fib level prices can be modified...there is no "Modify Object" or "Modify fib properties" block.

      For clarity, I know how to check for the conditions (by the way, I am using the "loop" option so I don't have to specify a name for the fib. This works on other object types such as trend lines). The issue I am having is changing just one level without having to move the actual fib (hence the "move" block does not do the job).

      Even if I save the 0 lovel price to a variable, how do I write that variable into the fib level?

      Hope that makes sense.

      Any ideas?

      posted in Questions & Answers
      O
      oseiwe
    • RE: Trendline (Chart object) False Trigger Alerts

      I was finally able to work out the cause of the issue. I realised the problem only occurred at the end of a trendline. Hence one bar after the trendline has ended, it seems to evaluate the value of the trendline as 0. Hence, since my condition says "Trigger when BID is greater than Trendline price value" it would trigger at that point.

      So now, I simply make my trendlines longer.

      posted in Questions & Answers
      O
      oseiwe
    • Trendline (Chart object) False Trigger Alerts

      Hi,

      I created a trendline alert EA that alerts me when price touches a trendline that I have drawn on the chart. 80% of the time, it works well. However at other times, it triggers without even reaching the trendline.

      Does anyone know what could be wrong? I have looked through the blocks over and over again without any luck.

      By the way (in case anyone is wondering) I used '<=' and '>=' rather than '<x' and '>x' intentionally.

      Here a link to the EA: shared/DNUCf7I6d
      It is a simple one.

      Regards
      Ose

      posted in Questions & Answers
      O
      oseiwe
    • RE: Compilation Errors: template parameter ambiguous, could be 'double' or 'int'

      Thanks!

      It's now working.

      Regards

      posted in Bug Reports
      O
      oseiwe