fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. miro1360
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 257
    • Topics 27
    • Posts 1594
    • Best 190
    • Controversial 5
    • Groups 0

    Posts made by miro1360

    • RE: on timer of on tick chart

      I replied you because I think where is your main issue (server scammers).

      posted in Questions & Answers
      M
      miro1360
    • RE: High cpu usage on server but not on Laptop

      Whats your server? Is that dedicated or shared? Shared, right?
      There are tricky hosting services which offers you fast xeon but in the reality they are hosting too many users on one machine via some virtualization technology - so everything is slow even if you think that you got fast server 😄
      They are using other tricky techniques. They offers for you a fast server for a low price. Everything goes so far good, until they decide to decrease the power of your hosted server 😄
      What happens after that? Your metatrader is than slower, using too much CPU. If you decide to run even more metatraders with EAs, the CPU time will be exceeded by your activity and after some time they contact you back with the message: "Hey, your CPU time was exceeded and the CPU power of your server will be limited. Therefore consider buying the "PLUS SuperFast Overpriced" plan where you get more power for your apps." - They will limit you even more, into an almost unusable state, to put a pressure on you for buying faster plan and pay them more money 😄
      Of course, if you contact them, they will beat you with standard deceptive phrases.

      posted in Questions & Answers
      M
      miro1360
    • RE: Custom MQL Code MathRound

      https://docs.mql4.com/constants/environment_state/marketinfoconstants
      create new variable lot_step, and use this custom code function:
      lot_step = MarketInfo(Symbol(), MODE_LOTSTEP);

      there are other lot values which can be achieved:
      lot_min = MarketInfo(Symbol(), MODE_MINLOT);
      lot_max = MarketInfo(Symbol(), MODE_MAXLOT);

      you can get them all and create some custom math for your purposes

      posted in Questions & Answers
      M
      miro1360
    • RE: How to use ZigZag [advanced]

      because you messed up it completely 😄 ... I told many times, and I repeat myself once again and again: zigzag is not simple for beginners (or not coders)
      ... and I'm banging my head on the table, why the hell I got this idea to create the zigzag thread, because instead of explaining how the zigzag works I do the whole project for people from scratch 😄 ...

      https://fxdreema.com/shared/8Xeio059c

      0_1557938196119_5c666c1f-015f-4891-895b-da4b30b5b849-image.png

      0_1557939136938_fb49a3ff-595a-466f-b9d9-14931961931d-image.png

      0_1557939387072_1f775281-1171-498b-ba1b-82618a610005-image.png

      Anyway, this is my last reply for this ZigZag thread. Everything was covered here into details with many examples ... If you does not understand zigzag, read it once again, and once again. Notice also how important are block IDs - order. If you failed, give a break for zigzag and do anything other. Come back after a few days and read everything again and give a new try.

      posted in Tutorials by Users
      M
      miro1360
    • RE: I Want Add This Indicator in FXdreema ?

      because some TMA indicators are complicated and are not created for the signal purposes ..

      posted in Questions & Answers
      M
      miro1360
    • RE: Custom MQL Code MathRound

      for 0.1 format, do this:
      TP1 = NormalizeDouble(TP1, 1);

      posted in Questions & Answers
      M
      miro1360
    • RE: Custom MQL Code MathRound

      try the code like:
      TP1 = NormalizeDouble(TP1, 2);

      posted in Questions & Answers
      M
      miro1360
    • RE: I Want Add This Indicator in FXdreema ?

      instead of TMA use the integrated MACD with weighted price:
      0_1557878459998_57fd0caf-8ab6-4dd5-a0ba-f2bfe3a3c3f4-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: How to use ZigZag [advanced]

      H1 and L1 are not future points, they are past points ... candles are marked 0,1,2,... from left (0 is the most recent candle) to the right (past candles)

      posted in Tutorials by Users
      M
      miro1360
    • RE: How to use ZigZag [advanced]

      the whole project is about this what you asked ...
      variables:
      var_zz_H0_ID, var_zz_H1_ID, var_zz_H2_ID
      var_zz_L0_ID, var_zz_L1_ID, var_zz_L2_ID

      if you compare them as this:
      var_zz_L0_ID < var_zz_H0_ID, if the condition is true, then you know that L0 is the last zigzag leg (pointing down), and you know where is L1
      if the condition is false, then you know that H0 is the last zigzag leg (pointing up), and you know where is H1

      ID is not the price, it is ID of specific zigzag candle ...
      prices are variables without ID (var_zz_L0, var_zz_H0, ...)

      posted in Tutorials by Users
      M
      miro1360
    • RE: Tutorial Loop [advanced?] - find and save specific value from indicator history

      as I told you, is not that simple ... something like this:
      https://fxdreema.com/shared/GmgFkC3sd
      (RSI must be imported in My Indicators)

      0_1557104668713_9d966914-e47c-441d-8f25-22632e2c01dd-image.png

      it can be simplified into Custom Code block, this is only demonstration how it can be done from blocks 😄

      ... note, that parabolic sar is repainted indicator, the previous spot is sometimes repainted - some inaccuracy can appears ...

      maybe between blocks is some logical mistake, I have not tested it deeply 😄

      0_1557104901329_8722b80c-0e4b-4240-b8f1-66d3ea2ee452-image.png

      0_1557104987202_7553b3d4-254b-4ea6-a04a-574b35701c6e-image.png

      posted in Tutorials by Users
      M
      miro1360
    • RE: Tutorial Loop [advanced?] - find and save specific value from indicator history

      you can do that with a few variables, it won't be so easy as one block ... at least a few blocks ...

      posted in Tutorials by Users
      M
      miro1360
    • RE: Tutorial Loop [advanced?] - find and save specific value from indicator history

      meantime some functions were added, you can do it easily ... import RSI into My Indicators and set the Modify Variables block as this:
      0_1557029852101_19c1b090-d4c4-4c29-aacf-74727b7ef819-image.png
      (I have not tested) ....

      posted in Tutorials by Users
      M
      miro1360
    • RE: error include custom indicator but mq4 compile fine?

      0_1556803966818_trend-direction-amp-force-index-smoothed-4.mq4

      I had not installed MT4 so I edited the code in text editor without compiling test 😄 I changed tf_cu to PERIOD_CURRENT, now it should compile right

      enum in meta code are just INT values, you can read everything here:
      https://docs.mql4.com/basis/types/integer/enumeration

      posted in Bug Reports
      M
      miro1360
    • RE: error include custom indicator but mq4 compile fine?

      0_1556736060684_trend-direction-amp-force-index-smoothed-4.mq4

      perhaps bug in fxdreema, for now try the version above, the timeframe enter in numerical format (0 is current TF, 1 is M1, 60 is H1, and so on) ...

      posted in Bug Reports
      M
      miro1360
    • RE: Dukascopy Data - Array out of range

      this should open trades:
      https://fxdreema.com/shared/Rd6D3Txpb

      posted in Questions & Answers
      M
      miro1360
    • RE: critical error in the EA... what this code 18464-28745.mq4 means?

      share your EA ... if it happens occasionally, it may be related to incomplete history

      posted in Bug Reports
      M
      miro1360
    • RE: Dukascopy Data - Array out of range

      the error is related to the function CopyTime() ... this function is used in the block Once per bar ...

      you can avoid the error using very simple alternative to the Once per bar block with custom code: (I tested it now on ducascopy data downloaded with tickstory and it worked for me)

      0_1555204524224_21c32839-1f58-406c-af9d-b2b4ec6eb718-image.png

      posted in Questions & Answers
      M
      miro1360
    • RE: Hellp for pattern

      yes but it is not that simple, you must learn how to use data from zigzag indicator (you can do it inside EA using my topics about zigzag), and you must calculate the rest of math based on that 😄 ... get ready for a hard fight 😄
      ... or check web for pattern indicators ... I think someone called "poruchik" shared a lot of pattern indicators including this one for which are you asking for ... (keywords: zigzag harmonic pattern zup poruchik mt4)
      ... from the code of this indicator you can learn math or some conditions and apply them into your work, or you can try use whole indicators - I think they plot some text objects, you try to catch them ..

      posted in Questions & Answers
      M
      miro1360
    • RE: Modeling Quality is not the same even if I use different computers with the same broker user on MT4

      yes, that is and never will be better 😄
      google for tickstory (ducascopy), they offers good data, browse their webpages for guidance how to apply their data

      posted in Questions & Answers
      M
      miro1360
    • 1
    • 2
    • 10
    • 11
    • 12
    • 13
    • 14
    • 79
    • 80
    • 12 / 80