fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. TipsyWisdom
    3. Posts
    • Profile
    • Following 4
    • Followers 62
    • Topics 45
    • Posts 1434
    • Best 98
    • Controversial 10
    • Groups 0

    Posts made by TipsyWisdom

    • RE: Comment (ugly) block doesn't work on MT5

      can you show what you are talking about? I use those blocks a lot and have never experienced anything like that.

      posted in Bug Reports
      TipsyWisdom
      TipsyWisdom
    • RE: How much is TOO much?

      honestly, ive put a lot less time into development and more into manual trading...so these are things I just come back and randomly ponder mostly these days @gooseman

      maybe @ me in that thread and I may be able to recall on the project and compare to help you.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: How much is TOO much?

      @gooseman said in How much is TOO much?:

      @l-andorrà

      https://fxdreema.com/shared/PNG9D7p4e

      not the main project but a sample. regardless, it's just one system copied many times using different group #s, timeframes, and symbols.

      id try manually doing 2 groups and see if you still have the same problem as when you are copying and pasting.

      outside of that, id assume usually a variable or constant naming issue is another common thing.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: MA strategy with RSI+MA

      What you are asking is a variable questions with so many variable answers that are possible. So many ways to achieve the simplest idea of what you marked, but we are not negotiating a means of making marks. it seems you are asking for how to trade it? I am not even really sure of what you are asking. lol

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: When to stop OnInit()

      @jstap lol

      true true...but a business partner shouldn't be any different in that regard!

      posted in Bug Reports
      TipsyWisdom
      TipsyWisdom
    • RE: When to stop OnInit()

      @speedsk8r said in When to stop OnInit():

      @fxDreema I'm really glad you don't like partners. Partners always have interests that conflict with a best and first vision. One of the reasons FXDreema is ahead of its peers. Creative license for users or devs doesn't play well with controlling partners. You don't need em because its pretty easy to see your user base will have your back with any kind of support needed. I am currently a novice in coding and find this community easy to learn and share ideas with. I wouldn't be here if this were a big box e-tailor. Ive been a trader and in tech for years but I'm soaking it in like a sponge right now!

      to be fair as well though, a good partner pushes you to be better, and strive for more....this is what I look for in someone at least.

      posted in Bug Reports
      TipsyWisdom
      TipsyWisdom
    • RE: Can someone give me 10 minutes to make an indicator ?

      i would start proving 1 step at a time first.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: EA backtesting on MT5

      If you copied and pasted blocks without understand everything that needs to be changed, converting to 5 from 4, that may be the issue.

      Share your project link for assistance.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: Rule to not allow trading in specific currencies, how to do it?

      @ontradingx said in Rule to not allow trading in specific currencies, how to do it?:

      I would like to know if someone can show me how to create these rules, for example:

      1. If I have a purchase in the EURUSD currency, then I cannot have another purchase in the USDCHF currency.

      2. If I have 1 trade in EUR currency then I cannot have other trades in currencies that start with EUR.

      3. If I have 1 trade in EURUSD currency then I cannot have other trades with any currency that contains EUR or USD.

      Can you help me?

      I have ideas, but you'd have to use strings...

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: Exit after certain higher highs and lower lows

      it sounds as if you will want to use the zigzag indicator to determine the HH and LL as you were seeking originally.

      use the modify variables block to then define what the variables will be.
      var 1 is HH1, var 2 is LL1, var 3 is HH2, and var4 is LL2
      within the modify variables block specifically now, you will select each of those variables and then define each like this:
      var1 = indicators (zigzag, mode HH, ID0)
      var2 = indicators (zigzag, mode LL, ID0)
      var3 = indicators (zigzag, mode HH, ID1)
      var4 = indicators (zigzag, mode LL, ID1)

      I think thats about all you would need to define what you're seeking.
      to verify, put a comment block under once per bar (1 minute), and draw a horizontal line that is redrawn at the value of each variable.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: CAN WE USE condition for Side ways

      very interesting thought...never thought to try to do consoldation in this manner. Defining a range in time, use a variable as range of price for that time. If price is below X range of pips, or whatever metric you use...dont trade the current candle until we've broken out of the range high and low, or broken out of the range in terms of movement in a candle....nice

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: How to use Constant for Timeframe

      period current is the default that we all use regardless of what we want to use. Reason being, its easy to remember...what isn't easy, when you're in the heat of the moment...got on some tunes and you're cranking out some blocks, and you brain fart and say, "damn, was M1 or Month or Minute." This is why he said to just use period current, its a moot point because its selectable as an input later on.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: Multi symbols how to use correctly?

      Can you comparatively help me understand what you mean by, it pollutes the structure?

      I am assuming you mean the blocks, the code...making it all work together properly. I personally do not use group numbers because its too much to do for what I develop. Is this the kind of pollution you are talking about? Or is it more of a code aspect, in the lines?

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: Why dont candle (0) cross entries work??

      if yo uhave your conditions under once per bar, then it only looks for the conditions at the start of the bar.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: Period High / Low. Variable issue?

      @l-andorrà said in Period High / Low. Variable issue?:

      @tipsywisdom You shouls use the lowest candle ID nubmer for the start and the highest one for the endind period. I'm not sure the way you are showing is making he block to work correctly.

      haha...i think you are right. the way I was laying out my logic, it was supposed to be this way, but to use it correctly, ill need to do it the correct way.

      posted in Bug Reports
      TipsyWisdom
      TipsyWisdom
    • RE: Multi symbols how to use correctly?

      @ontradingx said in Multi symbols how to use correctly?:

      @tipsywisdom you have tutorial by this, share the link here please ?

      0_1654137198595_32392a66-ecff-4673-8e76-83aea5ec8797-image.png

      in the future, that is how to do it for anyone else simply.

      https://fxdreema.com/forum/topic/14971/multi-symbol-high-of-day-low-of-day-tracking

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: YESTERDAY HIGH AND LOW CUSTOME INDICATOR

      @lekan4forex start by using a comment block to display the high and low of yesterday. That is a very easy task.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • Period High / Low. Variable issue?

      0_1653927295660_9e035e50-f06a-45c3-8e5a-f0be32091516-image.png

      I frequently use all of these things there should be no reason that its not modifying my variables and at least updating the comment. I tried with and without pass block, forcing once per minute, displaying the comments different. It never updates.

      I also just tried converting everything to int, still no.

      0_1653927563449_bb64f693-3eb7-484b-84a4-efe449be9640-image.png

      posted in Bug Reports
      TipsyWisdom
      TipsyWisdom
    • RE: YESTERDAY HIGH AND LOW CUSTOME INDICATOR

      why not use the daily candle itself instead of an indicator?

      modify variables block.
      var1 = candle 1 high, daily.
      var2 = candle 2, low, daily.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • RE: EA TO SELL AT RESISTANCE

      edit change.

      posted in Questions & Answers
      TipsyWisdom
      TipsyWisdom
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 71
    • 72
    • 6 / 72