__Isn't this job for some indicator?[/quote:14vynbsd]
I can't find one with a buffer that works, do you know any?
__Isn't this job for some indicator?[/quote:14vynbsd]
I can't find one with a buffer that works, do you know any?
This should be the right board for a request, if not then a moderator can move it in the appropriate section.
Many times I wanted to export currency strength data on a .csv file on Microsoft Works, but the block/s I am missing is the currency strength calculation. I am making a request for the next adds and upgrades of fxDreema for a currency strength block/s which will export data on .csv files and connects and other blocks.
The calculation should be this:
//--strength with daily range
double dStrengthRange=0;
if(dailyRange!=0)
dStrengthRange=100.0*(dCloseLow/dailyRange);
//-- set fixed values
double settedValue=0;
if(dStrengthRange>3.0) settedValue=1;
if(dStrengthRange>10.0) settedValue=2;
if(dStrengthRange>25.0) settedValue=3;
if(dStrengthRange>40.0) settedValue=4;
if(dStrengthRange>50.0) settedValue=5;
if(dStrengthRange>60.0) settedValue=6;
if(dStrengthRange>75.0) settedValue=7;
if(dStrengthRange>90.0) settedValue=8;
if(dStrengthRange>97.0) settedValue=9;
return(settedValue);
Also it should calculate all 9 timeframes and an option to choose in which timeframe the user wants to make calculations and save to a file for future analysis.
I understand much better now (even, if I am not a coder just have studied some) how the calculation is done. Do you think that there is a way that I can create a spread alert EA just using forex dreema's drag and drop tool? I wish I was a coder! 
I just want an expert that gives alerts when spread is changing, but I see that the blocks are not using min. and max. spread. Anyway can you show me in your code where and how the min and max. spread is calculated?
I tried with no success, should be the fixed spread of the broker, any recommendations and how the minimum, maximum and average spread is showing changes with fixed spread broker on the left of my screen info of forex dreema experts will be very helpful.
I can't upload in this forum and I am using an opera browser which is not compatible with the online version. It is very simple to understand. The block with the name, "Spread Filters" (I use the local version >> build 099 (23 August 2015), doesn't execute a sound which I want to. I connected after it a second alert block with the name "Play Sound" very simple. I hope you understand this time.
A diagram: Spread Filters >> Play Sound - only two blocks 
I recently tried to use the spread filter box for an expert and my broker is using fixed spread and it's not working. I track the Min./Avg./Max. spread from the experts info when I drop it on a chart and some times in the day it shows spread changes with fixed spread. How it does and can I make Min./Avg./Max. spread work with an expert? What other option may I have?
Why, I connected it between the blocks and works fine!
__If there are 2 or more indicators, just put "Condition" blocks for each of them[/quote:1xirx2ci]
I found how to connect two condition blocks and use for filtering, which I didn't found on the examples on the site. It was the simple block, PASS which I connected between the two blocks, thanks for the help. 
__https://fxdreema.com/demo/mt4-crossover-indicators
https://fxdreema.com/demo/mt4-crossover-price
There are also 2 other blocks in "Conditions for Indicators" that have a liiitle bit different way of working - they detect the exact event when a crossover happens by looking at the value of the indicator in the previous tick and the current one. While the regular crossover in "Condition" looks at values from the current candle and the previous candle.[/quote:26anx1is]
I am trying to create an expert like this example on the image:
http://tinypic.com/r/219th4y/8
As you can see I want the expert to use two different indicators not two different ma crosses. Any example?