Jump to content

Michael B's Method


Recommended Posts

By default the arrows are tiny. Can someone help me to find the line in the code below to increase the size of the arrows?

 

#property indicator_chart_window

#property indicator_buffers 4

#property indicator_color1 Aqua

#property indicator_color2 HotPink

#property indicator_color3 Lime

#property indicator_color4 Red

 

Insert these 2 lines after the above section of code:

#property indicator_width3 3

#property indicator_width4 3

 

The last digit in each line (3) is the arrow size.

 

SetIndexStyle(2, DRAW_ARROW, 5, 5, 1);
SetIndexStyle(3, DRAW_ARROW, 5, 5, 1);

 

YES... This is just what I needed. Thank You guys, your the greatest.

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...