fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. vish
    • Profile
    • Following 8
    • Followers 9
    • Topics 60
    • Posts 219
    • Best 11
    • Controversial 1
    • Groups 0

    vish

    @vish

    11
    Reputation
    3055
    Profile views
    219
    Posts
    9
    Followers
    8
    Following
    Joined Last Online

    vish Unfollow Follow

    Best posts made by vish

    • RE: How do I find the Chart ID of an opened chart?

      How can I use this info to find the ID with fxdreema. Will this work?: https://fxdreema.com/shared/mRL3fWN8c

      posted in Questions & Answers
      vish
      vish
    • For each objects block does not recognize text objects

      I think "For each object" block does not recognize text objects. It has not worked with text objects in my tests.

      posted in Bug Reports
      vish
      vish
    • RE: Value of 0.00145 to 145 a whole number (pip)

      This would do the job:
      https://fxdreema.com/shared/NdrMNE8D

      0_1558510952928_Screenshot_1.png

      posted in Questions & Answers
      vish
      vish
    • RE: how i can do this EA ?

      can you explain the strategy?

      posted in Questions & Answers
      vish
      vish
    • How to get the EA to trade on indices?

      The EAs I make on fxdreema don't seem to enter trades on indices. I would like to USTEC, US500, DE30, UK100, etc. I guess I need to change the pip size under options?

      Here are the indices offered by my broker:
      0_1616090981464_be8751ba-a598-47db-b0f0-87a559c5047f-image.png

      I also want crypto pairs to work:
      0_1616092498445_97c35bff-7a7b-4018-8504-81ebafb3b4cc-image.png

      Can anyone help me on this?

      posted in Questions & Answers
      vish
      vish
    • RE: Changing symbol without opening a new chart

      This should also work on onChart tab

      0_1627675503132_64d9283c-3317-4d87-a389-ac4838618397-image.png

      posted in Questions & Answers
      vish
      vish
    • RE: How to make an EA trade only on 2 symbols

      0_1635759374879_24e7c725-a863-4583-b055-6abd38094c9c-image.png

      posted in Questions & Answers
      vish
      vish
    • RE: Changes

      Thank you for making such a useful tool; I have used many other similar tools but fxdreema is by far the best. It is great news that you are going to have more time on improving the platform. I hope you would also pay attention to the Bug Report section where I guess there are many valid bug reports that need your attention. It would also be super cool if you add the ability to create indicators too and I dont mind paying something additional for such a thing.

      posted in Questions & Answers
      vish
      vish
    • MT5 Indicator buffers

      I have a custom MT5 indicator that gives buy and sell arrows. I want to use it in an EA on fxdreema. The indicator buffers looks like this:

      13c42e71-260a-44b9-b779-8de71663c0e3-image.png

      So both buy and sell are on the same raw and therefore I can not use unique buffer numbers for buy and sell. Is there any workaround?

      posted in Questions & Answers
      vish
      vish
    • RE: SL as a percentage of account balance

      This wont do it?
      image.png

      posted in Questions & Answers
      vish
      vish

    Latest posts made by vish

    • RE: How to calculate basket Break-Event price (weight average) by using ATR?

      Try this Custom Code Block (mql4)

      First Go to Variables tab, define:

      basketPrice = 0
      basketLots = 0
      basketBE = 0
      atrValue = 0
      isBuyBasket = 1

      Then use this code in a custom code block

      // Reset values
      basketPrice = 0;
      basketLots = 0;
      basketBE = 0;
      atrValue = 0;
      isBuyBasket = 1; // Assume BUY by default

      int buyCount = 0;
      int sellCount = 0;

      // Loop through open trades (current symbol only)
      for (int i = OrdersTotal() - 1; i >= 0; i--) {
      if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
      if (OrderSymbol() != Symbol()) continue;

        int type = OrderType();
        if (type == OP_BUY || type == OP_SELL) {
           basketPrice += OrderOpenPrice() * OrderLots();
           basketLots += OrderLots();
      
           if (type == OP_BUY) buyCount++;
           if (type == OP_SELL) sellCount++;
        }
      

      }
      }

      // Avoid division by zero
      if (basketLots > 0) {
      basketPrice = basketPrice / basketLots;
      atrValue = iATR(Symbol(), 0, 14, 0); // ATR(14)

      // Determine direction
      isBuyBasket = (buyCount >= sellCount) ? 1 : 0;

      // Calculate Basket BE
      if (isBuyBasket == 1) {
      basketBE = basketPrice + atrValue;
      } else {
      basketBE = basketPrice - atrValue;
      }
      }

      posted in Questions & Answers
      vish
      vish
    • RE: Trademanager for MT5 Mobile

      @Domeonline I see

      posted in Questions & Answers
      vish
      vish
    • RE: Trademanager for MT5 Mobile

      Do fxdreema EAs work on the mt5 mobile app?

      posted in Questions & Answers
      vish
      vish
    • RE: Close all

      image.png

      posted in Questions & Answers
      vish
      vish
    • RE: How to add a common TP price for a group of trades

      @urielacosta Calculate a weighted average price considering different prices and lot sizes and then add a TP in pips to this WA price which should be the common TP. But you need to do custom coding. I never tried that on fxdreema.

      posted in Questions & Answers
      vish
      vish
    • RE: MT5 Time frame is not giving the right figure

      Is what I have done wrong? Shouldn't I get 60 printed if I load the EA on H1 chart? I guess it's a bug.

      posted in Bug Reports
      vish
      vish
    • MT5 Time frame is not giving the right figure

      MT5 Timeframe is not giving the right figure from H1 above

      3261189d-60c0-47cc-bb9f-bea35ad7013c-image.png

      For instance above comment should show 60 on H1 but this is what it shows

      4bd79ea5-dfad-4914-b4a6-92121046339e-image.png

      Project: https://fxdreema.com/shared/24HiE65td

      Any other experiencing this?

      posted in Bug Reports
      vish
      vish
    • RE: 'PERIOD_CURRENT' - struct member undefined

      I am getting it again now

      posted in Bug Reports
      vish
      vish
    • RE: PERIOD CURRENT compiling error

      Yes I am getting it again now

      posted in Bug Reports
      vish
      vish
    • RE: 'PERIOD_CURRENT' - struct member undefined

      Yes it is fixed

      posted in Bug Reports
      vish
      vish