MQL4 - automated forex trading   /  

Forum

Changing Arrow Sizes in Custom Indicators

Back to topics list To post a new topic, please log in or register

avatar
17
Maratha 2006.07.05 09:27 
I wanted to know how to change the size of the arrows...for example, here is my code to draw a BUY arrow on the chart..

   SetIndexStyle(0,DRAW_ARROW);
   SetIndexArrow(0,108);
   SetIndexBuffer(0,ExtMapBuffer1);
   SetIndexLabel(0,"BUY");
   SetIndexEmptyValue(0,0.0);
See the GIF attached..(small red and violet circles)..How do I change the size of the arrow symbol? As of now, it appears too small...

Metalanguage of Graphical Lines-Requests. Trading and Qualified Trading Learning

Metalanguage of Graphical Lines-Requests. Trading and Qualified Trading Learning

The article describes a simple, accessible language of graphical trading requests compatible with traditional technical analysis. The attached Gterminal is a half-automated Expert Advisor using in trading results of graphical analysis. Better used for self-education and training of beginning traders.


avatar
Moderator
5198
stringo 2006.07.05 10:43 
Change width in the colors list

avatar
17
Maratha 2006.07.06 06:57 
Dear Stringo,

Thanks! Works like a charm! :)

How do I add text label next to the arrow symbol on the chart? For Example, adding "BUY" next to every BlueViolet dot and "SELL" next to every Red dot...


avatar
Moderator
5198
stringo 2006.07.06 10:23 
Maratha wrote:
How do I add text label next to the arrow symbol on the chart? For Example, adding "BUY" next to every BlueViolet dot and "SELL" next to every Red dot...

There is impossible because text object anchored with top-center point.
Back to topics list  

To add comments, please log in or register