Creating a Scanner List
-
Hello guys, I want to run an EA for MT4 on daily timeframe, who searches after EMA Crosses (slow EMA & fast EMA) for a bunch of Symbols. And show this on a created list of this symbols. Maybe with a boolish variable:
EMA Cross (Fast EMA cross Slow EMA above)"true": Green field on the right side of the symbol
EMA Cross (Fast EMA cross Slow EMA above) "false": White field on the right side of the symbol
EMA Cross (Fast EMA cross Slow EMA below) "true": Red field on the right side of the symbol
EMA Cross (Fast EMA cross Slow EMA below) "false": White field on the right side of the symbolUnfortunallity I didn´t find any tutorial for creating a scanner List like this. I hope someone can help me!
Maybe you can better imagine with this:Symbol Indikator
Gold: Green field (Buy signal)
NaturalGas: White field (No Buy/Sell Signal)
Copper: Red field (Sell signal)
Arabica: White field (No Buy/Sell Signal) -
Just a few initial questions. Is the bot supposed to search for those signals only or will it open trades too? Are additional conditions supposed to be added to that MA crossing? Do you need the info to be available on each chart separately or on one only chart combined?
-
The bot should only analyse all symbols after (for example EMA Cross) some Buy or Sell Signals and show this to me by generating a green or red field on the right sight of the symbols (if the Buy or Sell Signal is older than 1 Bar it should change the colour back to a neutral colour). So I can click on the symbols, look after the chart and put my order manually.
-
Like the Agena Trader Software. If google Agena Trader and look for the google pictures you could get a clearly imagine of what I mean.
-
Then you essentially need an indicator, not a bot. Sadly, fxDreema is not programmed to create indicators. However, you can still create a bot doing that, but it will not be as effective as an indicator because of the tick execution issue. What you can do is a bot with a panel. Would that be acceptable?
-
Sadly this isn´t what i am looking for. But I thank you for your answers!
-
-
This looks pretty good! Thank you guys!
-
@User17543 You're welcome.
-
I tried to generate a Dashboard for Indizes, but I got a compilation error:
Compilation errors
'symbolNames' - index out of rangeDo you know, what this means?
-
Probably you need to adjust the pip size rules to include them.
-
Okay, in which block i need to adjust the pip size rules?
https://fxdreema.com/shared/oLuHqvBUc -
settings, click on the spanner symbol
-
I can´t follow you. What is a spanner symbol? The Draw Edit field?
-
on the right side of the project screen, you have a button depicting a spanner
-
I adjust the pip size rules, but it didn´t worked. (Used 0.1 = 1 Pip) But I found the problem by compiling it manually in Metaeditor. I wrote one Indeze to much (Number of Indezes was 11 and I gave Indezes numbers from 0 to 11). But thank you very much for your help!