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
  #121 (permalink)  
Old 05-02-2006, 07:54 AM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
Quote:
Originally Posted by DanielTyrkiel
There is a difference between the indicator and what the cci has shown. here is the 15 min time frame. I set it to typical price like in the indicator. I don't know what else could have been wrong.

I think I fixed the problem.
Here is the new version
Attached Files
File Type: mq4 #MTF Forex freedom Bar.mq4 (8.0 KB, 2766 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
  #122 (permalink)  
Old 05-02-2006, 08:02 AM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
Quote:
Originally Posted by Emerald King
Hello to All,

I am posting this question for several reasons;

1). To put my thoughts down and to make sure that I am understanding things as they are
2). To ask for others to help in my understanding of how MTF indicators work
3). To get advice on how I can work around the MTF issues to get the results I seek


I want the higher timeframe to be calculated only on completed higher time frame bars.

Can anyone suggest an elegant method to accomplish this?

Thank you for your Time
EK
U can check some of the indicator here.
The main idea (I took it from one of the indicators here) is to take the time bars as an array of times and see if current time is less then the requested timeframe and increase the index. like here


ArrayCopySeries(TimeArray_4H,MODE_TIME,Symbol(),Pe riod_4);
ArrayCopySeries(TimeArray_1H,MODE_TIME,Symbol(),Pe riod_3);
ArrayCopySeries(TimeArray_30M,MODE_TIME,Symbol(),P eriod_2);
ArrayCopySeries(TimeArray_15M,MODE_TIME,Symbol(),P eriod_1);

