You would lose the changes when importing back.
Posts made by roar
-
RE: Editing source codeposted in Questions & Answers
-
RE: Strange Timeframe Problem*posted in Questions & Answers
@Morpheus_0 I think "cross width" means that ID 0 must be "above" and exactly ID 40 must be "below", or whatever operator you use.
To get "some candle within 40" you need a loop that goes through IDs 1-40
-
RE: Strange Timeframe Problem*posted in Questions & Answers
I'm not sure the cross width can be used like that...
-
RE: Strange Timeframe Problem*posted in Questions & Answers
Do you use a timeframe selection in some block?
-
RE: ADX vs ICHIMOKUposted in General Discussions
Technically moving average can be applied to ADX data, but such methods aren't supported by fxdreema.
-
RE: ADX vs ICHIMOKUposted in General Discussions
I dont think there is any way. Some indicators support taking the data from other indicators rather than price, but those 2 dont support it.
You might find some custom indicator that does something similar...
-
RE: Forum updateposted in Questions & Answers
@fxDreema the cock-favicon (:D) is in the builder, other in forum. I think it would be nice to keep them as such, separate icons
-
RE: ADX vs ICHIMOKUposted in General Discussions
ADX uses a scale from 0-100, Ichimoku uses the price scale. They dont match.
-
RE: How to get my HMA to be identified in MT4posted in Questions & Answers
@jameshovey85 everything should be allright with that setup. Can you show what you see when you use the indicator in some fxdreema block?
-
RE: How to get my HMA to be identified in MT4posted in Questions & Answers
@jameshovey85 you can set up new inputs to your custom indicator here

-
RE: Every n'tick blockposted in Questions & Answers
Without that block, the full block flow is executed on every tick (every price update). With that block, the lower blocks in the flow are executed every 100th tick.
-
RE: EA condition Envelopes with level from RSIposted in Questions & Answers
If you want to use envelopes on RSI data, you need a custom indicator, not possible with the options available in fxdreema
-
RE: Is This Possible...?posted in Questions & Answers
@Morpheus_0 Yes, ID -1 would be the next candle in future. I think you should compare IDs 2 and 1.
0 would be the currently moving candle
-
RE: EA condition Envelopes with level from RSIposted in Questions & Answers
@Flyfisher just like in your picture, but you must understand that you are using the SCALE of RSI indicator.
Envelopes uses the scale of the actual chart.
-
RE: Forum updateposted in Questions & Answers
When writing quick reply, sometimes the page jumps up as if I scrolled it. Maybe it happens when someone edits a post, or when a notification comes, or some other reason..
-
RE: Is This Possible...?posted in Questions & Answers
Indicator buffers have values for all candles. If some candle doesnt have an arrow, its value is 0 (or EMPTY_VALUE).
So you need 2 condition blocks:
- First check that your indicator on buffer 4 and candle ID 2 has value 0 (use the operand == and then value numeric 0)
- Then check that your indicator on buffer 4 and candle ID 1 does not have value 0 (use the operand != and then value numeric 0)
This works if the non-arrow candles have value 0. If they have value EMPTY_VALUE, you need to repeat this process and replace 0 with EMPTY_VALUE
-
RE: EA condition Envelopes with level from RSIposted in Questions & Answers
Did you use this option while adding the indicator?
You probably need to make/order a custom indicator for your project, because fxdreema doesnt support that Applied price option.
-
RE: Easy way to make ENUMposted in Tutorials by Users
I think this method was already posted somewhere, I just can't find the thread anymore to give the credit they deserve.
-
RE: EA condition Envelopes with level from RSIposted in Questions & Answers
Did you apply the Envelopes indicator to the RSI data, or candle close data? In any case, this is not supported without custom code
But this one is such a classic 