And one more issue:
All these errors I've found after an error while (initialization error) i'm backtesting. And this was not solved yet.
@fxDreema I really need your help here, buddy
And one more issue:
All these errors I've found after an error while (initialization error) i'm backtesting. And this was not solved yet.
@fxDreema I really need your help here, buddy
@roar I'll try like you suggest. But I guess that I already did and didnt work.
Let's see!
Thanks for you tip!
Condition block works fine. I'm able to update without any issue.
I guess that it is a matter with block "When indicator Appears"...
Btw, when I'd trying to update and it gave me the error "...Problem collecting data..." the entire fxDreema site freezes. I'm not able to open any other blocks or menu. that's why I'd strong believe that it is a matter of logical or some update into fxdreema logical code.
@roar Hi!
Yes, it is there. It was working fine, but suddently without any major update related to indicator it stopped working.
The first error that starts to show was this one related here:
https://fxdreema.com/forum/topic/5748/custom-indicator-parameter-value-error/11
Looks like the workaround provided worked, but I'm not able to use "When Indicator Appears"anymore.
I`m kind of stucked on development due some technical issues here...
Hi!
I'm trying to get one buffer from one of my custom indicator. But when I'd save the "when indicator appear" block it gives me that message and crash the fxdreema:

What can cause this?
@fxDreema , is the same EA that was facing the issue with those blocks with "Period" field .
Great, buddy!
I'll do that and keep you notified.
Thanks for your help!
Please, guys
Could any one help me, please?
hi, @fxDreema !
Any ideia about this error?
The same issue with some other field. But in these cases they keep in blank even after changes. Into "My indicator" folder it was filled.

@fxdreema said in Custom Indicator parameter value error:
Try ENUM_TIMEFRAMES as a data type instead of int for Period. Also count the number of parameters, in case you missed one.
One more note: It was working yesterday. But after some changes it start to show like this. Do we had some changes into fxDreema logical code or something like?
That's why it is really strange for me
@fxdreema said in Custom Indicator parameter value error:
ENUM_TIMEFRAMES
Thanks for your reply!
unfurtunatelly this didn't work. But just to remember, this period is not related to time frames. It is related to number of candles
If I do change it for some value or Constant and update it, when I do open it again, the "PERIOD_CURRENT" returns to value field.
Hi guys!
I'm using a custom indicator and into one parameter it's showing "PERIOD_CURRENT" where it should show the number of periods:

The indicator setup is correct:

It was working before. And I do belive that this incorrect value is causing a Initialization error:

What can cause this?
Thank you!
Hi guys!
I`m working on a Range Box EA (if you have any example you help me a lot) .
But I want to know which is the best way to set the TP size as the difference from a period highest from lower price.
Thank you so much!
Hey guys!
I'm using the Condition Block "When indicator appear". I want to open a trade only when the buffer turn from 0 to 1.
But my backtest dont run. It stay stucked consuming memory machine. Do you think that it can be a buffer issue?
this code was sent by the developer :

And I`m using buffers 14/15 .
I've removed all rules just to try the back test. My EA is just like this:
https://fxdreema.com/shared/PCHeRb3ud
Thanks in advance
Great @miro1360 !
I've tried with condition block but the EA doesn't work. The Backtest stay stucked.
I'll try with another setups.
Thank you so much for your help!
@miro1360 Thanks for your reply!
This indicator uses Buffers. Also the developer sent an code with the correct iCustom feature. I'm facing some issue while programming using fxDreema.
I've made a test using trace . I'm not sure about it and the backtest worked but not the Ea. I mean, the EA open orders in every single candle from that TF.
It looks like this:

Thank you so much!
Thanks for your reply!
Do I need to use both, Condition and Trace, or do Trace replace Condition for indicator?
Please, take a look:
https://fxdreema.com/shared/EvY7Mvv4d
My backtests do not run at all. It stay stucked.
Hi guys!
I'm starting to use fxDreema to develop an EA using a custom indicator bought at MQL5 and I need to get signal from buffer 14 to buy and signal from buffer 15 to sell, as code :
if( GetIndicatorValue(14) > 0 ) then buy
if( GetIndicatorValue(15) > 0 ) then sell
Which is the best way to program this using FxDreema? The indicator's develop sent this code and I don't know how to join them.
Thanks!