for(i=0, y15m=0, y4h=0, y1h=0, y30m=0;i<limit;i++)
{
if (Time[i]<TimeArray_15M[y15m]) y15m++;
if (Time[i]<TimeArray_4H[y4h]) y4h++;
if (Time[i]<TimeArray_1H[y1h]) y1h++;
if (Time[i]<TimeArray_30M[y30m]) y30m++;


where Period_1 .. 4 are PERIOD_M5 , PERIOD_M15 or so

Hope u understand the idea
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
  #123 (permalink)  
Old 05-06-2006, 10:22 AM
Junior Member
 
Join Date: Nov 2005
Posts: 7
Suresh is on a distinguished road
MTF for Super signals Indicator

Quote:
Originally Posted by keris2112
Here's one more MTF indicator. It's based on a custom indicator (you can view the code to make your own).

It's called #MTF_LPB.mq4 (Linear Price Bar) Here's the link to the thread for info on the indicator: Linear Price Bar

Attached are 2 indicators. You need both in your indicators folder as the MTF version references the original indicator.

Linear Price Bar.mq4
#MTF_LPB.mq4

Keris

Hi Keris,

I am fairly new to programming indicators in MT4 and would like to know if you could help with making one for me an indicator I found in this forum by Nick. The indicator is very helpful for manual trading. The MTF indicator will greatly help in trading in the same direction.

I am attaching the same here for your ready reference.
Attached Files
File Type: mq4 super-signals_v1.mq4 (1.3 KB, 699 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
  #124 (permalink)  
Old 05-08-2006, 03:11 PM
Junior Member
 
Join Date: Nov 2005
Posts: 7
Suresh is on a distinguished road
MTF for Super-signals Indicator

Hi Kerris,

Thaks for the guidance. Thought this was my first attempt in doing this. I find that while compiling there is one paraenteses which is unbalanced.

Can you help me fix it. Thanks in advance for the help. This should help me to make an attempt on my own. Also let me know if somthing is wrong which I may not be aware of.


Regards


Suresh
Attached Files
File Type: mq4 #MTF_Super-signals_v1.mq4 (3.2 KB, 845 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
  #125 (permalink)  
Old 05-09-2006, 01:00 AM
Member
 
Join Date: Nov 2005
Posts: 35
Emerald King is on a distinguished road
What I wish the Most

Is if this indicator didnt need to be refreshed every couple of hours.
When I have this indicator on a 1 hour chart and it is using the 4 Hour in its array, after a few hours I refresh it the indicator Paints the line differently than what it did in real time.

I have tried to get the same values/results without the need for it to be refreshed but have been unable to.

Until I or someone else can re-code so the refresh is not needed than I dont see much value for me in this indicator.

Thanks
Minggu
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
  #126 (permalink)  
Old 05-09-2006, 04:09 AM
keris2112's Avatar
Senior Member
 
Join Date: Dec 2005
Location: California, US
Posts: 130
keris2112 is on a distinguished road
Quote:
Originally Posted by Emerald King
Is if this indicator didnt need to be refreshed every couple of hours.
When I have this indicator on a 1 hour chart and it is using the 4 Hour in its array, after a few hours I refresh it the indicator Paints the line differently than what it did in real time.

I have tried to get the same values/results without the need for it to be refreshed but have been unable to.

Until I or someone else can re-code so the refresh is not needed than I dont see much value for me in this indicator.

Thanks
Minggu
Minggu,
As I've mentioned before, the whole idea of the MTF indicators was to allow you to see what was happening on multiple timeframes without having to constantly switch timeframes or have multiple charts open. In real time, they show you exactly what is happening on the longer timeframe, in increments of the shorter timeframe.

The last MTF bar for the longer timeframe represents what the longer timeframe looks like at the close. If you refresh the charts, all the incremental data is gone, so you get multiple bars that are identical to the closing bar of the longer timeframe. The real (closing) value of the indicator didn't change, you just don't see the increments.

Example of how you might use this:
You system calls for you to go long when the M5 and M15 Psars align, and H1 CCI is above 0. You can have 3 charts open, or you can use the MTF indicators and put them all on one chart. If you system calls for you to wait for the close, then no matter what, you need to for the H1 to close before making a decision.

But, you might use a little discretion. You are on minute 50. For the last 30 minutes (6 bars on your M5 chart) your H1 CCI has been above 0 and is climbing. It's currently at 100. You decide that everything looks positive, so you enter 10 minutes before the H1 bar closes. You did all of this without ever having to switch a chart or timeframe. (BTW, I'm not suggesting that the above scenario is something to be followed. I just made something up to illustrate how the MTF indicators might be used.)

Anyway, yes, they somewhat repaint themselves, but not like normal indicators that repaint, i.e. Zig Zag. The closing data of the longer timeframes never change. You just loose the incremented values when you refresh.

Keris
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
  #127 (permalink)  
Old 05-09-2006, 05:11 AM
Member
 
Join Date: Nov 2005
Posts: 35
Emerald King is on a distinguished road
Thanks

Hello Keris,

Thank you for taking the time to explain how the indicator works. What I am trying to get is where "If you refresh the charts, all the incremental data is gone, so you get multiple bars that are identical to the closing bar of the longer timeframe. The real (closing) value of the indicator didn't change, you just don't see the increments."

So I am looking for the Larger Bar data (only Completed Bars) and for every bar on the Lower timeframe just show the same data until a new larger timeframe bar has been completed.

Any Ideas?
Thanks
EK
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
  #128 (permalink)  
Old 05-09-2006, 11:54 PM
Member
 
Join Date: Nov 2005
Posts: 35
Emerald King is on a distinguished road
I need to do more research

Hello Keris,

After thinking about what you have said I need to study your original indicator at depth before I decide on my course of action.

Thank you
EK
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
  #129 (permalink)  
Old 05-11-2006, 03:34 AM
Member
 
Join Date: Dec 2005
Posts: 35
zhu28ming is on a distinguished road
MTF for Super signals Indicator

Hello, Keris:

This Super signals Indicator seems very powerful. But the #MTF_Super-signals_v1.mq4 has an error when I compile. I am not able to fix it.
Would you please help this?

Thanks a lot
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
  #130 (permalink)  
Old 05-11-2006, 03:41 AM
Member
 
Join Date: Dec 2005
Posts: 35
zhu28ming is on a distinguished road
MTF for Super signals Indicator

Hello, Keris:

This Super signals Indicator seems very powerful. But the #MTF_Super-signals_v1.mq4 has an error when I compile. I am not able to fix it.
Would you please help this?

Thanks a lot
Attached Files
File Type: mq4 super-signals_v1.mq4 (1.4 KB, 500 views)
File Type: mq4 #MTF_Super-signals_v1.mq4 (3.2 KB, 487 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
Reply

Bookmarks

Tags
#MTF_WPR.mq4, ABSOLUTE STRENGTH, absolute strength indicator, AbsoluteStrength, AbsoluteStrength_v1.1_mtf, ADX MTF, AlaskanPipAssassin, atr channel, BBMACD, bbsqueeze, bh-ergodic, center of gravity, Coeffoline, custom candle, customcandle, Damiani_volatmeter v3.2, Envelopes, FanSimple4en, fncd indicator, forex, forextrend_v2, fxst3cci, FxTrend v2, fxtsd, histogram, indicators, megatrend, MegaTrend.mq4, mladen, mtf absolute strength, mtf adx, mtf adx indicator, mtf bband, MTF candle, mtf ema, MTF indicator, mtf LaGuerre, mtf ma, mtf macd, mtf megatrend, mtf parabolic, MTF PSAR, mtf qqe, MTF RSI, mtf rsx, mtf stochastic, MTF trendenvelopes, mtf_4tf_has_bar2m, mtf_megatrend_barm_4tfnext, multi, multi time frame, MULTI TIME FRAME indicator, multi time frame stochastic, multi timeframe, multi timeframe indicator, nonlagma v7, NonLagMA_v7.1, NRTR_Rosh_v2eAlert_mtf.ex4, open interest, pipnailer, PowerTrend, powertrend.mq4, qqe mtf, search, TheBuyZoneForex.pdf, timeframe, TrendEnvelopes_v5, trendline, TRO MultiPair, tro sak multipair, voltychoppy, XO_A_H


Currently Active Users Viewing This Thread: 2 (1 members and 1 guests)
jrbucks
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
get current timeframe () or the like.. arm73c05 Metatrader 4 3 02-21-2007 08:51 PM
Timeframe / Shift divergence_trader Metatrader 4 2 02-12-2007 02:04 PM
Multi EAs, multi brokers, same computer hhsmoney General Discussion 6 11-16-2006 09:32 PM
Get current timeframe The_N Metatrader 4 2 09-08-2006 12:40 PM
Multi timeframe through a shift calculation? wananohoshi Indicators - Metatrader 4 2 08-06-2006 11:02 AM


All times are GMT. The time now is 02:45 AM.



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