View Single Post
  #2 (permalink)  
Old 07-28-2006, 08:18 PM
kiwigold kiwigold is offline
Senior Member
 
Join Date: Mar 2006
Location: USA/Mexico
Posts: 226
kiwigold is on a distinguished road
Quote:
Originally Posted by hidethereal
What line of code would I need to look for in my indicators in order to change the dot to an arrow, or an arrow to a hollow dot, etc etc?

Also, how can I offset the dot or arrow to be farther away from the candle?

To change from dots to arrows look for:

SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,233);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,234);

and change the 233 and 234 to 159 (or for diamonds -- 117)

If you want the dots thicker --

Near top where it says ..

#property indicator_chart_window
#property indicator_color1 Lime
#property indicator_color2 Yellow

Insert 2 lines so it will look like this --

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_width1 1
#property indicator_color2 Yellow
#property indicator_width2 1


I am not sure about changing the position of the arrows/dots/diamonds though -- perhaps someone else can help --

All the best
Reply With Quote