Hi,
I was looking for a tool that acts like a screener: analysing different assets and generating entry signals when pre-defined conditions are met.
For this purpose I modified the script for the donchian indicator and whenever some conditions are met Alert() is invoked to notify me.
However I am not sure if this is the right and efficient way to implement screener since the modified indicator script has to be attached to the graph of any asset I want to scan. And when I want to observe approx. 100 different assets, this may be quite resource-intesive.
What is your experience? Is this the efficient way to implement a screener?
Best,
Chris
no not the best way to do it as too many charts and indicators to handle concurrently.
You would be better writing an EA that you attach to a single chart. that EA could process your conditions against multiple securities and/or timeframes either entered by you or from the market watch list. This will reduce the number of charts open for the screening purpose to just 1 and if you code it right will also run only 1 or two indicators at a time rather than 1 chart and 1 indicator for every asset which would be a significant overhead for screening purposes.
no not the best way to do it as too many charts and indicators to handle concurrently.
You would be better writing an EA that you attach to a single chart. that EA could process your conditions against multiple securities and/or timeframes either entered by you or from the market watch list. This will reduce the number of charts open for the screening purpose to just 1 and if you code it right will also run only 1 or two indicators at a time rather than 1 chart and 1 indicator for every asset which would be a significant overhead for screening purposes.
Just something like that?
How to Start with Metatrader 5
newdigital, 2013.07.12 08:49
New indicator was created/converted to Metatrader 5 and it is available in MT5 CodeBase now : Signal Table
Just something like that?
Yes, onchart only. This is not EA to trade. This is something as dashboard (indicator)
this is dashboard anyway (multi pairs dashboard). i do not think that it will be free in MT5 CodeBase. You may want to go to Job service sorry (if we are talking about MT5 for example).
Have a look in here, this is a good start to your project
- 2010.08.26
- Sergey Gritsay
- www.mql5.com
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi,
I was looking for a tool that acts like a screener: analysing different assets and generating entry signals when pre-defined conditions are met.
For this purpose I modified the script for the donchian indicator and whenever some conditions are met Alert() is invoked to notify me.
However I am not sure if this is the right and efficient way to implement screener since the modified indicator script has to be attached to the graph of any asset I want to scan. And when I want to observe approx. 100 different assets, this may be quite resource-intesive.
What is your experience? Is this the efficient way to implement a screener?
Best,
Chris