HGIMatrix

The title says it all
Post Reply
User avatar
Wavegarrick
Trader
Posts: 1172
Joined: Sun Dec 30, 2012 11:21 am
Location: South Africa

HGIMatrix

Post by Wavegarrick »

Umph. I see you have deleted your post and I forgot to quote you :shock: Never mind.

Cheers
naruto2208
Trader
Posts: 13
Joined: Wed Nov 09, 2016 4:57 am

HGIMatrix

Post by naruto2208 »

Hi renexxxx,

This indicator is absolutely amazing with MTF filter to confirm entry signal. :clap:
And I wonder have you ever intended to turn it into an EA before?

Thanks.
User avatar
renexxxx
Trader
Posts: 860
Joined: Sat Dec 31, 2011 3:48 am

HGIMatrix

Post by renexxxx »

naruto2208 » Sat Oct 28, 2017 11:43 pm wrote: And I wonder have you ever intended to turn it into an EA before?
You might want to have a look here to see a plethora of EA's based on the HGI indicator or library.
naruto2208
Trader
Posts: 13
Joined: Wed Nov 09, 2016 4:57 am

HGIMatrix

Post by naruto2208 »

Thanks for your feedback. I should study much more. :arrrg:
ericjschroeder
Trader
Posts: 52
Joined: Sat Jan 05, 2013 2:50 am

HGIMatrix

Post by ericjschroeder »

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.
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.

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 :smile:
User avatar
renexxxx
Trader
Posts: 860
Joined: Sat Dec 31, 2011 3:48 am

HGIMatrix

Post by renexxxx »

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.
ericjschroeder
Trader
Posts: 52
Joined: Sat Jan 05, 2013 2:50 am

HGIMatrix

Post by ericjschroeder »

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.
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.
ericjschroeder
Trader
Posts: 52
Joined: Sat Jan 05, 2013 2:50 am

Error 4109

Post by ericjschroeder »

.. not the (defective) ChartApplyTemplate, ...
Last edited by ericjschroeder on Wed Jan 17, 2018 4:13 pm, edited 1 time in total.
User avatar
renexxxx
Trader
Posts: 860
Joined: Sat Dec 31, 2011 3:48 am

Error 4109

Post by renexxxx »

ericjschroeder » Wed Jan 17, 2018 4:34 am wrote:.. not the (defective) ChartApplyTemplate, ...
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.
ericjschroeder
Trader
Posts: 52
Joined: Sat Jan 05, 2013 2:50 am

Error 4109

Post by ericjschroeder »

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.
Interesting (scratching head). Thanks!
Post Reply

Return to “Indicators and matrixes”