Cheers
HGIMatrix
- Wavegarrick
- Trader
- Posts: 1172
- Joined: Sun Dec 30, 2012 11:21 am
- Location: South Africa
HGIMatrix
Umph. I see you have deleted your post and I forgot to quote you
Never mind.
Cheers
Cheers
-
naruto2208
- Trader
- Posts: 13
- Joined: Wed Nov 09, 2016 4:57 am
HGIMatrix
Hi renexxxx,
This indicator is absolutely amazing with MTF filter to confirm entry signal.
And I wonder have you ever intended to turn it into an EA before?
Thanks.
This indicator is absolutely amazing with MTF filter to confirm entry signal.
And I wonder have you ever intended to turn it into an EA before?
Thanks.
- renexxxx
- Trader
- Posts: 860
- Joined: Sat Dec 31, 2011 3:48 am
HGIMatrix
You might want to have a look here to see a plethora of EA's based on the HGI indicator or library.naruto2208 » Sat Oct 28, 2017 11:43 pm wrote: And I wonder have you ever intended to turn it into an EA before?
-
naruto2208
- Trader
- Posts: 13
- Joined: Wed Nov 09, 2016 4:57 am
HGIMatrix
Thanks for your feedback. I should study much more. 
-
ericjschroeder
- Trader
- Posts: 52
- Joined: Sat Jan 05, 2013 2:50 am
HGIMatrix
Hello, renexxxx. Marvelous dashboard/matrix. I am digging through the code now to find a way to modify the alerts to my preference. If you happen to be bored or have time to help me, I would appreciate if you can point me to the relevant sections of code, but if not, please do not worry about it.renexxxx » Sat Oct 28, 2017 1:34 pm wrote: You might want to have a look here to see a plethora of EA's based on the HGI indicator or library.
What I want to do is receive (Big Arrow, blue wavy) alerts only on H4 (first column for me) if I am NOT watching that pair, that is, the box is not blue from clicking on it, and the Global Variable is 0 (for x10:y10_Symbol(0,0)1,0, for example), but if the Global Variable is 1 (I clicked it Blue and am watching), then I only want specific alerts, Big Arrow in H4 direction or yellow wavy (this may be handled by the EA), on the M15 (my second column), and only the yellow wavy, StartOfTrend on the H4, to stop watching.
As I said, no worries if you are busy or do not wish to mess with this. I am a decent programmer and getting better, but not as good as many of you here.
Oh, yes, and if possible, could you program the alert to notify me 5 minutes before it actually occurs, so I can wake up or get back to my computer before the real alert happens? Just kidding
- renexxxx
- Trader
- Posts: 860
- Joined: Sat Dec 31, 2011 3:48 am
HGIMatrix
HGIMatrix is a generic, highly configurable tool for displaying HGI signals. What you are suggesting is a very specific requirement and this will not be added to the core code.
A Mercedes is a generic transportation device. You are not going to ask Mercedes factory, to add a feature such that the vehicle can only drive to your workplace. That would be detrimental to the generic product.
Have fun with the code.
A Mercedes is a generic transportation device. You are not going to ask Mercedes factory, to add a feature such that the vehicle can only drive to your workplace. That would be detrimental to the generic product.
Have fun with the code.
-
ericjschroeder
- Trader
- Posts: 52
- Joined: Sat Jan 05, 2013 2:50 am
HGIMatrix
Thank you for the reply. As usual with my coding, I know what I want to do, and just have to figure out how to do it within the programming language. Thank you very much for all the helpful comments within your code.renexxxx » Thu Jan 04, 2018 11:29 pm wrote:HGIMatrix is a generic, highly configurable tool for displaying HGI signals. What you are suggesting is a very specific requirement and this will not be added to the core code.
Have fun with the code.
-
ericjschroeder
- Trader
- Posts: 52
- Joined: Sat Jan 05, 2013 2:50 am
Error 4109
.. not the (defective) ChartApplyTemplate, ...
Last edited by ericjschroeder on Wed Jan 17, 2018 4:13 pm, edited 1 time in total.
- renexxxx
- Trader
- Posts: 860
- Joined: Sat Dec 31, 2011 3:48 am
Error 4109
This is by design and intention, not defective ... see the documention on ChartApplyTemplate. The reason for this is security: An indicator is not allowed to do trade operations. Therefore, an indicator can not open another chart from which trade operations are permitted -- as that would be a breach of security.ericjschroeder » Wed Jan 17, 2018 4:34 am wrote:.. not the (defective) ChartApplyTemplate, ...
If, however, you store an EA in the default.tpl template, and you open a chart with ChartOpen() from an indicator, the EA is able to do trade operations. This is a breach of security (as the calling program (the indicator)) was not able to place trades.
-
ericjschroeder
- Trader
- Posts: 52
- Joined: Sat Jan 05, 2013 2:50 am
Error 4109
Interesting (scratching head). Thanks!renexxxx » Tue Jan 16, 2018 2:30 pm wrote: This is by design and intention, not defective ... see the documention on ChartApplyTemplate. The reason for this is security: An indicator is not allowed to do trade operations. Therefore, an indicator can not open another chart from which trade operations are permitted -- as that would be a breach of security.
If, however, you store an EA in the default.tpl template, and you open a chart with ChartOpen() from an indicator, the EA is able to do trade operations. This is a breach of security (as the calling program (the indicator)) was not able to place trades.