Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent 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. Its 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
  #1611 (permalink)  
Old 11-08-2009, 07:58 AM
Junior Member
 
Join Date: Sep 2009
Posts: 1
iyanuayo is on a distinguished road
iya

find attached and i think it will help
Attached Files
File Type: mq4 Box.mq4 (43.0 KB, 109 views)
File Type: rar Square_of_Nine.rar (3.5 KB, 131 views)
File Type: mq4 Pivot_ESAZ_Monthly.mq4 (6.3 KB, 82 views)
File Type: mq4 GANN_ugli_urovni.mq4 (16.3 KB, 131 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
  #1612 (permalink)  
Old 11-08-2009, 06:55 PM
cockeyedcowboy's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 486
cockeyedcowboy is on a distinguished road
This is not been done before, and may be interesting to some that use 3 screen displays were all three price charts are on one chart. In the attached screenshot you have the cable daily 4Hours and 1Hour charts.
Attached Images
File Type: jpg TSD screen.jpg (35.1 KB, 1053 views)
__________________
(If one expects unbutchered use of the english laugage or even corect spelling, then I advise you not to reed any of my rightings.)
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
  #1613 (permalink)  
Old 11-08-2009, 07:09 PM
Senior Member
 
Join Date: Mar 2006
Posts: 297
toddanderson is on a distinguished road
What indicator

What indicator are you using here?

Quote:
Originally Posted by cockeyedcowboy View Post
This is not been done before, and may be interesting to some that use 3 screen displays were all three price charts are on one chart. In the attached screenshot you have the cable daily 4Hours and 1Hour charts.
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
  #1614 (permalink)  
Old 11-09-2009, 08:06 AM
Big Joe's Avatar
Senior Member
 
Join Date: May 2006
Location: In the trading room !
Posts: 764
Big Joe is an unknown quantity at this point
Coding problem

Hello all,

I find something interesting somewhere, but the signals don't appear live, i don't know if it is a repaint or a coding problem, if a master coder could take a look at it, it would be great !

Thanks !
Attached Files
File Type: mq4 cross.mq4 (1.6 KB, 68 views)
__________________
Picasso is 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
  #1615 (permalink)  
Old 11-09-2009, 08:23 AM
mladen's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,278
mladen is on a distinguished road
Change these (i-1 means next (future) bar)
Quote:
double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);
to this
Quote:
double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i+1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i+1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);
regards
mladen
Quote:
Originally Posted by Big Joe View Post
Hello all,

I find something interesting somewhere, but the signals don't appear live, i don't know if it is a repaint or a coding problem, if a master coder could take a look at it, it would be great !

Thanks !
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
  #1616 (permalink)  
Old 11-09-2009, 08:44 AM
Big Joe's Avatar
Senior Member
 
Join Date: May 2006
Location: In the trading room !
Posts: 764
Big Joe is an unknown quantity at this point
Thanks Mladen !

Just another Malaysian ****

Sorry !

BTW : i really like your double smooth stoch ( it comes close to my main trading sys : your spearman with a ma applied to )
__________________
Picasso is the best !

Last edited by newdigital; 11-09-2009 at 10:37 AM. Reason: Typo !
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
  #1617 (permalink)  
Old 11-09-2009, 10:09 AM
cockeyedcowboy's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 486
cockeyedcowboy is on a distinguished road
Quote:
Originally Posted by toddanderson View Post
What indicator are you using here?


Its from a larger project that I am working on, will cut just the code out that does the price bars and post it next week end. The big thing with this is that your not restricted to just one currency pair you can just as well have three different pairs showing.

I have done it in a rotating price graph (which I called a pPack File) were you have the same currency chart that rotates through the different time scales, and one that will rotate between all the different currencies (which I call a cPack File) contained within a watch list. Which is a great to watch say the majors and wating for a signal, to watch them rotate one at a time in one window in front of you without flipping between charts.

These are created similar to the iPack File I mentioned earier.

Keit
__________________
(If one expects unbutchered use of the english laugage or even corect spelling, then I advise you not to reed any of my rightings.)
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
  #1618 (permalink)  
Old 11-09-2009, 02:32 PM
Junior Member
 
Join Date: Jun 2007
Posts: 2
michaelB is on a distinguished road
mladen--

I have seen dozens of indicators that contain similar code such as this--

double iMaSlowPrevious = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaSlowCurrent = iMA(NULL,0,SlowPeriod,0,MODE_EMA, PRICE_CLOSE, i);
double iMaFastPrevious = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i-1);
double iMaFastCurrent = iMA(NULL,0,FastPeriod,0,MODE_EMA, PRICE_CLOSE, i);


Does this mean they were all coded incorrectly?
Actually, I'm surprised that this code even compiles without errors when "i" is initially set to 0.
Thank you.

Last edited by michaelB; 11-11-2009 at 02:59 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
  #1619 (permalink)  
Old 11-16-2009, 07:41 PM
Member
 
Join Date: Jul 2009
Posts: 49
kaori is on a distinguished road
2 indicators = 1 indicator

Have you see anything like this before ?

Macd + Stocastic.

2 completely separate indicators and it comes to appear in one box only.

I have no idea how this is even possible, I found template which
makes it but would be lovely idea.

Anyone have a clue how to combine 2 indicators together ?
Attached Images
File Type: gif 2 oscillators together.gif (127.3 KB, 16 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
  #1620 (permalink)  
Old 11-17-2009, 11:27 AM
Junior Member
 
Join Date: Sep 2009
Posts: 1
hnp2500 is on a distinguished road
Quote:
Originally Posted by kaori View Post
Have you see anything like this before ?

Macd + Stocastic.

2 completely separate indicators and it comes to appear in one box only.

I have no idea how this is even possible, I found template which
makes it but would be lovely idea.

Anyone have a clue how to combine 2 indicators together ?
hi
if you drag an indicator on the previous added indicator window, metatrader automatically add new indicator on previous window and did'nt create new window for new andicator.
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
3 Level ZZ Semafor, ADXm ANG, ADXm-ANG, ADXm-ANG mq4, adxm_ang, at_zdn, at_ZDnsw, center of gravity, center of gravity mq4, Center of Gravity.mq4, Complex.mq4, cycle identifier, cycle identifier forex, cycle identifier mq4, cycleIdentifier, CycleIdentifier.mq4, execute line, fee CycleIdentifier.mq4, FerruFx, forex, gravity, hurst, interesting, iTREND_alexcud, I_XO_A_H.mq4, LINEFRAKDOWN, LineFrakDown.mq4, magnified price, METRO, mindhero, MindHero Indicator, mladen, ParabolicRegression_StopAndReverse, PolyFitBands, pwtrend, roy kelly, Schaff, schaff trend, Schaff Trend Cycle, search, snake, snake in borders, snakeborders, snakeforce, Something, something interesting, something interesting please, standard error bands, trend trigger factor, turbo jrsx, Var Mov Avg3, VKW Bands


Currently Active Users Viewing This Thread: 3 (2 members and 1 guests)
denlivin, henrybone
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
Nrtr newdigital Indicators - Metatrader 3 18 06-23-2009 03:24 PM
Interesting ???? cja General Discussion 18 05-27-2007 12:12 AM
Interesting cci increase Indicators - Metatrader 4 6 06-29-2006 01:36 AM


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



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