@DragonZueloTrends oh no problem at all
Posts made by Fingon
-
RE: EA works in one pair but not in an otherposted in Questions & Answers
-
RE: EA works in one pair but not in an otherposted in Questions & Answers
@DragonZueloTrends I don't speak Spanish.
-
RE: EA works in one pair but not in an otherposted in Questions & Answers
@chrisbe I have thanks! It's working perfectly now.
-
RE: EA works in one pair but not in an otherposted in Questions & Answers
@ambrogio Ooh ok! Cuz it worked on LTC and BTC?USD but not GPBUSD. Thanks a lot.
-
RE: EA works in one pair but not in an otherposted in Questions & Answers
@l-andorrĂ Yes it is. I copied the exact same blocks and pasted them in another project, the only difference being that I added a play sound button. That one draws a fibs sometimes and doesn't sometimes.
-
EA works in one pair but not in an otherposted in Questions & Answers
I have an ea that draws a fibonaccci retracement from the first to the last candle when there are 4 bulls or bears in a row. It worked perfectly when I used mt4 strategy tester on BTCUSD. But when I tried it in GBPUSD, nothing was drawn, despite there being many instances of 4 bulls in a row there. What could be responsible? I did not set a pair or even a timeframe for my EA, so that shouldn't be it.
-
RE: Assigning price at fib levels to a variableposted in Questions & Answers
@jstap Okay thanks! Does it matter that the number of lines will vary depending on what levels i have on my Fib? If I have 0, 23.6,50,61.8 and 100 then 50 will be 2. But if I dont have 23.6 for example, 50 will be one.
-
Assigning price at fib levels to a variableposted in Questions & Answers

I want to assign the price at level 50 of a fib to a variable. However, the block says "Fibonacci level (0-31)", which number between 0 and 31 corresponds to fib level 50?
-
RE: EA and Fibonacci Levelsposted in Questions & Answers
@jstap said in EA and Fibonacci Levels:
You can see this in my link, it will react to the name you used to draw the fib
When it comes to the code you shared, those variables (FIBO_1 to 11) will contain data from the Fib named F. In your code, there is only one Fib, so that is the one the variable's will contain data from. In my code, there will be many Fibs. Which of those fibs will my variables contain data from? The most recent one?
-
RE: EA and Fibonacci Levelsposted in Questions & Answers
@Fingon Okay thanks, but what are levels 0-31? I now see how to save the price of a particular fib level as a variable, but how do I select levels like 38,100, 14.6 etc using this levels 0-31 thing? What do numbers 0-31 correspond to on a real fib?
-
RE: EA and Fibonacci Levelsposted in Questions & Answers
If I pick by name like this, and I have 20 Fibs on the chart

The condition block will automatically act on the most recent fib?
-
RE: EA and Fibonacci Levelsposted in Questions & Answers
@jstap I've looked at the code you shared but I'm still not sure what you mean by calling the fib level in another block-
-
RE: EA and Fibonacci Levelsposted in Questions & Answers
Another question - how do I make my conditions relate to the most recent Fib drawn, not just any Fib? As the most recent Fib at any given time could be named anything from Fib2 to Fib{infinity} (depending on how many fibs the ea has drawn), how could I select it for a certain condition or other action?
-
EA and Fibonacci Levelsposted in Questions & Answers

Does this mean the EA will buy if price retraces to somewhere in between Fib levels 50 and 75? (Yes I added these levels in the levels section of the draw fib block)

If not, how do I make the EA buy if price retraces to somewhere in between 50 and 75?
-
How does one-posted in Questions & Answers
I want to make an EA that does X when 4 candles in a row are bearish/bullish. The issue is, the candles in a row blocks do not check whether each candle has a lower high/higher low and lower low/higher high than the one before it. How can this be done? Thank you.