fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. PipTheRipper
    3. Posts
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 55
    • Posts 145
    • Best 6
    • Controversial 1
    • Groups 0

    Posts made by PipTheRipper

    • releasing EA on ml5 marketplace

      Hi, I just tried to upload an EA I made with fxdreema on the mql5 market place. During the validation process I get the error "insufficient funds to perform trade operations". Has anyone else come across this issue?

      Here mql5 says is a guide to fix the issue: https://www.mql5.com/en/articles/2555#not_enough_money

      I have tried pasting the code sample into the EA, but I still get the same error message.

      Any ideas?

      posted in Questions & Answers
      P
      PipTheRipper
    • slippage - pending orders

      Is there a way to prevent a pending order to get filled if the slippage exceeds a certain points/pips amount. I see there is an input field called "slippage" in the buy/sell pending order blocks, but changing the input settings does not effect trading. Even if i set it to 0 all trades are executed, although slippage was higher than 0.

      0_1634733234838_slippage.png

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: horizontal line - store price in a variable

      I got it now. Here are the settings in case anyone else needs it. Thanks!0_1634486565401_line working.png

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: horizontal line - store price in a variable

      I also tried like this, but im still not having any success.. 0_1634486287159_each object.png

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: horizontal line - store price in a variable

      @tipsywisdom thanks for your answer. I am not sure I understand however. Does this look right? I am not getting any results stored in the variable.. 0_1634485950401_baseline.png

      posted in Questions & Answers
      P
      PipTheRipper
    • horizontal line - store price in a variable

      Im trying to create a horizontal line that can be moved around on the chart. I want to store the price of the line into a variable that gets updated as the line gets moved around manually on the chart. I have made the line, but cant seem to get the right output value for the variable. Can anyone see what I do wrong? Here is a link to the project https://fxdreema.com/shared/5LunwNMgd

      1_1634466200638_line price.png 0_1634466200633_line fx.png

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: Get price at certain time

      Thank you so much guys! Really appriciate it!

      posted in Questions & Answers
      P
      PipTheRipper
    • Get price at certain time

      Hi folks, I am trying to figure out if there is a way to get ask/bid price at certain hh:mm.

      I am aware of the "get highest/lowest price" from candle period or time period.

      But what if I only want one value? Like the price of ask at the first tick of 21:30 for example. Anyone knows how to get that?

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: Fibonacci + zigzag

      ok, good to know. I will find a work around without using the draw fib block.. Cheers guys!

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: Fibonacci + zigzag

      @jstap Thanks anyway

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: Fibonacci + zigzag

      @jstap Thanks! I am even sure @miro1360 is still active on this forum. All posts I see by him are several years old. Does anyone know if there is a workaround without having access to this code of Miro's..

      posted in Questions & Answers
      P
      PipTheRipper
    • Fibonacci + zigzag

      Hi, I am for the first time messing around with fibonacci in fxdreema. I would like to use the ZigZag indicator to plot the highs and lows from where to draw the fib retracement from. Has anyone found a good way to do this?

      I have found a few posts on both zigzag and the "draw fib" blocks, but I can't really seem to find a way to make them work together.

      Here is a project: https://fxdreema.com/shared/iSPEZA59e

      I am aware that the last leg of the ZZ is repainting. I am not concerned about that as I know how to work around that. For now, I would simply like to be able to draw the fib from zz high1 to zz low1.

      I am not entirely sure what to input in the "time" section of the "draw fib" block. I think this is where it goes wrong.

      Cheers

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: modify stop loss based on magic number

      Thanks guys, I'll see if I can find a way and will share here in case i do.

      posted in Questions & Answers
      P
      PipTheRipper
    • modify stop loss based on magic number

      Hi, is it possible to modify stop loss orders placed by other ea's using the magic number of the EA that places the original trades?

      So if EA 1 places an order with tp and sl -> have ea2 modify the stop loss..

      hope my question is clear

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: place pending order below candle once per bar + delete once per bar

      Thanks once again! You are a true champ!

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: place pending order below candle once per bar + delete once per bar

      @jstap said in place pending order below candle once per bar + delete once per bar:

      -10 Pips

      I tried writing "-10 Pips" in the adjust field. Was this what you meant? I get an error undeclared identifier.. Would you be so kind to show me on a screenshot what you mean?

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: exit trade on next candle close

      I figured out a way, I share it here in case anyone in the future needs something similar: https://fxdreema.com/shared/qgX8pwIbe

      I created a variable called "bar counter"
      on init i set the bar counter to 5 (just needs to be a number higher than 2 in this case)
      once per candle i add 1 to bar counter
      once per position i set bar counter to 1
      when bar counter is 2 -> close trade

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: exit trade on next candle close

      @l-andorrĂ  trade has to be closed on the close of the candle that activated the pending order. Thanks!

      posted in Questions & Answers
      P
      PipTheRipper
    • exit trade on next candle close

      Hi, I want to make a system that enter positions on pending stop orders above/below each candle. Once a position is opened, i want the ea to exit the position on the very next candle close.

      I am trying to make a variable that changes digit once a position has been opened. The new number assigned to the variable will allow the "close position" block to run. I have set the close position block to once per bar. What I am looking for is something like "once for every candle close", not once per bar, as this block also can run in the middle of a candle.

      Does anyone know how I can make it so that the EA closes the open position on next closed candle?

      https://fxdreema.com/shared/ZV5FidTjc

      0_1632086156907_bar counter.png

      posted in Questions & Answers
      P
      PipTheRipper
    • RE: xmas holiday - no trade filter - custom code

      Thank you guys! Appreciate it. Will see if I can make it work. I would like to leave the year out, so on backtest over many years, no trades are taken within that time period. If I figure it out I will upload it here so others might benefit. Thanks again!

      posted in Questions & Answers
      P
      PipTheRipper
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 3 / 8