I have an EA that I want to use, and I found FxBlue's copy trader. However, their copy trader is an EA and it will have to replace the EA that I'm using.
Is there a way around this?
Thanks!
I have an EA that I want to use, and I found FxBlue's copy trader. However, their copy trader is an EA and it will have to replace the EA that I'm using.
Is there a way around this?
Thanks!
Hi, I was wondering why the open price for the trades aren't close to the bd/ask?
Like this

Is there an option where you can create a block for every "n" hours? The only similar one I can find is every "n" bars, but I'm using a Renko chart so I can't really use the "n" bars since I want it every hour and it doesn't take in account time.
How should I go about it? Thanks!
I'm trying to get the angle via object on chart, but it just returns zero. Any thoughts on how to do this?

Let’s say I have a rectangle object marking as a zone. How do I determine if price is within that box? Is there a specific way to do it? The only way I can think of is( if price is > bottom) && (price < upper)
Hi, so currently I have these lines with specific names "line 1, line 2, etc..." and have it hard coded that whenever price hits line 1, it does an action.
I'm trying to figure it out where I don't have to do specific object names, so instead this:
if this, take action at the next line.
Any ideas? Thanks!

@l-andorrà Nvm got it to work from changing Trendline Price Level (candle ID) to Price level 1.
Main issue now is that it's getting the value of Candle 0, but I would like it from candle 2, but it gives no option to select candle ID
@l-andorrà Not sure if this is what you meant. I tried it but this time I'm getting 0.

I want to get the value of a trace line, but when I try this, I don't get the correct value. Instead of getting the high value, I get 214783647 instead, which I believe is the limit value for type double. Am I doing this right?

Starting to lose hope as everytime I go live, it's a loss. Backtesting gives great results, but just isn't accurate.
I keep getting the zero divide bug. The return line is the error, and this is the function where it's at:
double PipValue(string symbol)
{
if (symbol == "") symbol = Symbol();
return CustomPoint(symbol) / SymbolInfoDouble(symbol, SYMBOL_POINT);
}
Please help
My comments are being disrupted, how do I draw a background or box behind the comment block but in front of the candles?
I tried drawing shape, but it sticks with the candle rather than x-y coordiantes.

@cdwilder1
Here's what I want.
Example:
Today I opened 5 trades of pair X.
Trades were:
+5 pips
+5 pips
+5 pips
-2 pips
+5 pips
which shows that I gained 18 pips today for pair X.
I want to display 18pips via fxdreema.
How do I do that? Which blocks do I use?
I want to get the total profit in pips per per day.
Currently, I have pips in profit for current trades using the "pips away from open" block.
How do I get the net profit in pips per day?
Thanks
I know it can get the highs and lows, but how do I get the candle ID of the high/low?
One of the goals for his is to make trend lines out of zigzag values.
Thanks
@l-andorrà caught that earlier this morning but still didn’t achieve what I wanted.
Any ideas on how to go about it? I’m considering scraping that method
The section is in the "check for breakout" area
I have attached my project:
https://fxdreema.com/shared/UB9ciWVUd
What I want to find out is, if my current candle[1] is bear, I want to store what the next candle will be.
So far I have created a flag so if candle[1] is bear, it goes into a checker to see if the next candle[1] will be bear or bull.
However when backtesting, it doesn't work. I think there's somethign wrong with my logic. Can anyone help?
Thanks. 