Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 07-28-2006, 07:01 PM
Member
 
Join Date: Apr 2006
Posts: 52
hidethereal is on a distinguished road
Change arrows or dots?

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?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 07-28-2006, 09:18 PM
Senior Member
 
Join Date: Mar 2006
Location: USA/Mexico
Posts: 224
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 07-28-2006, 09:53 PM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 676
cja is on a distinguished road
Arrows & Dots

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?

This may help this is the full range of Arrow codes

ARROW Symbols.gif
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 07-28-2006, 09:57 PM
Member
 
Join Date: Apr 2006
Posts: 52
hidethereal is on a distinguished road
Thank you very much for the replies!

Anyone know how to offset the symbol from the candle?


Thanks again!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 02-06-2007, 11:03 PM
accrete's Avatar
Member
 
Join Date: Jan 2006
Location: The WET! Coast of Oregon, USA
Posts: 69
accrete is on a distinguished road
please help...

I am asking the same question and finding no answer so far...so i found your post and thought i'd bring the thread back to life?? sure. grin.

Thom

Quote:
Originally Posted by hidethereal
Thank you very much for the replies!

Anyone know how to offset the symbol from the candle?


Thanks again!
__________________
Find a way to make someone's day
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 02-06-2007, 11:18 PM
Senior Member
 
Join Date: Feb 2006
Posts: 1,211
et_phonehome_2 is on a distinguished road
Always useful info for changing existing pointers...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 02-07-2007, 09:24 AM
cja's Avatar
cja cja is offline
Senior Member
 
Join Date: Apr 2006
Posts: 676
cja is on a distinguished road
Moving Dots & Arrows

Hi

Look for a line of code like this in the int start() area something like this for (counter=i ;counter<=i+9;counter++) and change the # to alter the arrow distance from the candle .

Also look for anything that refers to a range of some sort, often in an Alert line of code like this DownTunnel=true; UpTunnel=false; Tdown[i] = High[i] + Range*1.2;
and alter this # as well.

In this paticular indicator it has ARROWS & DOTS and the 1st code moves the Arrows and the 2nd code moves the Dots.
Good Luck

cja
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 03-10-2007, 04:29 PM
emjay's Avatar
Junior Member
 
Join Date: Jul 2006
Posts: 8
emjay is on a distinguished road
Reviving this to try to get an answer to:

Is there any way to get these wingding symols to "stack" based on the value of the variable/indicator it is displaying. Such as 2, 3, 4 or 5 arrows up or 1-5 arrows doen based on the value it read for the indicator?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #9 (permalink)  
Old 03-13-2007, 06:44 AM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
and speaking of wich, how to change or replace dosen or two arrows or dots on MTF indis (they multipyed by the timeframe and period) on some biger or different arow or lable...?
just easy hack for nonproffis... , please?
Attached Images
File Type: gif arrows mtf.gif (18.8 KB, 360 views)

Last edited by fxbs; 03-13-2007 at 06:53 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #10 (permalink)  
Old 01-10-2008, 04:45 AM
Junior Member
 
Join Date: Nov 2007
Posts: 4
ky_trade2000 is on a distinguished road
How to fix arrows on charts

Hello there,

I am wondering if somebody could help me this.

The arrows on charts have been disappeared suddenly. It is
obvious that I have done something wrong....Instead of showing
arrows,the arrows on charts become only dot.

Would be very pleased if somebody could let me know how to show arrows properly.

Thank you in advance.

K.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot Points (like a Dots) saadei Indicators - Metatrader 4 22 08-02-2009 05:47 PM
how to change arrows fxbs Indicators - Metatrader 4 1 03-23-2007 06:12 AM
Indicator DMI - Arrows profeta Suggestions for Trading Systems 7 03-02-2007 07:10 AM
Arrows in EA? arashas Metatrader 4 4 02-04-2007 08:47 AM
Plotting dots Q0paz Metatrader 4 mql 4 - Development course 2 11-13-2006 10:50 AM


All times are GMT. The time now is 04:35 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.