Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Tools and utilities


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #41 (permalink)  
Old 06-15-2008, 05:48 PM
Tokarus's Avatar
Senior Member
 
Join Date: Apr 2007
Location: Johannesburg
Posts: 106
Tokarus is on a distinguished road
Sure, here is the template file...

Thanks again, Kris
Attached Files
File Type: tpl TRO Trend.tpl (51.0 KB, 50 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 06-15-2008, 06:29 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Quote:
Originally Posted by Tokarus View Post
Sure, here is the template file...

Thanks again, Kris
Thank you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 06-15-2008, 09:20 PM
Tokarus's Avatar
Senior Member
 
Join Date: Apr 2007
Location: Johannesburg
Posts: 106
Tokarus is on a distinguished road
Dear TRO,

Forgive me for modifying your code (frankly a piece of art-work), but I have changed the colour of the blank blocks (darker) to blend with the chart background. Also, I re-positioned the indicator to the right, so that I can stack it up vertically in the chart-shift area.

Thank you for sharing with us your masterpiece!

Cheers, Kris
Attached Images
File Type: gif tro_trend.gif (14.5 KB, 308 views)
Attached Files
File Type: mq4 TRO_Trend.mq4 (17.2 KB, 91 views)
File Type: tpl tro trend vertical.tpl (45.4 KB, 66 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 06-15-2008, 10:00 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Please feel free to modify the code. Thanks why I post it. Hopefully, someone comes along and improves on it. Or someone who is starting out can learn a trick or two.

One thing, change the name of the indicator so it doesn't step on the original when someone downloads. Add a number or symbol to it.

Thanks again for sharing.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #45 (permalink)  
Old 06-15-2008, 10:08 PM
Tokarus's Avatar
Senior Member
 
Join Date: Apr 2007
Location: Johannesburg
Posts: 106
Tokarus is on a distinguished road
Yes, of course. I have changed the file name, although it may be difficult to see with the hyperlink. The original filename was _TRO_TREND.MQ4, modified is TRO_Trend.mq4 (i.e. I lost the underscore in front of the TRO...)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #46 (permalink)  
Old 06-16-2008, 06:45 AM
Big Joe's Avatar
Senior Member
 
Join Date: May 2006
Location: Belgium
Posts: 430
Big Joe is an unknown quantity at this point
He yah HOOOO !

The only i made is for white background charts.

Here it is :

Attached Files
File Type: mq4 _TRO_TREND_BOXES.mq4 (21.3 KB, 43 views)
__________________
Picasso is the best !

Last edited by Big Joe; 06-16-2008 at 06:47 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47 (permalink)  
Old 06-16-2008, 09:09 AM
Junior Member
 
Join Date: Feb 2008
Posts: 15
kadam is on a distinguished road
Mtf Bars Tro Dynamic

HI GUys .,

Could anyone convert this TRO Dynamic trend to MTF Bars indicator ?
It will be interesting to see on a 5M chart and to see the past how the 1H trend started. Because we now just see the present.

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48 (permalink)  
Old 06-16-2008, 01:46 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Looks like we have a nice group effort working with the TRO DYNAMIC TREND.

I just want to say THANKS to everyone who is participating.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49 (permalink)  
Old 06-16-2008, 02:45 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
TRO_MULTI_TREND_BOXES

tro_mulit_trend_boxes1.gif

_TRO_MULTI_TREND_BOXES
plots the trend for the time frames selected in the inputs:

Code:
extern bool USE.M1  = TRUE;
extern bool USE.M5  = TRUE;
extern bool USE.M15 = TRUE;
extern bool USE.M30 = TRUE;
extern bool USE.H1  = TRUE;
extern bool USE.H4  = TRUE;
extern bool USE.D1  = TRUE;
extern bool USE.W1  = TRUE;
extern bool USE.MN  = TRUE;

I know it's not the most elegant way but it works...LOL!

_TRO_MULTI_TREND_BOXES computes the trend for each time frame, adds it up and divides by the number of time frames used.

ENHANCEMENT

User can specify the multiplier or "weight" for each time frame via input:

Code:


extern int MULT.M1  = 1 ;
extern int MULT.M5  = 1 ;
extern int MULT.M15 = 1 ;
extern int MULT.M30 = 1 ;
extern int MULT.H1  = 1 ;
extern int MULT.H4  = 1 ;
extern int MULT.D1  = 1 ;
extern int MULT.W1  = 1 ;
extern int MULT.MN  = 1 ;

I give more weight to D1 and H1 for scalping.

MT4 CODE ATTACHED.

Attached Files
File Type: mq4 _TRO_MULTI_TREND_BOXES.mq4 (20.9 KB, 86 views)

Last edited by TheRumpledOne; 06-16-2008 at 03:09 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50 (permalink)  
Old 06-16-2008, 03:21 PM
Junior Member
 
Join Date: Feb 2008
Posts: 15
kadam is on a distinguished road
Tro Trend Ea

HI

Is here anybody ho made an EA for the TRO TREND ?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
tro mq4

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 On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trading with dynamic fibo levels--4pma indicator. mpower Suggestions for Trading Systems 52 08-12-2008 02:25 AM
Multi Dynamic Trend cja Tools and utilities 14 07-02-2008 10:24 AM
BBRSI indicator; Dynamic ind. thread fxbs Indicators - Metatrader 4 0 05-10-2007 01:00 AM
Dynamic Indicator Levels Linuxser Metatrader 4 mql 4 - Development course 0 11-19-2006 11:42 PM
Dynamic trend can someone clean this up? donb01 Indicators - Metatrader 4 1 03-27-2006 09:26 AM


All times are GMT. The time now is 09:50 AM.



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