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
  #21 (permalink)  
Old 07-20-2008, 05:56 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
Quote:
Originally Posted by matrixebiz View Post
Seems to be something wrong with this indi. Putting TF as 60, H1 or 60H1 all give different results. What is the correct syntax?
doesn't see anything wrong - same results TF= 60, H1 , h1 ... (btw. "60H1" - obviously not correct syntax)
Attached Images
File Type: gif st_clean tf 60.gif (10.4 KB, 396 views)
File Type: gif st_clean tf 601 h1.gif (10.4 KB, 391 views)
File Type: gif st_clean tf 60 h1 h1.gif (10.5 KB, 388 views)

Last edited by fxbs; 07-20-2008 at 06:00 PM.
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
  #22 (permalink)  
Old 07-20-2008, 07:12 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point
Quote:
Originally Posted by fxbs View Post
been done long time ago
SuperTrend_Clean_mtf.mq4 (Mladen)
!!stclean.gif

I am NOT the ORIGINAL author and I am not claiming authorship of this indicator. All I did was modify it. I hope you find my modifications useful.

SuperTrend_Clean_mtf_TRO_MODIFIED_VERSION has a user input to turn on/off the price box and input to turn on/off alert when price hits the super trend line.

I am NOT the ORIGINAL author and I am not claiming authorship of this indicator. All I did was modify it. I hope you find my modifications useful.

MODIFIED SOURCE CODE ATTACHED.
Attached Files
File Type: mq4 SuperTrend_Clean_mtf_TRO_MODIFIED_VERSION.mq4 (7.6 KB, 115 views)
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
  #23 (permalink)  
Old 07-22-2008, 08:12 AM
Member
 
Join Date: Nov 2007
Posts: 44
remmy007 is on a distinguished road
TRO,
What timeframe is best for this 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
  #24 (permalink)  
Old 02-23-2009, 10:00 AM
Junior Member
 
Join Date: May 2006
Posts: 1
spotlemon is on a distinguished road
Need assistance to create an Indicator - Any help appreciated

Good day to you, all interested...

I am the first to acknowledge that I do not have a clue about programming and I find this extremely frustrating - but I would like to appeal for assistance to create the following indicator. I am attaching a screenshot as to what the final result must look like.

The indicator will be a combination of the following 2 seperate indicators:

1) Super Trend 2
2) ADX Crossing

Could be called STAC (Super Trend & Adx Cross)

I am attaching the 2 seperate files.

I do not know if this is possible to create. The indicator must have a 5m/15m/30m/60m and 240m input feature to be able to be placed on any intra-day timeframe.

The idea behind this request:

It seems that whenever the ADX cross dot appears on the Super Trend 2 and both are the same color (long or short), the following move in the direction indicated by the ADX dot is quite strong. The opposite also seems true - when the ADX cross dot appears over/under the Super Trend 2 abd they are contrasting colors, the move in the direction of the ADX cross is a slow one.

However, if the ADX dot remains valid and the Super Signal 2 line changes color from opposing color to same color as ADX dot - we have another strong move - and vice versa.

I believe this type of indicator would be a great tool in your trading consideration.

Are there any coders/creators out there that could do this?

Thanking you for your time
Attached Images
File Type: jpg possible indicator 1.jpg (22.8 KB, 164 views)
Attached Files
File Type: mq4 ADX Crossing.mq4 (2.4 KB, 48 views)
File Type: mq4 SUPER_TREND 2.mq4 (5.3 KB, 45 views)
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
  #25 (permalink)  
Old 02-23-2009, 07:52 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
ADX Crossing.mq4 (2.4 KB, - show "tomorrows" signals - set 1day into the future
- set one bar to the right - to show cross before it happen (before it existed) - "predicting" the past
b4plusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLUS DI,shift-1);
nowplusdi=iADX(NULL,0,ADXbars,PRICE_CLOSE,MODE_PLU SDI,shift);
works only on history (1bar shift) - when "future" known and desn't work in real time (when future unknown)

rest idea is sound - but please, check if it still works with real indis which work in real time (past we can see by simple HH LL)


in the forum you can find many versions of ADXcrosses - check it again and tell if it works

---------------


i wonder why Jason made sr so one-sided?

cciTrendNow=iCCI(NULL, 0, cciPeriod, PRICE_TYPICAL, i) + 70;
cciTrendPrevious=iCCI(NULL, 0, cciPeriod, PRICE_TYPICAL, i+1) + 70;...
... if (cciTrendNow > 0) { TrendUp[i] = Low[i]....
else if (cciTrendNow < 0) { TrendDown[i] = High[i]

was it optimised 4 upternd?

Last edited by fxbs; 02-23-2009 at 10:16 PM.
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

Tags
histogram, supertrend, supertrend tro modified indicator


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
Supertrend as Histogram Hopexicerat Indicators - Metatrader 4 39 07-25-2009 05:00 PM
Supertrend and RSTL cross hua Suggestions for Trading Systems 38 12-20-2007 06:06 PM
Median Line leutzuro Documentation 3 11-26-2007 11:07 AM
Supertrend Kurka Fund Expert Advisors - Metatrader 4 5 12-29-2006 10:27 AM
Line at 17:00 DOMIANDR000 Metatrader 4 1 05-29-2006 09:41 PM


All times are GMT. The time now is 10:55 AM.



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